﻿/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	border-style: none;
	border-color: inherit;
	border-width: 0;
	margin: 0 0 0 0;
	padding: 0;
	outline: 0;
	font-size: 100%;
	width: 300;
	right: auto;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #757575;
	line-height: 14px;
	font-size: 11px;
	color: #2c2d2e;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	margin: 0 0 0 0;
/* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* Commonly used to style page titles. */
h1 {
	line-height: 14px;
	color: #777890;
	font-size: 16px;
	font-weight: bold;
}
/* Commonly used to style section titles. */
h2 {
	line-height: 14px;
	color: #777890;
	font-size: 14px;
	font-weight: bold;
}
h3 {
	line-height: 14px;
	color: #777890;
	font-size: 12px;
	font-weight: bold;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #DF0000;
	font-weight: bolder;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #FF0000;
	font-weight: bolder;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
/* Sets the style for a link that has focus. */
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #383644;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	width: 760px;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 20px auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #header {
	background-color: #9ea3aa;
	height: 230px;
	line-height: 15px;
	font-size: xx-small;
	background-repeat: no-repeat;
	font-style: italic;
	padding: 10px;
/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */	font-weight: bolder;
	background-image: url('../imagessite/oz_header.jpg');
	border-bottom: solid 1px #767a7f;
	color: #BA0803;
}
#outerWrapper #header h1{
	line-height: 15px;
	font-size: 18px;
	font-style: italic;
	padding-left: 180px;
	color: #BA0803;
	top: 35px;
	position: absolute;
}
#outerWrapper #header h2{
	line-height: 15px;
	font-size: 14px;
	font-style: italic;
	padding-left: 180px;
	color: #BA0803;
	top: 65px;
	position: absolute;
}
a:focus {
	color: #3a32c4;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #f4f2fc;
	float: left;
	border-right: solid 1px #9ea3aa;
/* Sets the right border properties for an element using shorthand notation */	width: 158px;
	padding: 10px 10px 10px 10px;
}
a:hover {
	color: #3a32c4;
	text-decoration: underline;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	padding: 10px 10px 10px 10px;
	border-left: solid 1px #9ea3aa;
/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */	margin: 0 0 0 178px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
	display: block;
	clear: left;
}
#outerWrapper #footer {
	background-color: #000000;
	border-top: solid 1px #9ea3aa;
/* Sets the top border properties for an element using shorthand notation */	color: #ffffff;
	padding: 10px 10px 10px 10px;
	text-align: center;
}
#outerWrapper #footer a:active {
	color: #fbfbfb;
}
#outerwrapper #header .button-container {
	width: 154px;
	top : 0px;
	position: fixed;
	left: 0px;
}

/* CSS Tabs */
#button {
	width: 154px;
	padding: 0 0 1em 0;
	margin-bottom: 1em;
	font-family: Tahoma, Arial, sans-serif;
	font-size : 10px;
	color: #BA0803;
	line-height: normal;
	text-align: center;
}
#button ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border: none;
}
#button li {
	margin: 0;
	list-style: none;
	list-style-image: none;
}
#button li a {
	display: block;
	padding: 5px 5px 5px 0.5em;
	color: #B90803;
	text-decoration: none;
	width: 100%;
}
html > body #button li a {
	width: auto;
}
#button li a:hover {
	color: #FF0000;
}
#button li #active {
	color: #FF0000;
}
/* Top menu */
.navt {
	margin : 0;
	padding : 0;
	font-family: Tahoma, Arial, sans-serif;
	font-size : 1em;
	font-weight: bold;
}
.navt ul {
	float : right;
	margin : 0;
	padding: 0 5px 0 0;
	border-left : 1px solid rgb(115, 162, 182);
	background-color : transparent;
	font-weight : bold;
	border-left-color: #FFFF00;
}
.navt li {
	display : inline;
	list-style : none;
	margin : 0;
	padding : 0;
}
.navt li a {
	display : block;
	float : left;
	margin : 0;
	padding: 2px 3px 2px 3px;
	border-right : 1px solid rgb(115, 162, 182);
	color: #FFFF00;
	text-decoration : none;
	font-size : 10px;
	border-right-color: #FFFF00;
	font-weight: bold;
}
.navt a:hover, .nav2 a.selected {
	color: #CC3300;
	text-decoration : none;
}

/* bottom menu */
#navb-container {
	margin: 10px auto -20px auto;
	font-size: 0.8em;
	width: 760px;
	background : transparent;
}
#navb-container p {
  text-align: right;
  color: #EFD10D;
}

/*  new css */
.side1 {
	border: thin solid #fff;
	background: #F1A525;
	text-align : left;
	margin : 10px 0 0 0;
	font-size : 8pt;
	width: 148px;
	padding-top: 5px;
	padding-right: 3px;
	padding-left: 3px;
}
.side1 h2 {
	border-style: solid;
	color: #FDF144;
	background-color: #C76707;
	border-bottom-width: thin;
	padding-bottom: 4px;
	border-bottom-color: #CC9900;
}
.side2 {
	border: thin solid #fff;
	background: #F0A118;
	text-align : left;
	margin : 10px 0 0 0;
	font-size : 8pt;
	width: 148px;
	padding-top: 5px;
	padding-right: 3px;
	padding-left: 3px;
}
/* Misc */
img.photosmall {
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #CCCCCC;
	background: #E0E0E0 url("../../background_table_04.gif") repeat-x;
	padding: 6px;
	margin-right: 2px;
	margin-bottom: 2px;
	float: left;
}
img.photosmall_c {
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #CCCCCC;
	background: #E0E0E0 url("../../background_table_04.gif") repeat-x;
	padding: 6px;
	margin-right: 2px;
	margin-bottom: 2px;
}
.table_p {
}
.table_p td {
	padding: 2px;
	text-align: center;
	border-width: 2px;
	font-size: xx-small;
	vertical-align: top;
}
.clear {
  clear: both;
}
.date {
	color: #808080;
	background: #FFFFFF;
	text-align: right;
	margin: 4px 0 5px 0;
	padding: 0.4em 0 0 0;
	border-top: 1px solid #eee;
	border-top-width: 1px;
}

