/* CSS Document */

												/*===========================*/
												/*         Common.css        */
												/*===========================*/

html, body, ul, li {
padding: 0;
margin: 0;
}

body {
background-color:#0a3003;
background-image:none;  /* FOR TESTING ONLY  */

}


/*=====================*/
/*      POSITIONS      */
/*=====================*/

div#wrapper {
width: 900px;
height: 920px;
margin:0 auto;
position:relative;
}

div#banner {
width:900px;
height:160px;
top:0px;
left:0px;
position:absolute;
}

div#content {
width: 900px;
height: 760px;
top:160px;
position:relative;
}

div#left_bar{
width:20px;
height:920px;
left:-20px;
position:absolute;
}

div#right_bar{
width:20px;
height:920px;
right:-20px;
position:absolute;
}

/*=====================*/
/*       IMAGES        */
/*=====================*/

div#banner{
background-image:url(../images/banner/banner.png);
}

div#left_bar {
background-image:url(../images/common/left_bar.gif);
}

div#right_bar {
background-image:url(../images/common/right_bar.gif);
}

/*=====================*/
/*     TEXT FORMAT     */
/*=====================*/

    /*--------------------*/
	/*     TOP NAV BAR    */
	/*--------------------*/

/* Navbar's position */
div#banner ul {
margin-top:137px;
margin-left:220px;
}

/* Navbar Item's position */
div#banner ul li{
list-style-type:none;
float:left;
margin-left:15px;
color:white;
}

/* NavBar's Font Properties*/
div#banner ul li a{
display:inline;
text-decoration:none; 
font-family:Helvetica;
font-size: 16px;
font-style: none;
font-weight: bold;
color: #FFFFFF;
}

/*   Color of Item on Hover  */
div#banner ul li a:hover{ 
color: #9e0b0f;
}

