/* Start of CMSMS style sheet 'Page CSS' */
/*****************
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 {
   background: url(graphics/bkg.jpg) repeat-x top left; 
   text-align: left;
   background-color: #EBD6BB;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75%;
   line-height: 1em;
}

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

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #D03267; 
font-weight:bold;
}

a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #D03267;                /* a different color can be used for visited links */
font-weight:bold;
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #F7ECEB;
   color: #C02169;
font-weight:bold;
}

/*****************
basic layout 
*****************/
body {
   color: #000;
   margin:0; /* gives some air for the pagewrapper */
}

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

/* center wrapper, down */
div#pagewrapperdown {
   background-color: #fff;
   border: 1px solid #FFF;
}

div#content {
font-size: 0.94em
}

/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 180px; /* adjust according your image size */
   background: #CFB197;           
}

div#header h1 a {
/* you can set your own image here */
   background: #CFB197 url(graphics/stay-in-the-pink-logo.jpg) no-repeat 0 12px; 
   display: block; 
   height: 180px;             /* 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 {
width:330px;
   text-align: right;
   padding: 0px 15px 15px 0;
   margin: 0 0px;
position: absolute;
top:15px;
right:0px;
z-index:1;
}


/* position for the shopping bag */
div#shoppingbag {
   width: 269px;    /* enough width for the search input box */
   text-align: right;
   padding: 20px 21px 0 0;
   margin: 0 0;
position: absolute;
top:48px;
right:0px;
z-index:99;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

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


div#content {
   margin: 1px 0px; /* some air above and under menu and content */
padding:0px;
}




div#main {
   margin:25px;
width:683px;
}

div#mainhome {
   margin:0px;
width:733px;
}

div#maincafe {
	   margin:0;
	   padding:0;
width:940px;
background:#513627;
}

div#bottombar {
background: #E8D0B6;
}

div#maincafe p {
font-family:Arial, Helvetica, sans-serif;
   color: #FFF; 
   font-size: 1.5em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0.75em;
}

div#maincafe a,
div#maincafe a:link, 
div#maincafe a:active,
div#maincafe a:visited{
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #E99799; 
font-weight:bold;
}


/* remove underline on hover and change color */
div#maincafe a:hover {
   text-decoration: none;
   background-color: #F7ECEB;
   color: #C02169;
font-weight:bold;
}

#board {
	/* Typical fixed height and fixed width example */
	width: 505px;
	height: 223px;
	overflow: auto;
	/* IE overflow fix, position must be relative or absolute*/
	position: absolute;
	background-color: transparent;
	top: 200px; 
	left:253px;
	padding: 0px 10px 10px 15px;
}



div#homeblurbs p {
   font-size: 11px;
   margin:0;
   line-height:1.25em;
   padding: 5px 18px 10px 32px;
}

.homedivider{
   background: transparent url(graphics/home-bottom-divider.gif) no-repeat top left;
}

div#homenews {
margin:15px 30px 30px 242px;
left:0;
float: right:
width: 450px;
}

.sidebar {
background: #E8D0B6;
}



div#sidebar {
     margin: 0px;
padding:11px;
width:170px;
background: #E8D0B6;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 1%;
   width: 24%;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
}


div#curve {
/* you can set your own image here */
   background: #E8D0B6 url(graphics/sidebar-curve.gif) no-repeat top right; 
   display: block; 
   height:85px;             /* adjust according your image size */
   width:207px;
left:0;
bottom:0;
}


div#footer {
   height:89px;
   clear:both;       /* keep footer below content and menu */
   color: #fff;
   background-color: #DA858E; /* same bg color as in header */
   background: url(graphics/bottom-bkg.gif) repeat-x top left; 
margin:0;
}

div#footer p {
   font-size: 0.8em;
   margin: 0;     
   text-align: left; /* centered text */
   padding:45px 25px; /* some air for footer */
   line-height:0.5em;
   color: #f9d3d4;

}

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

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 0;
   border-bottom: 1px solid #EBD6BB; 
}

p.hr {
   height: 1px;
   margin:10px 0px 20px 0px;
   border-bottom: 1px solid #EBD6BB; 
}

/* relational links under content */
div.left49 {
  float: left;
  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#content h1 {
font-family:Arial, Helvetica, sans-serif;
   color: #C02169; 
   font-size: 1.5em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h2 {
font-family:Arial, Helvetica, sans-serif;
   color: #C02169; 
   font-size: 1.5em; 
   text-align: left; 
/* some air around the text */
   padding-left: 0em;
   padding-bottom: 1px;
/* set borders around header */
   border-bottom: 1px solid #E5807E; 
   line-height: 1.5em;
/* and some air under the border */
   margin: 0.7em 0 0.6em 0;
}
div#content h3 {
font-family:Arial, Helvetica, sans-serif;
   color: #C02169; 
   font-size: 1.2em;
   line-height: 1.2em;
   margin: 0em 0 0.8em 0;
   border-bottom: 1px solid #EBD6BB; 
padding-top: 1em;
padding-bottom: 0.5em;

}
div#content h4 {
font-family:Arial, Helvetica, sans-serif;
   color: #C02169; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}

/*side bar headings */

div#sidebar h2, div#bottombar h2 {
font-family:Arial, Helvetica, sans-serif;
   color: #C02169; 
   font-size: 1.5em; 
   text-align: left; 
   padding: 0 0 0 15px;
   line-height: 1.2em;
   margin: 0.2em 0 0 0;
border-bottom:none;
}
div#sidebar h3, div#bottombar h3 {
   padding: 5px 0 0 15px;
font-family:Arial, Helvetica, sans-serif;
   color: #000; 
   font-size: 1.2em;
   line-height: 1em;
   margin: 0 0 0.2em 0;
border-top:none;

}

div#sidebar p, div#bottombar p {
   padding-left: 15px;
   font-size: 0.94em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.5em;

}


/* END HEADINGS */

/* TEXT */
p {
   font-size: 0.94em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:2em;
   padding: 0;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
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;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: .94em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 1em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */


/* STORE STYLES */

#store {
	font-size:.95em;
	line-height:1.4em;
}

#store img {
	margin:10px;
}

#storeproduct {
}

#storeproduct img {
	margin-top:10px;
}


/* CONTACT FORM */
.contactform fieldset {padding: .5em;} 
.contactform fieldset legend {font-weight: bold;} 
.contactform div label {float: left;  width: 15em; height:2em; width:100%; padding: 1em 0 0.25em 0; display: block; font-weight: bold;}
.contactform div input {display: block; width: 50%; text-align:top left; float: left;}
.dotted-border {border: 1px dotted #F60; padding: 0.5em}

/* End of 'Page CSS' */

