/* 
  HTML5 ✰ Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom;  margin-right:.5em;}
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }






 /* Primary Styles
    Author: bbz
 */

    html, body {width:100%; height:100%;  padding:0; margin:0; z-index:0; position:relative;
    font-family:  Georgia, "Times New Roman", Times, serif; font-style: normal; font-weight: normal; font-stretch: normal;font-variant: normal;
    font-size:10px; line-height:1.35em; color:#330; 
}
    
    
    img {border:none;padding:0; margin:0; display:block;position:relative}
    
    a:link, a:visited{color:#330; text-decoration:none;}
    a:hover { text-decoration:underline;}
    
    p, h1, h2, h3, h4, h5 {padding:0; margin:0; font-weight:normal; font-size:100%;}
   
    ul, li{list-style:none;padding:0; margin:0; }    
    .l 	{position:relative; float:left; display:inline;}
    .r 	{position:relative; float:right; display:inline; }
    
    strong { font-weight:bold;}
    em, i  { font-variant: normal; font-style:italic;}
    
    .fixed {position:fixed; display:block;}
    .absolute {position:absolute; display:block;}
    .overflow-hidden{overflow:hidden;}
    
    .show {display:inline}
    .hide {display:none;}
 
    #wrap {position:relative; margin:10px auto;overflow:visible; width:960px;  display:block;line-height:1.5em;min-height:100%;/*background:url(../gfx/grid.png) repeat-y;*/}
    
    #front {width:100%;height:100%; padding:0; margin:0; left:0; top:0; overflow:auto;}
    #gradient-column {z-index:-1;width:225px; height:100%; padding:0; margin:0; left:0; top:0;bottom:0;}
    #background-column {z-index:-1;width:100%; height:100%; padding:0; margin:0; left:-100%; top:0;bottom:0;}
    #back {width:100%;position:relative;display:block;}
    
    #logo {right:10px; top:20px;}
    
    .gut-r {padding-right:20px;}
    .gut-l {padding-left:20px;}
    
    .c1     {width:50}
    .c2     {width:120px}
    .c3     {width:190px}
    .c4     {width:260px}
    .c5     {width:330px}
    .c6     {width:400px}
    .c7     {width:470px}
    .c8     {width:540px}
    .c9     {width:610px}
    .c10    {width:680px}
    .c11    {width:750px}
    .c12    {width:820px}
    .c13    {width:890px}
    .c14    {width:960px}

    .c-l {width:160px; padding-right:20px;}
    .c-m {width:610px;}
    .c-r {width:130px;}
    .c-max {width:950px;}
    
    
    .menu {font-family:Arial,sans-serif}
    .menu .active a:link,
    .menu .active a:visited {text-decoration:underline;}

    .menu.l,
    .menu.r ul{font-size:140%; line-height:1.35em;}

    .menu ul.blogs {/*font-weight:bold;*/padding-bottom:0.5em; padding-top:15px; text-transform:uppercase;}
    .menu .blogs li {padding-bottom:1em; /*letter-spacing:1px;*/}

    .menu.l ul,
    .menu.r .c2 {padding-bottom:15px;}
    .menu.l ul.first {margin-top:0px;}
    .menu li {width:100%;line-height:1.1em; padding-bottom:0.25em;}
    .menu.r {padding-top:10px;}
    .menu.r .top {height:73px;}
    .menu.r .archief {font-size:120%;line-height:1.35em;}

    .menu.l .issue {text-align:center;  font-size:10px; 
      font-family:  Georgia, "Times New Roman", Times, serif;padding-top:5px;}
    .issue .nr-icon {font-size:600%; line-height:0.85em;}
    .issue li {font-size:120%; text-align: center; line-height:1.2em;}
    .issue p {padding-top:10px;font-weight:bold;}
    .issue img {margin-left: -22px;}

    .menu.l .stit {font-weight:normal; font-size:12px; line-height:1em; color:#777; text-transform:none;}

    .menu.l .recent {font-size:10px; padding-top:30px; /*text-transform:uppercase;*/}
    .recent li {font-size:120%; line-height:1em; padding-bottom:0.5em; list-style:disc;color:#777;}
    .recent h3 {font-size:130%; /*font-weight:bold;*/ text-transform:uppercase;}
    .recent a:link,
    .recent a:visited {color:#777;}

    .menu.l .hilite {font-size:10px;}
    .menu.l .hilite h3 {font-size:130%;text-transform:uppercase; line-height:1.1em; }
    .menu.l .hilite p {font-size:120%; padding-top:5px;}
    
    
    .menu input,
    .filter-search {width:97px; font-size:11px; margin-left:0px; height:14px; padding:1px 1px 1px 18px; color:#666; background:#fff url(../gfx/zoom.gif) 1px center no-repeat; border:1px solid;}
    
    .label {border-bottom:1px solid; padding-bottom:5px; font-style:italic;}
    .label h3 {font-size:120%; }
    .content{font-size:130%;  line-height:1.5em; margin-top:10px;}
    
    
    .pic {padding-bottom:10px;}
    .pic .cap{width:100%; font-size:11px; margin:5px 0 0 5px; }
    
    .cap {width:100%; font-size:13px; color:#888; padding-top:10px; line-height:1.35em;}
    .cap.l {display:block;}
    
    .absolute.l {left:0px; top:0px;}
    .absolute.r  {right:0px; top:0px;}
    .centered {text-align:center;}
    
    
     
    #header {width:100%; padding-bottom:20px;}
    
    #header .tit {text-align:center; text-transform:uppercase; font-size:150%;letter-spacing:5px; line-height:1.35em;overflow:visible;}
    
    #header h1 {font-size:920%; line-height:1em; bottom:-124px; left:10px; color:#f67; text-decoration:underline;}
    #header h1 a:link,
    #header h1 a:visited {color:#f67;}
    #header img {position:relative; margin:0px auto; display:block;}
    
    #content {padding:10px 0 60px}
    
    
    .msg {margin-top:10px;}
    

    #home {margin-top:60px;}
    
    
    .sp {padding:0 1em;}
    
    
    
    .post {padding-bottom:30px;  }
    .post-tit { font-size:240%; line-height:1.0em;}
    .post-txt { overflow:visible; padding-top:20px;font-size:130%;line-height:1.35em;padding-bottom:20px;}
    .post-txt a:link, .post-txt a:visited {text-decoration:underline;}
    
    .post-txt img{padding-bottom:0px;}
    
    .post-meta,
    .post-data {font-family:Arial,sans-serif}
    .post-meta a:link, .post-meta a:visited {font-weight:bold; color:#888;}
    .post-data a:link, .post-data a:visited {font-style:italic;color:#888;}
    .post-data .social img {height:14px; display:inline; top:3px;} 
    .post-data {margin-top:5px;font-size:110%; padding-top:3px; border-top:1px solid; }
    .post-meta {border-bottom:1px solid;font-size:120%; border-right:1px solid; margin-top:4px; padding:3px 7px 7px 0;}
    .post-meta img {display:inline;}
    .inz-data {font-family:Arial,sans-serif}
    .inz-data a:link, .inz-data a:visited {font-weight:bold;color:#888;}
    
    .inz-data {margin-top:5px;font-size:130%; padding-top:3px; border-top:1px solid; }
    
   
    
    fieldset { border:#222 1px dotted; padding:10px; margin:1em 0;}
    
    .form {/*font-size:130%;*/line-height:1.35em;}
    .form fieldset {width:540px; border:#222 1px dotted; padding:10px; margin:1em 0;}
    .form fieldset fieldset{width:518px; border:#222 1px dotted; padding:10px; margin:10px 0;}
    .form legend {padding:0 5px; background:#fff;}
    .form .rw input {line-height:normal;font:12px/14px Arial,serif;  background:#fff;}
    .form .rw {width: 100%; padding:3px 0;}
    .form .rw.tit label,
    .form .rw.txt label,
    .form .rw.comment label{width:100px; padding-right:1em; line-height:16px;}
    .form .rw.tit input,
    .form .rw.txt textarea {width:400px;border:#222 1px solid;}
    .form .rw.tit input.fail,
    .form .rw.txt input.fail {border-color:#FF4B33;}
    .form .rw .comm {font-size:11px; font-style:italic;}
    
    .form .collapse {height:1px; overflow:hidden; padding:0 1em;}
    .form .collapse .rw {display:none;}
    .form .failed {color:#FF4B33;}
    
    .pager {font-size:150%;line-height:1.35em;}
    
    .hi {font-weight:bold; border-bottom:1px dotted;}
    
    a:link.more,
    a:visited.more {text-decoration:none; border-bottom:1px dotted;}
    a:hover.more {text-decoration:none; border-bottom:1px solid;}
    
    .blog-info     {font-size:100%; font-family:  Georgia, "Times New Roman", Times, serif;}
    .blog-info h3 {font-size:150%; padding-bottom:0.5em;}
    .blog-info p {font-size:130%;}
    
    .post.search {border-top:1px dotted; padding-top:10px; padding-bottom:10px; }
    .post.search.bg {background:#efefef;}
    .search-pic {height:105px; overflow:hidden; margin-left:10px;}
    .search-tit {font-size:180%; line-height:1.0em; font-family: "Jigsaw Regular",sans-serif; margin-top:4px; }
    .search-aut {font-size:100%; line-height:1.0em; font-family:Arial,sans-serif; color:#888;/*border-bottom:1px solid;font-size:120%; border-right:1px solid; padding:3px 7px 7px 0;*/}
    .search-txt {font-size:130%; line-height:1.35em; font-family: "Jigsaw Regular",sans-serif; padding-top:10px;}
    
    .comments {font-size:130%; line-height:1.35em; font-family: "Jigsaw Regular",sans-serif;}
    .comments legend {font-family: "Jigsaw Bold",sans-serif;}
    .banners img {padding:0 10px 20px 0;}


    .archief .rw div {font-size:130%;padding-top: 15px; padding-bottom:10px;}
    .archief .rw span { border-bottom:1px dotted;}
    .archief .rw .mask {height:84px;text-align:center; overflow:hidden; padding:0;}
    .archief .rw span.mrg-l {margin-left:10px;}
    .archief .head {height:78px;}
    .archief .sort {font-size:130%; padding-bottom:10px;color:#888;}
    .archief .sort span{text-decoration:underline;color:#222;}
    .archief .sort a:link,
    .archief .sort a:visited {color:#888;}
    .archief .bread {margin-top:20px;font-size:130%;color:#888;}
    .pager {font-size:150%; padding-bottom:15px; margin-top:25px;}
    .pager .absolute {font-size:24px;}
    .pager a {padding:0 5px;}
    .pager .sel {font-weight:bold; border-bottom:1px dotted;}
    
    .archief .rw h3 {font-size:15px;}

    .archief .c1    {width:70px}
    .archief .c2    {width:150px}
    .archief .c3    {width:230px}
    .archief .c4    {width:310px}
    .archief .c5    {width:390px}
    .archief .c6    {width:470px}
    .archief .c7    {width:550px}
    .archief .c8,
     .archief.c8    {width:630px}
    .archief .c9    {width:710px}
    .archief .c10   {width:790px}
    .archief .c11   {width:870px}
    .archief .c12   {width:950px}
    .archief .c13   {width:1030px}
    .archief .c14   {width:1110px}
    .archief .gut-r {padding-right:10px;}
    
    
    .nummer {height: 200px; padding-bottom:40px;}
    .nummer h3 {font-size:15px; padding-top:10px; margin-top:10px; border-top:1px dotted;}
    .nummer .cover {height: 150px; text-align:center; margin-top:10px;}
    .nummer .order {margin-top:10px; }
    .nummer .order label {border-bottom:1px dotted;}
    .nummer .order label a:link,
    .nummer .order label a:visited {border-bottom:1px dotted;}
    .nummer .order label a:hover {border-bottom:1px solid; text-decoration:none;}
    .nummer .order span {color:#888;}
    

    .tag-cloud {text-align: justify;  width:100%;}
    .tag-cloud li {text-align: left; display:inline; position: relative; padding-right:0.5em; /*line-height:1em;*/}
    .tag-cloud a:link,
    .tag-cloud a:visited {border-bottom:1px dotted;}
    .tag-cloud a:hover {color:#330; text-decoration:none; border-bottom:1px solid;}

.mrg-l-2 {margin-left:10px;}
.archief .filter {padding:20px 0;font-size:11px;}
.archief .filter .rw span {border:none;}
.archief .filter .rw {padding-bottom:5px;}
.archief .rw span.score {border:none; font-size:11px; color:#888;}

#layer { position:fixed; left:0; top:0; width:100%; height:100%; background: rgba(0,0,0,0.6); z-index:1000; }
.no-rgba #layer { background: url(../gfx/grey-60.png); }

#layer .form {background:#fff; padding:5px 10px 10px; width:562px; margin:120px auto; position:relative; display:block;}
#layer fieldset {margin:0;}
#layer a.submit:link,
#layer a.submit:visited {color:#eee; background:#666; padding:2px 5px; margin-top:5px;}
#layer a.submit:hover {color:#fff; background:#000; text-decoration:none;}
#layer .form .inp {width:400px; color:#999;}

.fwd-bwd {margin-top:40px; font-size:110%; width:100%; border-top:1px dotted; padding-top:10px;}
.fwd-bwd .l,
.fwd-bwd .r {width:48%;}
.fwd-bwd .r {text-align:right;}




/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}

