
/* --------------------------------------------/ UNIVERSAL CLASSES \-------------------------------------------- */

/* --------------------------------------------*/




/* --------------------------------------------/ BROWSER INITIALIZATION \-------------------------------------------- */

	* { margin : 0; padding : 0; }
	h1,h2,h3,h4,h5,h6 { font-size : 100%; }
	ol,ul { list-style : none; }
	table { border-collapse : collapse; border-spacing : 0; }
	fieldset,img { border : 0; }
	caption,th { text-align : left; }
	
	body { 
	text-align:left; 
	color:#FFF; 
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px; 
	font-weight:600;
	background:url(../images/bg.jpg) center;
	background-repeat:repeat-y;
	background-color:#252525;
	}

/* --------------------------------------------*/


/* --------------------------------------------/ BOX MODEL CLASS \-------------------------------------------- */

	.box { position:relative; float:left; width:200px; height:30px; margin:10px; padding-left:30px; background-image:url(../images/infobox.jpg); overflow:hidden; }

/* --------------------------------------------*/


/* --------------------------------------------/ HEADER \-------------------------------------------- */

	#container_header { width:100%; height:100%; }
		
		#header { 
		position:relative; 
		width:800px;
		height:250px;
		margin:auto;
		background-image:url(../images/header4.jpg); 
		}

/* --------------------------------------------*/


/* --------------------------------------------/ NAV \-------------------------------------------- */

#container_nav { width:100%; height:100%; }
	
	#nav { 
	position:relative;
	width:800px;
	height:65px;
	margin:auto;
	background-image:url(../images/navfooter.jpg);
	}
	
		#nav li { position:relative; float:left;  }

		/*  
		To Find "#nav a width" :
			Step 1 - change the "#nav a padding" so that the menu item covers the entire nav area from top to bottom.
			Step 2 - compute the "#nav a width" with the equation below  
			
			  ((#nav width) / (# of menu items)) - (2 * (#nav a padding)) = #nav a width 
			  (    800      /         6        ) - (2 *        13       ) = 107.333 = 107 
		*/

		#nav a { display:block; width:104px; padding:13px; padding-top:20px;text-align:center; text-decoration:none; color:#CCC; }

/* --------------------------------------------*/

 
/* --------------------------------------------/ CONTENT \-------------------------------------------- */

#container_content { width:100%; }

	#content { 
		position:relative;  
		width:800px;
		height:100%;
		margin:auto;
		}
	
		#middle-content { 
		position:relative; 
		float:left; 
		width:760px; /* (#content width) - (2 * (#middle-content padding) */
		height:100%;
		margin:auto;
		padding:20px;
		}

			.min-holder { float:left; width:1px; height:400px;  }
	
			.clear {clear:both; height:1px; overflow:hidden;background-color:#000; }
			
			#content a { text-decoration:none; color:#CCC; }

/* --------------------------------------------*/




/* --------------------------------------------/ FOOTER \-------------------------------------------- */

#container_footer { clear:both; width:100%; height:100%; }
	
	#footer { 
	position:relative; 
	width:800px;
	height:65px;
	margin:auto;
	background-image:url(../images/navfooter.jpg);
	color:#CCC; 
	}

		#footer ul { position:relative; float:right; margin-top:23px; right:20px; }

		#footer li { position:relative; float:left; margin-left:10px; }

		#footer a { text-decoration:none; color:#CCC; }

		#footer a:hover { color:#f7941d; }

/* --------------------------------------------*/




