/*---------------------------------------------------------------
PRIMARY COLORS:
color1 - Darker that DarkGreen: #004400 
	-Site/Page Background
	-Link Text Color (within tables)
color2 - Dark Gold:  rgb(175, 129, 20)
	-Header/Footer Text Color
	-Table Border 
color3 - Dark Khaki: rgb(189, 183, 107)
	-Text Color
	-Line Color
	-Link Color (outside of tables)
	-Table "Even" Row Color

SECONDARY COLORS:
color4 - Darker Khaki: rgb(104, 100, 47)
	-Table Header Cell Color
color5 - Off White:  rgb(227, 225, 193)
	-Table "Odd" Row Color
Default - Black 
	-Table (Non-Link) Text Color

---------------------------------------------------------------*/ 


/*--------------Text (and Links)------------------------------------*/
/*span {font-size: 100%;}  isn't necessary as span will default font size to 100%*/
span.size70 {font-size: 70%;}
span.size80 {font-size: 80%;}
span.size90 {font-size: 90%;}
span.size125 {font-size: 125%;}
span.size200{font-size: 200%;}
span.size300 {font-size: 300%;}

dfn.color1 {color: #004400; font-style: normal;}
dfn.color2 {color: rgb(175, 129, 20); font-style: normal;}
dfn.color3 {color: rgb(189, 183, 107); font-style: normal;}

b {letter-spacing: -0.5px;}  /*Must decrease spacing since bold spaces the letters out too much*/

a.color1:link,a.color1:visited,a.color1:active {
	color: #004400; 
	text-decoration: none;
	font-weight: bold;
	letter-spacing: -0.5px;  /*Must decrease spacing since bold spaces the letters out too much*/
}
a.color1:hover {text-decoration: underline}

a.color2:link,a.color2:visited,a.color2:active {
	color: rgb(175, 129, 20);
	text-decoration: none;
	font-weight: bold;
	letter-spacing: -0.5px;  /*Must decrease spacing since bold spaces the letters out too much*/
}
a.color2:hover {text-decoration: underline;}

a.color3:link,a.color3:visited,a.color3:active {
	color: rgb(189, 183, 107);
	text-decoration: none;
	font-weight: bold;
	letter-spacing: -0.5px;  /*Must decrease spacing since bold spaces the letters out too much*/
}
a.color3:hover {text-decoration: underline;}

/*--------------Images------------------------------------*/
img.floatLeft {
	float: left
}

img.floatRight {
	float: right
}

img.maxWidth {
	width: 885;
}

/*Used with Players and Coaches individual photos*/
img.profile {  
	border-color: #004400;
	border-style: solid;
	border-width: 0px 1px 0px 0px;
}





/*--------------Misc------------------------------------*/
hr.site {
	height: 0;
	border: 0;
	border-top: 1px solid rgb(189, 183, 107);
	clear: both;
}



/*--------------Dividers------------------------------------*/
body {
	background: #004400;
	/*background-image: url('static\FadingGreenBackground.jpg');
	background-repeat: repeat;*/
	text-align: center;
}

div.left {
	clear: both;	
	text-align: left;
}

div.floatLeft {
	float: left;
}

div.floatRight {
	float: right;
}

div.page {
	position: relative;
	width: 900px;
	margin: 0 auto; /*For Firefox only?*/
	/*background: #004400;*/
	text-align: center;
}

/*--------------Tables------------------------------------*/
table.data {
	color: black; /*Text Color*/
	border-top: 7px solid rgb(175, 129, 20); /*length, type, color*/
	border-right: 1px solid rgb(175, 129, 20); /*length, type, color*/
	border-bottom: 1px solid rgb(175, 129, 20); /*length, type, color*/
	border-left: 10px solid rgb(175, 129, 20); /*length, type, color*/
	border-spacing: 0;
	empty-cells: show;
	border-collapse: collapse;
}

table.hofData {
	color: black; /*Text Color*/
	border-top: 1px solid black; /*length, type, color*/
	border-right: 1px solid black; /*length, type, color*/
	border-bottom: 1px solid black; /*length, type, color*/
	border-left: 1px solid black; /*length, type, color*/
	border-spacing: 0px;
	empty-cells: show;
	border-collapse: collapse;
}

th {
	border-color: rgb(175, 129, 20); /*Border Color*/
	border-width: 1px 1px 1px 1px;
	border-style: none;
	/*if set to none, nullifies other boder attributes (ie. colder, width)*/
	text-align: left;
	vertical-align: top;
	padding-right: 10px;
	padding-left: 10px;
	background: rgb(104, 100, 47); /*Cell Background Color*/
}

tr.odd {
	background: rgb(227, 225, 193); /*Cell Background Color*/
}

tr.even {
	background: rgb(189, 183, 107); /*Cell Background Color*/
}

td.noPadding {
	padding-top: 0px;
	padding-bottom: 0px;
	padding-right: 0px;
	padding-left: 0px;
}



