/*
Sections that are hidden when printing the page. We only want the content printed.
*/


body {
color: #000 !important; /* we want everything in black */
background-color:#fff !important; /* on white background */
font-family:arial; /* arial is nice to read ;) */
border:0 !important; /* no borders thanks */
}



/* 
no need for accessibility on printout. 
Mark all your elements in content you 
dont want to get printed with class="noprint"
*/
dfn,
#lang,
.accessibility,
.noprint
 {
display:none !important; 
}



div#menu_horiz { 
   width: 100%;
   border-bottom:1px solid #000;
   border-top:1px solid #000;
}


div#menu_horiz ul {
   margin: 0;
   padding:0;
   height:1.5em;
}



div#menu_horiz li {
   float: left; 
   list-style: none; 
   margin: 0 ;
}



div#menu_horiz a {
   font-size:90%;
   padding: 0.2em 0.5em 0.2em 1em; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
}



/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.activeparent a {
   background: #996229 url(images/cms/arrow-down.gif) no-repeat 0.4em center; 
   color: #fff;
}

div#menu_horiz h3 {
   padding: 0.1em 1em 0.6em 1.4em; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
    display: block; /* IE has problems with this, fixed above */
   font-size: 0.9em;  /* instead of the normal font size for <h3> */
}

/* 
remove all width constraints from content area
*/
div#content{
   display:block !important;
   width:100% !important;
}
div#main {
  display:block !important;
   width:70% !important;
   border:0 !important;
   padding:1em !important;
   margin-left:30%;
}


div#header {

}
div#sidebar {
   width:25%;
   float:left;
   display:block !important;
   

}

div#footer {
  clear:both;
  display:block;
  width:100%;
  text-align:center;
  border-top:1px solid #333;
  margin-top:1em;
}

/* hide everything else! */

dfn ,
div#lang ,
div.breadcrumbs,
div#search,
div#menu_vert,
div#news,
div.right49,
div.left49,
div.left49 p
 {
   display: none !important;
}


img {
float:none; /* this makes images couse a pagebreak if it doesnt fit on the page */
}

