/* Start of CMSMS style sheet 'mainStevens' */
/*****************
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 {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   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: #18507C; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #EAEAEA;
   color: #385C72;
}

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

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;     /* this centers wrapper */
   width:  100%;
   background-color: #fff;
   color: black;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/
div#centerheader {
   width: 760px;
   margin:0 auto;
}

div#header {
   height: 85px; /* adjust according your image size */    
   width: 210px;
}

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

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


div#bothmenu{
    margin: 10px 25px 0 0;
    border-left: 1px solid #888;
    height: 60px;
    float: right;
   display: inline;
   width: 510px;
}
div#menu_horiz{
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #888;
}

div#submenu_horiz{
    background: transparent;
}

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

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;
}
#image img{
  padding: 2px;
  border: 2px solid #555;
  margin: 13px 10px 10px 10px;
  background: transparent;
}

#image a:hover {
  background-color: transparent;
}
/*
div#footimage {
  margin: 0;
  padding: 0;
}
*/
table#noborder img{
  border: none;
  padding: 0;
  margin: 0;
}
div#content {
   position: relative;
   width: 100%;
   top: 0px;
   z-index: 0;
   padding-bottom: 11px;
   background-color: #cedbfb;
   border-bottom: 2px solid #fff;
}
div#centercontent {
   width: 760px;
   margin:0 auto;
}

div#title {
   background-color: #cedbfb;
   border-bottom: 2px solid #fff;
   width: auto;
}
div#leftcontainer {
  margin: 11px 10px 11px 11px;
  padding: 2px;
  border: 2px solid #A4BAF7;
  background-color: #fff;
  float: left;
  display: inline;
}
div#leftcontent {
     width: 235px;
     margin 0;
     padding: 0;
     background-color: #A4BAF7;
}
div#rightcontent {
   width: auto;
   margin: 5px 0 0 0;
}
div#bottomcontainer {
  clear: both;
  margin: 11px 11px 0 11px;
  padding: 0;
  border: 2px solid #A4BAF7;
}
div#bottomcontent {
     width: auto;
     padding: 8px;
     margin: 0;
     background-color: #A4BAF7;
     border: 2px solid #fff;
}
div#in {
     margin:0;
}
div#clearboth {
     clear: both;
}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #000;
   padding: 2px 5px 0 5px;
   text-align: center;
   background: transparent url(uploads/images/footer-color.gif) repeat-x;
}

/*******************
Start COLORS
color options 1: main #cedbfb, boxes #A4BAF7, stevens-logo, footer-color, bettendorf-full-moon-over-hydra
color options 2: main #F4D0D1, boxes #E99EA0, stevens-logo2, footer-color2, peach-trees-at-sunset
color options 3: main #8BE092, boxes #51D05A, stevens-logo3, footer-color3, tuscany-ii

*********************/


div#contentaa {
   clear:both;    
   margin: 0; /* some air above and under menu and content */
   padding-bottom: 11px;
   width: auto;
   background-color: #E0FFCC;
   border-bottom: 2px solid #fff;
}
div#topborderaa {
   background-color: #E0FFCC;
   border-bottom: 2px solid #fff;
   width: auto;
   height: 5px;
}
div#topcontentaa {
  width: 225px;
  height: 25px;
  margin: 5px 0 5px 250px;
}
div#leftcontaineraa {
  margin: 10px 10px 11px 11px;
  padding: 2px;
  border: 2px solid #CCFFB7;
  background-color: #fff;
  float: left;
  display: inline;
}
div#leftcontentaa {
     width: 188px;
     height: 445px;
     margin 0;
     padding: 5px;
     background-color: #CCFFB7;
}
div#rightcontaineraa {
  margin: 10px 10px 11px 230px;
  padding: 2px;
  border: 2px solid #CCFFB7;
  background-color: #fff;
}
div#rightcontentaa {
     margin 0;
     padding: 5px;
     background-color: #CCFFB7;
}
div#footeraa {
   clear: both;       /* keep footer below content and menu */
   color: #000;
   padding: 2px 5px 0 5px;
   text-align: center;
   background: transparent url(uploads/images/aa/footer-aa.gif) repeat-x;
}




div#contentc {
   clear:both;    
   margin: 0; /* some air above and under menu and content */
   padding-bottom: 11px;
   width: auto;
   background-color: #E9E0FE;
   border-bottom: 2px solid #fff;
}
div#topborderc {
   background-color: #E9E0FE;
   border-bottom: 2px solid #fff;
   width: auto;
   height: 5px;
}
div#topcontentc {
  background: transparent url(uploads/images/contact-top.gif) no-repeat 0; 
  width: 222px;
  height: 25px;
  margin: 5px 0 5px 250px;
}
div#centercontainerc {
  margin: 10px 50px 11px 50px;
  padding: 2px;
  border: 2px solid #D1C0FE;
  background-color: #fff;
  float: center;
}
div#centercontentc {
     width: auto;
     margin 0;
     padding: 10px;
     background-color: #D1C0FE;
}
div#footerc {
   clear: both;       /* keep footer below content and menu */
   color: #000;
   padding: 2px 5px 0 5px;
   text-align: center;
   background: transparent url(uploads/images/contact/footer-c.gif) repeat-x;
}




div#contentcal {
   clear:both;    
   margin: 0; /* some air above and under menu and content */
   padding-bottom: 11px;
   width: auto;
   background-color: #fef5d8;
   border-bottom: 2px solid #fff;
}
div#topbordercal {
   background-color: #fef5d8;
   border-bottom: 2px solid #fff;
   width: auto;
   height: 5px;
}
div#topcontentcal {
  background: transparent url(uploads/images/exhibits-top.gif) no-repeat 0; 
  width: 222px;
  height: 25px;
  margin: 5px 0 5px 240px;
}
div#centercontainercal {
  margin: 10px 40px 11px 40px;
  padding: 2px;
  border: 2px solid #ffd6a6;
  background-color: #fff;

}
div#centercontentcal {
     width: auto;
     margin 0;
     padding: 10px;
     background-color: #ffd8b0;
}

div#footercal {
   clear: both;       /* keep footer below content and menu */
   color: #000;
   padding: 2px 5px 0 5px;
   text-align: center;
   background: transparent url(uploads/images/exhibits/footer-cal.gif) repeat-x;
}



div#contentl {
   clear:both;    
   margin: 0; /* some air above and under menu and content */
   padding-bottom: 19px;
   width: auto;
   background-color: #DCDBF9;
   border-bottom: 2px solid #fff;
}
div#topborderl {
   background-color: #DCDBF9;
   border-bottom: 2px solid #fff;
   width: auto;
   height: 5px;
}
div#topcontentl {
  background: transparent url(uploads/images/locations-top.gif) no-repeat 0; 
  width: 230px;
  height: 25px;
  margin: 5px 0 5px 260px;
}
div#leftcontainerl {
  margin: 5px 10px 0 15px;
  padding: 2px;
  border: 2px solid #CCC9F5;
  background-color: #fff;
  float: left;
  display: inline;
  width: 344px;
}
div#leftcontentl {
     width: auto;
     margin 0;
     padding: 5px;
     background-color: #CCC9F5;
}
div#rightcontainerl {
  margin: 10px 10px 0 385px;
  padding: 2px;
  border: 2px solid #CCC9F5;
  background-color: #fff;
  width: 344px;
}
div#rightcontentl {
     width: auto;
     margin 0;
     padding: 5px;
     background-color: #CCC9F5;
}
div#bottomcontentl {
     width: auto;
     padding: 5px;
     margin: 0;
     background-color: transparent;
}
div#footerl {
   clear: both;       /* keep footer below content and menu */
   color: #000;
   padding: 2px 5px 0 5px;
   text-align: center;
   background: transparent url(uploads/images/locations/footer-l.gif) repeat-x;
}



div#contentd {
   clear:both;    
   margin: 0; /* some air above and under menu and content */
   padding-bottom: 11px;
   width: auto;
   background-color: #DCDBF9;
   border-bottom: 2px solid #fff;
}
div#topborderd {
   background-color: #DCDBF9;
   border-bottom: 2px solid #fff;
   width: auto;
   height: 5px;
}
div#topcontentd {
  width: 357px;
  height: 25px;
  margin: 5px 0 5px 250px;
}
div#topcontentdd {
  width: 357px;
  height: 25px;
  margin: 5px 0 5px 200px;
}


div#centercontainerd {
  margin: 10px 40px 11px 40px;
  padding: 2px;
  border: 2px solid #CCC9F5;
  background-color: #fff;

}
div#centercontentd {
     width: auto;
     margin 0;
     padding: 10px;
     background-color: #CCC9F5;
}

div#footerd {
   clear: both;       /* keep footer below content and menu */
   color: #000;
   padding: 2px 5px 0 5px;
   text-align: center;
   background: transparent url(uploads/images/locations/footer-l.gif) repeat-x;
}




div#contentp {
   clear:both;    
   margin: 0; /* some air above and under menu and content */
   padding-bottom: 19px;
   width: auto;
   background-color: #DCDBF9;
   border-bottom: 2px solid #fff;
}
div#topborderp {
   background-color: #DCDBF9;
   border-bottom: 2px solid #fff;
   width: auto;
   height: 5px;
}
div#topcontentp {
  background: transparent url(uploads/images/locations-top.gif) no-repeat 0; 
  width: 357px;
  height: 25px;
  margin: 5px 0 5px 200px;
}
div#centercontainerp {
  margin: 10px;
  padding: 2px;
  border: 2px solid #CCC9F5;
  background-color: #fff;
  width: 720px;
}
div#centercontentp {
     width: auto;
     margin 0;
     padding: 5px;
     background-color: #CCC9F5;
}

div#footerp {
   clear: both;       /* keep footer below content and menu */
   color: #000;
   padding: 2px 5px 0 5px;
   text-align: center;
   background: transparent url(uploads/images/locations/footer-l.gif) repeat-x;
}


div#footer p a {
   color: #1C6DE5; /* 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: .5em;
   border-bottom: 1px dotted black;
}

/* 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-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color: #000; 
   font-size: 12px; 
   font-family: georgia;
   text-align: left; 
/* set borders around header */
   line-height: 1.3em;
/* and some air under the border */
   margin: 0 0 0 10px;
}
div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   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;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
   padding: 0;
}
div#quotebox {
	background: transparent url(uploads/images/pullqtop.gif) top left no-repeat;
	color: #222;
	font-size: .9em;
	line-height: 1em;
	margin: 0;
}
div#quotebox p {
	margin: 0;
}

div#quotebox blockquote {
	font-weight: bold;
	padding: 20px;
	background: transparent url(uploads/images/pullqbottom.gif) bottom no-repeat;
}
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: 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;
}

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

/* Start of CMSMS style sheet 'nav2-horiz' */
/********************
MENU
*********************/

/* hack for Internet Explorer */
* html div#menu_horiz {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/
div#submenu_horiz {
   background-color: transparent;  /* background color for the entire menu row */
   width: 100%;
   margin: 0;
   font-family: georgia;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#submenu_horiz ul {
   margin: 0;
   padding: 0;
   font-size: 12px;
   color: #666;
   font-weight: bold;
}


/* menu list items */
div#submenu_horiz li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
    margin: 3px 0 0 0;
}


/* the links, that is each list item */
div#submenu_horiz a {
   padding: 5px 18px 3px 14px; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #666;
   display: block; /* IE has problems with this, fixed above */
   font-size: 11px;
   border-right: 1px solid #888;
   background: transparent url(uploads/images/no-upload/shopping-cart-icon3.gif) no-repeat 106px;
}
li#print-catalog a {
    background: none;
}
li#Guy-Stevens-Art-Gallery a {
    background: none;
}
li#invest-in-an-original a {
    background: none;
}

li#Shopping-Cart a {
    border-right: none;
}

/* hover state for links */

div#submenu_horiz li a:hover {
   color: #333;
}

li#Shopping-Cart a:hover {
   background: transparent url(uploads/images/no-upload/shopping-cart-icon2.gif) no-repeat 106px;
}

div#submenu_horiz a.activeparent:hover {
   color: #333;
}


/* active parent, that is the first-level parent of a child page that is the current page */

div#submenu_horiz li.activeparent a {
   background: transparent;
   color: #666;
}

div#submenu_horiz h3 {
   padding: 5px 17px 5px 17px; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #666;
   display: block; /* IE has problems with this, fixed above */
   font-size: 12px;                           /* instead of the normal font size for <h3> */
   border-right: 1px solid #888;
   background: transparent url(uploads/images/shopping-cart-icon3.gif) no-repeat 106px;
}

li#catalog h3 {
    background: none;
}
li#Guy-Stevens-Art-Gallery h3 {
    background: none;
}
li#invest-in-an-original h3 {
    background: none;
}

li#Shopping-Cart h3 {
    border-right: none;
}

/* End of 'nav2-horiz' */

