/* this is a comment */

body {
	background: #ffeeaa;
	font: 1em Arial;
	margin: 0;
	text-align: center; /* for IE < 7 compatibility */
	background-image: url(pictures/shadow.png);
	background-position: top center;
	background-repeat: repeat-y;
}

a {
	color: IndianRed;
	text-decoration: none;
}

a:hover { /* the first pseudoclass */
	color: red;
	text-decoration: underline;	
}

.main {
	margin: auto;
	width: 950px;
	text-align: left;
	border: solid 1px #68a;
	border-bottom: 0; 
}

.header { /* our page header */
	font-family: Century Gothic;
	position: relative;
	padding:  5px;
	height: 190px; /* for IE */
	background-color: #68a;
	background-image: url(pictures/header.jpg);
	background-position: top right;
	background-repeat: no-repeat;
	color: white;
}

h1 {
	margin: 0;
	/* no space between h1 and preceding/following
	   shorthand: you can also use
	    - 2 values: first value vertical, second: horizontal.
	    - 3 values: top side bottom,
	    - 4 values clockwise starting from top */
	padding: 0;

}

#logo { /* # is unique id, used only once for document */
	float: left;
	margin-right: 10px;
}

.head-quote {
	position: absolute;
	bottom: 1.6em;
	right: 0;
	opacity: 0.7;
	filter: alpha(opacity=70);
	font: bold 1.25em "Franklin Gothic Medium Cond", "Franklin Gothic Medium", sans-serif;
}

.tabs {
	margin: 0;
/*	border-bottom: solid 1px black;*/
	padding: 2px 5px 0;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 265px;
	font: bold 1em Arial Narrow, Franklin;
}

.tabs li {
	display: inline-block;
	width: 110px;
	list-style-type: none !important;
	float: left; /* stack 'tab' on left side */
	margin-left: 2px;
	position: relative;
}

.tabs a {
	display: block;
	width: 100%;
	padding: 3px 0;
	text-align: center; 
	text-decoration: none;
	color: yellow;
	background-color: #228;
	border-radius: 7px 7px 0 0;
	-moz-border-radius: 7px 7px 0 0;
	-webkit-border-radius: 7px 7px 0 0;
}

.current_page_item a {
	background-color: #d8e8ff;
	color: black;
	padding-bottom: 8px;
	margin-bottom: -5px;
	background-image: url(pictures/border1.png);
	background-repeat: no-repeat;
	background-position: bottom right;
}

.tabs ul {
	width: auto;
	clear: both;
	position: absolute;
	list-style-position: inside;
	left: -1px;
	right: -1px;
	padding: 3px 0;
	margin: 0;
	-moz-border-radius: 0 0 3px 3px;
	display: none;
	border: solid 1px #68a;
	border-top: 0;
	background-color: #228;
}

.tabs li:hover ul {
	display: block;
}

.tabs ul a {
	display: inline-block;
	width: 100%;
	background: none;
	text-align: left;
	padding: 3px;
	margin: 0;
}

.tabs ul li {
	width: 81%;
	padding: 0 3px 2px 15px;
	margin: 0 1px;
	font: normal 0.75em Arial, helvetica;
	background-image: url(pictures/ms-white.png);
	background-position: 2px 5px;
	background-repeat: no-repeat;
}

.tabs ul li:hover {
	background-color: #33c;
}

.current_page_item ul, .tabs ul .current_page_item {
	background-color: #d8e8ff;
}

.current_page_item ul li, .tabs ul .current_page_item {
	background-image: url(pictures/ms-black.png);
}

.current_page_item ul li:hover, .tabs ul .current_page_item:hover {
	background-color: white;
}

.content {
	background-color: white;
	background-image: url(pictures/bg1.png);
	background-repeat: repeat-x;
}

.footer {
	padding: 2px;
	font-size: 0.9em;
	text-align: center;
	color: gray;
	border-top: solid 1px grey;
	background-color: white;
}

.footer ul {
	display: block;
	text-align: center;
	margin: 0;
	padding: 0;
}

.footer ul li {
	display: inline;
	margin: 0;
	padding: 0 0 0 4px;
	border-left: solid 2px grey;
}

.footer ul li:first-child {
	border: 0;
}

.footer ul ul {
	display: none;
}

.footer .current_page_item {
}

.footer .current_page_item a {
	color: gray;
	background: none;
}

.footer .current_page_item a:hover {
	color: gray;
	text-decoration: none;
}