@charset "utf-8";
@media all
{
/* 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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* 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 {
  color: #000;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  background: url(../img/page_background-new3.jpg) repeat-x #00397D; 
  font-size: 0.9em;
  line-height: normal;
  font-weight:normal;
  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) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  font-size: 2.0em;
  line-height: 28px;
  margin: 0;
  font-family:Garamond, "Times New Roman", Times, serif;
  color: #00397D;
}
/* Commonly used to style section titles. */
h2 {
  color: #4f82a3;
  font-size: 1.6em;
  line-height: 24px;
  font-family:Garamond, "Times New Roman", Times, serif;
  margin: 1.1em 0 0 0;
}
h3 {
   margin: .83em 0 0 0;
}
h4 {
  color: #4f82a3;
  font-size: 1.3em;
  line-height: 20px;
  font-family:Garamond, "Times New Roman", Times, serif;
  margin: 1.1em 0 0 0;
}

li { margin-top:10px; margin-bottom:10px;}
/* Sets the style for unvisited links. */
a,  a:link {
/*  color: #4f82a3; */
  color: #295DB3;
  font-weight:500;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {

}
/* Sets the style for links on mouseover. */
a:hover {

}
/* Sets the style for a link that has focus. */
a:focus {
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
}
.center {
	text-align: center;
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
blockquote, .quote {
  font-size:.85em; font-style:italic; text-align:center;
  background: url(../../images/leftquote.gif) no-repeat top left;
  text-indent:25px;
  line-height: 150%;
}
.quotename { font-size:.8em; font-style:italic; text-align:right;}
.caption {
  font-size:.8em; font-style:italic;
}
.pdfdoc {
  font-size: 0.8em;
}
.red {
  color: #660000;
}
.separator {
   margin-top: 10px;
   margin-bottom: 10px;   
}
.blue { color:#4f82a3;}
.maroon { color:#77192f; }
div.redButton {
	float: left;
	/*background-color:#A5C3FF; */
	background-color: #00397D;
	width: 120px; 
	text-align:center; 
	<!--margin: auto;-->
	border: #81182A outset thin;
	padding: 5px;
	color: #FFFFFF;
}
div.redButton a {
	text-decoration: none;
	font-weight: bold;
	color: #FFFFFF;
}
div.redButton:link {
	text-decoration: none;
}
div.redButton:hover {
	background-color: #9EC0DA;
	display:block;
	color: #2C1186;
	border: #4f82a3 inset thin;
	font-weight: bold;
}
a.buttonLink {
	text-decoration: none;
}
div.blueButton {
	/*float:right; */
	/*background-color:#A5C3FF; */
	background-color: #355D77;
	font-size: 140%;
	width: 175px; 
	text-align:center; 
	margin: auto;
	border: #BAC4CD outset 2px;
	padding: 15px;
	color: #FFFFFF;
	font-style: italic;
}
div.blueButton a {
	text-decoration: none;
	font-weight: bold;
	color: #FFFFFF;
}
div.blueButton:link {
	text-decoration: none;
}
div.blueButton:hover {
	background-color: #9EC0DA;
	display:block;
	color: #BAC4CD;
	border: #355D77 inset 1px;
	font-weight: bold;
}
.mission {
	font-weight: 600;
	text-align: left;
	margin-bottom: 8px;
	text-align:left;
	font-size: 90%;
	color: #000000;
}

img.right {
	float: right;
	margin-left: 8px;
	margin-bottom: 5px;
}

img.left {
	float:left;
	margin-right: 8px;
	margin-bottom: 5px;
}

form.volunteers label {
	width: 8em;
	float: left;
	text-align: right;
	margin-right: 0.5em;
	display: block
}
form.volunteers input.submit
{
	margin-left: 250px;
	background-color: #00397D;
	text-align:center; 
	border: #81182A outset thin;
	padding: 5px;
	color: #FFFFFF;
} 

#sidebar img {text-align:center;}
.scholar { font-size:.8em; font-style:italic;}
/* 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: url(../img/page_background.jpg) repeat-x #003A7C; 
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 980px;
}
#outerWrapper #header {
	height:175px;
	background: url(../img/header_background-2012-web.png) no-repeat #FFFFFF;
}
#outerWrapper #contentWrapper {
	background: url(../img/content_bkgrd_250_blue_home-new.gif) repeat-y #FFFFFF; 
}

#outerWrapper #contentWrapper #sidebarWrapper {
  float: right;
  width: 250px;
  margin-left: 25px;
  background:none;
  height:100%;
  margin-right:0px;
}
#sidebar { 
position:relative;
top:0px;
padding: 0px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
font-size: 90%;
color: #000000;
}
#sidebar h3 { 
  font-size: 1.2em;
background:#003A7C;
color: #224388;
  padding:5px 15px;
  display:block;
  margin-left:-10px;
  margin-right:-10px;
  text-align:left;
}

#sidebar blockquote {
   margin: 5px 0px;
}

/*#sidebar a {
	color: #FFFFFF;
}*/

#outerWrapper #nav {
	position: relative top !important;
	background: url(../img/nav_bkgrd-2012.gif) no-repeat bottom;
	height:35px;
	width:980px;
}

/* 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 {
	margin: 0 275px 0 10px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 60px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

#content { position:relative; top:-50px;}
/* 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 {
  clear: right;
  display: block;
  height: 1px !important;
}

#social { 
	margin-top:-20px;
	background:url(../img/sidebar_top-inside-2012.jpg) no-repeat;
	text-align:center;
	padding-right: 10px;
}

#social img {
	margin-bottom: 3px;
	margin-right: 3px;
}

#outerWrapper #footer {
  border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
  background:url(../img/footer_bkgrd.jpg) no-repeat #DDDDDD;
  width:980px;
  height:111px;
}

#copyright { 
  float:left; 
  width:300px; 
  color:#FFFFFF; 
  margin-left:160px; 
  margin-top:50px;
  font-weight:bold;
}

#mailingaddress { 
  float:right; 
  width:500px; 
  color:#FFFFFF; 
  margin-right:20px; 
  margin-top:50px; 
  text-align:right;
  font-weight:bold;
}

#footer a { color:#FFFFFF;}
}
#footernote { font-size: .7em; margin-top:10px; float:right; width: 40%; line-height:1.2em;}

table#sponsors {
	border: 0px !important;

}
table.results {
	width: 100%;
	border: 1px solid #B7D2E7;
}
table.results tr {
	border: thin dotted #B7D2E7;
}
table.results td {
    border: thin dotted #B7D2E7;
}
table.results th {
	border: thin dotted #B7D2E7;
    background: #B7D2E7;
	color: #00397D;
	font-weight: bold;
}
div.buttonDiv {
	float: right !important;
	margin-right: 20px;
}
form.sponsorship label span {
	width: 10em;
	float: left;
}
div#golf_slideshow_wrapper {
	margin-top: 185px;	
}
div#golf_slideshow_wrapper h2 {
	text-align: center;
	padding-bottom: 7px;
}
div#golf_slideshow {  
    width:  482px;  
    height:   333px;  
    padding: 0;  
    margin:  0;
	border:  1px solid #ccc;  
    background-color: #eee;  
	margin-left: auto;
	margin-right: auto;
} 
 
div#golf_slideshow img {  
    padding: 15px;  
    width:  450px; 
    height: 301px; 
   /* top:  0; 
    left: 0 */
} 
div#golf_slideshow div.caption {
	font-size: 85%;
	font-style: italic;
	text-align: center;
	padding-top: 8px;
}
@media print 
{
/* It is common to set printer friendly styles such as a white background with black text. */
body {
  background-color: #fff;
  background-image: none;
  border-color: #000; /* Sets the border color properties for an element using shorthand notation */
  color: #000;
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
} 

