/* Start of CMSMS style sheet 'cypressSTYLE' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body,html {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 12px;
   line-height: 20px;
   background-color: #000;
   color: #888;
   margin:0em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

img {
   border: 0;
}

a,
a:link 
a:active {
   text-decoration: none;
   color: #FFF; 
}

a:visited {
   text-decoration: none;
  
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   color: #4E0F55;
}

.external a {
color:#FFF;
}

/*****************
basic layout 
*****************/


/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 0 auto;       /* this centers wrapper */
   max-width: 1000px;   /* IE wont understand these, so we will use javascript magick */
   min-width: 1000px;
   background-color: #000;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   height: 80px;    /* adjust according your image size */
   background: #385C72;           
}

div#header h1 a {
/* you can set your own image here */
   background: #385C72 url(images/cms/logo1.gif) no-repeat 0 12px; 
   display: block;
   height: 80px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

/* position for the search box */
div#search {
   float: right;
   width: 27em;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs2 {
   padding-left: 40px; /* CSS short hand rule first value is top then right, bottom and left */
 padding-bottom: 30px;
  padding-top: 30px;
   font-size: 90%;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
     border-bottom: 0px dotted #666;
color:#333;
}

div.breadcrumbs2 a {
  color:#333;
}

 div.breadcrumbs2 span.lastitem { 
   font-weight:bold;
 } 

 div#content2 {
 padding-left:40px;
padding-right:10px;
text-align:left;
min-height:400px;
width:100%;
vertical-align:top;
}

div#main2 {
text-align:left;
margin-top:30px;
vertical-align:top;
width:94%;
}

div#main-home {
text-align:left;
margin-top:30px;
vertical-align:top;
width:450px;
}

div.bottomnav {
text-align:center;
padding-top:50px;
color:#666;
}

div.bottomnav a {
color:#333;
}

div.bottomnav a:hover{
color: #890C08;
}



div#main {
 
}



div#sidebar2 {
margin-top:-2px;
padding-top:65px;
   width: 250px;     /* sidebar width, if you change this please also change #main margins */
   margin-left: 0;
background: url(images/left-bg.png) no-repeat;
}

.rightcolumn {
padding-top:60px;
   width: none;     /* sidebar width, if you change this please also change #main margins */
border-left: 0px #FFF solid;
background: none;
}

div#news2 {
padding:20px;
border: #27072E 1px dotted;
background:#000;
color:#ecec;
width:200px;
}

div#news3 {
padding:20px;
border: #27072E 1px dotted;
background:#000;
color:#ecec;
width:300px;
}

div#news4 {
padding:20px;
border: #27072E 1px dotted;
background:#000;
color:#ecec;
width:256px;
}

div#footer2 {
   clear: both;       /* keep footer below content and menu */
   color: #999;
background: url(images/footer-bg.png) no-repeat center; 
 text-align: center; 
padding-top:40px;
padding-bottom:0px;
margin-top:10px;
font-size:80%;

}

div#footer p {
   font-size: 0.8em;
   padding: 10px;       /* some air for footer */
  
   margin: 0;
}

div#footer2 a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

div#footer2 a:hover{
color: #4E0F55;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content2 h1 {
color: #552858; 
	font-size: 200%; 
	text-align: left;
	border-bottom: 1px solid #222; 
       padding-bottom: 10px;
 line-height: 1em;
margin-bottom:20px;
width:100%;
text-transform: uppercase;
}

div#content2 h2 {
	color: #552858; 
	font-size: 180%; 
	text-align: left;
       padding-bottom: 10px;
 line-height: 1em;
margin-bottom:20px;
width:100%;
}
div#content2 h3 {
   color: #FFF; 
   font-size: 1.3em;
   line-height: 1em;
   
}
div#content2 h4 {
   color: #552858; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content2 h5 {
   color: #4E0F55; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #294B5F; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   padding: 0;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   font-size: 90%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 3em;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* END LISTS */

div#artists ul li, div#artists ul li a:link, div#artists ul li a:visited{
list-style:none;
text-transform:uppercase;
color:#552858;
margin-top:20px;
}

div#artist-box {
border:1px #222 solid;
padding:10px;
background:#111;
width:680px;
display:block;
clear:both;
}

div#artist-box-small {
border:1px #222 solid;
padding:10px;
background:#111;
width:220px;
display:block;
clear:both;
float:right;
text-align:right;
}

div#artist-box2 {
border:1px #222 solid;
padding:0px;
background:#FFF;
width:690px;
}

div#artist-box3 {
border:1px #222 solid;
padding:5px;
margin:0px;
background:#111;
width:690px;
display:block;
clear:both;
min-height:120px;
}

div#artist-icon-photo {
width:220px
height:100px;
display:inline;
float:left;
}


div#artist-main-image {
width:250px
height:250px;
display:inline;
float:left;
border:10px solid #222;
}

div#cd-box {
margin:0px;
background:#333;
width:702px;
display:block;
clear:both;
min-height:242px;
}

div#album-name {
width:220px
display:inline;
text-align:center;
padding-top:35px;
vertical-align:middle;
color:#FFF;
font-size:16px;
}

div#charity-box {
float:left;
width:300px;
display:inline;
text-align:left;
padding:5px;
vertical-align:middle;
color:#FFF;
font-size:10px;
vertical-align:bottom;
margin-left:90px;
margin-top:5px;
}

div#charity-box img {
width:30px;
}

div#charity-image {
width:30px;
display:inline;
float:left;
text-align:left;
vertical-align:middle;
}

div#charity-text {
text-align:left;
float:left
display:inline;
width:300px;
margin-left:40px;
vertical-align:middle;
}

div#artist-icon-box {
display:inline;
float:left;
padding:10px;
background: url(images/icons/icon-photos-wide.gif) no-repeat center;
height:100px
width:220px;
}

div#artist-icon-box:hover {
background: url(images/icons/icon-photos-wide-on.gif) no-repeat center;
}

div#artist-icon-box-image {
width:100px;
height:100px;
display:inline;
float:left;
}

div#artist-icon-box-text {
display:inline;
width:110px;
float:left;
vertical-align:middle;
margin-top:20px;
text-align:left;
color:#FFF;
}


div#artist-button {
display:inline;
}

#artist-button img {
background: url(images/icons/harte-icons-bg.gif) no-repeat center;
width:100px;
height:100px;
display:inline;
margin-right:5px;
}

#artist-button img:hover{
background: url(images/icons/harte-icons-bg-on.gif) no-repeat center;
}

div#shopping-button {
display:inline;
text-align:center;
}

div#shopping-button img {
display:inline;
text-align:center;
background: url(images/butt-shopp-70.jpg) no-repeat center;
height:50px
width:50px;
}

div#shopping-button img:hover {
background: url(images/butt-shopp-on-70.jpg) no-repeat center;
}


div#artists ul ul li {
list-style:disc;
text-transform:capitalize;
margin-top:0px;
margin-left:20px;
}

div#artists ul ul li a:link, div#artists ul ul li a:visited {
color:#FFF;
text-transform:capitalize;
}

div#artist-title {
color:#FFF;
text-transform:capitalize;
font-size:24px;
font-weight:bold;
margin-bottom:20px;
}

div#artist-title img {
margin-bottom:-5px;
margin-right:5px;
}

div#artist-music {
border-top:1px #000 dotted;
vertical-align:middle;
background:;
color:#FFF;
font-weight:normal;
text-transform:capitalize;
padding:10px 0px  5px;
}


/* End of 'cypressSTYLE' */

