/* jlestylesheet.css */

/* Universal style rule */


	/* Block all browser default margins and padding */
	*{
	margin:0;
	padding:0;


	}
 
	
	
/* End border rules */

	/* branding bar style */
	#branding{
	  background-color:#c1ad98; /* tan */
	  
	}
	/* Fixes mystery gap */
  	#branding img{
	   display:block;
	}

/* Body Style */

	body{
	  background: #763300 url(img/leatherbg.jpg);
	  font-family: Arial, Helvetica, sans-serif;
	}

/* To fix dropdown IE6 problem */

	body {
   	  behavior: url("csshover3.htc");
}


/* Wrapper rules */

	#wrapper{
	  width:60em;
	  background: #000 url(img/sidebg.gif); /* black */;
	  /* Put 20px margin above the wrapper */
	  /* Set right and left to auto for center */
	  margin: 20px auto 0 auto;
	 }
/* Style left column */

	#leftcolumn{
	   background: #000 url(img/sidebg.gif); /* black */
	  color:#fff;
	    /* Remember - content left margin must match this width */
	  width:5em;
	  float:left;

	/* Center images and text inside left column */
	text-align:center;
	  
	}
	/* Applies to left column images */
	#leftcolumn img{
	  width:80%
	}

/* navigation bar style */
	#navbar{	 
	 /* left margin must match leftcolumn width */
	  margin-left:10em;
	  margin-right:10em;
	}
  
	/* Remove bullets from ul in navbar */
	 #navbar ul{
	   list-style-type:none;	
	}
	/* list items in navbar */
	  #navbar li{
	    float:left;
	/*Required for drop-down menus */
	  position:relative;
	 
	  }
	/* Applies to navbar links, visited and unvisited */
	#navbar a,
	#navbar a:link,
	#navbar a:visited{
	   text-decoration:none;
	   font-family:Verdana, Geneva, Arial, Sans-serif;
	   font-size:80%;
	   color:#fff;
	   background-color:#aaa;
	   display:block;
	   height:2em;
	   width:9.85em;
	   background:#000 url(img/sidebg.gif) repeat-x center;	   
	   border-right:solid 1px #aaa;
	   border-left:solid 1px #aaa;
	   text-align:center;
	   line-height:2em;
	   outline-style:none;
		
	}

	/* Navbar hover and active links */
	#navbar a:hover,
	#navbar a:active{
	  background-color:#000;
	  color:#ece5b6;
	  
	}
	/* drop down menu styles */
	#navbar li ul{
	position:absolute;
	z-index:100;
	visibility:hidden;
        }
	/* Make dropdown visible on navbar hover */
	 #navbar li:hover ul,
	 #navbar li a:hover ul{ /* IE6 hack */
	  visibility:visible;
	  top:1.6em;
	  left:0;
	 }
	/* Hover on dropdown menu links */
	 #navbar li:hover ul li a:hover,
	 #navbar li a:hover ul li a:hover{/* IE6 hack */
         }

	/* Applies to links on the dropdown menu */
	  #navbar li:hover ul li a,
	  #navbar li a:hover ul li a{/* IE6 hack */
          }
	
	/* IE6 hack applies to its table dropdown */
	  #navbar table{
	    margin:-1px;
	    border-collapse:collapse;
	    position:absolute;
	    top:0.5em;
	    left:0;
	    z-index:100;
	  }


/* Style right column */

	#rightcolumn{
	   background:#000 url(img/sidebg.gif); /* black */
	   color:#fff;
        /* Remember - content right margin must match this width */
	   width:5em;
	   float:right;
	  
	}
		/* Center images and text inside right column */
	text-align:center;
	  
	}
	/* Applies to right column images */
	#rightcolumn img{
	  width:80%
	}


	
	/* Content style rules */	
	#content{
	/* left margin must match leftcolumn width */
	margin-left:10em;
	/* right margin must match right column width */
	margin-right:10em;
	margin-top:1em;
	background-color:#c1ad98;
	color:#000;
	padding:20px 30px;	
	}

	/* Applies to all lists in the content div */
	#content ul, #content ol{
	  padding:10px 0 10px 40px;
	}

	/* Footer style rules */
	#footer{
	background:#000 url(img/sidebg.gif) repeat-x center;
	color:#fff;	
	text-align:center;
	text-decoration:none;
	font-size:0.8em;
	}
	

	