@charset "utf-8";
/* CSS Document 

Author: Jazmin Brooks
Date: February 2010
Edited by: Tim Gill

*/

/* 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, form,input,textarea {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    zoom:1;
}
/* 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. */
html {
    height: 100%;
    padding:0;
    margin:0;
    padding-bottom:1px;
}

/*standard styles */

body {
    margin: 0;
    padding:0;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:12px;
    line-height:18px;
    color:#333333;
    background-color:#e0f6fd;
    min-height:100%;
	background-image:url(images/body_bg.jpg);
	background-repeat:repeat-x;
	background-position:top;
}

p{
    margin:0;
    padding-bottom:15px;
}

a img{
    border:none;
}

img{
    display:block;
}

form img{
	display:inline;
}

.clear{
    clear:both;
    height:0;
    overflow:hidden;
}
.left{
    float:left;
    margin-right:10px;
    margin-bottom:10px;
}
.right{
    float:right;
    margin-left:10px;
    margin-bottom:10px;
}

.leftBorder{
	border:4px solid #b6eafa;
	padding:1px;
	float:left;
    margin-right:10px;
    margin-bottom:10px;
}

.rightBorder{
	border:4px solid #b6eafa;
	padding:1px;
	float:right;
    margin-left:10px;
    margin-bottom:10px;
}

h1{
    line-height:normal;
    font-size:24px;
    font-weight:normal;
    color: #2d8dcc;
    margin-bottom:15px;
}

h2{
    line-height:normal;
    font-size:20px;
    font-weight:normal;
    color:#2d8dcc;
    margin-bottom: 10px;
    /*margin-top:10px;*/
}

h3{
    line-height:normal;
    font-size:18px;
    font-weight:normal;
    color:#2d8dcc;
    margin-bottom:10px;
}

a {
    color:#f7941f;
    text-decoration:underline;
}

a:hover {
    text-decoration:none;
	color:#d97907;
}

ul{
    padding:0;
    margin:10px 10px 10px 10px;
}

ol {
	padding:10px 30px;
}

li{
    list-style: none;
    background: url(images/bullet.gif) no-repeat left 4px;
    padding-left: 20px;
    margin-bottom:10px;
}

ol li{
	list-style:decimal;
	padding-left:0;
	background-image:none;
}

ol li ol{
	padding:10px 30px;
}

ol li ol li{
	list-style:lower-alpha;
}

.noBorder{
    border-style:none !important;
}


/* Form Stuff*/

label {
    cursor:pointer;
    color:#2d8dcc;
	font-weight:bold;
}

input, textarea, select{
	font-family:Arial, Geneva, sans-serif;
	font-size:11px;
	float:left;
}
input, textarea {
    width:290px;
    border:1px solid #B9BABD;
    padding:3px 5px;
    background-image:url(images/input_bg.jpg);
    background-repeat:repeat-x;
}

/*select{
	width:304px;
}*/

textarea {
	height:100px;
	width:394px;
}

form .buttons a{
	background-color:#fff;
	background-image:url(images/button_sprite.jpg);
	background-repeat:no-repeat;
	background-position:top left;
	color:#ffffff;
	font-weight:bold;
	cursor:pointer;
	margin-top:0;
	line-height:normal;
	margin-right:20px;
	width:80px;
	display:block;
	float:left;
	text-align:center;
	padding:8px 0;
	height:auto;
	text-decoration:none;
}

form .buttons a:hover{
	text-decoration:none;
	background-position:0 -30px;
}

form .buttons a:active{
	text-decoration:none;
	background-position:0 -60px;
}

.validation{
	color:#F00;
	font-size:10px;
}

form td{
	padding:2px 0;
}

form{
	line-height:normal;
}

/* Structure - Header */

#header{
	background-image:url(images/header_bg.jpg);
	background-position:top center;
	background-repeat:no-repeat;
	padding-bottom:10px;
}

	#headerInner{
		width:960px;
		margin:0 auto;
	}
	
		#logo{
			/*float:left;
			padding:20px 0 0 10px;*/
			padding-left:40px;
		}
		
		#strapline{
			/*float:left;
			padding-top:117px;*/
			padding-left:20px;
		}

/* Structure Menu */

#menuOuter{
	width:960px;
	margin:0 auto;
	line-height: normal;
}

	#menu{
		width:920px;
		background-image:url(images/menu_bg.png);
		background-repeat:repeat-x;
		float:left;
	}
	
		#menu ul {
			list-style: none;
			padding: 0;
			margin: 0;
		}
		
			#menu li {
				float: left;
				margin: 0;
				padding:0;
				background-image:none;
			}
			
				#menu li a {
					padding:21px 15px 24px 15px;
					font-size:15px;
					float: left;
					display: block;
					color: #333333;
					text-decoration: none;
					text-align: center;
				}
				
				#menu li a:hover{
					/*magic cloud behind wooo*/
					background-color:#fff !important;/*Just to show something happening*/
				}
				
				#menu li a:active, #menu li .active{
					color:#f7941f;
				}

/* Structure - Content */

#content{
	width:960px;
	margin:0 auto;
}

	#mainCol{
		width:640px;
		float:left;
	}
	
	.events #mainCol{
		width:960px;
	}
	
		#mainColInner{
			background-image:url(images/mainCol_bg.png);
			background-repeat:repeat-y;
			padding:0 30px;
		}
		
		.events #mainColInner{
			background-image:url(images/widecol_bg.png);
		}

	
	#subCol{
		float:left;
		width:320px;
	}
	
		.subColItem{
			
		}
		
		.subColItemInner{
			background-image:url(images/subColItem_bg.png);
			background-repeat:repeat-y;
			padding:0 30px;
			/*text-align:center;*/
		}
		.subColItemInner img{
			margin:0 auto;
		}
		.ctaNewsletter{
			background-image:url(images/ctaNewsletter_bg.png);
			background-repeat:no-repeat;
			padding:20px 30px;
		}
		
		.subEventItem{
			padding-bottom:20px;
		}
		
		.subEventItem h2, .subEventItem h2 a{
			font-size:14px;
			color:#f7941f;
			text-decoration:none;
			margin-bottom:5px;
			font-weight:bold;
		}
		
		.subEventItem h2 a:hover{
			color:#d97907;
		}
             
		#events{
			width:100%;
		}
		#events th {
                    background-color:#F7941F;
                    text-align: left;
                    color: white;
                    font-size: 14px;
                    padding: 5px 0;
		}
                #events td {
                    vertical-align: top;
                    padding: 5px 5px 5px 5px;
                }
				#events h3{
					padding-bottom:0;
					margin-bottom:0;
					font-size:16px;
				}
                #events .filterLabel {
                    text-align: right;
                    color: #2D8DCC;
                    padding-right: 10px;
                    font-size: 13px;
                    font-weight: bold;
                }
                #events .monthHeader td {
                    padding-bottom: 5px;
                    vertical-align: bottom;
                }
                #events .monthHeader h2 {
                    margin-bottom: 0;
                }
                #events .dataRow:hover {
                    color: #2D8DCC;
                    cursor: pointer;
                    -moz-user-select: none;
                    -khtml-user-select: none;
                    -o-user-select: none;
                    -webkit-user-select:ignore;
                }
                #events .dataSummaryContainer {
                    background-color:#F8DFC2;
                    padding: 8px 10px;
                    margin-bottom: 10px;
                }
                #events .dataSummary .locationDetails th, #events .dataSummary .locationDetails td {
                    vertical-align: top;
                    padding: 0;
                    margin: 0;
                }
                #events .dataSummary .locationDetails {
                    margin-top: 15px;
                }
                #events .dataSummary .locationDetails th {
                    background-color: transparent;
                    color: black;
                    font-size: 12px;
                }
                #events .dataSummaryRow td {
                   padding-bottom: 6px;
                }
                #events .dateRow td{
                    /*background-color:#ddd;*/
					padding:10px;
					background-color:#f0fbff;
                }
                .holiday {
                    background-color: #fdd;
                }
                .holidayText {
                    color: red;
                    font-weight:bold;
                }
/* Structure - Footer */

#footer{
	background-image:url(images/footer_bg.png);
	background-repeat:no-repeat;
	background-position:top center;
	margin-top:10px;
}

	#footerInner{
		width:900px;
		margin:0 auto;
		padding:30px 30px 100px 30px;
	}
	
		#footerMenu{
			float:left;
		}
		
		#footerCredit{
			float:right;
			width:320px;
		}
		
		#footerCredit img{
			float:right;
			margin-left:20px;
		}
