/* Start of CMSMS style sheet 'UltimateAdventures 2k' */
/*****************
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 {
   color: #fff;
   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 */

a:link {
   text-decoration: none;
   background-color: inherit;
   color: #ea6736;   
}

a:visited {
   text-decoration: none;
   background-color: inherit;
   color: #ea6736;
}

a:hover {
   text-decoration: underline;
   background-color: inherit;
   color: #f7f3aa;
}

a:active {
   text-decoration: none;
   background-color: inherit; 
   color: #f7f3aa; 
}

/*****************
basic layout 
*****************/
body {
   background: #fff url(uploads/layout/background.gif) repeat-x; 
   color: #fff;
   margin: 5px; /* gives some air for the pagewrapper */
}

/* extra pagewrapper omdat schaduw bovenop moet liggen */
div#masterwrapper {
   background: url('uploads/layout/bg_center.gif') repeat-y center;
   margin: 0 auto;     /* this centers wrapper */
   max-width: 80em; /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
}

/* center wrapper, min max width */
div#pagewrapper {
   background-image: url('uploads/layout/bg_top.gif');
   background-repeat: no-repeat;
   background-position: center top;
   color: black;
}

div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 200px;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-top: 18px;
   margin-left: 60px;
}

/* 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 */
}

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

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

div#header h1 a {
/* you can set your own image here */
   background: #343131 url(uploads/layout/logo_nieuw.gif) no-repeat left; 
   display: block; 
   height: 103px;             /* 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#nieuwsblok {
      background: #343131 url(uploads/adventures/bg_nieuws.gif) no-repeat left top;
      height: 200px;
}

div#blauwvlak {
      width: 191px;
      min-height: 300px;
      _height: 300px;  /* tbv Internet Explorer 6 */
      background: #ea6736 url(uploads/adventures/bg_menu_vert.gif) no-repeat;
}

div#content {
   width: 600px;
   margin-top: 0px;
   margin-left: 270px;
   padding-top: 80px;
}

div#foto {
   width: 640px;
   height: 190px;
   padding: 0px;
   margin: 0px;
}

div#masker {
   width: 640px;
   height: 194px;
   padding: 0px;
   margin: 0px;
   position: relative;
   top: -192px;
} 

div#main {
   width: 620px;
   margin: 10px 30px 10px 10px;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #000;
   height: 53px;
   background: #fff url('uploads/layout/bg_bottom.gif') no-repeat center bottom;
}

div#footer p {
   color: #e7e1d4;
   font-size: 0.9em;
   padding-left: 279px;
   text-align: left;
}

/* 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;
}



/********************
CONTENT STYLING
*********************/
div#content {
   color: #e7e1d4;
}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
   color: #e7e1d4;
   font-size: 1.4em; 
   text-align: left; 
   padding-left: 0px;
   padding-bottom: 0px;
   line-height: 1.5em;
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #e7e1d4; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #e7e1d4; 
   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;
}
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: 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 */


/* -----------------------------  CONTACTFORM STYLING  --------------------------- */

.formbuilderform {
   color: #e7e1d4;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 12px;
}

.formbuilderform input {
border: 1px solid #f7f3aa;
padding: 2px;
margin: 0 0 0 10px;
width: 240px;
background-color: #e7e1d4;
font-size: 14px;
}

.formbuilderform select {
border: 1px solid #f7f3aa;
padding: 2px;
margin: 0 0 0 10px;
width: 186px;
.width: 187px;
_width: 187px;
background-color: #e7e1d4;
font-size: 14px;
}

.formbuilderform textarea {
border: 1px solid #f7f3aa;
padding: 2px;
margin: 0 0 0 10px;
width: 240px;
height: 150px;
background-color: #e7e1d4;
font-family: Tahoma, Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
}

.formbuilderform .fbsubmit {
border: 1px solid #f7f3aa;
padding: 2px;
margin: 0 0 0 10px;
width: 100px;
background-color: #e7e1d4;
font-weight: bold;
}

.formbuilderform input:focus{
background-color: #f7f3aa;
}

.formbuilderform textarea:focus{
background-color: #f7f3aa;
}

.formbuilderform .fbsubmit:hover {
background-color: #f7f3aa;
}

/* -----------------------------  SEARCH STYLING  --------------------------- */

div#search {
   float: left;
   width: 191 px;     /* enough width for the search input box */
   background-color: #ea6736;
   color: #fff;
   text-align: right;
   border-top: 1px solid #fff;
   padding: 5px;
   margin: 40px 0px 20px 0px;
}

div#search input {
   border: 1px solid #f7f3aa;
   padding: 0px;
   margin: 5px 8px 5px 8px;
   width: 80px;
   background-color: #fff;
   font-size: 12px;
   font-weight: bold;
}

div#search input:hover {
   color: #000;
   background-color: #f7f3aa;
   border: 1px solid #f7f3aa;
}

div#search #cntnt01searchinput {
   width: 160px;
   font-weight: normal;
}

div#search #cntnt01searchinput:hover {
   width: 160px;
   color: #000;
   border: 1px solid #f7f3aa;
   background-color: #fff;
}

/* -----------------------------  NEWS STYLING  --------------------------- */

.NewsSummaryCategory {
display: none;
}

#NewsPostDetailPrintLink {
display: none;
}

.NewsSummaryAuthor {
display: none;
}

#NewsPostDetailCategory {
display: none;
}

#NewsPostDetailAuthor {
display: none;
}

.NewsSummary {
line-height: 1.5em;
border-bottom-color: #e7e1d4;
}

div#main .NewsSummarySummary img {

display: none;
}

div#main #NewsPostDetailSummary img {
display: none;
}

/* -----------------------------  END --------------------------- */
/* End of 'UltimateAdventures 2k' */

