 /*  
*
*		MSM Grid framework
*		File type: CSS2
*		Media type: screen
*		License : GPL
*   
---------------------------------------- 
        Stylesheet structure
----------------------------------------
#1 - Body
#2 - Headers
#3 - Lists
	#3.1 - dl
	#3.2 - ul	
#4 - Links
#5 - Forms
#6 - Text 
#7 - Misc


/* #1 -------- Body -------- */
	body { 
		font-family: Arial, Helvetica, sans-serif;
		font-size: 9pt !important;
		line-height:150%;
		background: #006633;
		color:#000000;
		padding-top:20px;
		padding-bottom:20px;		
}


/* #2 -------- Headers -------- */ 
	h1 { font-size: 15pt; font-family: Arial, Helvetica, sans-serif; margin:0px; padding:20px 0 15px 0px; font-weight:normal;}
	h2,h3 { font: 11pt/1.3em Verdana, Helvetica, sans-serif; margin:0px 0px 5px 0; padding:0; font-weight:bold;}
	h4 { font-size: 10pt; font-family: Verdana, Helvetica, sans-serif; margin:0px; padding:0px 0 10px 0px; }
	h5 { font-size: 0.8em; font-weight: bold; margin-bottom: 1.5em; }
	h6 { font-size: 0.8em; font-weight: bold; }



/* #3 -------- Lists -------- */

	/* #3.1 - dl - */
	dl		{ margin: 0; padding:5px 0px;}
	dl dt	{ font-weight: bold; }
	dl dd	{ margin: 2px 0px 2px 20px;}

	/* #3.2 - ul - */
	.grList { list-style-type: none; margin:5px 0px 0px 10px;padding:0px;}
	.grList li {
	  background: url(../images/quadrBullet.gif) no-repeat left center;
	  padding: 2px 0px 2px 20px;
	  margin:0px; 
	}



/* #4 -------- Links -------- */
	a:link		{ color:#003300;  text-decoration: underline; cursor:pointer;}
	a:visited	{ color:#003300;cursor:pointer;text-decoration: underline; }
	a:hover	{color:#660000; cursor:pointer;}
	a:focus	{}
	a:active	{}



/* #5 -------- Forms -------- */

		/* #5.1 - Common form style - */
		.gForm{margin: 0px; padding: 0px; }
		.gForm label{cursor:pointer;}
		.gForm select {
			cursor:pointer;
			padding:2px;
			margin:2px 0;
			width:220px;
		}
			.gForm input.text,
			.gForm input.title{ 
				margin:2px 0;
				width:200px;
				border:1px solid #dddddd;
			}
			.gForm textarea{
				margin:2px 0;
				width:220px;
				border:1px solid #dddddd;
			}
			
			.gForm input.text:focus,
			.gForm input.title:focus,
			.gForm textarea:focus{
				margin:1px 0;
				border:1px solid #990000;
			}
						
		.gForm .submit_container{margin-top:10px;}
		.gForm .submit {padding:6px 10px;font-family:verdana;font-size:8pt;}
				


/* #6 -------- Text -------- */
	/* #6.1 - Text style  - */
		.fWb	{  font-weight:bold !important; }
		.fWn	{  font-weight:normal !important; }
		.fVi	{  font-style:italic  !important;}
		.sTxt	{  font:8pt/150% Verdana,Arial normal; }
		.lTxt	{  font-size:110% !important;  }
		.bTxt{font: 11pt/1.3em Verdana;}	
	
	/* #6.2 - Text aligments  -  */
		.tAl	{ text-align:left !important;     }
		.tAc	{ text-align:center !important;}
		.tAr	{ text-align:right !important;   }
		.tAj	{ text-align:justify !important; }

	/* #6.3 - Text colors - */
		.tClr0{ color:#222222; }
		.tClr1{ color:#990000; }
		.tClr2{ color:#555555; }


/* #7 -------- Misc -------- */
	p				    { margin: 10px 0px; }
	blockquote	{ margin: 10px; font-style: italic; }
	
	abbr, 
	acronym		{ border-bottom: 1px dotted #666; }
	address		{ margin: 0 0 15px; font-style: italic; }
	
	pre 			{ margin: 15px 0; white-space: pre; }
	pre,code,tt { font: 10px 'andale mono', 'lucida console', monospace; line-height: 1.5; }
	
	sup{}
	hr {
		background: #dddddd; 
	 	color: #dddddd;
	 	clear: both; 
	 	float: none; 
	 	width: 100%; 
	 	height: .1em;
	 	margin: 5px 0px 5px 0px;
	 	border: none; 
	}
	/* # -- Gr tables -- */
	.grTable{
		border-collapse:collapse;
		width:98%;
		margin-left:2px;
	}
	.grTable thead tr th{
		background:url(../images/thBgr.jpg) repeat-x center center;
		color:#ffffff;
		height:25px;
		line-height:25px;
		text-align: center;
	}
	.grTable tbody tr td{
		border-bottom: 1px solid #003300;
	}
	

/* #8 -------- Message boxes -------- */
	.msgBlock	{ padding: .8em; margin: 1em 0; border: 1px solid #ddd; }
	.loaderBgr strong { background:url(../images/loader.gif) no-repeat; line-height:50px; padding: 15px 0px 15px 50px; }

	/* #12.1 - Box background - */
	.errorMsg		{ background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
	.noticeMsg		{ background: #FFF6BF; color: #514721; border-color: #FFD324; }
	.successMsg	{ background: #d5efc2; color: #264409; border-color: #006a23; }	
	
	/* #12.2 - Box links - */
	.errorMsg a		{ color: #8a1f11; }
	.noticeMsg a	{ color: #514721; }
	.successMsg a	{ color: #264409; }
