/* 
	Mozart Systems - Style Sheet
	"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

	Main Color Schema: Blue

	Topics: 
		1. Body
		2. Fonts
		3. Table BG
		4. Border Styles
		5. Links
		6. Buttons
		7. Widths & Heights
*/



/* =============================================================
			1. Body 
============================================================= */

body {
	font-family: font-family: "Trebuchet MS", Verdana;;
	font-size: 12px;
	color: #000000;

	background-color: #FFFFFF;

	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}

td {
	font-family: "Trebuchet MS", Verdana;
	font-size: 12px;
	color: #000000;
}

th {
	font-family: "Trebuchet MS", Verdana;
	font-size: 12px;
	color: #000000;
}

form {
	margin: 0px 0px 0px 0px;
}



/* =============================================================
			2. Fonts 
============================================================= */

.ff_Arial 	{ font-family: Arial, Tahoma; }
.ff_Tahoma 	{ font-family: Tahoma, Arial; }
.ff_Trebuchet { font-family: "Trebuchet MS", Verdana; }

.fs_9 	{ font-size: 9px;  }
.fs_10 	{ font-size: 10px; }
.fs_11 	{ font-size: 11px; }
.fs_12 	{ font-size: 12px; }
.fs_13 	{ font-size: 13px; }
.fs_14 	{ font-size: 14px; }
.fs_15 	{ font-size: 15px; }
.fs_16 	{ font-size: 16px; }

.fc_Black 			{ color: #000000; }
.fc_Blue_Level_1	{ color: #0000CC; }
.fc_Gold 			{ color: #CC6600; }
.fc_Gray_Level_1	{ color: #666666; }
.fc_Gray_Level_2	{ color: #818181; }
.fc_Green_Level_1 	{ color: #003300; }
.fc_Green_Level_2 	{ color: #006600; }
.fc_Green_Level_3 	{ color: #107921; }
.fc_Red_Level_1		{ color: #990000; }
.fc_Red_Level_2		{ color: #97171a; }
.fc_Orange_Level_1	{ color: #E96400; }
.fc_White 			{ color: #FFFFFF; }
.fc_Wine 			{ color: #660000; }

.fd_Italics { font-style: italic; }
.fd_Underlined { text-decoration: underline; }

.fw_Bold 	{ font-weight: bold; }
.fw_Normal 	{ font-weight: normal; }

.fspacing_1px {	letter-spacing: 1px; }



/* =============================================================
			3. Table BG
============================================================= */

.gray_bg_level_1 { background-color: #999999; }
.gray_bg_level_2 { background-color: #ADADAD; }
.gray_bg_level_3 { background-color: #C2C2C2; }
.gray_bg_level_4 { background-color: #CCCCCC; }
.gray_bg_level_5 { background-color: #CFCFCF; }
.gray_bg_level_6 { background-color: #F2F2F2; }

.green_bg_level_1 { background-color: #003300; }
.green_bg_level_2 { background-color: #006600; }
.green_bg_level_6 { background-color: #F2FAF2; }

.red_bg_level_1 { background-color: #A1191D; }
.red_bg_level_6 { background-color: #FAE5E5; }

.white_bg_level { background-color: #FFFFFF; }



/* =============================================================
			4. Border Styles 
				### style, width, etc.
					Usage: bc_ for border color
					Usage: bs_ for border style
					Usage: bw_ for border width
============================================================= */

.bc_Red_Dark { border-color: #990000; }
.bc_Red_Light {	border-color: #D69999; }

.bc_Gray_Dark { border-color: #333333; }
.bc_Gray_Light { border-color: #CCCCCC; }

.bc_Green_Dark { border-color: #006600; }
.bc_Green_Light { border-color: #66A366; }

.bs_dashed { border-style: dashed; }
.bs_solid { border-style: solid; }

.bw_1px { border-width: 1px; }
.bw_2px { border-width: 2px; }


/* =============================================================
			5. Links
============================================================= */

a 			{ text-decoration: none; }
a:link 		{ text-decoration: none; }
a:visited 	{ text-decoration: none; }
a:hover 	{ text-decoration: none; color: #990000; }
a:active 	{ text-decoration: none; }



/* =============================================================
			6. Buttons
============================================================= */

.White_Button {
	background-color: #FFFFFF;
	border: 1px solid #CCCCCC;
	cursor: hand;
	padding: 0px 2px;
}

.Green_Button {
	background-color: #598526;
	border: 1px solid #CCCCCC;
	cursor: hand;
	padding: 0px 2px;
}

.Red_Button {
	background-color: #97171a;
	border: 1px solid #CCCCCC;
	cursor: hand;
	padding: 0px 2px;
}

.Logout_Button {
	background-color: #FFFFFF;

	border-top: 1px solid #B2D1B2;
	border-right: 2px solid #003300;	/* stronger border */
	border-bottom: 2px solid #003300;	/* stronger border */
	border-left: 1px solid #B2D1B2;
	cursor: hand;
}

.Logout_Button_Hover {
	background-color: #F2FAF2;

	border-top: 1px solid #B2D1B2;
	border-right: 2px solid #003300;	/* stronger border */
	border-bottom: 2px solid #003300;	/* stronger border */
	border-left: 1px solid #B2D1B2;
	cursor: hand;
}

.Logout_Button_Down {
	background-color: #F2FAF2;

	border-top: 2px solid #003300;		/* stronger border */
	border-right: 1px solid #B2D1B2;
	border-bottom: 1px solid #B2D1B2;	
	border-left: 2px solid #003300;		/* stronger border */
	cursor: hand;
}



/* =============================================================
			7. Widths & Heights
============================================================= */

.w20 { width: 20px; }
.w30 { width: 30px; }
.w40 { width: 40px; }
.w50 { width: 50px; }
.w60 { width: 60px; }
.w70 { width: 70px; }
.w80 { width: 80px; }
.w90 { width: 90px; }
.w100 {	width: 100px; }
.w110 {	width: 110px; }
.w120 {	width: 120px; }
.w130 {	width: 130px; }
.w140 {	width: 140px; }
.w150 {	width: 150px; }
.w160 {	width: 160px; }
.w170 {	width: 170px; }
.w180 {	width: 180px; }
.w190 {	width: 190px; }
.w200 {	width: 200px; }
.w250 {	width: 250px; }
.w300 {	width: 300px; }

.h10 {	height: 10px; }
.h20 {	height: 20px; }
.h30 {	height: 30px; }
.h40 {	height: 40px; }
.h50 {	height: 50px; }





.menubottom {
	border-bottom-color: #990000;
	border-bottom-style: dashed;
	border-bottom-width: 1px;
	font-size: 14px; 
	font-family: "Trebuchet MS", Verdana; 
}

.canal {
	border-bottom-color: #990000;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	font-size: 12px; 
	font-family: "Trebuchet MS", Verdana; 
}

.box {
	border-bottom-color: #CCCCCC;
	border-bottom-style: dashed;
	border-bottom-width: 1px;
	font-size: 12px; 
	font-family: "Trebuchet MS", Verdana; 
}

.box2 {
	border-color: #CCCCCC;
	border-style: solid;
	border-width: 1px;
	font-size: 12px; 
	font-family: "Trebuchet MS", Verdana; 
}

.box3 {
	border-bottom-color: #990000;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	font-size: 12px; 
	font-family: "Trebuchet MS", Verdana;
}


.menulateral {
	border-right-color: #CCCCCC;
	border-right-style: dotted;
	border-right-width: 1px;
	font-family: "Trebuchet MS", Verdana;
	font-size: 12px;
}

.botaominimo {
	width: 40px;
	font-family: "Trebuchet MS", Verdana; 
	size: 12px;
}

.botao60 {
	width: 60px;
	font-family: "Trebuchet MS", Verdana; 
	size: 12px;
}

.botao80 {
	width: 80px;
	font-family: "Trebuchet MS", Verdana; 
	size: 12px;
}

.botao100 {
	width: 100px;
	font-family: "Trebuchet MS", Verdana; 
	size: 12px;
}

.botao120 {
	width: 120px;
	font-family: "Trebuchet MS", Verdana; 
	size: 12px;
}

.botao140 {
	width: 140px;
	font-family: "Trebuchet MS", Verdana; 
	size: 12px;
}

.botao150 {
	width: 150px;
	font-family: "Trebuchet MS", Verdana; 
	size: 12px;
}

.botao160 {
	width: 160px;
	font-family: "Trebuchet MS", Verdana; 
	size: 12px;
}

.quebra {
	page-break-before: always
}

.rodape {
	clear: both;
}

.button_expand {
	cursor: hand;
}

