/* CSS code to format overall site layout using CSS positioning */
/* general html, body formats */
/* (c) 2009 Systaine Records */
html {
height:100%;
}
body {
height:auto;
/*width:750px;*/
background-color:#000000;
background-image:url("/images/background.gif");
/*background-image:url("/images/dropshadow-middle.png");*/
/*background-repeat:repeat-y;*/
/*background-position:center;*/
/*border:2px solid #FFFFFF;*/
margin: 20px 0px;
/*margin-top:15px;
margin-left:15px;
*/
text-align:center;
}
/***************************************************************************************/
/* body container **********************************************************************/
#divBodyContainer {
position:relative;
width:750px;
font-size:11px;
/*text-align:left;*/
margin: 0 auto;
font-family:"Trebuchet MS",sans-serif, Verdana, Arial;
border:2px solid #FFFFFF;
}
/********************************/
#divHeader {
float:left;
background-image:url("/images/header.gif");
background-repeat:no-repeat;
top:0px;
width:100%;
height:155px;
}
/* Navigation *********************/
#divNavContainer {
float:left;
width:100%;
height:100%;
font-size:11px;
background-color:#FFFFFF;
background-repeat:no-repeat;
background-image:url("/images/nav.gif");
border:solid #FFFFFF;
border-width: 2px 0;
}
#navLinks ul {
margin:0;
padding:0 20px;
list-style:none;
font-size:100%;
text-transform:lowercase;
text-align:center;
}
#navLinks li {
float:left;
margin:0;
padding:0;
background-image:none;
line-height:normal;
text-indent:0;
}
#navLinks a, #navLinks strong {
display:block;
padding:5px 10px 6px;
border:solid #ddd;
border-width:0 2px 0 0;
color:#FFFFFF;
text-decoration:none;
white-space:nowrap;
}
/* Following rule allows entire region of link to to be 
   clickable in IE/Win. Holly Hack explained here:
   http://www.positioniseverything.net/explorer/escape-floats.html */
* html #navLinks a {
width:1%;
}
#navLinks a:hover {
color:#FFFFFF;
text-decoration:underline;
background-color:#336699;
/*background-image:url("/img/bg_navshadow.gif");*/
}
#navLinks a:visited {
color:#FFFFFF;
}
#navLinks a.select {
color:#FFFFFF;
text-decoration:underline;
background-color:#336699;
}
    
/********************************/
/* content containers **********/
#divContentContainers {
float:left;
top:0px;
padding:0;
height:100%;
width:750px;
background-color:#FFFFFF;
}
/* Overcome stupid 3px margin bug in IE/Win floats, 
   which fixes a lot of things, including disapearing company nav,
   randomly appearing text, and wrappers pushed too wide.
   http://www.positioniseverything.net/explorer/threepxtest.html */
* html #divContentContainers {
margin-right:-3px;
}
#divContentHolderLeft {
float:left;
width:508px;
text-align:left;
/*background-color:#cccccc;*/
}
#divContentHolderRight {
float:right;
width:241px;
line-height:1.6em;
color:#fff;
background-color:#333333;
}
/* footer ************************/
#divFooter {
position:relative;
clear:left;
height:25px;
bottom:0px;
border-top:2px solid #000000;
background-image:url("/images/footer.gif");
color:#FFFFFF;
}
#divCopyRight {
position:absolute;
left:5px;
bottom:7px;
font-size:9px;
}
/********************************/
/* universal img formatter *****/
#divImg {
text-align:center;
margin: 20px auto;
border:1px solid #FFFFFF;
width:200px;
}
img {
border: 0px none;
}
/********************************/
/* contact form ****************/
.inputbox {
border:1px solid #330000;
width:120px;
background-color:#FFFFFF;
font-size:11px;
color:#000000;
}
.commentbox {
border:1px solid #330000;
color:#000000;
font-weight:bold;
background-color:#ffffff;
width:300px;
}
.formbutton {
border:1px solid #000000;
cursor:pointer;
width:90px;
background-color:#330000;
color:#FFFFFF;
font-weight:bold;
font-size:11px;
}
.btnOver {
border:1px solid #330000;
cursor:pointer;
width:90px;
background-color:#FFFFFF;
color:#000000;
font-weight:bold;
font-size:11px;
}
.errText {
color:#ff0000;
font-weight:bold;
}
.watermark {
background-color:#330000;
color:#FFFFFF;
font-size:11px;
border:1px solid #000000;
width:120px;
}
.watermarkComments {
background-color:#330000;
color:#FFFFFF;
border:1px solid #000000;
width:300px;
}
.validatorCallout {
background-color:#ffff99;
border:1px solid #000000;
color:#000000;
}
.pnlContactFormCSS {
border:1px solid #000000;
background-color: #ECECEC;
}
/**********************************/
/* basic link formats ************/
a:link {
text-decoration: none;
color: #660000;
background-color: transparent;
font-weight: bold;
font-style: normal;
}
a:visited {
color: #660000;
background-color: transparent;
text-decoration: none;
font-weight: bold;
}
a:hover {
font-style: normal;
color: #660000;
background-color: transparent;
text-decoration: none;
font-weight: bold;
}
a:active {
color: #660000;
background-color: transparent;
text-decoration: none;
font-weight: bold;
font-style: normal;
}
/***************************************/
/* accordion formatting ***************/
.accordionHeader {
font-weight:bold;
font-size:12px;
border:1px solid #2F4F4F;
background-color: #ffffff;
font-family: Arial, Sans-Serif;
cursor: pointer;
padding: 2px;
margin-top: 3px;
}
.accordionContent {
background-color: #ECECEC;
border: 1px dashed #2F4F4F;
border-top:none;
padding:5px;
padding-top:10px;
font-weight:normal;
font-size:11px;
font-family: Arial, Sans-Serif;
}
#cntAudioLeft a {
color:#ffffff;
background: none;
}
#cntAudioLeft a:hover {
background: none;
text-decoration: underline;
color:#ffffff;
}
p {
margin-top:10px;
}
/***********************************/
.rounded-corners {
behavior: url(/css/border-radius.htc);
border-radius: 20px;
}