
/* 
Buttons 
*/
.button,
body.tt .data-table .options .left .button,
body.draads .data-table .options .left .button,
body.tt .button,
body.draads .button,
input[type="submit"],
input[type="button"]
{
	-moz-border-radius: 5px; /* Firefox */
	-webkit-border-radius: 5px; /* Safari, Chrome */
	border-radius: 5px; /* CSS3 */
	line-height:33px;
	height:33px;
	text-align:center;
	width:180px;
	color:#FFFFFF;
	font-size:14px;	
	border:none;
	cursor:pointer;	
	display:block;
}

.button.inline,
body.tt .button.inline,
body.draads .button.inline,
input[type="submit"].inline,
input[type="button"].inline
{
	display:inline-block;
	margin-right:10px;
}

.button:hover,
body.tt .data-table .options .left .button:hover,
body.draads .data-table .options .left .button:hover,
body.tt .button:hover,
body.draads .button:hover,
input[type="submit"]:hover,
input[type="button"]:hover
{
	color:#ffffff;
}


/* Draads */
body.draads input[type="submit"],
body.draads .button
{
	background-image:url(../../../img/cms/controls/buttons/draads/bg.png);
}
body.draads input[type="submit"]:hover,
body.draads .button:hover
{
	background-image:none;
	background-color:#d21484;
}

/* TT */
body.tt input[type="submit"],
body.tt .button
{
	background-image:url(../../../img/cms/controls/buttons/tt/bg.png);
}
body.tt input[type="submit"]:hover,
body.tt .button:hover
{
	background-image:none;
	background-color:#278afd;
}


