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

Author: Jazmin Brooks
Date: October 2009

*/

/* 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 0 20px 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size:14px;
    line-height:20px;
    color:#000;
    background-color:#f1dec7;
    min-height:100%;
}

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

a img{
    border:none;
}

img{
    display:block;
}

form img{
	display:inline;
}

.clear{
    clear:both;
    height:0;
    overflow:hidden;
}

h1{
    line-height:38px;
    font-size:36px;
	font-family: Garamond, Georgia, "Times New Roman", serif;
    font-weight:normal;
	color: #082640;
    margin-bottom:20px;
}

h2{
    line-height:normal;
    font-size:24px;
	font-family: Garamond, Georgia, "Times New Roman", serif;
    font-weight:normal;
    color:#082640;
    margin-bottom: 10px;
}

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

h4{
    line-height:normal;
    font-size:14px;
    font-weight:normal;
    color:#082640;
    margin-bottom:10px;
}

a {
    color:#082640;
    text-decoration:none;
}

a:hover {
    
}

ul{
    margin:0 0 10px 0;
    padding:5px 10px 5px 10px;
	background-color:#fcf6da;
	border-bottom:1px solid #fff;
	border-right:1px solid #fff;
}

ol {
	padding:10px 30px;
}

li{
    list-style: none;
    background: url(/main/images/bullet.gif) no-repeat left 1px;
    padding-left: 25px;
    margin-top:10px;
}

li:first-child{
	margin-top:0;
}

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;
}

/* Form Stuff*/

form ol{
	padding:0;
	margin:0;
}

	form ol li{
		list-style:none;
		padding:0;
		margin:5px 0 0 0;
		overflow:hidden;
	}
	
	form ol li:first-child{
		margin:0;
	}
	
		label {
			cursor:pointer;
			font-size:14px;
			font-weight:normal;
			color:#082640;
			width:125px;
			float:left;
			padding:0 10px 0 0;
		}
	
		input, textarea, select{
			border-style:solid;
			border-width:1px;
			border-color:#B8B4AA #d2cec4 #d2cec4 #B8B4AA;
			font-family:Arial, Geneva, sans-serif;
			font-size:11px;
			padding:2px 5px;
			width:240px;
			float:left;
		}
		
			input:focus, textarea:focus, select:focus{
				background-color:#FCF6DA;
			}

		select{
			width:304px;
		}

		textarea {
			height:100px;
		}
		
		.captchaBlock{
			width:105px;
			float:left;
		}
		
			.captchaBlock img{
				float:left;
			}
			
			.captchaBlock input{
				float:left;
				margin:5px 0 0;
			}
		
			.captcha{
				width:90px;
			}
		
		.validation{
			color: #F00;
			font-size:10px;
			float:left;
			padding:0 5px;
		}
		
		#code-invalid{
			margin:33px 0 0 0;
			float:left;
			padding:0 0 0 3px;
		}
		
		.formButtons{
			padding:10px 20px 20px 260px;
		}
		
			.formButtons input{
				color:#fff;
				width:120px;
				border:1px solid #082640;
				cursor:pointer;
				border-radius:5px;
				-moz-border-radius:5px;
				-webkit-border-radius:5px;
				background:#082640 url("../images/btn-glass.png") repeat-x 0 50%;
				padding:3px 0;
				font-weight:bold;
				font-size:12px;
			}
			
				.formButtons input:hover{
					background-color:#163e60;
				}
				
				.formButtons input:active, .formButtons input:focus{
					background-color:#041e34;
				}

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

#confirmation-msg{
	background-color:#FFF9E9;	
}

/*Structure*/

#outerWrapper{
	background-image:url(../images/wrapperOuter_bg.jpg);
	background-repeat:repeat-y;
	background-position:center;
}

	#innerWrapper{
		background-image:url(../images/innerWrapper_bg.jpg);
		background-repeat:no-repeat;
		background-position:center bottom;
		padding:0 0 20px 0;
	}

	#wrapper{
		width:960px;
		margin:0 auto;
	}
	
		#header{
			margin:0 0 10px 0;
		}
		
		#content{
			margin:0 0 20px 0;
			background-image:url(../images/content_bg.gif);
			background-repeat:repeat-y;
			background-position:640px 0;
		}
		
		#footer{
			border-style:double;
			border-color:#87847f;
			border-width:3px 0 0 0;
			padding:20px;
		}
	
/*Header*/

#logo{
	padding:15px 0 15px 160px;
}

#menu{
	border-style:double;
	border-color:#87847f;
	border-width:3px 0;
	padding:0 0 0 10px;
}

#headerImg{
	padding:20px;
	margin:10px 0 0 0;
	background-image:url(../images/headerImg_bg.jpg);
	background-repeat:no-repeat;
}

/*Content*/

#mainCol{
	float:left;
	width:590px;
	padding:0 20px 10px 20px;
	margin:0 20px 0 0;
}

	#mainCol a{
		border-bottom:1px solid #aab1b1;
	}
	
	#mainCol a:hover{
		border-bottom:1px solid #082640;
	}

#subCol{
	float:left;
	width:270px;
	padding:0 20px 10px 20px;
}

	#latestNews{
		
	}
	
	#miniGallery{
		padding:10px;
		background-image:url(../images/minigallery-bg.jpg);
		background-repeat:no-repeat;
	}
	
/*Footer*/

#footerInfo{
	float:left;
	width:590px;
	margin:0 20px 0 0;
}

	#footerInfo a{
		border-bottom:1px solid #aab1b1;
	}
	
	#footerInfo a:hover{
		border-bottom:1px solid #082640;
	}

#footerCredit{
	float:left;
	width:270px;
	padding:0 0 0 40px;
}

	#footerCredit a{
		display:block;
		float:left;
		text-indent:-9999px;
		background-image:url(../images/footer-credit-sprite.jpg);
		background-repeat:no-repeat;
		background-position:0 0;
	}
	
		#footerCredit .credit1{
			width:160px;
			height:69px;
			background-position:0 0;
			margin:0 20px 0 0;
		}
		
			#footerCredit .credit1:hover{
				background-position:0 -69px;
			}
		
		#footerCredit .credit2{
			width:68px;
			height:69px;
			background-position:-100px 0;
			margin:0 20px 0 0;
		}
		
			#footerCredit .credit2:hover{
				background-position:-100px -69px;
			}
		
		#footerCredit .credit3{
			width:72px;
			height:69px;
			background-position:-198px 0;
		}
		
			#footerCredit .credit3:hover{
				background-position:-198px -69px;
			}

/*Classes*/

.emphasisedText{
	font-family:Garamond, Georgia, "Times New Roman", serif;
	font-size:18px;
	margin-bottom:5px;
}

.left{
    float:left;
    margin-right:10px;
    margin-bottom:10px;
}

	.left a{
		border:none !important;
	}

.right{
    float:right;
    margin-left:10px;
    margin-bottom:10px;
}

	.right a{
		border:none !important;
	}

.leftImage{
    float:left;
    margin-right:10px;
    margin-bottom:10px;
	padding:5px;
	background-color:#fff;
	border:1px solid #ece7da;
	box-shadow:0 0 5px #cccbcb;
	-moz-box-shadow:0 0 5px #cccbcb;
	-webkit-box-shadow:0 0 5px #cccbcb;
}

	.leftImage a{
		border:none !important;
	}
	
	.leftImage img{
		
	}

.rightImage {
    float:right;
    margin-left:10px;
    margin-bottom:10px;
	padding:5px;
	background-color:#fff;
	border:1px solid #ece7da;
	box-shadow:0 0 5px #cccbcb;
	-moz-box-shadow:0 0 5px #cccbcb;
	-webkit-box-shadow:0 0 5px #cccbcb;
}

	.rightImage a{
		border:none !important;
	}
	
	.rightImage img{
		
	}
	
.image{
	padding:5px;
	background-color:#fff;
	border:1px solid #ece7da;
	box-shadow:0 0 5px #cccbcb;
	-moz-box-shadow:0 0 5px #cccbcb;
	-webkit-box-shadow:0 0 5px #cccbcb;
}

	.image a{
		border:none !important;
	}
	
	.image img{
		
	}
	
.table{
	background-color:#fcf6da;
	margin:10px;
	border-collapse:collapse;
}

	.table td, .table th{
		padding:5px 10px;
		border:1px solid #B5B1A7;
	}
	
	.table th{
		
	}
	
	
	
