@charset "UTF-8";
/* CSS Document */<style type="text/css">
	/*
	# means id
	. means class
	one way of targeting an html img element with a class name of "fr" is:
	
	img.fr
	
	
*/
   <--
    body {
        font-family: Arial, Helvetica, sans-serif;
		font-size: 12px;
        background: #999;
    }
    
	p { margin: 10px 0; }
	
	a,
	a:link,
	a:visited,
	a:active {
		color: #666;
		text-decoration: none;
	}
	
	a:hover,
	a.current {
		color: #92732A;
	}
	
    #wrapper {
		position: relative;
        width: 960px;
		height: 500px;
        margin: 10px auto;
		padding: 20px;
		background: #fff;
    }
	
	#header {
		position: relative;
		overflow: hidden;
		height: 140px;
		border-right: 1px solid #999;
		border-bottom: 1px solid #999;
	}
	
	#header ul {
		font-size: 10px;
		text-align: right;
	}
	
	#header li {
		display: inline;
		margin: 0 10px 0 0px;
	}
	
	#header #main-nav {
		position: absolute;
		bottom: 0;
		right: 20px;
		font-size: 14px;
	}
	
	#header #main-nav li {
		float: left;
		border-right: 1px solid #999;
		padding: 0 10px 2px 10px;
	}
	
	#header #main-nav li a:links, #header #main-nav li a:visited{
		color: #FFCC00;
	}
	
	#content {
		border-left: 1px solid #999;
		min-height: 370px;
		padding: 20px;
	}
	
	
	#footer ul {
		position: relative;
		bottom: -15px;
		font-size: 12px;
	}
	 
	 #footer li {
	 	display: inline;
		margin: 5px;
	 }
	
	.no-border { border: none!important; }
	img.fl { float: left; padding: 2px 10px 5px 0;}
	img.fr { float: right; padding: 2px 0 5px 10px; }
	
	
	img.fr{
	   border: 2px solid
	}
	
    -->
 

