/* 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 {
	font-size: 100%;
}
/* 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. */
body {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background-image: url(../images/bg_body.gif);
}
/* Commonly used to style page titles. */
h1 {
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #235D9D;
}
/* Commonly used to style section titles. */
h2 {
	color: #000;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	line-height:16px;
}
h3 {
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 20px;
}
h5 {
	color: #4d4d4d;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 10px;
	line-height: 14px;
}

h6 {
	color: #4d4d4d;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 9px;
	line-height: 12px;
	text-align: center;
}

/* Sets the style for unvisited links. */
a,  a:link {
  color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #5f519e;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #3c8dd7;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #3c8dd7;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #4d4d4d;
}
#fullWidthHeader {
	border-bottom-style: solid;
	border-bottom-width: 1px;
	color: #FFFFFF;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 15px;
	margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 10px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 3px;
	background-image: url(../images/headerBG.jpg);
	height: 90px;
	background-repeat: repeat-x;
}

.logofloat {
	width:400px;
	position:absolute;
	top:40px;
	left:50%;
	margin-left:-200px;
	z-index: 1;
} 

#fullWidthHeader a {
  color: #FFFFFF;
}
#fullWidthHeader a:visited {
  color: #FFFFFF;
}
#fullWidthHeader a:hover {
	color: #FC0;
	text-decoration: none;
}
#fullWidthHeader a:focus {
  color: #FFFFFF;
}
#fullWidthHeader a:active {
  color: #FFFFFF;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 0 auto 0 auto; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Redefines the text alignment defined by the body element. */
	width: 940px;
	background-color: #FFF;
	overflow: visible;
}
#outerWrapper #contentWrapper {
	margin: 0px auto 0px auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 940px;
	background-color: #FFF;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	color: #4d4d4d;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	background-color: #FFF;
	overflow: auto;
	margin-top: 0px;
}

#outerWrapper #contentWrapper #content h2 {
	color: #235D9D;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
}
#outerWrapper #contentWrapper #content a {
  color: #4d4d4d;
  text-decoration: underline;
}
#outerWrapper #contentWrapper #content a:hover {
  color: #3c8dd7;
}
#outerWrapper #contentWrapper #content a:active {
  color: #4d4d4d;
}


#outerWrapper #contentWrapper #content #headerdiv {
	margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 0px 0px;
	background-color: #FFF;
	border-right: solid #ccc 1px;
}

#outerWrapper #contentWrapper #content #headerdivH {
	background-position: top center;
	background-repeat: no-repeat;
	margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 100%;
	background-color: #FFF;
	height: 260px;
	overflow: hidden;
}

#outerWrapper #contentWrapper #content #headerdiv #topcontent {
	background-color: #FFFFFF;
	background-position: top center;
	background-repeat: no-repeat;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	padding: 20px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 900px;
	min-height: 300px;
	text-align: center;
}

#outerWrapper #contentWrapper #content #headerdiv #topcontentH {
	background-color: #FFFFFF;
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 600px;
	height: 402px;
	text-align: left;
	overflow: hidden;
	border-bottom: solid #ccc 1px;
}

#outerWrapper #contentWrapper #content #headerdiv #topcontentdetail {
	background-color: #FFF;
	background-position: top center;
	background-repeat: no-repeat;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	padding: 20px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 100%;
	text-align: center;
}


#outerWrapper #contentWrapper #content #headerdiv #topcontentshop2 {
	background-color: #FFFFFF;
	background-position: top center;
	background-repeat: no-repeat;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	padding: 20px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 850px;
	min-height: 500px;
	text-align: center;
}

#outerWrapper #contentWrapper #content #headerdiv #topcontentshop {
	background-color: #FFFFFF;
	background-position: top center;
	background-repeat: no-repeat;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0px;
	padding: 20px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 850px;
	min-height: 500px;
	text-align: center;
}

#outerWrapper #contentWrapper #content #headerdiv #topcontentshop img {
	
	border:solid #CCC 1px;}

#outerWrapper #contentWrapper #content #contentdiv {
	width: 100%;
	background-color: #FFF;
}

#outerWrapper #contentWrapper #content #contentdiv2 {
	background-color: #fff; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 100%;
}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontent {
	background-position: bottom center;
	background-repeat: no-repeat;
	border-bottom-color: #FFFFFF;
	border-bottom-width: 0px;
	margin-left: auto;
	margin-right: auto;
	padding: 20px 20px 20px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 900px;
	min-height: 300px;
	text-align: center;
	color: #4d4d4d;
	background-color: #FFF;
}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontent2 {
	background-repeat: no-repeat;
	border-bottom-color: #FFFFFF;
	border-bottom-width: 0px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px 20px 20px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 900px;
	min-height: 450px;
	text-align: left;
	color: #4d4d4d;
}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontent a,  a:link {
  color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontent a:visited {
  color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontent a:hover {
	color: #3c8dd7;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontent a:focus {
	color: #3c8dd7;
}
/* Sets the style for a link that is being activated/clicked. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontent a:active {
	color: #4d4d4d;
}



#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetail {
	background-position: bottom center;
	background-repeat: no-repeat;
	border-bottom-color: #FFFFFF;
	border-bottom-width: 0px;
	margin-left: auto;
	margin-right: auto;
	padding: 20px 20px 20px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 900px;
	text-align: center;
	color: #FFF;
}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetail a,  a:link {
  color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetail a:visited {
  color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetail a:hover {
	color: #3c8dd7;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetail a:focus {
	color: #3c8dd7;
}
/* Sets the style for a link that is being activated/clicked. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetail a:active {
	color: #4d4d4d;
}




#topcontentshop a,  a:link {
	color: #4d4d4d;
  text-decoration: none;
}
/* Sets the style for visited links. */
#topcontentshop a:visited {
	color: #4d4d4d;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#topcontentshop a:hover {
	color: #3c8dd7;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#topcontentshop a:focus {
	color: #4d4d4d;
}
/* Sets the style for a link that is being activated/clicked. */
#topcontentshop a:active {
	color: #4d4d4d;
}

#topcontentshop2 a,  a:link {
	color: #4d4d4d;
  text-decoration: none;
}
/* Sets the style for visited links. */
#topcontentshop2 a:visited {
	color: #4d4d4d;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#topcontentshop2 a:hover {
	color: #3c8dd7;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#topcontentshop2 a:focus {
	color: #4d4d4d;
}
/* Sets the style for a link that is being activated/clicked. */
#topcontentshop2 a:active {
	color: #4d4d4d;
}

#topcontentsection {
	width: 600px;
	color: #4d4d4d;
	float: left;
	border-right: solid #ccc 1px;
	height: 402px;
	border-bottom: solid #ccc 1px;
}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontentsection {
	padding: 10px 20px 20px 40px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 540px;
	text-align: left;
	color: #4d4d4d;
	float: left;
	border-right: solid #ccc 1px;
	margin-bottom: 20px;
}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontentsection img {
	
	border:solid #CCC 1px;
	
	}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontentsection a,  a:link {
  color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentsection a:visited {
  color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentsection a:hover {
	color: #3c8dd7;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentsection a:focus {
	color: #3c8dd7;
}
/* Sets the style for a link that is being activated/clicked. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentsection a:active {
	color: #4d4d4d;
}



#outerWrapper #contentWrapper #content #contentdiv #bottomcontentsectionH {
	padding: 20px 20px 20px 40px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 540px;
	text-align: left;
	color: #4d4d4d;
	border-right: solid #ccc 1px;
	float: left;
}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontentsectionH img {
	
	border:solid #CCC 1px;
	
	}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontentsectionH a,  a:link {
  color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentsectionH a:visited {
  color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentsectionH a:hover {
	color: #3c8dd7;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentsectionH a:focus {
	color: #3c8dd7;
}
/* Sets the style for a link that is being activated/clicked. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentsectionH a:active {
	color: #4d4d4d;
}




#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetail {
	background-position: bottom center;
	background-repeat: no-repeat;
	border-bottom-color: #FFFFFF;
	border-bottom-width: 0px;
	padding: 10px 20px 20px 40px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 600px;
	min-height: 450px;
	text-align: left;
	color: #4d4d4d;
	margin-left: 230px;
	border-left: solid #ccc 1px;
}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetail img {
	
	border:solid #CCC 1px;
	
	}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetail a,  a:link {
  color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetail a:visited {
  color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetail a:hover {
	color: #3c8dd7;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetail a:focus {
	color: #3c8dd7;
}
/* Sets the style for a link that is being activated/clicked. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetail a:active {
	color: #4d4d4d;
}

#topcontentlinks {
	padding: 10px 40px 20px 40px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 258px;
	color: #4d4d4d;
	float: right;
	height: 372px;
	background-color: #F9F9F9;
	border-bottom: solid #ccc 1px;
	text-align: justify;
	font-size: 11px;
	overflow: hidden;
}

#homebaseleft {
	padding: 30px 20px 20px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 298px;
	text-align: left;
	color: #4d4d4d;
	min-height: 200px;
	background-image: url(../images/logosml.jpg);
	background-repeat: no-repeat;
	background-position: 100% 10%;
	float: right;
	overflow: hidden;
}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontentlinks {
	padding: 30px 20px 20px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 255px;
	text-align: left;
	color: #4d4d4d;
	float: right;
	min-height: 200px;
}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontentlinks a,  a:link {
	color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentlinks a:visited {
	color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentlinks a:hover {
	color: #3c8dd7;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentlinks a:focus {
	color: #3c8dd7;
}
/* Sets the style for a link that is being activated/clicked. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentlinks a:active {
	color: #3c8dd7;
}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontentlinks ul {
	color: #3c8dd7;}
	
	
	
	
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetaillinks {
	background-position: bottom center;
	background-repeat: no-repeat;
	border-bottom-color: #FFFFFF;
	border-bottom-width: 0px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px 20px 20px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 190px;
	min-height: 260px;
	text-align: left;
	color: #4d4d4d;
	float: left;
}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetaillinks a,  a:link {
	color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetaillinks a:visited {
	color: #3c8dd7;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetaillinks a:hover {
	color: #3c8dd7;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetaillinks a:focus {
	color: #3c8dd7;
}
/* Sets the style for a link that is being activated/clicked. */
#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetaillinks a:active {
	color: #3c8dd7;
}

#outerWrapper #contentWrapper #content #contentdiv #bottomcontentdetaillinks ul {
	color: #3c8dd7;}


#fixedFullWidthFooter {
	color: #FFF;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 13px;
	font-style: normal;
	height: 100px;
	padding-bottom: 10px;
	padding-top: 20px;
	background-image: url(../images/footerBG.jpg);
}

#fixedFullWidthFooter p {
	margin-top:20px;
}

#fixedFullWidthFooter a {
	color:#fff;
}
	
	
/* The following code is for the fixed full width footer */
html, body {
  height: 100%;
}
#outerWrapper {
}

#fixedFullWidthFooter {
	width: 940px;
	float: left;
}

#guild {
	border-top:solid #CCC 1px;
	padding-top: 20px;
}
.contactboxes{
	border:1px;
	border-color:#CCC;
	padding:3px;
	border-style: solid;
	background-color:#FFF;
	}
	
	.contactboxesgenre{
	border:1px;
	border-color:#CCC;
	padding:3px;
	border-style: solid;
	background-color:#FFF;
	font-size:14px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	}
	
#hidden_option{
	width:1px;
	height:1px;
	overflow:hidden;
}
 #scol {
	margin-left:140px;
}
