/* CSS Document */

/*------------------------------------------------------------*
**  Global Components
**------------------------------------------------------------*/

html {
	height: 100%; 
	overflow-y: scroll;  /* Prevents page shift for scroll bar */
}

body {
	height: 100%;
	font-family: "Goudy Old Style", MyGoudyOldStyle, "Times New Roman", Times, serif;
	font-size: .8em;
	color: #000000;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	text-align: center;
	background: #FFFFFF url(images/bg.jpg) repeat-y center;
}

@font-face {
    font-family: MyGoudyOldStyle;
    font-style:  normal;
    font-weight: normal;
    src: url(fonts/goudyol0.eot);
}

/*------------------------------------------------------------*
**  Wrap (entire page)
**------------------------------------------------------------*/

#wrap {
	background: #FFFFFF;
	position: relative;
	color: #000000;
	margin: 0 auto;
	padding: 0;
	width: 770px;
	text-align: left;
	border: none;
}

/*------------------------------------------------------------*
**  Header
**------------------------------------------------------------*/

#header_container {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: 125px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	background: #D8DFD2 url(images/header.jpg) no-repeat center;
	border-bottom: 1px solid #D8DFD2;
}

/*------------------------------------------------------------*
**  Content 
**------------------------------------------------------------*/

#content_container_outer {
	position: relative;
	left: 14px;
	top: 14px;
	width: 740px;
	height: 100%;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	background: #FFFFFF url(images/tabmenu_fade.jpg) top repeat-x;
}

#content_container_inner {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	margin: 0 0 0 0;
	padding: 0 0 20px 0;
	background: #FFFFFF url(images/bottom_fade.jpg) bottom repeat-x;
	border-left: 1px solid #D8DFD2;
	border-right: 1px solid #D8DFD2;
}

/*------------------------------------------------------------*
**  Tab Menu Formatting
**------------------------------------------------------------*/

.tabmenu {
	left: 0;
	top: 0;
	width: 100%;
	height: 24px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	background: #FFFFFF;
}

#tabmenu_fade {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: 20px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	background: #FFFFFF url(images/tabmenu_fade.jpg) top repeat-x;
	border-left: 1px solid #D8DFD2;
	border-right: 1px solid #D8DFD2;
}

#menu ul{
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	white-space: nowrap;
	font-size: 1.3em;
	color: #000000;
	float: left;
	width: 100%;
	height: 20px;
	background: transparent;
	list-style: none;
}

#menu ul li{
	display: inline;
	list-style: none;
}

#menu ul li a{
	margin: 0 4px 0 0;
	padding: 1px 10px 4px 5px;
	color: #4D6C2E;
	font-weight: bold;
	text-decoration: none;
	float: left;
	background: #FFFFFF;
	border-left: 1px solid #D8DFD2;
	border-top: 1px solid #D8DFD2;
	border-right: 1px solid #D8DFD2;
}

#menu ul li a:hover{
	color: #4D6C2E;
	background: #ECF0E8;
	font-weight: bold;
	text-decoration: none;
}

#menu #current li {
	color: #000000;
	background: #ECF0E8;
}

#menu #current a {
	color: #7A6D62;
	background: #ECF0E8;
	text-decoration: none;
}

/*------------------------------------------------------------*
**  Mouseover Drop Down Menu
**------------------------------------------------------------*/

.selectedanchor { /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
	background: #ECF0E8;
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu {
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	padding: 4px 0 4px 0;
	border-left: 1px solid #D8DFD2;
	border-bottom: 1px solid #D8DFD2;
	border-right: 1px solid #D8DFD2;
	border-bottom-width: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #4D6C2E;
	line-height: 16px;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	background: #ECF0E8;
	width: 300px; /* default width for menu */
}

.anylinkmenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.anylinkmenu ul li a {
	width: 100%;
	display: block;
	border-bottom: none;
	padding: 2px 0;
	text-align: left;
	text-decoration: none;
	font-weight: bold;
	text-indent: 7px;
}

.anylinkmenu a:hover { /*hover background color*/
	color: #4D6C2E;
}

/* ######### Alternate multi-column class for drop down menus ######### */

.anylinkmenucols {
	position: absolute;
	width: 350px;
	left: 0;
	top: 0;
	visibility: hidden;
	border: 1px solid #4D6C2E;
	padding: 10px;
	font: normal 12px Verdana;
	z-index: 100; /*zIndex should be greater than that of shadow's below*/
	background: #E9E9E9;
}

.anylinkmenucols li {
	padding-bottom: 3px;
}

.anylinkmenucols .column {
	float: left;
	padding: 3px 8px;
	margin-right: 5px;
	background: #E0E0E0;
}

.anylinkmenucols .column ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

/* ######### class for shadow DIV ######### */

.anylinkshadow { /*CSS for shadow. Keep this as is */
	position: absolute;
	left: 0;
	top: 0;
	z-index: 99; /*zIndex for shadow*/
	background: #D8DFD2;
	visibility: hidden;
}

/*------------------------------------------------------------*
**  Columns
**------------------------------------------------------------*/

/* Only one column */
#cci_column {
	position: relative;
	width: 720px;
	margin: 0 0 0 0;
	padding: 0 10px 0 10px;
	background: transparent;
	font-size: 1.2em;
	color: #000000;
	text-align: left;
	list-style-type: disc;
	list-style-image: url(images/bullet.gif);
}

/* First of two columns */
#cci_left_column {
	position: relative;
	width: 560px;
	margin: 0 0 0 0;
	padding: 0 10px 0 10px;
	background: transparent;
	font-size: 1.2em;
	color: #000000;
	text-align: left;
	list-style-type: disc;
	list-style-image: url(images/bullet.gif);
}

/* Second of two columns */
#cci_right_column {
	position: relative;
	float: right;
	width: 140px;
	margin: 0 0 0 0;
	padding: 7px 10px 10px 10px;
	background: #ECF0E8;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #4D6C30;
	text-align: left;
}

/* Alternate of second of two columns */
#cci_right_column2 {
	position: relative;
	float: right;
	width: 140px;
	margin: 0 0 0 0;
	padding: 7px 10px 10px 10px;
	background: #ECF0E8;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #4D6C30;
	text-align: left;
}

/*------------------------------------------------------------*
**  Right Column Formatting for Upcoming Programming
**------------------------------------------------------------*/

#cci_right_column ul {
	margin: 0 0 0 0 !important;
	margin: 0 0 0 2px;
	padding: 0 0 0 0;
	list-style: none;
}

#cci_right_column li {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	font-size: .8em;
}

#cci_right_column .upcoming .event {
	margin: 0 0 0 15px;
	list-style-type: disc;
	list-style-image: url(images/bullet.gif);
}

/*------------------------------------------------------------*
**  Alternate Right Column Formatting for Upcoming Programming
**------------------------------------------------------------*/

#cci_right_column2 ul {
	margin: 0 0 0 17px;
	padding: 0 0 0 0;
	font-size: .8em;
	list-style-type: disc;
	list-style-image: url(images/bullet.gif);
}

#cci_right_column2 li {
	margin: 0 0 0 0;
	padding: 0 0 5px 0;
}

/*------------------------------------------------------------*
**  Footer
**------------------------------------------------------------*/

#footer {
	position: relative;
	width: 100%;
	height: 30px;
	margin: 0 0 0 0;
	padding: 5px 2px 5px 0;
	border-top: 1px solid #D8DFD2;
	font-size: .85em;
	font-family: Arial, Helvetica, sans-serif;
	color: #CCCCCC;
	text-align: center;
}

/*------------------------------------------------------------*
**  Font Styles
**------------------------------------------------------------*/

h2 {
	margin: 0 0 0 0;
	padding: 8px 0 0 50px;
	font-family: "Goudy Old Style", MyGoudyOldStyle, "Times New Roman", Times, serif;
	font-size: 2.1em;
	font-weight: bolder;
	color: #4D6C2E;
	background: url(images/title.jpg) left center no-repeat;
}

h3 {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	font-family: "Goudy Old Style", MyGoudyOldStyle, "Times New Roman", Times, serif;
	font-size: 1.2em;
	font-weight: bolder;
	color: #4D6C2E;
}

#cci_right_column h3 {
	margin: 0 0 0 0;
	padding: 0 0 10px 0;
	font-family: "Goudy Old Style", MyGoudyOldStyle, "Times New Roman", Times, serif;
	font-size: 1.1em;
	color: #4D6C2E;
}

#cci_right_column2 h3 {
	margin: 0 0 0 0;
	padding: 0 0 10px 0;
	font-family: "Goudy Old Style", MyGoudyOldStyle, "Times New Roman", Times, serif;
	font-size: 1.1em;
	color: #4D6C2E;
}

.small {
	font-family: "Courier New", Courier, mono;
	font-size: .85em;
}

/*------------------------------------------------------------*
**  Link Styles
**------------------------------------------------------------*/

a, #footer a {
	color: #87A665;
	text-decoration: none;
	border-bottom: 1px dashed;
}

a:hover {
	color: #4D6C2E;
	text-decoration: none;
	border-bottom: 1px solid;
}

#content_container_inner a, #footer a {
	color: #87A665;
	text-decoration: none;
	border-bottom: 1px dashed;
}

#content_container_inner a:hover {
	color: #4D6C2E;
	text-decoration: none;
	border-bottom: 1px solid;
}

#footer a:hover {
	color: #CCCCCC;
	text-decoration: none;
	border-bottom: 1px solid;
}

/*------------------------------------------------------------*
**  Images
**------------------------------------------------------------*/

img {
	border: none;
}

.photo {
	padding: 4px;
	display: inline;
	background: #ECF0E8;
	border: 2px solid #4D6C2E;
}

/*------------------------------------------------------------*
**  Tables
**------------------------------------------------------------*/

/* Table used on Home page to register for Egg Run & Ducky Tickets */

table.register {
	width: 100%;
	border: 0px;
}

table.register td {
	vertical-align: middle;
	text-align: center;
	
}

/* Tables used under Egg Run Results */

table.egg {
	border: 4px solid #4D6C2E;
	bordercolor: #ECF0E8;
	width: 720px;
}

table.egg thead {
	background: #ECF0E8;
	color: #4D6C2E;
	font-family: "Goudy Old Style", MyGoudyOldStyle, "Times New Roman", Times, serif;
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
}

table.egg td {
	margin: 0px;
	padding: 5px;
	border: 1px solid #ECF0E8;
	vertical-align: top;
	text-align: center;
}

/*------------------------------------------------------------*
**  Misc. Styles
**------------------------------------------------------------*/

blockquote.box {
	margin: 5px 0px 5px 0px;
	padding: 15px 5px 5px 5px;
	background: #FFFFFF url(images/tabmenu_fade.jpg) top repeat-x;
	border: 1px solid #ECF0E8;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: #7C6C61;
}

blockquote.home {
	margin: 5px 0px 5px 0px;
	padding: 15px 5px 5px 5px;
	background: #FFFFFF url(images/tabmenu_fade.jpg) top repeat-x;
	border: 1px solid #ECF0E8;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: #7C6C61;
}

.home h3 {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	font-family: "Goudy Old Style", MyGoudyOldStyle, "Times New Roman", Times, serif;
	font-size: 1.5em;
	font-weight: bolder;
	color: #4D6C2E;
}

.center {
	text-align: center;
}

#cci_left_column ul {
	list-style-type: none;
	list-style-image: url(images/bullet.gif);
}

#cci_left_column ul.arrow {
	list-style-type: none;
	list-style-image: url(images/arrow_bullet.gif);
}

#cci_left_column ul.clock {
	list-style-type: none;
	list-style-image: url(images/clock.gif);
}

/*------------------------------------------------------------*
**  Workarounds & Hacks
**------------------------------------------------------------*/

.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}

.clearfix {display: inline-table;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */