@charset "UTF-8";
body {
	font: 12px Geneva, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.oneColFixCtrHdr #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 20px auto; /* the auto margins (in conjunction with a width) center the page */
	border-top: 1px solid #E9E9E9;
	border-left: 1px solid #E9E9E9;
	border-right: 1px solid #E9E9E9;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	background: #FFFFFF; 
	padding: 15px 0 0 0;
	margin-bottom: 20px;
	  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	padding: 15px 28px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	border-bottom: 1px solid #E9E9E9;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/*****/

td, th {

	vertical-align: top;
}

a img {
	
	border: 0;	
}

a {
	color: blue;
	text-decoration: none;
}

a:hover {

	text-decoration: underline;
}

h1 {

	font-size: 16px;
	color: #000;
	margin-bottom: 20px;
	margin-top: 20px;
}

h2 {

	font-size: 14px;
	color: #000;
	margin-bottom: 20px;
	margin-top: 20px;
}

/* @group Layout */

.layout #outerContainer {

	width: 800px;
	background: #FFFFFF;
	margin: 20px auto;
	border-top: 1px solid #E9E9E9;
	border-left: 1px solid #E9E9E9;
	border-right: 1px solid #E9E9E9;
	text-align: left;

}

.layout #container {
	width:  100%;
	text-align: left;
	margin: 0 auto;
	padding: 0;
	background-color: #FFF;
}

.layout #header {
	position: relative;
	width: 100%;
	padding: 0;
	background-color: #FFFFFF;
	text-align:center;
}

.layout #header #festBanner {
	position: absolute;
	left: 520px;
	top: 20px;
	z-index: 100;
	font: 18px Geneva, Arial, Helvetica, sans-serif;
	color: #990000;
}
.layout #header #festBanner a {
	color: #990000;

}

.layout #header p {
	margin: 0;	
}

.layout #header h1 {
	font-size: 1.3em;
	font-weight: bold;
	margin: 0;
	text-align: center;
	padding-top: 30px;
}

.layout #footer {
	padding: 15px 28px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	border-bottom: 1px solid #E9E9E9;
}

.layout #footer a, .layout #footer a:visited {

	font-size: 1em;
	text-decoration: none;
}

.layout #footer a:hover {

	text-decoration: underline;
}

.layout #content {
	position: block;
	text-align: left;
	padding: 0;
	min-height: 400px;
}

/* Three Column */

.layout #contentSection #leftThreeCol, .layout #contentSection #rightThreeCol {

	width: 190px;
	float: left;
	margin: 0;
	padding: 0;
	
}

.layout #contentSection #mainThreeCol {

	width: 410px;
	float: left;
	margin: 0;
	padding: 0;

}

.layout #contentSection #leftThreeCol .section {

	padding: 5px 5px 5px 24px;
}

.layout #contentSection #rightThreeCol .section {

	padding: 5px 5px 5px 0;
}

.layout #contentSection #mainThreeCol .section {

	padding: 5px;
}



/* Two Column */


.layout #contentSection #leftTwoCol {

	width: 220px;
	float: left;
	margin: 0;
	pading: 0;
	

}

.layout #contentSection #leftTwoCol .section {

	padding: 10px 5px 5px 36px;
}

.layout #contentSection #mainTwoCol {

	width: 494px;
	float: left;
	margin: 0;
	padding: 0;

}

.layout #contentSection #mainTwoCol .section {

	padding: 10px;
}

/* One Column */

#mainOneCol {

	margin: 0;
	padding: 0 20px;

}

#mainOneCol .section {

	padding: 20px;
}

.clearfloat { 
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.seperator {

	height: 10px;
	font-size: 1px;
}

/* @end */

/* @group Forms */

.formTbl th, .formTbl td {
	padding: 3px 3px;
}

.formTbl th {
	width: 33%;
}

.formTbl th {
	font-weight: bold;
	text-align: right;
}

.formTbl label.formLbl {
	font-weight: bold;
	line-height: 1.5;
}

/* @end */

/* @group Table for Info */

.dataTbl th, .dataTbl td {
	padding: 3px 3px;
}

.dataTbl th {
	width: 33%;
}

.dataTbl th.header {

	text-align: center;
}

.dataTbl th {
	font-weight: bold;
	text-align: right;
}

.dataTbl td {
	text-align: left;
}

.dataTbl label.dataLbl {
	font-weight: bold;
	line-height: 1.5;
}

/* @end */

.messageStyle {
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 10px;
	font-weight: bold;
	text-align: center;
	background-color: #f5feba;
	border: 1px solid #fdd16b;
}


/* @group List Table */

.listTbl {
	border: solid 1px #666666;
	border-collapse: collapse;
}

.listTbl td, .listTbl th {
	
	padding: 3px;
	vertical-align: top;
}

.listTbl th {
	
	text-align: center;
	background-color: #ccc;
	font-weight: bold;
	font-size: 0.9em;
	
} 

.listTbl td {
	
	border-bottom: solid 1px #666666;
}

.listTbl tr:hover {

	background-color: #FFFFCC;
}

.listTbl td.price {

	text-align: right;
}

.listTbl .smallinfo {

	font-size: 10px;
	color:#999999;
}

/* @end */

/* @group Info Box */

.infoBox {

	border: solid 1px #E9E9E9;
	padding: 0;
	margin: 0;
}

.infoBox h1 {
	margin: 0;
	padding: 3px 3px 3px 10px;
	background-color: #E9E9E9;
	text-align: left;
	font-size: 10px;
	font-weight: bold;
}

.infoBox .info {

	padding: 5px 3px;
	text-align: left;
}

/* @end */

/* @group General List */

ul.generalList {

	margin: 0;
	padding: 0;
	list-style-type: none;
}

ul.generalList li {

	padding: 0.2em 2em;
	font-size: 1.1em;


}

ul.generalList .desc {

	font-size: 14px;
	font-colour: #000000;
	padding-left: 10px;
}

ul.listNav {
	
	list-style-type: none;
	margin: 0;
	padding: 0;
}

ul.listNav li {
	
	float: left;
	margin-left: 5px;
	line-height: 2;
	padding: 0.2em 0.5;
	font-size: 12px;
}

ul.listNav a {
	
	text-decoration: none;
	color: #666;
	padding: 0.2em 0.5em;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;

}

ul.listNav a:hover {
	
	text-decoration: none;
	color: #990000;
}

.listEntry {
	
	float: left;
	padding: 5px 4px;
	width: 110px;
	margin: 0;
	text-align:center;
	border: 1px solid #FFF;
	
}

.listEntry:hover {
	
	cursor: pointer;
	border: 1px solid #CCCCCC;
	
}

.listEntry img {
	
	border: none;
	height: 100px;
}

.listEntry .info {
	
}

.listEntry .price {
	
	text-align: center;	
}

.viewInfo {
	padding: 5px 5px 0 5px;
	margin-bottom: 5px;	
}

.viewInfo .title {
	font-weight: bold;	
}

.viewInfo .info, .viewInfo .price {
	
	font-weight: bold;	
	margin: 0;
	padding: 0;
}

ul.tags {
	margin: 0;
	padding: 0;
	list-style-image: none;
}

ul.tags li {
	margin: 0;
	padding: 0.1em 0.5em;
	display: inline;	
}

ul.tags li a {

	padding: 0.1em 0.5em;
}

ul.tags li a:hover {

	padding: 0.1em 0.5em;
	background-color: #CCC;
}

.storeButton {
	
	background-color: #900;
	border: 2px solid #999;
	font-weight: bold;
	color: #FFF;
}

.storeButton:hover {
	
	background-color: #999;
	border: 2px solid #900;
	cursor: pointer;
}

.paginate {
	
	margin: 5px;	
}

.paginate a.paginateSelected, .paginate a.paginateLink {
	
	padding: 0.2em 0.4em;
}

.paginate a.paginateLink:hover {
	
	background-color: #E9E9E9;
	text-decoration: none; 
	color: #000;
}

.paginate a.paginateSelected {
	
	background-color: #E9E9E9;
	text-decoration: none; 
	color: #000;
	font-weight: bold;
}

.formError {
	
	color: #900;
	font-weight: bold;
}


/* @end */
