/* Start of CMSMS style sheet 'GG-Layout' */
/*****************
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: 62.5%;
   line-height: 1.8em;
   background: #000000; 
}

/*
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: underline;
/* 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: underline;
   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: #C3D4DF;
   color: #385C72;
}

/*****************
basic layout 
*****************/

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;     /* this centers wrapper */
   /* max-width: 80em; IE wont understand these, so we will use javascript magick */
   /* min-width: 60em; */
   color: black;
   background: #ffffff; 
   width: 100%;
   float:left;
   display: block;
  /* height:167px; */
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   display: block;
   width: 960px;
   height: 80px; /* adjust according your image size */
   background: transparent;
margin: 0 auto 4px auto;        
}

div#header h1 {
   width: 580px;
   display: block;
   float: left;
}

div#header h1 a {
/* you can set your own image here */
   background: #fff url('http://www.graphicglass.biz/images/cms/logo_graphic-glass.gif') no-repeat 32px 28px; 
   display: block; 
   height: 90px;             /* 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 */
}

div#header h2 {
   width: 350px;
   height: 90px;
   display: block;
   float: right;
background: #fff url('http://www.graphicglass.biz/images/cms/header-phone-number.jpg') no-repeat 82px 28px;
   text-indent: -8000px;
}

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.breadcrumbs {
      font-size: 1em;             /* set fontsizes to be relative, so viewer can change fontsize */
      margin: 1.8em 0;             /*  css shorthand rule will be opened to be "0 1em 0 1em" */
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
   color: #16957d;
   background-color: #fff;
 }

/* copied from page-wrapper */

div#content-wrapper {
  width:100%;
  display: block;
  float: left;
  background: #ffffff url('http://www.graphicglass.biz/images/cms/body-bg.jpg') repeat-x 0 -5px; 
  border-top: 5px #dbefee solid;
}

div#content {
   margin: 0 auto;
   display: block;
   width: 960px;
   background: #fff url('http://www.graphicglass.biz/images/cms/content-bg.jpg') repeat-x 0 0; 
   padding: 39px 0 20px 0;
}

div#content-homepage {
background: none;
display:block;
margin:0 auto;
padding: 10px 0 20px;
width:960px;
}

div#main {
float: left;
display: inline;
   margin-left: 30px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   width: 620px;
    padding: 0 20px 0 0;
}


div#sidebar {
/*   float: right;  /* set sidebar on the left side. Change to right to float it right instead. */  */
/*   width: 260px;    /* sidebar width, if you change this please also change #main margins */ */
/*   display: inline;  /* FIX ie doublemargin bug */ */
/*   margin: 0 30px 0 0; */
display: none;
}

div#sidebar h2 {
   text-transform: capitalize !important;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   width: 260px;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
   float: right;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 260px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin: 0 30px 0 0;
}

div#sidebar ul {margin: 0 0 0 16px;}

div#homepage-feature-left {
   display: block;
   float: left;
   width: 659px;
   height: 242px;
   margin: 0 0 10px 0;
   background: #fff url('http://www.graphicglass.biz/images/cms/homepage-feature-bg.jpg') no-repeat 0 0; 
}

div#homepage-sidebar {
   background:transparent url(http://www.graphicglass.biz/images/cms/homepage-side-feature-bg.jpg) no-repeat scroll 0 0;
   display:inline;
   float:right;
   height:242px;
   margin:0 0 0 0;
   width:300px;
   text-indent: -8000px;
}


div#footer-wrapper {
   display: block;
   width: 100%;
   float: left;
   clear: both;
   border-width: 5px 0 0 0;
   border-color: #363636;
   border-style: solid;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #fff;
   background-color: black;
   margin: 10px auto 0 auto;
   display: block;
   height: 100%;
   width: 960px;
}

div#footer p {
   font-size: 0.8em;
   margin:0;
   padding:1em 0 2em 30px;
   text-align:left;
}

div#footer p a {
   color: #fff; /* 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: 1em;
   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
*********************/

/* HEADINGS */
div#content h1 {
   font-size: 2.7em;  /* font size for h1 */
   margin: 0;
   color: #16957d;
   margin-bottom: 0.666666em;
   background-color: #fff;
   letter-spacing: 0.0125em;
}
div#content h2 {
   color: #000; 
   background-color: #fff;
   font-size: 1.5em; 
   text-align: left; 
   margin-bottom: 1.2em;
   text-transform: uppercase;
   letter-spacing: 0.125em;
}
div#content h3 {
   color: #16957d;
   background-color: #fff;
   font-size: 1.4em;
   margin: 0 0 1.2857em 0;
}
div#content h4 {
   color: #294B5F; 
   background-color: #fff;
   font-size: 1.2em;
   margin: 0 0 -1.5em 0;
}
div#content h5 {
   font-size: 1.1em;
   margin: 0 0 1.636363em 0;
}
h6 {
   font-size: 1em;
   margin: 0 0 1.8em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1.1em;
   margin: 1.636363em 0 1.636363em 0;  /* some air around p elements */
   padding: 0;
}

#homepage-blurb {
   display: block;
   float: left;
   width: 100%;
}
#homepage-blurb p {
   color:#168D76;
   font-size:1.2em;
   line-height:1.6em;
   text-align:center;
}
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;
}

p.accent {
   color: #ee1c25;
   background-color: #fff;
   font-weight: bold;
   font-style: italic;
}

div.product-box {
   width: 135px;
   height: 150px;
   display: block;
   float: left;
   padding: 0 24px 20px 0;
}

div.product-box-last {
   width: 135px;
   height: 150px;
   display: block;
   float: left;
   padding: 0 0 20px 0;
}

div.product-box a:link img, div.product-box-last a:link img,div.product-box a:visited img, div.product-box-last a:visited img,div.product-box a:hover img, div.product-box-last a:hover img,div.product-box a:active img, div.product-box-last a:active img {
   border: none;
   padding: 0 0 2px 0;
text-align:center;
}

div.product-box a:link, div.product-box-last a:link,div.product-box a:visited, div.product-box-last a:visited,div.product-box a:hover, div.product-box-last a:hover,div.product-box a:active, div.product-box-last a:active {
   text-decoration: none;
   text-align: center;
}



/* END TEXT */

/* TABLES */

.specs {width: 600px;margin: 0 0 10px 0;}

.bodytext {background-color: #dbefee;}

.bodytext td {padding: 4px;}

/* END TABLES */


/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   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 */

/* Flash Slideshows */

div.flash {padding-bottom: 10px;}

div#monoSlideshow {padding: 13px 0 0 13px;}

/* End of 'GG-Layout' */

