@charset "utf-8";
/* CSS Document */





/*/////////////////////////////////////////////////< GENERAL RULES START>//////////////////////////////////////////////////////////////////*/
body {
	width:899px;
	padding:0;
	font-size:80%;
	font-family:'Lucida Grande', Verdana, sans-serif;
	margin:auto;
	background-color:black;
}

a {
	color:#990000;
	text-decoration:none;
	font-weight:bold;
}

a:hover {
	color:#ff0000;
}

p {
	font-family: 'Lucida Grande', Calibri, Arial, Helvetica, sans-serif;
	font-size:120%;
	line-height:150%;
	padding:0;
	margin:0;
}




p img {
	float:left;
	border:1px solid #000;
	padding:2px;
	margin:0 5px 5px 0;
}


H1 {	
	font: 28px Cambria, "Times New Roman", Georgia, sans-serif;
	color:#0101a3;
	padding:0 0 0 35px;
	margin:0px;
	background:url(../images/layout/header_bullet.gif) no-repeat;
	border-bottom: 1px solid #000033;
	font-weight:100;
}

H2 {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	/*font-family: "Trebuchet MS", "Lucida Sans Unicode", Georgia, "Times New Roman", Times, serif;*/
	color:#0101a3;
	padding:0;
	margin:0;
	font-style:italic;
	border-bottom: 1px solid #CCC;
}

H3 {
	font-size:12px;
	font-family:"Lucida Sans Unicode", Tahoma, Georgia, "Times New Roman", Times, sans-serif;
	color:#000033;
	padding:0;
	margin:0;
}

H4 {
	margin:0;
	padding:0;
}

ul{ 
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 0px; 
}

ol {
	margin:0;
	padding:0 0 0 20px;
}

div {
	margin:0;
	padding:0;
}



dt {
	font-family: Georgia, "Times New Roman", Times, serif;
	color:#0101a3;
	margin-bottom:20px;
	font-size:24px;
}

dd {
	margin-bottom:20px;
	padding:0 0 0 18px;
	border-bottom:1px dashed black;
	background:url(../images/layout/definition_bullet.gif) no-repeat;
	
}

.noborder img {
	border:none;
}

ol {
	color:white;	
}

/*/////////////////////////////////////////////////< GENERAL RULES END >//////////////////////////////////////////////////////////////////*/



/*/////////////////////////////////////////////////< UL LINKS BEGINS >//////////////////////////////////////////////////////////////////*/

.ullinks h4 {
	text-transform:capitalize;
	color:white;
	display:block;
	background-color:#66CC00;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	text-align:center;
}

.ullinks ul li {
	text-transform:capitalize;
	color:black;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:9px;
	text-align:left;
	padding-bottom: 5px;
	background-color:white;
}


/*/////////////////////////////////////////////////< UL LINKS END >//////////////////////////////////////////////////////////////////*/



/*/////////////////////////////////////////////////< HEADER START>//////////////////////////////////////////////////////////////////*/

#masthead {
	width:899px;
	height:110px;
	margin:0 0 0 0;
	/*padding:10px;*/
	background:url(http://www.sftc.us/images_offline/index_header.gif);
	background-color:#2747DE;
}

/*/////////////////////////////////////////////////< NAVIGATION BAR START>//////////////////////////////////////////////////////////////////*/


#navleft {
	float:left;
}

#navright {
	float:right;
}

#navleft img {
	border:none;
	margin:0;
	padding:0;
}

#navright img {
	border:none;
	margin:0;
	padding:0;
}

/*
Container for the menu. We set top and bottom borders only because the menu container
stretches the entire window width. Note that this container can go inside a fixed width
element that is centered on the page, if you so desire. It can even go inside a table cell.
It carries a background image for aesthetics.
*/
#menuwrapper {
	/*border-top: 1px solid #000;*/
	/*border-bottom: 1px solid #333;*/
	/*background-color: #909090;*/
	/*background-image: url(images/p7exp_mbar.jpg);*/
	background:url(../images/layout/nav_bg.gif);
	background-repeat: repeat-x;
	/*border-bottom: 1px solid #fff;*/
	margin-bottom:10px;

}
/*Clears the floated menu items.
Assigned to a BR tag placed just before
menuwrapper's closing DIV tag*/
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}
/*
p7menubar is the root UL and p7menubar ul applies to all the sub-menu ULs.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
and set a font-family different from the global font-family declared for the
body element above. This sets font for just the menu. Do not add a font-size here.
*/
#menubar, #menubar ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
Font color is set to light gray.
*/
#menubar a {
	display: block;
	text-decoration: none;
	padding: 5px 10px 5px 10px;
	border-right: 1px solid #333;
	font-size: .85em;
	color: #ffffff;
	font-weight:bold;
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the p7menubar a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#menubar a.trigger {
	padding: 5px 16px 5px 10px;
	background-image:url(../images/layout/nav_arrow.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
/*
The Root-Level list items. Floating left allows
them to appear horizontally. Width is for IE5 Mac. The last rule in
this style sheet will set the width for this element to auto for all
other browsers - hiding it from IE5 Mac. The width is proportional.
As you add and edit root menu items, you will need to test this width
to ensure it is wide enough to accomodate all text.
*/
#menubar li {
	float: left;
	width: 9em;
}
/*
Sets width for Sub-Menu box and the List Items inside - in proportional em units. 
This allows the sub-menu width to expand if users resize the text in their browsers.
*/
#menubar li ul, #menubar ul li  {
	width: 12em;
}
/*
The sub-menu links. We set color and turn off the right border, which
would otherwise be inherited from the root link rule. We set top and 
bottom padding less than the root items and increas the left padding
to indent the sub-menu links a small amount in from the root links.
*/
#menubar ul li a  {
	color: #FFFFFF;
	border-right: 0;
	padding: 3px 12px 3px 16px;
	border-bottom:1px solid #333;
	font-weight:bold;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/

/* --------------------------------------------------changes submenu--------------------------------------------------*/

/* Only general chnages no to the actual text */

#menubar li ul {
	position: absolute;
	display: none;
	background-color: #e5e3e3;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	border-left: 1px solid #333;
	/*background-image: url(images/p7exp_mgrad.jpg);*/
	background-repeat: repeat-x;
}



/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#menubar li:hover a, #menubar a:focus,
#menubar a:active, #menubar li.p7hvr a {
	color: #FFFFFF;
	background-color: #6789bd;
	background:url(../images/layout/btn_on.gif) repeat-x;
	font-weight:bold;
}

	
/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#menubar li:hover ul, #menubar li.p7hvr ul {
	display: block;
	
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
menu items are moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
The color set should march the normal Sub-Level link color
in the rule: #p7menubar ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#menubar li:hover ul a, #menubar li.p7hvr ul a {
	color: #000000;
	background-color:#e5e3e3;
	background:url(../images/layout/bg_sub_menu.jpg) repeat-x;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#menubar ul a:hover {
	background:url(../images/layout/bg_sub_menu_over.jpg) repeat-x!important;
	background-color: #cb302e!important;
	color: #FFFFFF!important;	
}

/* The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width.
Do not edit this rule in any way. */
#menubar li {width: auto;}

/*/////////////////////////////////////////////////< NAVIGATION BAR END >//////////////////////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////< MAIN CONTENT BEGINS >//////////////////////////////////////////////////////////////////*/

#content { /*orange color e07b01*/
	width:690px;
	padding:0px;
	background:#fff;
}

#content4accordions {
	width:690px;
	padding:0;
	background:white;
}


#contentH { /*--------------------------CONTENT HEADER-------------------------------*/
	height:32px;
	line-height:29px;
	margin:0;
	padding:0;
	background:url(../images/layout/content_header_bg.gif) repeat;
	background-color:#000;
	font-family: 'Lucida Sans Unicode', 'Lucida Grande', Verdana, sans-serif;
	font-size: 20px;
	color:white;
	text-align:center;
}

#contentH H3{
	color:white;
	font-style:normal;
	font-size:20px;
}


#contentF { /*--------------------------CONTENT FOOTER-------------------------------*/
	height:30px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:9px;
	color:black;
	margin:0;
	padding-left:10px;
	background:url(../images/layout/content_footer.gif) repeat;
	background-color:#fff;
	clear:both;
	width:680px;
	float:left;
}

.ftrparagraph {
	line-height:29px;
	font-size:9px;
}

#contentF a{
	color: black;
	font-size:9px;
}
	
#contentF a:hover{
	color: white;	
}

#contentF p{
	border:none;
	padding:0;
	margin:0;
	clear:both;
}

#contentmain {
	width:670px;
	float:left;
}

.contentfill {
	margin:0px;
	padding: 10px;
	/*border-bottom: 1px dashed #000;*/
	width:670px;
	float:left;
	background:white;
	/*border-right: 1px solid #000;*/
}

#contentgallery {
	background-color:#333;
}

.datetitle {
	color:#990000;
	text-align:right;
	margin-bottom:10px;
	font-size:10px;
}
	
#contentright {
	width:170px;
	float:right;
	overflow:hidden;
	padding: 35px 10px 10px 0px;
	/*border-left: 1px solid #000;*/
}

.contentfillright {
	border-bottom: 1px dashed #000;
	width:170px;
	float:right;
	overflow:hidden;
}

.image_float {
	float:left;
	margin: 0 25px 5px 0;
	text-align:center;
}

.image_float2 {
	float:left;
	margin: 0 0 5px 0;
	text-align:center;
}

.spacer {
	clear:left;
}

.doubles_pics {
	width:187px;
	float:left;
	text-align:center;
	margin:0 130px 5px 0;
}

.picsholder {
	width:650px;
	text-align:center;
}

.ladder_table {
	text-align:center;
	color:black;
}

.table_header {
	background-color:#FF9900;
	font-size:16px;
}


/*.ladder_table table {
	text-align:center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}

.ladder_table th, td {
	padding:3px;
	text-align:center;
}

.ladder_table th {
	color:#000;
	background-color:#333;
	border-right: 2px solid white;
}

.ladder_table td {
	background-color: #DDD;
	color:black;
	border-right:2px solid #fff;
	border-bottom:2px solid #fff;
	text-align:center;
}

.ladder_table td a{
	color:white;
	background-color:#000;
	display:block;
}

.ladder_table td a:hover{
	background-color:#990000;
	display:block;
	color:white;
	padding: 0;
}*/

table {
	text-align:center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
}



th {
	color:#fff;
	background-color:#333;
	font-weight:bold;
	font-size:14px;
	text-transform: uppercase;
	text-align:center;
	margin:0px;
	padding:0px;
}

td {
	background-color: #DDD;
	color:black;
	border-right:2px solid #fff;
	border-bottom:2px solid #fff;
	text-align:center;
}

td a{
	color:white;
	background-color:#000;
	display:block;
}

td a:hover{
	background-color:#990000;
	display:block;
	color:white;
	padding: 0;
}


.ladder_divider {
	background-color:white;
}



/*/////////////////////////////////////////////////< MAIN CONTENT END >//////////////////////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////< COLUMN BEGINS >//////////////////////////////////////////////////////////////////*/
	
#sidebar_b {
	padding:0px;
	margin:0px;
	float:right;
	width:199px;
}

#sidebar_b ol {
	text-align:left;
	font-size:11px;
}


.sidebar_bH { /*--------------------------COLUMN HEADER ONLY THE FIRST ONE---------------------------*/
	background:url(../images/layout/column_header_bg.gif);
	background-color:#FFF;
	padding:0;
	margin:0;
	height:32px;	
	line-height:29px;
	font-family: 'Lucida Sans Unicode', 'Lucida Grande', Verdana, sans-serif;
	font-size: 20px;
	color:white;
	text-align:center;
}

.sidebar_bH H3{/*--------------------------COLUMN HEADER TEXT ONLY THE FIRST ONE---------------------------*/
	color:white;
	font-style:normal;
	font-size:20px;
	padding:0;
	margin:0;
}

.sidebar_bH2 { /*--------------------------COLUMN HEADERS ALL EXCEPT THE FIRST ONE---------------------------*/
	background:url(../images/layout/column_header_bg.gif);
	background-color:#FFF;
	padding:0;
	margin:10px 0 0 0;
	height:32px;	
	line-height:29px;
	font-family: 'Lucida Sans Unicode', 'Lucida Grande', Verdana, sans-serif;
	font-size: 20px;
	color:white;
	text-align:center;
}

.sidebar_bH2 H3{/*--------------------------COLUMN HEADER TEXT ALL EXCEPT FIRST ONE---------------------------*/
	color:white;
	font-style:normal;
	font-size:20px;
	padding:0;
	margin:0;
}
	

#sidebar_bF {/*--------------------------COLUMN FOOTER-----------------------------*/
	background:url(../images/layout/column_footer.gif);
	background-color:#FFF;
	padding:0;
	margin:0;
	height:30px;
	clear:both;
	width:199px;
	float:right;
}


.columnfill {
	padding:8px;
	background-color: #fff;
	border-bottom: 1px solid #000;
	text-align: center;	
}

.columnfill p{
	font-size:12px;
	text-align:justify;
}

.columnfill ul{
	text-align:left;
	padding-left:5px;
}

img {
	text-align:center;
	float:none;
	margin:auto;
	border:1px solid #000;
	padding:2px;
	margin:0 5px 5px 0;
}

.columnlinks {
	text-align:center;
	background-color:white;
}

.columnlinks h4{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	color:white;
	background-color:#87ac00;
	margin-top:15px;
	margin-bottom:5px;
	padding:5px 0 5px 0;
}

.columnlinks ul{
	list-style-type:none;
}

.columnlinks ul a:link, ul a:visited, ul a:hover, ul a:active {
	display:block;
	padding:5px 10px;
	text-decoration:none;
	color:#000;
	text-align:left;

}

.columnlinks ul a:hover {
	background:#86aa00;
	color:white;
}


.columnlinks li{
	border-bottom:1px solid #000;
}

/*////////////////////////////////////////////////// First columnlinks removes 15px margin top that the other columnlinks have*/

.columnlinks1st {
	text-align:center;
	background-color:white;
}

.columnlinks1st h4{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	color:white;
	background-color:#87ac00;
	/*margin-top:15px;*/
	margin-bottom:5px;
	padding:5px 0 5px 0;
}

.columnlinks1st ul{
	list-style-type:none;
}

.columnlinks1st ul a:link, ul a:visited, ul a:hover, ul a:active {
	display:block;
	padding:5px 10px;
	text-decoration:none;
	color:#000;
	text-align:left;

}

.columnlinks1st ul a:hover {
	background:#86aa00;
	color:white;
}


.columnlinks1st li{
	border-bottom:1px solid #000;
}

/*////////////////////////////////////////////////// First columnlinks removes 15px margin top that the other columnlinks have*/



.caltitle {
	text-align:center;
	font: 14px Arial, Helvetica, sans-serif;
	color:#000;
}

.columndivider{
	margin-bottom:10px;
}

.col_subheader {
	color:white;
	background-color:#86aa00;
	text-align:center;
	font-size:14px;
	padding:3px 0 3px 0;
}

.col_link_current {
	background:#86aa00;
	color:white;
	display:block;
	font-weight:bold;
	padding:5px 10px;
	text-align:left;
}
/*/////////////////////////////////////////////////< COLUMN ENDS >//////////////////////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////< ACCORDION BEGINS >//////////////////////////////////////////////////////////////////*/

#calendar_bg {
	background-color:666666;
}

.joinsftc {
	font-family:"Lucida Sans Unicode", "Trebuchet MS", Aria, sans-serif;
	font-size:16px;
	color:#2c2d6f;
	padding-bottom:5px;
	font-weight:bold;
}

.headliner {
	font-family:"Lucida Sans Unicode", "Trebuchet MS", Aria, sans-serif;
	font-size:24px;
	color:#2c2d6f;
	padding-bottom:5px;
	font-weight:bold;
}

img {
	border:1px solid black;
	padding:3px;
	margin-right:3px;
}


#wrapper .tab a{
	color: #ffffff;
	text-decoration: none;
}

#wrapper .tab a:hover{
color: #cae0f8;
text-decoration:none;
}

#wrapper p{
margin: 0;
padding: 5px;
line-height: 1.5em;
text-align: justify;
border: 1px solid black;
background:white;
}

#wrapper{
width: 690px;
float: left;
}

.calendar_header {
	padding-left:10px;
	margin-left:45px;
	font-size:24px;
	background:#666666;
	height:40px;
	color:white;
}

.calendar_arrow {
	float:left;
	font-size:24px;
	background:white;
	background: url(../images/calendar/calendar_arrow.gif) no-repeat;
	height:40px;
	width:45px;
	color:white;
	text-align:center;
}

.calendar_divider {
	border-top:1px solid black;
	margin-bottom:5px;
}

.calendar_date {
	font-size:18px;
	font-weight:bold;
	color:#042d5c;
}

.calendar_date_divider {
	border-bottom:1px dashed black;
	padding-bottom:10px;
}

.calendar_day {
	border-bottom:1px dashed black;
	margin-bottom:5px;
}

	

.box{
background-color:whte;
}

.boxholder{
clear: both;
padding: 5px;
background: #666666;
width:680px;
}

.back_top{
	color:#990000;
}

.tab{
float: left;
height: 30px;
width: 115px;
margin: 0 0 0 0;
text-align: left;
background-color: #666666;
background:url(../images/calendar/calendar_tab.gif);

}


.tab1{
float: left;
height: 32px;
width: 102px;
margin: 0 1px 0 0;
text-align: center;
background: #f9aa0e url(../images/layout/tab_1.jpg) no-repeat;
}

.tab2{
float: left;
height: 32px;
width: 102px;
margin: 0 1px 0 0;
text-align: center;
background: #f9aa0e url("http://www.sftc.us/newsite/layout4/tab_2.gif") no-repeat;
}

.tab3{
float: left;
height: 32px;
width: 102px;
margin: 0 1px 0 0;
text-align: center;
background: #f9aa0e url("http://www.sftc.us/newsite/layout4/tab_3.gif") no-repeat;
}

.tab4{
float: left;
height: 32px;
width: 102px;
margin: 0 1px 0 0;
text-align: center;
background: #f9aa0e url("http://www.sftc.us/newsite/layout4/tab_4.gif") no-repeat;
}

.tab5{
float: left;
height: 32px;
width: 102px;
margin: 0 1px 0 0;
text-align: center;
background: #f9aa0e url("http://www.sftc.us/newsite/layout4/tab_5.gif") no-repeat;
}

.tab6{
float: left;
height: 32px;
width: 102px;
margin: 0 1px 0 0;
text-align: center;
background: #f9aa0e url("http://www.sftc.us/newsite/layout4/tab_6.gif") no-repeat;
}


.tabtxt{
margin: 0;
color: #fff;
font-size: 12px;
font-weight: bold;
padding: 9px 0 0 0;
text-align:center;
}

/*/////////////////////////////////////////////////< ACCORDION ENDS >//////////////////////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////< TENNIS ANYONE PAGE BEGINS >//////////////////////////////////////////////////////////////////*/

.tennis_anyone_btn {
	float:left;
	margin-right:77px;
}

.tennis_anyone_btn img {
	border:none;
	padding:0px;
	margin:0px;
}

.content_tennisanyone {
	font-size:14px;
	margin:0px;
	padding: 10px;
	border-bottom: 1px dashed #000;
	width:670px;
	float:left;
	background:white;
	/*border-right: 1px solid #000;*/
}

/*/////////////////////////////////////////////////< TENNIS ANYONE PAGE ENDS >//////////////////////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////< TENNIS ANYONE FORM >//////////////////////////////////////////////////////////////////*/

form {
	margin:0;
	padding:0;
}

fieldset {
	margin:0 0 10px 0;
	padding: 5px;
	border:1px solid #333;
}

legend {
	background-color: #e07b01;
	margin:0;
	padding:5px;
	border-style:solid;
	border-width:1px;
	border-color:#fff #aaa #666 #fff;
	font-weight:bold;
	color:white;
}

label {
	font-weight:bold;
}

#name, #email, #skilllevel, #comments, {
	width:280px;
}

input, textarea {
	border:3px double #333;
}

.submit_bg {
	background:#e07b01;
	color:white;
}

fieldset dt {
	float:left;
	width:150px;
	margin:0;
	padding:5px;
	font-size:14px;
	font-family: "Lucida Grande", Verdana, sans-serif;
	color:white;
}

fieldset dd {
	margin:0 0 5px 0;
	padding:5px;
	background:none;
	border:none;
	width:750px;
}

fieldset dl {
	border:1px solid #666;			
	padding-bottom:15px;
	background:#aa5d01;
	background-image: url(../images/layout/form_bg.gif);
	background-repeat:repeat-x;
}

fieldset p {
	padding:5px;	
}

.noborder {
	border:none;
}


/*/////////////////////////////////////////////////< BULLETIN BOARD >//////////////////////////////////////////////////////////////////*/


.bulletin_msg {
	float:left;
	width:200px;
	height:200px;
	overflow:hidden;
	background: url(../images/bulletin_board/note_bg.jpg);
}

.bulletin_msg h2{
	color:#990000;
	font:Arial, Helvetica, sans-serif;
	padding:10px 10px 10px 38px;
	font-size:14px;
	font-weight:bold;
	border:none;
}

.bulletin_msg p{
	font:Arial, Helvetica, sans-serif;
	padding:0px 12px 12px 14px;
	font-size:11px;
	border:none;
	line-height:120%;
}

.bulletin_msg h3{
	font:Arial, Helvetica, sans-serif;
	padding:0px 12px 12px 14px;
	font-size:11px;
	border:none;
	font-weight:bold;
}

/*/////////////////////////////////////////////////< HALL OF FAME START>//////////////////////////////////////////////////////////////////*/

#halloffamer {

}

#halloffamer p {
	font-size:14px;
}

#halloffamer h1 {
		
	font: 36px Cambria, "Times New Roman", Georgia, sans-serif;
	color:#0101a3;
	padding:0 0 0 0;
	margin:0px;
	border-bottom: 1px solid #000033;
	font-weight:100;
	background:none;
}

#halloffamer h2 {
	font: 24px Arial, Verdana, Helvetica, sans-serif;
	color:#663366;
	padding:0 0 0px 0px;
	margin:0px;
	font-weight:bold;
	border-bottom:none;
}

.famerinfo {
	font-size:16px;
}

.famer {
	background:#E8E8E8;
	border:1px double #666666;
	margin-right:10px;
	width:200px;
	float:left;
}

.famer img {
	text-align:center;
}


/*/////////////////////////////////////////////////< HALL OF FAME ENDS>//////////////////////////////////////////////////////////////////*/

/*/////////////////////////////////////////////////< DIRECTORY PAGE>//////////////////////////////////////////////////////////////////*/

.table_headers {
	font-size:14px;
	text-align:center;
	font-weight:bold;
	color:#ffffff;
	background-color:#333333;
}

.table_content {
	font-size:12px;
}


/*/////////////////////////////////////////////////< FORMS BEGINS >//////////////////////////////////////////////////////////////////*/

#form_membersarea fieldset dt {
	float:left;
	width:150px;
	margin:0;
	padding:5px;
	font-size:14px;
	font-family: "Lucida Grande", Verdana, sans-serif;
	color:white;
}

#form_membersarea fieldset dd {
	margin:0 0 5px 0;
	padding:5px;
	background:none;
	border:none;
	width:600px;
}

#form_membersarea fieldset dl {
	border:1px solid #666;			
	padding-bottom:15px;
	background:#aa5d01;
	background-image: url(../images/layout/form_bg.gif);
	background-repeat:repeat-x;
}

#form_membersarea fieldset p {
	padding:5px;	
}

.noborder {
	border:none;
}

input, textarea, select {
	border:3px double #333;
}

.submit_bg {
	background:#e07b01;
	color:white;
}

form {
	margin:0;
	padding:0;
}

fieldset {
	margin:0 0 10px 0;
	padding: 5px;
	border:1px solid #333;
}

legend {
	background-color: #e07b01;
	margin:0;
	padding:5px;
	border-style:solid;
	border-width:1px;
	border-color:#fff #aaa #666 #fff;
	font-weight:bold;
	color:white;
}

label {
	font-weight:bold;
}

/*/////////////////////////////////////////////////< FORMS ENDS >//////////////////////////////////////////////////////////////////*/

/*/////////////////////////////////////////////////< LADDER TABLES >//////////////////////////////////////////////////////////////////*/

.ladder_tier_header {
	background-color:white;
	font-size:24px;
	font-weight:bold;
}

.ladder_col_titles {
	background-color:#666666;
	font-size:14px;
	font-weight:bold;
	color:#FFFFFF;
}

/*/////////////////////////////////////////////////< LADDER TABLES >//////////////////////////////////////////////////////////////////*/

/*/////////////////////////////////////////////////< Table with white bg >//////////////////////////////////////////////////////////////////*/

.whitebgtbl td {
	background-color:#FFFFFF;
}

/*/////////////////////////////////////////////////< Table with white bg >//////////////////////////////////////////////////////////////////*/

.highlight {
	background:#FFFF66;
}

.redladder {
	background:#ff0000;
}


/*/////////////////////////////////////////////////< CCC Pages >//////////////////////////////////////////////////////////////////*/

.contentCCC {
	margin:0px;
	padding: 10px;
	/*border-bottom: 1px dashed #000;*/
	width:670px;
	float:left;
	/*background:#003 url(../images/ccc/ccc_bg.jpg) repeat-x;*/
	background:#003;
	/*border-right: 1px solid #000;*/
}

.contentCCC h1{
		font-family:Verdana, Geneva, sans-serif;
		color:#C06;
		border-bottom:none;
		background-image:none;
		text-align:center;
		padding:0;
		margin:0;
}

.contentCCC h4{
		font-family:Verdana, Geneva, sans-serif;
		color:#C06;
		border-bottom:none;
		background-image:none;
		text-align:center;
		font-size:18px;
}

.contentCCC h2{
		font-family:Georgia, "Times New Roman", Times, serif;
		color:#C06;
		background-image:none;
		font-size:18px;
		border-bottom: 1px solid #903;
}

.contentCCC p{
		color:white;
		background-image:none;
		font:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
		letter-spacing:1px;
}

.contentCCC table{
	color:#003;
}

.contentCCC td{
		font-size:14px;
		padding:3px;
		background:white;
}

.ccc_logo {
	float:left;
}

.contentCCC img{
		border:none;
}

.cccnav {
	float:left;
	padding:2px;
	margin:1px;
	font-family:Verdana, Geneva, sans-serif;
	background-color:#CCC;
	border:1px solid #666;
	width:150px;
	text-align:center;
}

.cccnav a:link {
	color:black;
	font-weight:normal;
}

.cccnav a:visited {
	color:black;
}

.cccnav a:hover {
		color:white;
		background:#933;
		font-weight:bold;
}

.cccnav a:active {
	color:black;
	
}


.contentCCC input{
	border:none;
}

.center {
	clear:both;
	text-align:center;
}

.cccwinners {
		width:300px;
		padding:10px;
		margin-right:10px;
		float:left;
}


.contentCCC a {
	color:#C06;
}

.contentCCC a:hover {
	color:#CC33CC;
}

.backtop {
	float:right;
}

.backtop a {
	color:#FFFF99;
}

.cccquote {
	text-align:center;
	font-style:italic;
	color:#09C;
}

.paypal input {
	border: none;
	float: left;
}

.paypal img {
	border: none;
}

.paypal h2 {
	font-size:48px;
	border:none;
	clear:both;
	margin-left:35px;
	margin-bottom:0px;
	margin-top:0px;
	
}
.paypal {
	width:310px;
	float:left;
	margin-left:10px;
	padding-left: 5px;
}

.paypal2 {
	width:320px;
	float:left;
	border-left: 1px black solid;
}

.CCChighlight {
	background:#903;
}

.sign {
	text-align:center;
}

.sign h1 {
	color:#900;
	background:none;
	font: 26px Cambria, "Times New Roman", Georgia, sans-serif;
	margin:0px;
	border: none;
	font-weight:100;
}

.cccname h1 {
	font-size:32px;
	font-weight:bold;
}

/*/////////////////////////////////////////////////< Spring Fling Pages >//////////////////////////////////////////////////////////////////*/

.contentfling {
	margin:0px;
	padding: 10px;
	/*border-bottom: 1px dashed #000;*/
	width:670px;
	float:left;
	/*background:#003 url(../images/ccc/ccc_bg.jpg) repeat-x;*/
	background:#106894;
	/*border-right: 1px solid #000;*/
}

.contentfling h1{
		font-family:Verdana, Geneva, sans-serif;
		color:#ebbc64;
		border-bottom:none;
		background-image:none;
		text-align:center;
		padding:0;
		margin:0;
}

.contentfling h4{
		font-family:Verdana, Geneva, sans-serif;
		color:#ebbc64;
		border-bottom:none;
		background-image:none;
		text-align:center;
		font-size:18px;
}

.contentfling h2{
		font-family:Georgia, "Times New Roman", Times, serif;
		color:#fbf6b2;
		background-image:none;
		font-size:18px;
		border-bottom: 1px solid #fbf6b2;
}

.contentCCC p{
		color:white;
		background-image:none;
		font:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
		letter-spacing:1px;
}

.contentCCC table{
	color:#003;
}

.contentCCC td{
		font-size:14px;
		padding:3px;
		background:white;
}

.fling_logo {
	float:left;
}

.contentfling img{
		border:none;
}

.cccnav {
	float:left;
	padding:2px;
	margin:1px;
	font-family:Verdana, Geneva, sans-serif;
	background-color:#CCC;
	border:1px solid #666;
	width:150px;
	text-align:center;
}

.cccnav a:link {
	color:black;
	font-weight:normal;
}

.cccnav a:visited {
	color:black;
}

.cccnav a:hover {
		color:white;
		background:#933;
		font-weight:bold;
}

.cccnav a:active {
	color:black;
	
}


.contentCCC input{
	border:none;
}

.center {
	clear:both;
	text-align:center;
}

.cccwinners {
		width:300px;
		padding:10px;
		margin-right:10px;
		float:left;
}


.contentCCC a {
	color:#C06;
}

.contentCCC a:hover {
	color:#CC33CC;
}

.backtop {
	float:right;
}

.backtop a {
	color:#FFFF99;
}

.cccquote {
	text-align:center;
	font-style:italic;
	color:#09C;
}

.paypal input {
	border: none;
	float: left;
}

.paypal img {
	border: none;
}

.paypal h2 {
	font-size:48px;
	border:none;
	clear:both;
	margin-left:35px;
	margin-bottom:0px;
	margin-top:0px;
	
}
.paypal {
	width:310px;
	float:left;
	margin-left:10px;
	padding-left: 5px;
}

.paypal2 {
	width:320px;
	float:left;
	border-left: 1px black solid;
}

.CCChighlight {
	background:#903;
}

.sign {
	text-align:center;
}

.sign h1 {
	color:#900;
	background:none;
	font: 26px Cambria, "Times New Roman", Georgia, sans-serif;
	margin:0px;
	border: none;
	font-weight:100;
}

.yellowtext {
	color:#FF6;
}

.titlefling h1{
	font-size:42px;
	font-weight:bold;
}

.titlefling h4{
	font-size:24px;
}

.signupfling {
		background-color:#FFC;
		width:400px;
		margin-left:250px;
}

.signupfling h4{
	font-size:36px;
	color:#C00;

}

.signupfling a{
	color:#C00;
}

.signupfling a:hover{
	color:#F00;
}

.whitetext {
	color:#fff;
}

.redtext {
	color:#F00;
}

.spacer {
	height:20px;
}
	
