/**
 * Boilerplate styles
 */
/**
 * 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.6.1 2010-09-17 | Authors: Eric Meyer & Richard Clark
 * html5doctor.com/html-5-reset-stylesheet/
 */
/* line 28, ../src/includes/_reset.scss */
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* line 38, ../src/includes/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 42, ../src/includes/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 45, ../src/includes/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* line 47, ../src/includes/_reset.scss */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* line 49, ../src/includes/_reset.scss */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* line 51, ../src/includes/_reset.scss */
del {
  text-decoration: line-through;
}

/* line 53, ../src/includes/_reset.scss */
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/* line 55, ../src/includes/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 57, ../src/includes/_reset.scss */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* line 59, ../src/includes/_reset.scss */
input, select {
  vertical-align: middle;
}

/**
 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
 */
/* line 5, ../src/includes/_font_normalization.scss */
body {
  font: 13px/1.231 sans-serif;
  *font-size: small;
}

/* Hack retained to preserve specificity */
/* line 6, ../src/includes/_font_normalization.scss */
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 */
/* line 10, ../src/includes/_font_normalization.scss */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/**
 * Minimal base styles.
 */
/* Always force a scrollbar in non-IE */
/* line 6, ../src/includes/_base_styles.scss */
html {
  overflow-y: scroll;
}

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
/* line 9, ../src/includes/_base_styles.scss */
a:hover, a:active {
  outline: none;
}

/* line 11, ../src/includes/_base_styles.scss */
ul, ol {
  margin-left: 2em;
}

/* line 12, ../src/includes/_base_styles.scss */
ol {
  list-style-type: decimal;
}

/* Remove margins for navigation lists */
/* line 15, ../src/includes/_base_styles.scss */
nav ul, nav li {
  margin: 0;
  list-style: none;
  list-style-image: none;
}

/* line 17, ../src/includes/_base_styles.scss */
small {
  font-size: 85%;
}

/* line 18, ../src/includes/_base_styles.scss */
strong, th {
  font-weight: bold;
}

/* line 20, ../src/includes/_base_styles.scss */
td {
  vertical-align: top;
}

/* Set sub, sup without affecting line-height: gist.github.com/413930 */
/* line 23, ../src/includes/_base_styles.scss */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

/* line 24, ../src/includes/_base_styles.scss */
sup {
  top: -0.5em;
}

/* line 25, ../src/includes/_base_styles.scss */
sub {
  bottom: -0.25em;
}

/* line 27, ../src/includes/_base_styles.scss */
pre {
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  padding: 15px;
}

/* line 33, ../src/includes/_base_styles.scss */
textarea {
  overflow: auto;
}

/* www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */
/* line 35, ../src/includes/_base_styles.scss */
.ie6 legend, .ie7 legend {
  margin-left: -7px;
}

/* Align checkboxes, radios, text inputs with their label by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
/* line 38, ../src/includes/_base_styles.scss */
input[type="radio"] {
  vertical-align: text-bottom;
}

/* line 39, ../src/includes/_base_styles.scss */
input[type="checkbox"] {
  vertical-align: bottom;
}

/* line 40, ../src/includes/_base_styles.scss */
.ie7 input[type="checkbox"] {
  vertical-align: baseline;
}

/* line 41, ../src/includes/_base_styles.scss */
.ie6 input {
  vertical-align: text-bottom;
}

/* Hand cursor on clickable input elements */
/* line 44, ../src/includes/_base_styles.scss */
label, input[type="button"], input[type="submit"], input[type="image"], button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
/* line 47, ../src/includes/_base_styles.scss */
button, input, select, textarea {
  margin: 0;
}

/* Colors for form validity */
/* line 51, ../src/includes/_base_styles.scss */
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;
}

/* line 54, ../src/includes/_base_styles.scss */
.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! */
/* j.mp/webkit-tap-highlight-color */
/* line 64, ../src/includes/_base_styles.scss */
a:link {
  -webkit-tap-highlight-color: #FF5E99;
}

/* Make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
/* line 68, ../src/includes/_base_styles.scss */
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/ */
/* line 72, ../src/includes/_base_styles.scss */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/**
 * You might tweak these..
 */
/* line 78, ../src/includes/_base_styles.scss */
body, select, input, textarea {
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */
  color: #000;
  /* Set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */
}

/* Headers (h1, h2, etc) have no default font-size or margin; define those yourself */
/* line 86, ../src/includes/_base_styles.scss */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

/* line 88, ../src/includes/_base_styles.scss */
a, a:active, a:visited {
  color: #607890;
}

/* line 89, ../src/includes/_base_styles.scss */
a:hover {
  color: #036;
}

/**
 * Primary styles
 */
/**
 * Primary styles.
 *
 * These are the projects custom styles
 */
/* line 10, ../src/includes/_primary_styles.scss */
html, body {
  height: 100%;
}

/* line 14, ../src/includes/_primary_styles.scss */
body {
  font-family: ff-tisa-web-pro,serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
}

/* line 22, ../src/includes/_primary_styles.scss */
#container-inner {
  margin: 0 auto;
  width: 1233px;
  padding: 25px 0;
}

/* line 29, ../src/includes/_primary_styles.scss */
header {
  position: relative;
}

/**
 * Main Navigation Styles
 */
/* line 37, ../src/includes/_primary_styles.scss */
nav {
  position: absolute;
  bottom: -170px;
  left: 27px;
  font-family: ff-tisa-web-pro,serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  z-index: 2;
}
/* line 47, ../src/includes/_primary_styles.scss */
nav li {
  margin: 0 0 .85em 0;
}
/* line 51, ../src/includes/_primary_styles.scss */
nav a {
  color: black;
  text-decoration: none;
}
/* line 55, ../src/includes/_primary_styles.scss */
nav a:hover {
  color: black;
  text-decoration: underline;
}
/* line 60, ../src/includes/_primary_styles.scss */
nav a:visited {
  color: black;
}
/* line 65, ../src/includes/_primary_styles.scss */
nav .active a {
  text-decoration: underline;
}
/* line 69, ../src/includes/_primary_styles.scss */
nav em a, nav em a:hover, nav em a:visited {
  color: white;
}
/* line 73, ../src/includes/_primary_styles.scss */
nav em .active a {
  text-decoration: underline;
}

/**
 * SubNavigation Styles
 */
/* line 82, ../src/includes/_primary_styles.scss */
#subnav {
  position: relative;
}

/* line 83, ../src/includes/_primary_styles.scss */
#subnav nav {
  position: absolute;
  bottom: 55px;
  left: 25px;
  z-index: 1;
}
/* line 89, ../src/includes/_primary_styles.scss */
#subnav nav a {
  color: #949591;
}
/* line 92, ../src/includes/_primary_styles.scss */
#subnav nav a:hover {
  color: black;
}
/* line 97, ../src/includes/_primary_styles.scss */
#subnav nav .active a {
  color: black;
  text-decoration: underline;
}

/* line 103, ../src/includes/_primary_styles.scss */
#main {
  position: relative;
}

/**
 * FancyBox
 */
/* line 111, ../src/includes/_primary_styles.scss */
#fancybox-title .description {
  font-family: ff-tisa-web-pro,serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  text-align: right;
}
/* line 116, ../src/includes/_primary_styles.scss */
#fancybox-title .description h3 {
  font-family: ff-tisa-web-pro,serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
}

/**
 * Main Styles
 */
/* line 128, ../src/includes/_primary_styles.scss */
header {
  margin: 0 auto 20px;
  background: #ccc;
  width: 1233px;
  height: 708px;
}
/* line 134, ../src/includes/_primary_styles.scss */
header h1 a {
  background-color: transparent;
  background-image: url('../img/vsta_logo.gif?1310987322');
  background-position: 25px 20px;
  background-repeat: no-repeat;
  display: block;
  width: 163px;
  height: 93px;
  text-indent: -99999px;
}

/* line 149, ../src/includes/_primary_styles.scss */
#main {
  margin: 0 auto;
}
/* line 152, ../src/includes/_primary_styles.scss */
#main p {
  font-size: 14px;
  margin-bottom: 1em;
}
/* line 157, ../src/includes/_primary_styles.scss */
#main a {
  color: #000;
}

/* line 162, ../src/includes/_primary_styles.scss */
#main-top {
  position: absolute;
  top: -728px;
  left: 258px;
  width: 975px;
  height: 708px;
  overflow: hidden;
}

/* line 172, ../src/includes/_primary_styles.scss */
#main-bottom {
  text-align: right;
  width: 983px;
  margin-left: 250px;
}
/* line 177, ../src/includes/_primary_styles.scss */
#main-bottom h2 {
  font-family: ff-tisa-web-pro,serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  text-align: right;
}

/* line 184, ../src/includes/_primary_styles.scss */
footer {
  font-family: ff-tisa-web-pro,serif;
  font-style: italic;
  font-weight: 400;
  text-align: right;
  font-size: 12px;
  height: 30px;
  margin: 0 auto;
  width: 1233px;
}

/**
 * Home Styles
 */
/* line 197, ../src/includes/_primary_styles.scss */
#home header {
  margin: 0 auto 20px;
}
/* line 200, ../src/includes/_primary_styles.scss */
#home header h1 {
  background-color: transparent;
  background-image: url('../img/header_image.gif?1310737926');
  background-position: left top;
  background-repeat: no-repeat;
  display: block;
  height: 708px;
  width: 1233px;
  text-indent: -99999px;
}

/* Kunstenaar / Locaties */
/* line 209, ../src/includes/_primary_styles.scss */
#locaties #main-top,
#kunstenaar #main-top,
#catalogus #main-top {
  top: -728px;
  left: 443px;
  width: 793px;
}
/* line 214, ../src/includes/_primary_styles.scss */
#locaties #main-top img,
#kunstenaar #main-top img,
#catalogus #main-top img {
  display: block;
  margin: 0;
  padding: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}
/* line 222, ../src/includes/_primary_styles.scss */
#locaties #main-top img:hover,
#kunstenaar #main-top img:hover,
#catalogus #main-top img:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
/* line 226, ../src/includes/_primary_styles.scss */
#locaties #main-top a,
#kunstenaar #main-top a,
#catalogus #main-top a {
  display: block;
  margin: 0;
  padding: 0;
  float: left;
}
/* line 233, ../src/includes/_primary_styles.scss */
#locaties #main-top a.jump_1,
#kunstenaar #main-top a.jump_1,
#catalogus #main-top a.jump_1 {
  margin-left: 158px;
}
/* line 237, ../src/includes/_primary_styles.scss */
#locaties #main-top a.jump_2,
#kunstenaar #main-top a.jump_2,
#catalogus #main-top a.jump_2 {
  margin-left: 316px;
}
/* line 241, ../src/includes/_primary_styles.scss */
#locaties #main-top a.jump_3,
#kunstenaar #main-top a.jump_3,
#catalogus #main-top a.jump_3 {
  margin-left: 474px;
}
/* line 245, ../src/includes/_primary_styles.scss */
#locaties #main-top a.jump_1_r,
#kunstenaar #main-top a.jump_1_r,
#catalogus #main-top a.jump_1_r {
  margin-right: 158px;
}

/* line 10, ../../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/layout/_sticky-footer.scss */
#locaties html, #locaties body, #kunstenaar html, #kunstenaar body {
  height: 100%;
}
/* line 12, ../../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/layout/_sticky-footer.scss */
#locaties #container, #kunstenaar #container {
  clear: both;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin-bottom: -30px;
}
/* line 18, ../../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/layout/_sticky-footer.scss */
#locaties #container #container-footer, #kunstenaar #container #container-footer {
  height: 30px;
}
/* line 20, ../../../../../../../../Library/Ruby/Gems/1.8/gems/compass-0.11.1/frameworks/compass/stylesheets/compass/layout/_sticky-footer.scss */
#locaties footer, #kunstenaar footer {
  clear: both;
  position: relative;
  height: 30px;
}

/**
 * Info Styles
 */
/* line 260, ../src/includes/_primary_styles.scss */
#info #main-top {
  position: absolute;
  top: -700px;
  left: 260px;
  width: 978px;
  height: 708px;
  overflow: hidden;
}

/* line 269, ../src/includes/_primary_styles.scss */
.sponsors {
  position: absolute;
  bottom: 52px;
  left: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
/* line 278, ../src/includes/_primary_styles.scss */
.sponsors li {
  float: left;
  list-style-type: none;
}

/* line 284, ../src/includes/_primary_styles.scss */
.de_ziener a {
  background-color: transparent;
  background-image: url('../img/logo_de_ziener.jpg?1311004876');
  background-position: left top;
  background-repeat: no-repeat;
  display: block;
  height: 97px;
  width: 121px;
  text-indent: -99999px;
}

/* line 287, ../src/includes/_primary_styles.scss */
.vlaamse_gemeenschap a {
  background-color: transparent;
  background-image: url('../img/logo_vlaamse_gemeenschap.jpg?1311004877');
  background-position: left top;
  background-repeat: no-repeat;
  display: block;
  height: 97px;
  width: 108px;
  text-indent: -99999px;
}

/* line 290, ../src/includes/_primary_styles.scss */
.vl_brabant a {
  background-color: transparent;
  background-image: url('../img/logo_vlaams_brabant.jpg?1311004877');
  background-position: left top;
  background-repeat: no-repeat;
  display: block;
  height: 97px;
  width: 97px;
  text-indent: -99999px;
}

/* line 293, ../src/includes/_primary_styles.scss */
.asse1 a {
  background-color: transparent;
  background-image: url('../img/logo_asse1.jpg?1311004877');
  background-position: left top;
  background-repeat: no-repeat;
  display: block;
  height: 97px;
  width: 88px;
  text-indent: -99999px;
}

/* line 296, ../src/includes/_primary_styles.scss */
.asse2 a {
  background-color: transparent;
  background-image: url('../img/logo_asse2.jpg?1311004877');
  background-position: left top;
  background-repeat: no-repeat;
  display: block;
  height: 97px;
  width: 76px;
  text-indent: -99999px;
}

/* line 299, ../src/includes/_primary_styles.scss */
.goeiedag a {
  background-color: transparent;
  background-image: url('../img/logo_goeiedag.jpg?1311004877');
  background-position: left top;
  background-repeat: no-repeat;
  display: block;
  height: 97px;
  width: 151px;
  text-indent: -99999px;
}

/* line 302, ../src/includes/_primary_styles.scss */
.ring_tv a {
  background-color: transparent;
  background-image: url('../img/logo_ring_tv.jpg?1311004877');
  background-position: left top;
  background-repeat: no-repeat;
  display: block;
  height: 97px;
  width: 150px;
  text-indent: -99999px;
}

/* line 305, ../src/includes/_primary_styles.scss */
.jan_de_nul a {
  background-color: transparent;
  background-image: url('../img/logo_jan_de_nul.jpg?1311004877');
  background-position: left top;
  background-repeat: no-repeat;
  display: block;
  height: 97px;
  width: 165px;
  text-indent: -99999px;
}

/**
 * Boilerplate Media/Print styles
 */
/**
 * 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, Mobile 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 {
  /* line 7, ../src/includes/_print.scss */
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* Black prints faster: sanbeiji.com/archives/953 */
  /* line 9, ../src/includes/_print.scss */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }

  /* line 10, ../src/includes/_print.scss */
  a[href]:after {
    content: " (" attr(href) ")";
  }

  /* line 11, ../src/includes/_print.scss */
  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 12, ../src/includes/_print.scss */
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  }

  /* Don't show links for images, or javascript/internal links */
  /* line 13, ../src/includes/_print.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 14, ../src/includes/_print.scss */
  thead {
    display: table-header-group;
  }

  /* css-discuss.incutio.com/wiki/Printing_Tables */
  /* line 15, ../src/includes/_print.scss */
  tr, img {
    page-break-inside: avoid;
  }

  @page {
    margin: 0.5cm;
}

  /* line 17, ../src/includes/_print.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 18, ../src/includes/_print.scss */
  h2, h3 {
    page-break-after: avoid;
  }
}
/**
 * Boilerplate helper classes: 
 *
 * please define your styles before this section. 
 * 
 */
/**
 * Non-semantic helper classes: please define your styles before this section.
 */
/* For image replacement */
/* line 6, ../src/includes/_helpers.scss */
.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 */
/* line 10, ../src/includes/_helpers.scss */
.hidden {
  display: none;
  visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
/* line 14, ../src/includes/_helpers.scss */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
/* line 17, ../src/includes/_helpers.scss */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */
/* line 20, ../src/includes/_helpers.scss */
.invisible {
  visibility: hidden;
}

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements.
   j.mp/bestclearfix */
/* line 24, ../src/includes/_helpers.scss */
.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}

/* line 25, ../src/includes/_helpers.scss */
.clearfix:after {
  clear: both;
}

/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
/* line 27, ../src/includes/_helpers.scss */
.clearfix {
  zoom: 1;
}

