/* CSS Document */

body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
	line-height:1.4em;
}
p, ul, ol, dl {font-size: 75%;}
h1, h2, h3, h4, h5 {color:#666666;}
h1, h2, h3 {font-weight: normal;}
h2 {padding-top: .7em; margin-bottom: -.3em; border-top: 1px dotted #cccccc;}

li {margin-bottom: .5em;}

a {color:#0000FF;}

.bold {font-weight:bold;}

.twoColLiqRtHdr #container { 
	width: 96%;  /* this will create a container 96% of the browser width */
	background: #FFFFFF;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 10px solid #fff;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColLiqRtHdr #header {
	padding: 0 0 0 0;
	height: 75px;
	border-bottom: 1px solid #ffffff;
	background-color: #000000;
	background-image: url(../images/bg-hdr-01.jpg);
	background-repeat: no-repeat;
	background-position: right top;
} 
.twoColLiqRtHdr  #header.scap {background-image: url(../images/bg-hdr-scap.jpg); }
.twoColLiqRtHdr  #header.babydoll {background-image: url(../images/bg-hdr-babydoll.jpg); }
.twoColLiqRtHdr  #header.clive {background-image: url(../images/bg-hdr-clive.jpg); }
.twoColLiqRtHdr #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 */
}
/* Main navigational styles that live under the main header--------------- */
.twoColLiqRtHdr #nav {
	clear: both;
	padding: 0 0 0 0;
	min-height: 14px;
	height: auto;
	border-top: 0px solid #CCCCCC;
	border-bottom: 4px solid #ffffff;
	text-align: right;
	background-color: #CCCCCC;
	background-image: url(../images/bg-nav.gif);
	background-repeat: no-repeat;
	background-position: left top;
} 
.twoColLiqRtHdr #nav ul {
	list-style-type:none;
	font-size: 75%;
	font-weight: bold;
	margin: 0;
	padding: 0;
	line-height: 1.6em;
	float: right;
	}
.twoColLiqRtHdr #nav li { 
	list-style-type:none;
	float: left;
	line-height: 1.8em;
	background:#cccccc; 
}
.twoColLiqRtHdr #nav li a { 
	text-decoration: none; 
	padding: .3em 1em .3em 1em;
	color: #000000; 
}
.twoColLiqRtHdr #nav li a:hover { 
	background-color: #ffffff;
	color:#FF6600;
	text-decoration:underline; 
	border-bottom: 2px solid #ffffff;
}
.twoColLiqRtHdr #nav li a.selected { 
	background-color: #ffffff;
	color:#FF6600;
	text-decoration:none; 
	border-bottom: 2px solid #ffffff;
}

/* End main navigational styles --------------- */

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqRtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
#homecontainer { padding: 0; margin: 0; background-color:#666666; }
.twoColLiqRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 24%; 
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div  */
}
.twoColLiqRtHdr #sidebar1.home {
	width: 26%; 
	background:#FFCC99; 
	padding:  0 0;
	min-height: 380px;
	height: auto;
}
.twoColLiqRtHdr #sidebar-bottom {
	padding:  0 0;
	min-height: 22px;
	height: auto;
	border-left: 2px solid #ffffff;
}

.twoColLiqRtHdr #sidebar1 h3, .twoColLiqRtHdr #sidebar1 p {
	margin-left: 0px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	margin-top: 1.6em;
}
.twoColLiqRtHdr #sidebar1.home h3, .twoColLiqRtHdr #sidebar1.home p {
	margin-right: 0px;	margin-top: 0;
}
.date { 
	font-size: 70%;
}

/* Subnav styles --------------- */
.twoColLiqRtHdr #sidebar1 ul {
	list-style-type:none;
	font-size: 75%;
	margin: 0;
	padding: 0;
	line-height: 1.6em;
	}
.twoColLiqRtHdr #sidebar1 li { 
	list-style-type:none;
	line-height: 1.8em;
	background:#ffffff; 
	border-bottom: 1px dotted #ccc;
}
.twoColLiqRtHdr #sidebar1 li a { 
	text-decoration: none; 
	padding: 0;
}
.twoColLiqRtHdr #sidebar1 li a:hover { 
	background-color: #ffffff;
	color:#FF6600;
	text-decoration:underline; 
	border-bottom: 2px solid #ffffff;
}
.twoColLiqRtHdr #sidebar1 li a:active { 
	background-color: #ffffff;
	color:#FF6600;
	text-decoration:underline; 
	border-bottom: 2px solid #ffffff;
}
.twoColLiqRtHdr #sidebar1 ul li ul{
	list-style-type:none;
	font-size: 100%;
	margin: .3em 0 0 2em;
	padding: 0;
	line-height: 1.4em;
	}
.twoColLiqRtHdr #sidebar1 li ul li{ 
	list-style-type:none;
	line-height: 1.4em;
	background:#ffffff; 
	border-bottom: 0px dotted #ccc;
}
.twoColLiqRtHdr #sidebar1 li ul li a { 
	text-decoration: none; 
	padding: 0;
	font-style:italic;
}
.twoColLiqRtHdr #sidebar1 li a:hover { 
	background-color: #ffffff;
	color:#FF6600;
	text-decoration:underline; 
	border-bottom: 2px solid #ffffff;
}
.twoColLiqRtHdr #sidebar1 li a:active { 
	background-color: #ffffff;
	color:#FF6600;
	text-decoration:underline; 
	border-bottom: 2px solid #ffffff;
}


/*subnav.home styles---------------- */
.twoColLiqRtHdr #sidebar1.home ul.iconlist {
	list-style-type: none;
	margin: 0;
	border-left: 2px solid #ffffff;
	border-bottom:2px solid #ffffff;
	}

.twoColLiqRtHdr #sidebar1.home ul.iconlist li {
  list-style-type: none;
  padding: 5px 0px 0px 96px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-color:#666666;
  border-top: 2px solid #ffffff;
  border-bottom: 0px dotted #ccc;
  line-height: 1.0em;
  margin-bottom: 0;
}
.twoColLiqRtHdr #sidebar1.home ul.iconlist li a {
	text-decoration: none;
	color: #ffffff;
	display: block;
}
.twoColLiqRtHdr #sidebar1.home ul.iconlist li a:hover {
	text-decoration: underline;
	background-color: #666666;
	color:#FF9966;
	border-bottom: 0px solid #ffffff;
}
.twoColLiqRtHdr #sidebar1 li a:active {
	background-color: #666666;
	color:#FF6600;
	text-decoration:none;
	border-bottom: 0px solid #ffffff;
}
.twoColLiqRtHdr #sidebar1.home ul.iconlist li.babydoll {
	background-image:url(../images/iconlist-babydoll.jpg);
	font-weight: bold;
	padding-top: 2.1em;
	padding-bottom: 2.1em;
}
.twoColLiqRtHdr #sidebar1.home ul.iconlist li.scap {
	background-image:url(../images/iconlist-scap.jpg);
	font-weight: bold;
	padding-top: 2.1em;
	padding-bottom: 2.1em;
}
.twoColLiqRtHdr #sidebar1.home ul.iconlist li.krill {
	background-image:url(../images/iconlist-krill.jpg);
	font-weight: bold;
	padding-top: 2.1em;
	padding-bottom: 2.1em;
}
.twoColLiqRtHdr #sidebar1.home ul.iconlist li.design {
	background-image:url(../images/iconlist-design.jpg);
	font-weight: bold;
	padding-top: 2.1em;
	padding-bottom: 2.1em;
}
.twoColLiqRtHdr #sidebar1.home ul.iconlist li.uno {
	background-image:url(../images/home-uno-01.gif);
	font-weight: bold;
	padding-top: 2.1em;
	padding-bottom: 2.1em;
}
.twoColLiqRtHdr #sidebar1.home ul.iconlist li.dos {
	background-image:url(../images/home-dos-01.jpg);
	font-weight: bold;
	padding-top: 2.1em;
	padding-bottom: 2.1em;
}
.twoColLiqRtHdr #sidebar1.home ul.iconlist li.tres {
	background-image:url(../images/home-tres-01.jpg);
	font-weight: bold;
	padding-top: 2.1em;
	padding-bottom: 2.1em;
}
.twoColLiqRtHdr #sidebar1.home ul.iconlist li.quattro {
	background-image:url(../images/home-quattro-01.jpg);
	font-weight: bold;
	padding-top: 2.1em;
	padding-bottom: 2.1em;
}
.twoColLiqRtHdr #sidebar1.home ul.iconlist li.cinco {
	background-image:url(../images/home-cinco-01.jpg);
	font-weight: bold;
	padding-top: 2.1em;
	padding-bottom: 2.1em;
}




/*
.twoColLiqRtHdr #sidebar1.home ul {
	list-style-type:none;
	font-size: 75%;
	margin: 0;
	padding: 0;
	line-height: 1.6em;
	}
.twoColLiqRtHdr #sidebar1.home li { 
	list-style-type:none;
	color:#ffffff;
	background-color:#666666;
	border-left: 3px solid #ffffff;
	padding: 0;
	border-top: 1px solid #ffffff;
}
.twoColLiqRtHdr #sidebar1.home li a { 
	text-decoration: none;
	padding: 15px 10px 10px 10px; 
}
.twoColLiqRtHdr #sidebar1.home li a:hover { 
	background-color: #ffffff;
	color:#FF6600;
	text-decoration:underline; 
}
.twoColLiqRtHdr #sidebar1.home li a:active { 
	background-color: #ffffff;
	color:#FF6600;
	text-decoration:underline; 
}
*/

.twoColLiqRtHdr #sidebar1.home h3 {
	color:#ffffff;
	background-color:#FF6600;
	border-left: 2px solid #ffffff;
	padding: 20px 10px 0px 10px;
	margin: 0;
}
	
/* End subnav styles --------------- */

.twoColLiqRtHdr #mainContent { 
	margin: 0 26% 0 10px; /* the left margin should mirror the margin on the header and footer for proper alignment. */
	border-right: 1px dotted #ccc;
	padding: 0 20px 20px 0;
	min-height: 300px;
	height: auto;
} 
.twoColLiqRtHdr #mainContent.home { 
	margin: 0 26% 0 0;
	border-right: 0px dotted #ccc;
	padding: 0 0px 0 0;
}
.twoColLiqRtHdr #mainContent.babydoll { 
	background-image:url(../images/bg-babydoll.jpg);
	background-repeat:no-repeat;
	background-position:top right;
}
.twoColLiqRtHdr #mainContent.scap { 
	background-image:url(../images/bg-scap.jpg);
	background-repeat:no-repeat;
	background-position:top right;
}
.twoColLiqRtHdr #mainContent.clive { 
	background-image:url(../images/bg-clive.jpg);
	background-repeat:no-repeat;
	background-position:top right;
}
.twoColLiqRtHdr #homebanner {
	background-color: #666666;
	min-height: 386px;
	height: auto;
	color:#333333;
	padding: 0;
	background-image: url(../images/bg-home-kids.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	}
.twoColLiqRtHdr #homebanner h1 {
	color:#FFFFFF;
	padding-left: 111px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
	background-image: url(../images/bg-home-h1.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
.twoColLiqRtHdr #homebanner p.quote-banner {text-align: right; font-size: 1.6em; line-height: .5em; color:#FFFFFF; padding: 270px 100px 0 10px;}
.twoColLiqRtHdr #homebanner p.name {
	font-size: 1.2em;
	line-height: 0.5em;
	text-align: right;
	color:#FFFFFF;
	text-align: right;
	padding: 0 50px 20px 10px;
	font-style: italic;
}
p.subhead {
	font-weight: normal;
	font-size: 1em;
	font-style: italic;
	color:#666666;
}
p.teaser {
	padding: 0 0 0 100px;
	margin-bottom: -.1em;
}
p.projects {padding-top: 0;}
/*.quotebox {
	border: 1px solid #cccccc;
	background-color:#FFCC66;
	padding: 10px;
	}*/
p.quote {
	border-top: 0px solid #ccc;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
	background-image:url(../images/bg-quote.gif);
	background-repeat:no-repeat;
	background-position: top left;
	background-color:#E9E9E9;
	padding: 10px 10px 10px 35px;
	margin-bottom: 0;
}
p.quote-scap {
	border-top: 0px solid #ccc;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
	background-image:url(../images/bg-quote-scap.gif);
	background-repeat:no-repeat;
	background-position: top left;
	background-color:#E9E9E9;
	padding: 10px 10px 10px 145px;
	margin-bottom: 0;
}
p.quote-babydoll {
	border-top: 0px solid #ccc;
	border-right: 1px solid #ccc;
	border-left: 1px solid #ccc;
	background-image:url(../images/bg-quote-babydoll.gif);
	background-repeat:no-repeat;
	background-position: top left;
	background-color:#E9E9E9;
	padding: 10px 10px 10px 145px;
	margin-bottom: 0;
}

p.entrydate {
	margin: 0 0 0 0;
	/*font-style:italic;*/
	background-image:url(../images/quote-connector.gif);
	background-repeat:no-repeat;
	background-position: top left;
	padding: 5px 10px 0 10px;
	color:#666666;
	clear:both;
}
p.entrydate-scap {
	margin: 0 0 0 0;
	/*font-style:italic;*/
	background-image:url(../images/quote-connector-scap.gif);
	background-repeat:no-repeat;
	background-position: top left;
	padding: 5px 10px 0 40px;
	color:#666666;
}
p.entrydate-babydoll {
	margin: 0 0 0 0;
	/*font-style:italic;*/
	background-image:url(../images/quote-connector-babydoll.gif);
	background-repeat:no-repeat;
	background-position: top left;
	padding: 5px 10px 0 30px;
	color:#666666;
}
.name { font-weight: bold; }

div#musicstackleft {
	float: left;
	width: 260px;
	margin-right: 12px;
	}
div.musicbox {
  float: left;
  margin: 17px 12px 0 0;
  padding: 0;
  background-color:#e9e9e9;
  background-image:url(../images/bg-quote-musicbox.gif);
  background-repeat:repeat-x;
  background-position:top left;
  width:253px;
  }
div.music-img h2 {
 padding-top: 0em; 
 padding-bottom: .3em;
 margin-bottom: -.5em;
 border-bottom: 1px solid #ccc;
 border-top: 0px;
 }
div.music-img h3 {
 font-size: 93%;
 line-height: 1.4em;
 padding-top: 0em; 
 padding-bottom: .3em;
 margin-top: -.2em;
 margin-bottom: -.2em;
 border-top: 0px;
 color:#996600;
 clear: both;
 }
div.music-img h3 .title a {
	font-weight: bold;
	font-size: 110%;
	line-height: 1.1em;
	margin-top: 0;
	color: #996633;
	text-decoration: none;
	display: block;
}
div.music-img h3 .title a:hover {
	color:#FF6600;
}

div.music-img {
  padding: 12px 10px 12px 12px;
  background-color:#;
	border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  width: 229px;
  }  
div.music-img p {
   line-height: 1.4em;
   font-size: 75%;
   text-align: left;
   }
div.music-img p.vin {
   line-height: 1.4em;
   font-size: 70%;
   font-style:italic;
   text-align: left;
   margin: 0 0 -.7em 0;
   padding-bottom: 5px;
   border-bottom: 1px dotted #ccc;
   }
p.musicbox-quote {
	margin: 0 0 0 0;
	/*font-style:italic;*/
	background-image:url(../images/quote-connector-musicbox.gif);
	background-repeat:no-repeat;
	background-position: top right;
	background-color:#fff;
	text-align:right;
	padding: 5px 45px 5px 0;
	color:#666666;
	clear:both;
	width: 208px;
}
.picbox-rt {
	float: right;
	margin-left: 12px;
	width: 150px;
	background-color:#e9e9e9;
	}
.picbox-rt p {
	padding: 0 7px 7px 7px;
	font-size: 70%;
	line-height: 1.2em;
	margin-top: .2em;
	}
ul.tracklist {
	font-size:75%;
	margin: 0 0 0 15px;
	}
table {
	font-size:75%;
	line-height: 1.2em;
	border: 1px solid #ccc;
	}
th {
	background-color:#FFCC99;
	text-align:left;
	}
tr {
	background-color: #f7f7f7;
	}
tr.odd {
	background-color: #e9e9e9;
	}
td {
	text-align:left;
	vertical-align:top;
	line-height:1.3em;
	}
.oddRow{
	background-color:#e9e9e9;
}
.hoverRow, .selectRow{
	background-color: #FFCC99;
	cursor: pointer;
	cursor: hand;
}
#dataTable { width: 100%; 
}
#dataTable td, #dataTable th{ padding: 5px; }
th { text-align: left; 
	cursor: pointer;
	cursor: hand;
}
#dataTable2 { width: 100%; 
}
#dataTable2 td, #dataTable2 th{ padding: 5px; }


 





.twoColLiqRtHdr #footer { 
	padding: 10px 0 20px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffffff;
	border-top: 1px dotted #ccc; 
} 
.twoColLiqRtHdr #footer.home { 
	padding: 10px 0 20px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#ffffff;
	border-top: 0px dotted #ccc; 
} 
.twoColLiqRtHdr #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 */
}
/* Footer Nav styles --------- */
.twoColLiqRtHdr #footer ul {
	list-style-type:none;
	font-size: 70%;
	margin: 0;
	padding: 10px 0px 0px 0px;
	line-height: 1.6em;
	float: left;
	}
.twoColLiqRtHdr #footer li { 
	list-style-type:none;
	float: left;
	line-height: 1.0em; 
}
.twoColLiqRtHdr #footer li a { 
	text-decoration: none; 
	padding: 0 1em 0 1em; 
	border-right: 1px solid #ccc;
}
.twoColLiqRtHdr #footer li a:hover { 
	background-color: #ffffff;
	color:#FF6600;
	text-decoration:underline; 
	border-bottom: 2px solid #ffffff;
}
.twoColLiqRtHdr #footer li a.selected { 
	background-color: #ffffff;
	color:#FF6600;
	text-decoration:none; 
	border-bottom: 2px solid #ffffff;
}
/* end footer nav styles ------- */

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 10px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 10px;
}
.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: 0;
}
.clearfloat-left { 
	clear:left;
    height:0;
    font-size: 1px;
    line-height: 0;
}
/* = = = = = = FORMS!!!! ----- = =  === = */
fieldset {border:1px solid #999;}
form {font-size:75%;}
.formrow {display:block; clear:both; padding: .5em 0 .5em 0;min-height:2em;height:auto;}
label {float:left;width:27%;text-align:right;}
input {float:left;margin-left: 5px;}
textarea {float:left;margin-left: 5px;}

/* = == == = project viewer = = == == === */
#projectviewer {
	background-color: #eeeee1;
	padding: 10px;
	background-image: url(../images/bg-projectviewer.gif);
	background-repeat: repeat-x;
	background-position: left top;
	border: 1px solid #ccc;
	}
h2.projectviewer {padding: 0 0 10px 0; margin-top: .2em; margin-bottom: .5em; border-top: 0px dotted #cccccc; border-bottom: 1px dotted #cccccc;}
#web-tn {
	float: left;
	width: 230px;
	padding: 0;
	margin: 0;
	}
#web-lg {
	float: left;
	width: 235px;
	padding: 0;
	margin: 0;
	}
#web-tn ul{
	padding: 0;
	margin: 0;
	}
#web-tn ul li{
	float: left;
	list-style-type: none;
	margin-bottom: 0em;
	margin: 0 7px 3px 0;
	}
#web-inst {
	float: left;
	width: 180px;
	padding:10px 7px 0 0;
	}
#web-inst ol {
	font-size: 70%;
	line-height: 1.2em;
	}
#web-inst h3 {
	font-size: 75%;
	font-weight:bold;
	line-height: 1.2em;
	}
#web-inst img {
	margin: 0 0 -3px 13px;
	}
