 /*  
*
*		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 -------- */
	html, body {height:100%; }
	body { 
		font-family: Verdana, Helvetica, sans-serif;
		font-size: 9pt !important;
		line-height:14pt;
		background: url(../images/bodyBgr.jpg) repeat-x top center #e2e2e2;
		background-attachment:fixed;
		color:#444444;
		padding-top: 20px;
}


/* #2 -------- Headers -------- */ 
	h1 { font: 1.75em/20pt Arial, Helvetica, sans-serif; margin: 0 0 0.5em 0;}
	h2 { font: 1.1em/16pt verdana;font-weight: bold;}
	h3 { font-size: 1em;  margin-bottom: 1em; }
	h4 { font-size: 0.8em; margin-bottom: 1.25em; }
	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; font-size:8pt; }
	dl dd	strong{ font-size:9pt; }

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



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

	.details {background: url(../images/bullet.gif) no-repeat 0px 2px;padding-left: 23px;}


/* #5 -------- Forms -------- */
	form		{ margin: 0px; padding: 0px; }
	label		{ cursor:pointer;}
	fieldset	{ border: 1px solid #bbbbbb;margin-top: 10px;background: #feffea;}
	legend	{ font-weight: bold;font-size: 10pt; }
	select	{ cursor:pointer; }
	
	input.text, input.title, textarea {margin:0.5em 0;  border:1px solid #dddddd; }
	input.text:focus, input.title:focus,textarea:focus { border:1px solid #bbbbbb; }
	
		/* #8 - Common form style - */
		.gForm{}
		.gForm .text{
			padding: 3px;
			width: 220px;
		}
		.gForm .textarea{
			padding: 3px;
			width: 320px;			
		}
		.gForm .submit{
			margin-top:10px;
			padding: 5px 10px;
		}


/* #6 -------- Text -------- */
	/* #6.1 - Text style  - */
		.fWb	{  font-weight:bold !important; }
		.fWn	{  font-weight:normal !important; }
		.fVi	{  font-style:italic  !important;}
		.sTxt	{  font-size:8pt !important; font-family: verdana; }
		.lTxt	{  font-size:110% !important;  }	
	
	/* #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:#000000; }
		.tClr1{ color:#ffffff; }
		.tClr2{ color:#2c9838; }


/* #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: 0 0 1.45em;
	 	border: none; 
	}
	
	
		.grTable{ 
			width:99%;
			font-size:8pt;
			border-collapse: collapse;
			margin: 1px;
			border: 1px solid #333333;	
		}
		.grTable tr td{ 
			border: 1px solid #333333;
			text-align:center;
		}
	

/* #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; }