/* color guide */

/*
797979 - dark gray header
666666 - gray header
808080 - dark gray border
cecece - dotted border
d4d4d4 - special needs light gray
c4c4c4 - special needs header

*/


/****** css reset, global html, & basic styles ******/

/* adapted from Reset Reloaded by Eric Meyer */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	vertical-align: baseline;
}

body {
	color: #666666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 62.5%;
	line-height: 1.0em;
}

input, select, textarea {
	color: #000000;
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 0.9em;	
	margin: 0;
	padding: 0;
}
    select option {
	    padding: 0 5px 0 3px;
    }

table {
	border-collapse: collapse;
}
    table th {
	    font-weight: normal;
	    line-height: 1.5em;
	    text-align: left;
	    vertical-align: bottom;
    }
    table td {
	    line-height: 1.5em;
	    vertical-align: top;
    }

img {}

.bold {font-weight: 600;}

.marginNo {margin: 0 !important;}

p {
	line-height: 1.5em;
	margin: 0 0 1.5em 0;
}

#wrapper p, #wrapper li, #wrapper td, #wrapper label, #wrapper th {font-size: 1.09em;}

ul, ol {
	margin: 0 0 1.0em 0;
}
 #wrapper ul li {
	    margin: 0 0 0 15px;
	    padding: 0 0 0.5em 0;
	    line-height: 1.5em;
    }
    ol li {
	    margin: 0 0 0 20px;
	    padding: 0 0 0.5em 0;
	    line-height: 1.5em;
    }
	li ul, li ol {
		margin: 0;
	}

dl {
	margin: 0 0 1.0em 0;
}
	dl dt {
		line-height: 1.5em;
		font-weight: bold;
	}
	dl dd {
		line-height: 1.5em;
		margin: 0 0 0.5em 0;
	}

a:link, a:visited {
	color: #1e1eff;
	text-decoration: none;
}
a:hover, a:visited:hover, a:active {
	color: #1e1eff;
	text-decoration: underline;
}

h1 {
	color: #1c2b70;
	font-size: 1.64em;
	font-weight: bold;
	line-height: 1.2em;
	margin: 0 0 1.0em 0;
	font-family: Tahoma, Arial, Verdana, Helvetica;
}

h2 {
	color: #1c2b70;
	font-size: 1.4em;
	font-weight: bold;
	line-height: 1.2em;
	margin: 0 0 0em 0;
	font-family: Tahoma, Arial, Verdana, Helvetica;
}

h2.gray {color: #666666;}

h3 {
	color: #666666;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.2em;
	margin: 0 0 0.4em 0;
	font-family: Verdana, Tahoma, Arial,  Helvetica;
}
    h3.headerbar {
	    clear: both;
	    background: #999999;
	    padding: 5px 10px;
	    margin: 0 0 1.0em 0;
	    color: #ffffff;
	    font-size: 1.0em;
	    font-weight: bold;
    }
h4 {
	color: #666666;
	font-size: 1.0em;
	font-weight: bold;
	line-height: 1.2em;
	margin: 0 0 0.4em 0;
	font-family: Tahoma, Arial, Verdana, Helvetica;
}
h5 {
	color: #666666;
	font-size: 0.9em;
	font-weight: bold;
	line-height: 1.2em;
	text-transform: uppercase;
	margin: 0 0 0.4em 0;
	font-family: Tahoma, Arial, Verdana, Helvetica;
}
h6 {
	color: #666666;
	font-size: 0.9em;
	font-weight: normal;
	line-height: 1.2em;
	text-transform: uppercase;
	margin: 0 0 0.4em 0;
	font-family: Tahoma, Arial, Verdana, Helvetica;
}

em, i {font-style: italic;}

strong, b {font-weight: bold;}

sup {
	font-size: 0.9em;
	vertical-align: super;
}
sub {
	font-size: 0.9em;
	vertical-align: sub;
}

big, .big {font-size: 1.2em;}

small, .small, .note {font-size: 0.9em;}

/*** misc ***/

.red	{ color: #ff0000; }
.white	{ color: #ffffff; }
.black	{ color: #000000; }

/* any error or warning text */
.requiredField, .required {
	color: #FF0000;
	font-weight: bold;
	width: 88%;
}

.dottedBorder {border-bottom: 1px dotted #cecece;}

.darkGrayBorder {border-bottom: 1px solid #808080;}

.clear {
	clear: both;
}
div.clear {
	clear: both;
	height: 1px;
	overflow: hidden;
	margin: 0 0 -1px 0; /* not sure if this works... */
}

hr, div.hr {
	clear: both;
	height: 1px;
	overflow: hidden;
	margin: 0 0 1.5em 0;
	border-top: 1px solid #cccccc;
}

div.dotted_hr {
	clear: both;
	height: 1px;
	overflow: hidden;
	margin: 0 0 1.5em 0;
	border-top: 1px dotted #cccccc;
}

img.imgbutton {}

.alignright {text-align: right;}

.center {text-align: center;}

.floatright {
	float: right;
	display: inline;
}

.floatleft {
	float: left;
	display: inline;
}

.hide {
	position: absolute;
	left: -999999px;
}

.nowrap {white-space: nowrap;}

.normal {
	font-weight: normal;
	text-transform: none;
}

ul.plain, ol.plain 	{ list-style: none; }

ul.inline { list-style: none; }
    ul.inline li { display: inline; padding: 0 10px; margin: 0; }

ul.browserlist { /* for no-cookies page */
	list-style: none;
}
	ul.browserlist li {
		display: inline;
		margin: 0 1.0em 0 0;
		padding: 0;
		border-right: 1px solid #666666;
	}
	ul.browserlist li.last {
		border: 0px none;
	}
	    ul.browserlist li a {
		    white-space: nowrap;
		    padding: 0 1.0em 0 0;
	    }

/*** /misc ***/

/*** popups ***/

body.popup {
	color: #000000;
	/*text-align: center;*/
	padding: 10px;
	background: #ffffff;
}

/*** /popups ***/

/***** /global html & basic styles *****/



/***** layout *****/

div#wrapper {
	font-size: 1.1em;
	width: 980px;
	margin: 0 auto;
	background: #ffffff;
}

/*** header ***/

div#siteHeader {
	background: #eeeeee;
	padding: 10px;
	border-bottom: 2px solid #000000;
}

#siteHeader h3 { margin: 0; font-size: 36px; line-height: 36px; font-weight: bold; margin-bottom:20px; }
#siteHeader h3 a:link, #siteHeader h3 a:visited 		{ text-decoration: none; }
#siteHeader h3 a:hover, #siteHeader h3 a:visited:hover  { text-decoration: underline; }

ul#siteNav {
}
	ul#siteNav li {
	}
		ul#siteNav li a {
		}

ul#utilitynav {
	clear: both;
	list-style: none;
	margin: 0;
	padding: 0;
}
	ul#utilitynav li {
		display: inline;
		margin: 0;
		padding: 0 5px;
	}

/*** /header ***/

/*** footer ***/

div#siteFooter {
	background: #eeeeee;
	padding: 10px;
	border-top: 2px solid #000000;
}

/*** /footer ***/

/*** content ***/

div#content {
    padding: 20px;
}

/*** /content ***/

/*** homepage  ***/

div#homepage  {
}

/*** /homepage  ***/

/*** misc  ***/




/*** /misc  ***/

/***** /layout *****/



/***** forms *****/

input.imgbutton {}

input.check, input.radio { /* setting exact size removes crazy IE padding, makes uniform cross-browser */
	width: 15px;
	height: 15px;
}

input.textbox, input.textbox_short {font-size: 1.1em;}

input.textbox {
	width: 150px;
	margin: 0 0 0.5em 0;
	border: 1px solid #000;
	height: 20px;
}
input.textbox_short {
	width: 70px;
	margin: 0 10px 0.5em 0;
	border: 1px solid #000;
	height: 18px;
}

select {height: 20px; border: 1px solid #000;}

select.select {
	width: 150px;
	margin: 0 0 0.5em 0;
}
select.select_short {
	width: 70px;
	margin: 0 10px 0.5em 0;
}
select.select_auto {
	width: auto;
	margin: 0 10px 0.5em 0;
}

textarea.textarea {
	width: 480px;
	height: 60px;
	margin: 0 0 0.5em 0;
}

span.formnote {
	color: #666666;
	font-size: 0.9em;
	margin-left: 0.5em;
}

p.formcopy {
	margin-bottom: 0.8em;
}

fieldset {
	width: auto;
	border: 0;
}

label.hide {
	position: absolute;
	left: -999999px;
}

fieldset.textfields {
	margin: 0 0 0.5em 0;
}
	fieldset.textfields input,
	fieldset.textfields select,
	fieldset.textfields textarea {
		vertical-align: top;
	}
	fieldset.textfields span.label, /* span tag to emulate a label */
	fieldset.textfields label {
		float: left;
		display: inline;
		width: 140px;
		margin: 0.2em 10px 0 0;
		line-height: 1.2em;
	}
	fieldset.textfields label.short {
		width: 60px;
	}
	fieldset.textfields label.auto {
		width: auto;
	}
	fieldset.textfields label.block { /* stacked label/input */
		float: none;
		display: block;
		width: auto;
		margin: 0 0 0.2em 0;
	}

/* wrapper for dot.Net checkboxlist & radiobuttonlist tables */
fieldset.checkboxlist,
fieldset.radiobuttonlist {
	margin: 0 0 0.6em 0;
}
	fieldset.checkboxlist td,
	fieldset.radiobuttonlist td {
		padding: 0 20px 0 0; /* necessary only for two+ column tables */
	}
	fieldset.checkboxlist input,
	fieldset.radiobuttonlist input {
		width: 15px;
		height: 15px;
		margin: 0;
		padding: 0;
	}
	fieldset.checkboxlist label,
	fieldset.radiobuttonlist label {
		float: none;
		display: block;
		width: auto;
		margin: -13px 0 0.6em 20px;
		line-height: 1.2em;
	}

/* wrapper for checkboxes and radiobuttons, long labels will not wrap beneath the input */
fieldset.checkzone,
fieldset.radiozone {
	margin: 0 0 0.6em 0;
}
	fieldset.checkzone input,
	fieldset.radiozone input {
		width: 15px;
		height: 15px;
		margin: 0;
		padding: 0;
	}
	fieldset.checkzone label,
	fieldset.radiozone label {
		float: none;
		display: block;
		width: auto;
		margin: -13px 0 0.6em 20px;
		line-height: 1.2em;
	}

/* wrapper for form buttons */
fieldset.buttonzone {
	clear: both;
	padding: 5px 0;
	margin: 0 0 1.0em 0;
	/*border-top: 1px solid #cccccc;*/
	/*text-align: right;*/
}

/*** specific fieldsets ***/

/* support */

fieldset#form_gift {
}
    fieldset#form_gift fieldset.textfields {
    }
        fieldset#form_gift fieldset.textfields label {
            width: auto;
            margin-right: 10px;
        }

fieldset#form_support {
}
    fieldset#form_support fieldset.textfields {
    }
        fieldset#form_support fieldset.textfields label {
            width: auto;
            margin-right: 10px;
        }

/* /support */

/* account */

fieldset#form_change label {
	width: 166px;
}

fieldset#form_login 
{
	width: 78%;
	margin-top: 3em;
}

a#forgotPassword {margin-left: 0.5em;}

a#register 
{
	margin-top: 1em;
	display: block;
	}

fieldset#form_login h2.loginh2 {width: 100%;}

fieldset#form_login li 
{
	border-bottom: 1px dotted #cecece;
	list-style-type: none;	
	margin: 0;
	font-size: 1em;
	padding: 0.5em 0.5em 0.5em 0;
}

fieldset#form_login li input {margin: 0;}

fieldset#form_login li label {
	color: #797979;
	font-weight: 600;
}

span#optional 
{
	margin-left: 0.5em;
	vertical-align: bottom;
	}

h2.loginh2 
{
	color: #797979;
	border-bottom: 1px solid #808080;
	width: 78%;
}

fieldset#form_forgot {
}
    fieldset#form_forgot label {
        width: auto;
        margin-right: 10px;
    }

fieldset#form_register {
}

div.nameblock {
	font-size: 1.2em;
	margin-bottom: 0.5em;
}

div.nameblock span {margin-top: 0 !important;}


div.interests_signup {
    border-top:1px dotted #ccc;
    border-bottom:1px dotted #ccc;
    padding:1em 0;
    margin:10px 0;
}
    div.interests_signup fieldset.checkzone td {
        width:200px;
    }

div.more_info {
	display: block;
	width: 500px;
	margin: 0;
	background: #e7e1d1;
}
	div.more_info div.lb {
		background: transparent url(../../_img/calendar/cal_filter_lb.gif) no-repeat left bottom;
	}
	div.more_info div.rb {
		background: transparent url(../../_img/calendar/cal_filter_rb.gif) no-repeat right bottom;
	}
	div.more_info div.rt {
		background: transparent url(../../_img/calendar/cal_filter_rt.gif) no-repeat right top;
	}
	div.more_info div.lt {
		background: transparent url(../../_img/calendar/cal_filter_lt.gif) no-repeat left top;
	}
	div.more_info div.inner-area {
		padding: 10px 15px 10px 15px;
	}
    

/* /account */

/* support */
    
    div.donate_content {
        width:650px;
        }

    fieldset#form_support {
        padding:0 0 15px 0;
        }
        fieldset#form_support h2 {
            padding-bottom:10px;
            }
        
        fieldset#form_support div.more_info {            
	        display: block;
	        width: 650px;
	        margin:20px 0 30px 0;
	        background: #e7e1d1;
            }
    
    
    div.donor_table {
        width:470px;
        float:left;
        }
        div.donor_table table {
            width:470px;
            }
            #wrapper div.donor_table table tr {
                }
            #wrapper div.donor_table table tr th {
                color:#666;
                padding-bottom:10px;
                font-size:1.3em;
                }
                #wrapper div.donor_table table tr th a {
                    font-size:.8em;
                    text-decoration:underline;
                    }
            #wrapper div.donor_table table tr td {
                color:#4c4c4c;
                padding:5px 0;
                text-transform:uppercase;
                }
        
    div.secondary_info {
        width:150px;
        float:left;
        margin-top:40px;
        }
    
    
    fieldset#payment_option {  
        float:left;    
        position:relative; 
        margin-bottom:10px;
        }
        fieldset#payment_option span.single_payment {
            width:250px;
            float:left;
            margin:0 15px;
            }
        fieldset#payment_option span.monthly_payment {
            width:300px;
            padding-left:50px;
            float:left;
            border-left:1px dotted #ccc;
            }
        
        fieldset#payment_option span.seperator {
            position:absolute;
            top:55px;
            left:270px;
            padding:5px 0 5px 0;
            font-size:1.2em;            
            color:#96948e;
            font-weight:bold;            
            background-color:#fff;
            }
        
        
        fieldset#payment_option span.input_col {
            width:300px;
            display:block;
            margin:10px 0 10px 15px;
            }
            fieldset#payment_option span.input_col input.textbox {
                margin-left:5px;
                width:112px;
                }
            fieldset#payment_option span.input_col h4 {
                padding:10px 0;
                }

        
        fieldset#fund_request {
            padding-bottom:15px;
            padding-left:15px;
            }
            fieldset#fund_request table {
                width:600px;
                }
                fieldset#fund_request table td {
                    float:left;
                    width:300px;
                    }
                fieldset#fund_request table td label {
                    font-size:1.2em;
                    font-weight:bold;
                    }
                fieldset#fund_request table td input {
                    margin-right:10px;
                    }
            
            fieldset#fund_request div.annual_copy {
                width:270px;
                float:left;
                margin-right:10px;
                padding-left:22px;
                margin-top:5px;
            }
            fieldset#fund_request div.youth_copy {
                width:300px;
                float:left;
                margin-top:5px;
                padding-left:22px;
            }
            
    
    fieldset#recognition {
        padding:0 0 15px 15px;
        }
        fieldset#recognition span.acknowledge_text {
            display:block;
            margin-left:15px;
            }
        fieldset#recognition input.textbox {
            width:250px;
            margin-top:10px;            
            }
    
    fieldset#corporate_matching {
        padding:0 0 15px 15px;
        }
        fieldset#corporate_matching input.textbox {
            margin-top:10px;
            width:400px;
            }
            
            
/* /support */

/* tickets */

fieldset#form_email {
}

fieldset#form_promocode {
	margin-bottom:0;
	background: #ebecf2;
	width: 38em;
	padding: 1em;
}

fieldset#form_promocode h3 {margin: 0;}

fieldset#form_promocode input.textbox {width: 108px;}

	fieldset#form_promocode label {
		width: 100%;
		display: block;
		padding-right: 0.5em;
		margin-bottom: 0.6em;
	}
	fieldset#form_promocode a.button {
		position: relative;
		top: 1px;
	}

fieldset#form_reserve {
	width: 88%;
}

fieldset#form_reserve .section {
	text-align: left;
	width: 325px;
}

fieldset#form_reserve .priceType {}

fieldset#form_reserve th 
{
	font-size: 1.28em;
	padding-bottom: 0 !important;	
}

a#changeDate 
{
	margin-left: 0.1em;
	text-decoration: underline;
}

#selectASeating, #selectTicketQuantity 
{
	font-size: 1.45em;
	margin-bottom: 0;
	}

fieldset#form_reserve fieldset.buttonzone {margin: 0; padding: 0;}

#selectASeating {margin-bottom: 1em;}

.widthShort {width: 78%;}

.widthLong {width: 88%;}

h2#reservePerf 
{
	padding-bottom: 0.3em;
	margin-bottom: 0.3em;
	color:#666;
}

fieldset#form_search {
}
	fieldset#form_search fieldset.colA {
		float: left;
		display: inline;
		width: 300px;
	}
	    fieldset#form_search fieldset.colA label {
		    width: 80px;
	    }
	fieldset#form_search fieldset.colB {
		float: left;
		display: inline;
		width: 300px;
	}
	    fieldset#form_search fieldset.colB label.short {
		    width: 40px;
	    }
	    fieldset#form_search fieldset.colB input.textbox_short {
		    width: 100px;
	    }

div#info_col {
    width:450px;
    margin-right:15px;
    float:left;
    }

div#promo_col {
    float:right;
    width:450px;
    }

	div#html_syos_info {	
    margin-bottom:40px;	
	}
	div#html_syos_info div.html_syos_text {	
		padding:.5em 1em 1em 1em;		
		}
	#wrapper div.html_syos_text p {
	    color:#000;
	    font-size:.9em;
	    padding:12px 10px 10px 10px;
	    margin:0;
	    }

    div.syos_steps {
        width:920px;
        height:37px;
        background-color:#f5f3ed;
        }
        div.syos_steps div.round_l {
            background:url(../../_img/htmlsyos/syos_corner_l.gif) no-repeat top left;
            }
        div.syos_steps div.round_r {
            background:url(../../_img/htmlsyos/syos_corner_r.gif) no-repeat top right;
            }
        div.syos_steps div.inner_content {                
            }
         
    /* steps in best available */       
    div#best_available div.html_syos_text {
        padding:0.5em 0 1.3em 0;
        margin:0px 0px 5px -10px;
        }
        #wrapper div#best_available div.html_syos_text p {
		    color:#000;
		    font-size:.8em;
		    }
		    div#best_available div.syos_steps {
	        width:890px;
	        height:38px;
            background-color:#f5f3ed;
            }
	
		div#best_available fieldset#form_reserve {
	    width:100%;
	    }
	    div#best_available fieldset#form_reserve fieldset.buttonzone {
	        text-align:right;
	        }
	    div#best_available table.selectquantity th {
	        border-bottom: 1px dashed #CECECE;
	        }
	    div#best_available table.selectseating td.radiocol {
	        border-bottom: 1px dashed #CECECE;
	        }
	    div#best_available table.selectseating td.section {
	        border-bottom: 1px dashed #CECECE;
	        }
	    div#best_available table.selectseating td.priceType {
	        border-bottom: 1px dashed #CECECE;
	        }
		
		
	/* special needs messaging */
	div#specialNeeds {
	    margin:20px 0;
	    }

/* /tickets */

/* checkout */

fieldset#form_billing {
}
	fieldset#form_billing div.buttonzone {
		text-align: right;
	}

fieldset#form_delivery {
}
	fieldset#form_delivery div.buttonzone {
		text-align: right;
	}

fieldset#form_shipping {
}
	fieldset#form_shipping div.buttonzone {
		text-align: right;
	}

fieldset#form_payment {
}

fieldset#form_adddonation 
{
	background-color: #ECEFF3;
	padding: 6px;
	width: 44em;
	margin-bottom: 3em;
}

fieldset#form_adddonation input.textbox
{
	width: 10em;
	margin-right: 0.4em;
	}

    fieldset#form_adddonation label {
        width: auto;
        margin-right: 0.2em;
    }

fieldset#form_donation {
}
    fieldset#form_donation label {
        width: auto;
        margin-right: 10px;
    }

/* /checkout */

/*** /specific fieldsets ***/

/*** buttons ***/
 /* link buttons deprecated - marked for deletion */

a.button:link, a.button:visited {
	background-color:#cc0000;
	padding:2px 8px;
	border:1px solid #000000;
	color:#ffffff;
	font-size:11px;
	font-weight:bold;
	text-transform:uppercase;
}

a.button:hover, a.button:visited:hover {
	color:#ffffff;
	text-decoration:none;
}

a.button_alt:link, a.button_alt:visited {
	background-color:#ffffff;
	padding:2px 8px;
	border:1px solid #000000;
	color:#cc0000;
	font-size:11px;
	font-weight:bold;
	text-transform:uppercase;
}

a.button_alt:hover, a.button_alt:visited:hover {
	color:#cc0000;
	text-decoration:none;
}

a.button_small:link, a.button_small:visited {
	background-color:#cc0000;
	padding:1px 4px;
	border:1px solid #000000;
	color:#ffffff;
	font-size:10px;
	text-transform:uppercase;
}

a.button_small:hover, a.button_small:visited:hover {
	color:#ffffff;
	text-decoration:none;
}

/*** /buttons ***/

/***** /forms *****/



/***** page specific styles *****/

/*** tickets ***/

table.searchresults { /* search.aspx */
}

ul.performancelisting li {
	margin-left: 0 !important;
	padding: 0.5em 0pt !important;
	}

ul.performancelisting li,
h2#selectPerformance {border-bottom: 1px dotted #cecece;}

h2#selectPerformance,
ul.performancelisting {width: 81%;}

h2#selectPerformance 
{
	padding-bottom: 5px;
	margin-top: 27px;
	}

ul.performancelisting { /* production.aspx */
	list-style-type:none;
	width: 81%;
}
	ul.performancelisting li {
		list-style-type:none;
		margin:0pt;
		padding:5px 96px 5px 5px;
		text-align:right;
	}
	ul.performancelisting li.alt {
		background-color:#eeeeee;
	}
		ul.performancelisting li span.date {
			float:left;
		}
		
table.selectseating,
table.selectquantity {width: 100%;}

table.selectseating { /* reserve.aspx */
	margin: 0 0 2.0em 0;
}
	table.selectseating th {border-bottom: 1px solid #808080;}
	
	ul.performancelisting li,
	table.selectquantity th {border-bottom: 1px dotted #cecece;}

	table.selectseating th,
	table.selectquantity th {
		padding: 5px;
		vertical-align: bottom;
		font-weight: bold;
		
	}
	table.selectseating td {
		vertical-align: top;
		}
	.radiocol {
		width: 5px;
		padding: 5px;
	}
	    table.selectseating td.radiocol input {
		    width: 15px;
		    height: 15px;
	    }
	.section {
		width: 52%;
		padding: 5px;
	}
	.priceType {
		width: 20%;
		padding: 5px;
		text-align: left;
	}

table.selectquantity { /* reserve.aspx */
	margin: 0 0 2.0em 0;
}
	table.selectquantity td {
		padding: 5px;
	}
	table.selectquantity td select {
		margin: 0;
	}

div.seatmapzone {
	float:right;
	/* other seatmap attributes */
}

/*** tickets ***/

/*** checkout ***/

ul#checkOutSteps {
	list-style-type:none;
	margin-bottom: 62px;
	padding:0;
}
	ul#checkOutSteps li {
		
		color:#fff;
		float:left;
		font-size:0.9em;
		list-style-type:none;
		margin:0pt 5px 0pt 0pt;
		font-weight: 600;
	}
	
	ul#checkOutSteps li.on {background: url(../../_img/checkOutStepArrow.gif) no-repeat center bottom;}
	
	ul#checkOutSteps li.on span
	{
		margin: 0pt 0pt 5px;
		background: #20296c;
		
	}
	ul#checkOutSteps li span 
	{
		display: block;
		padding: 5px 15px;
		background-color:#9BB7EE;
		
	}
		
	ul#checkOutSteps li.on #checkOutStepsArrow 
	{
		margin:0pt auto;
		width:11px;
	}
	

/* payment */

div.addresses {
	float:left;
	display:inline;
	width:175px;
	margin:0 15px 0 0;
}

div.verticalDotted 
{
	border-right:1px dotted #CECECE;
	float:left;
	height:117px;
	margin:0pt 13px;
}

/** /payment */

/* confirmation */

ul.receiptinfo {
	list-style-type:none;
	margin-bottom:0 0 1.5em 0;
	padding:0;
}
	ul.receiptinfo li {
		list-style-type:none;
		margin:0;
		padding:0 0 0.5em 0;
	}
	ul.receiptinfo li span.label {
		float:left;
		width:120px;
	}

/* /confirmation */

/*** /checkout ***/

/*** shopping cart ***/

div.carttimer {
	color: #ff0000;
	width: 473px;
	font-size: 1em;
	line-height: 1.3em;
	margin-bottom: 1em;
}

div.carttimer span 
{
	font-size: 1.09em;
	}

div.continue_links p {
    font-weight:bold;
    margin-bottom:4px;
    }
#wrapper div.continue_links ul li {
    padding-bottom:0px;
    }

table.shoppingcart 
{

	width: 740px;
	margin: 0.7em 0 1.0em 0;
	border-bottom: 1px dotted #CECECE;
}

table.carttotals {border-bottom: 1px solid #808080 !important;}

	table.shoppingcart th {
		padding: 5px;
		border-top: 1px solid #808080;
		border-bottom: 1px dotted #cecece;		
		font-weight: bold;
		text-align: left;
		color: #666666;
	}
	table.shoppingcart td {
		padding: 5px;
		vertical-align: top;
		line-height: 1.3em;
		font-size: 1em;
	}

	/* all col widths + padding MUST add up to shoppingcart total width */

	table.shoppingcart td.colA, table.shoppingcart th.colA {
		width: 350px;
	}
	table.shoppingcart td.colB, table.shoppingcart th.colB {
		width: 115px;
	}
	table.shoppingcart td.colC, table.shoppingcart th.colC {
		width: 75px;
	}
	table.shoppingcart td.colD, table.shoppingcart th.colD {
		width: 75px;
	}
	table.shoppingcart td.colE, table.shoppingcart th.colE {
		width: 80px;
		padding: 5px 5px 5px 0;
		text-align: right;
	}

	table.shoppingcart td.colB a {
		 cursor: pointer;
		 color: #1E1EFF;
	}
	
	table.shoppingcart table.innercart {
		width: 380px;
	}
	table.shoppingcart div.subtotal {
		margin: 0.4em 0;
	}
	table.shoppingcart div.total {
		margin: 1.2em 0 0 0;
		font-weight: 600;
		background-color: #FFFFCE;
		font-size: 1.28em;
		zoom: 1;
	}

	td.colCD div.total {margin-right: -3px;}

	table.shoppingcart td.colBCDE { /* contains single tix nested table.innercart */
		width: 380px;
		padding: 0;
	}
	table.shoppingcart td.colAB { /* cart totals spacer */
		width: 541px;
		padding: 0;
	}
	table.shoppingcart td.colCD { /* cart totals */
		width: 91px;
		padding: 5px 0 5px 5px;
	}
	table.shoppingcart td.colBCD { /* combined description column */
		width: 420px;
		padding: 5px;
	}
	table.shoppingcart td.colABCDE { /* colspan = all */
		width: 770px;
		padding: 5px;
	}

div.cartbuttons {
	clear: both;
	width: 740px;
	padding: 5px 0;
	margin: 0 0 1.0em 0;
}

div.cartbuttons a.button:link, a.button:visited a.button:hover, a.button:visited:hover{
	text-decoration: none;
}

div.emptycart {
}

/*** /shopping cart ***/

/*** calendar ***/

table#maincalendar {
	width: 939px;
	margin: 0 0 1.5em 0;
	padding: 0;
}
	table#maincalendar th {
		width: 123px;
		height: 30px;
		padding: 0 5px;
		border: 1px solid #1b1f58;
		background: #192472 url(../../_img/calendar/cal_th_bg.gif) repeat-x left top;
		color: #ffffff;
		font-family: Arial, Verdana, Helvetica, sans-serif;
		font-size: 1.2em;
		font-weight: normal;
		text-align: center;
		text-transform: uppercase;
		vertical-align: middle;
	}
	table#maincalendar td {
		width: 123px;
		vertical-align: top;
		padding: 0 5px;
		border: 1px solid #1b1f58;
		font-size: 1.0em;
	}
	table#maincalendar td.in {
		/*background: #dcdcdc;*/
	}
	table#maincalendar td.out {
		/*background: #f5f5f5;*/
	}
	table#maincalendar div.date {
		color: #7992b1;
		font-family: Arial, Verdana, Helvetica, sans-serif;
		font-size: 1.2em;
		font-weight: bold;
		margin: 5px 0;
	}
	table#maincalendar h4.gt-presents {
		color: #1b1f58;
		font-size: 1.0em;
		font-weight: bold;
		margin: 0 -4px 1px -4px;
		padding: 5px;
		background: #e7e1d1;
	}
	table#maincalendar div.gt-events {
		color: #1b1f58;
		margin: 0 -4px 10px -4px;
		padding: 5px;
		background: #eae9e6;
	}
	table#maincalendar div.external-events {
		color: #1b1f58;
		margin: 0 -4px 10px -4px;
		padding: 0 5px;
	}
	table#maincalendar div.event {
		margin: 0 0 15px 0;
	}
		table#maincalendar div.event p {
			font-size: 1.0em;
			line-height: 1.3em;
			margin: 0 2px 5px 2px;
		}
		table#maincalendar div.event a.title {
			color: #1b1f58;
		}
		table#maincalendar div.event span.time {
			color: #7992b1;
		}
		table#maincalendar div.event span.venue {
			color: #7992b1;
		}

fieldset#calendarcontrols {
	display: block;
	width: 939px;
	margin: 1.0em 0 1.5em 0;
}
	fieldset#calendarcontrols div.prev-next-lnks {
		float: right;
		display: inline;
		margin-top: 8px;
		color: #132c9a;
	}
		fieldset#calendarcontrols div.prev-next-lnks a.lnk-prev {color: #132c9a;}
		fieldset#calendarcontrols div.prev-next-lnks a.lnk-next {color: #132c9a;}
	fieldset#calendarcontrols fieldset.textfields {
		margin: 0;
	}

fieldset#calendarfilter {
	display: block;
	width: 939px;
	margin: 0 0 1.5em 0;
	background: #e7e1d1;
}
	fieldset#calendarfilter div.lb {
		background: transparent url(../../_img/calendar/cal_filter_lb.gif) no-repeat left bottom;
	}
	fieldset#calendarfilter div.rb {
		background: transparent url(../../_img/calendar/cal_filter_rb.gif) no-repeat right bottom;
	}
	fieldset#calendarfilter div.rt {
		background: transparent url(../../_img/calendar/cal_filter_rt.gif) no-repeat right top;
	}
	fieldset#calendarfilter div.lt {
		background: transparent url(../../_img/calendar/cal_filter_lt.gif) no-repeat left top;
	}
	fieldset#calendarfilter div.inner-area {
		padding: 10px 15px 25px 15px;
	}
	fieldset#calendarfilter fieldset.textfields {
		margin: 0;
	}
	fieldset#calendarfilter h3 {
		color: #000000;
		font-size: 1.3em;
		font-weight: bold;
		margin: 0 0 1.0em 0;
	}
	fieldset#calendarfilter a.reset {
		float: right;
		display: inline;
		margin-right: 8px;
		padding-left: 8px;
		background: url(../../_img/calendar/bluearrow.gif) no-repeat left 0.2em;
		color: #132c9a;
	}

/*styles to support detail tip on calendar page*/
#detailtip {
	width: 447px;
	position: absolute; 
	left: -999999px;
	z-index: 9;
	margin: 0;
	padding: 0 16px; /* enough padding for arrow*/

}
	#detailtip div.dt_arrow {
		width: 20px;
		height: 46px;
		position: absolute;
		top: 0; 
		left: 0;
	}
			#detailtip.east div.dt_arrow {background: url(../../_img/calendar/popover_arrow_left.gif) no-repeat 0px 0px;}
			#detailtip.west div.dt_arrow {background: url(../../_img/calendar/popover_arrow_right.gif) no-repeat 0px 0px;}
			
		#detailtip div.dt_head {
			height: 10px;
			background: url(../../_img/calendar/popover_upper.gif) no-repeat left top;
		}
			#detailtip div.dt_head div.dt_close {
				position: absolute;
				right: 17px;
				top: 20px;
			}
			#detailtip div.dt_head div.dt_close a {
				/* background: transparent url(../../_img/calendar/x_gray.gif) no-repeat center center;*/
				text-indent: -999999em;
				display: block;
				width: 14px;
				height: 14px;
			}
			
		#detailtip div.detailtip_content {
			background: transparent url(../../_img/calendar/popover_inner.gif) repeat-y left top;
			padding: 12px 20px 8px 20px;
		}
			#detailtip div.detailtip_content img.prod-image {
				float: left;
				display: inline;
				width: 168px;
				height: 98px;
				margin: 0 20px 5px 0;
				border: 1px solid #21337c;
			}
			#detailtip div.detailtip_content div.prod-info {
			    font-size:1.1em;
				float: left;
				display: inline;
				width:210px;
			}
			    #detailtip div.detailtip_content div.prod-info h2 {
			        padding-bottom:4px;
			        }
			    #detailtip div.detailtip_content div.prod-info h3 {
			        font-size:1.3em;
			        }
			    #detailtip div.detailtip_content div.prod-info p {
			        margin-bottom:0px;
			        }
			    
			#detailtip div.detailtip_content div.call-to-action {
				
			}
			/* copied from MTC
			#detailtip div.detailtip_content h2{margin-top:0; text-transform:uppercase;}
			#detailtip div.detailtip_content a.lnk_buy{}
			#detailtip div.detailtip_content a.lnk_learnmore{}
			#detailtip div.detailtip_content p.synopsis{color:#666;}
			 */

		#detailtip div.dt_foot {
			height: 10px;
			background: url(../../_img/calendar/popover_lower.gif) no-repeat left top;
		}

a.detailtip_trigger{}

/* popup_calendar */

body.popup_calendar {
	text-align: center;
	background: #ffffff;
}
	body.popup_calendar a:link, body.popup_calendar a:visited {
		color: #666666;
		text-decoration: none;
	}
	body.popup_calendar a:hover, body.popup_calendar a:visited:hover, body.popup_calendar a:active {
		color: #666666;
		text-decoration: underline;
	}

table.popup_calendar_header {width:250px; margin-bottom:8px;}
	table.popup_calendar_header td {font-size:11px; color:#666666;}
	table.popup_calendar_header td.month {text-align:center; padding:2px 5px;}
	table.popup_calendar_header td.prev {text-align:left; padding:2px 10px;}
		table.popup_calendar_header td.prev a {font-size:15px; font-weight:bold;}
	table.popup_calendar_header td.next {text-align:right; padding:2px 10px;}
		table.popup_calendar_header td.next a {font-size:15px; font-weight:bold;}

table.popup_calendar_dates {width:250px;}
	table.popup_calendar_dates td {font-size:11px; color:#666666; text-align:center; padding:2px 0;}
	table.popup_calendar_dates td.weekend {}
	table.popup_calendar_dates tr.top td {color:#666666; text-transform:uppercase;}
	table.popup_calendar_dates div.today {background-color:#cccccc; border:1px solid #666666;}

/* /popup_calendar */

/*** /calendar ***/

/***** /page specific styles *****/


div#specialNeeds h4 {color: #333333;}

div#specialNeeds p {color: #666666;}

div#widthDecreaser {width: 740px;}

fieldset#form_creditcard div.dottedBorder {padding-bottom: 0.3em;}

fieldset#form_creditcard h2 
{
	color: #797979;
	display: inline;
	margin-right: 29px;
	width: 94px;
	}

fieldset#form_creditcard input.textbox {width: 220px;}

fieldset#form_creditcard select.select {width: 120px;}

fieldset#form_creditcard select.monthDropDown {width: 55px !important;}

fieldset#form_creditcard select.select_short {width: 70px;}

fieldset#form_creditcard select {}

fieldset#form_creditcard ul {}

fieldset#form_creditcard ul li 
{
	border-bottom: 1px dotted #cecece;
	list-style-type: none;
	margin: 0pt;
	padding: 0.5em 0pt;	
	}

fieldset#form_creditcard ul li select,
fieldset#form_creditcard ul li input {margin: 0;}

fieldset#form_creditcard select.select_short {margin-right: 0.3em;}

input.completePurchase {float: left;}

span.creditCardSubmitWarning 
{
	background: transparent url(../../_img/arrowRight.gif) no-repeat scroll 0% 50%;
	display: block;
	float: left;
	padding-left: 1.8em;
	width: 26em;
	margin-left: 1.3em;
	color: #c4c4c4;
	}

/* client css */
		a.menu_top:link { color: #222b6b; font: bold 10pt trebuchet ms,geneva; text-decoration: none; padding-left: 20px; }
        a.menu_top:visited { color: #222b6b; font: bold 10pt trebuchet ms,geneva; text-decoration: none; padding-left: 20px; }
        a.menu_top:active { color: #222b6b; font: bold 10pt trebuchet ms,geneva; text-decoration: none; padding-left: 20px; }
        a.menu_top:hover { color: #222b6b; font: bold 10pt trebuchet ms,geneva; text-decoration: underline; padding-left: 20px; }

        a.club_link:link { color: #ee1c25; font: bold 10pt trebuchet ms,geneva; text-decoration: none; padding-left: 20px; }
        a.club_link:visited { color: #ee1c25; font: bold 10pt trebuchet ms,geneva; text-decoration: none; padding-left: 20px; }
        a.club_link:active { color: #ee1c25; font: bold 10pt trebuchet ms,geneva; text-decoration: none; padding-left: 20px; }
        a.club_link:hover { color: #ee1c25; font: bold 10pt trebuchet ms,geneva; text-decoration: underline; padding-left: 20px; }

        .title_info_box { background: #e7e1d1; border: 0px; margin: 10px 0px 25px 0px; }
        .side_info_box { background: #e7e1d1; border: 0px; margin: 10px 0px 25px 0px; }
        .title_info_box_content { padding: 0px 10px; color: #ffffff; }
        .side_box_top { height: 14px; background: #e7e1d1 url('../graphics/box_top_right.jpg') right top no-repeat; text-align: left; }
        .side_box_bottom { width: 100%; height: 14px; background: #e7e1d1 url('../graphics/box_bottom_left.jpg') left bottom no-repeat; text-align: right; }
        .side_info_box_content { background: #e7e1d1; padding: 15px 15px 15px 15px; color: #000000; }
        .side_menu { border-bottom: 1px dashed #000000; padding-bottom: 4px; margin-bottom: 4px; }
        .inputSubmit { color: #000000; background: #EEEEEE; border: 1px solid #000000; font: bold 8pt arial, helvetica, tahoma; }
        .inputBox { color : #000000; background : #FFFFFF; border: 1px solid #000000; font: 8pt arial, helvetica, tahoma; }

        .portfoliotd { padding: 5px; text-align: center; }
        .portfoliobox { border: 1px solid #808080; background: #eeeeee; padding: 4px 0px; }
        .thumbbox { border: 1px solid #000000; }

        .page_title_content { background: #e7e1d1; padding: 5px 15px; }
        .page_title_trail { font-weight: bold; font-size: 10pt; color: #808080; }

        #footer { font-size: 8pt; text-align: center; margin-bottom: 15px; color: #808080; }
        #footer a:link { text-decoration: none; color: #808080; }
        #footer a:hover { text-decoration: none; color: #808080; }
        #footer a:visited { text-decoration: none; color: #808080; }
        #footer a:active { text-decoration: none; color: #808080; }

        img { behavior: url("pngbehavior.htc"); }

        /* DROP DOWN MENU */
        #nav, #nav ul {
	        float: right;
	        width: 970px;
	        list-style: none;
	        line-height: 1;
	        background: transparent;
	        font: bold 12pt trebuchet ms,geneva;
	        padding-top: 8px;
	        margin: 0;
        }

        #nav a {
	        display: block;
	        width: 100%;
	        color: #ffffff;
	        text-decoration: none;
	        padding: 0.25em 0;
	        text-align: center;
        }

        #nav a.daddy {
	        background: url(../graphics/rightarrow2.gif) center right no-repeat;
        }

        #nav li {
	        float: left;
	        /* padding: 0px 20px; */
	        width: 8em;
	        height: 45px;
	        line-height: 25px;
	        vertical-align: middle;
        }

        #nav li.li_discover {
	        width: 6em;
	        height: 35px;
	        border-left: 0;
        }

        #nav li.li_main {
	        /* width: 7em; */
	        width: 10em;
	        height: 35px;
        }

        #nav li.li_mcmanus {
	        /* width: 6.5em; */
	        width: 10em;
	        height: 35px;
        }

        #nav li.li_youth {
	        width: 6.25em;
	        height: 35px;
        }

        #nav li.li_seniors {
	        width: 6.50em;
	        height: 35px;
        }

        #nav li.li_special {
	        width: 6.75em;
	        height: 35px;
        }
        #nav li.li_involved {
	        width: 7.75em;
	        height: 35px;
        }
        #nav li.li_buy {
	        width: 6em;
	        height: 35px;
        }

        #nav li ul {
	        position: absolute;
	        z-index: 500;
	        left: -999em;
	        height: auto;
	        width: 14.4em;
	        background: #3256b4;
	        font: 10pt trebuchet ms,geneva;
	        color: #ffffff;
	        margin: 0.02em 0 0 -0.10em;
	        list-style: none;
	        padding-left: 1px;
        }

        #nav li li {
	        height: auto;
	        padding-right: 1em;
	        width: 13.30em;
	        line-height: 1;
        }

        #nav li ul a {
	        width: 11.5em;
	        text-align: left;
	        padding: 0.25em 0 0.5em 1em;
	        color: #ffffff;
        }

        #nav li ul div.category {
	        width: 13.30em;
	        text-align: left;
	        padding: 0.25em 0 0.5em 1em;
	        background: #ffffff;
	        color: #3256b4;
	        font-weight: bold;
        }

        #nav li ul ul {
	        margin: -1.75em 0 0 14.25em;
        }

        #nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	        left: -999em;
        }

        #nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
	        left: auto;
        }

        #nav li:hover, #nav li.sfhover {
	        background: transparent;
        }

        #nav li ul li:hover, #nav li ul li.sfhover {
	        background: #5c86ea;
        }
