/* HTML5 ✰ Boilerplate
 * ==|== normalize ==========================================================
 */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }

html { font-size: 100%; overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
body { margin: 0; font-size: 13px; line-height: 1.231; }
body, button, input, select, textarea { font-family: sans-serif; color: #222; }

::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; }
::selection { background: #fe57a1; color: #fff; text-shadow: none; }

a { color: #00e; }
a:visited { color: #551a8b; }
a:hover { color: #06e; }
a:focus { outline: thin dotted; }
a:hover, a:active { outline: 0; }

abbr[title] { border-bottom: 1px dotted; }
b, strong { font-weight: bold; }
blockquote { margin: 1em 40px; }
dfn { font-style: italic; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
ins { background: #ff9; color: #000; text-decoration: none; }
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
q { quotes: none; }
q:before, q:after { content: ""; content: none; }
small { font-size: 85%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }
ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }
img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }
svg:not(:root) { overflow: hidden; }
figure { margin: 0; }

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
label { cursor: pointer; }
legend { border: 0; *margin-left: -7px; padding: 0; }
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
button, input { line-height: normal; *overflow: visible; }
table button, table input { *overflow: auto; }
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
textarea { overflow: auto; vertical-align: top; resize: vertical; }
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }

table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }


/* ==|== primary styles =====================================================
   Author: Simon Kjellberg
   ========================================================================== */

/* General
----------------------------------------- */
body {
    background: #E8E8E8;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    color: #434241;
    font-family: Rockwell,Georgia,Arial;
    font-weight: normal;
}

h1 {
	font-size: 24px;
	line-height: 48px;
	margin: 0 0 10px 0;
}
h2 {
	font-size: 20px;
	line-height: 48px;
}
h3 {
	color: #fff;
	font-size: 26px;
	margin: 0 0 34px 0;
}
h4 {
	color: #fff;
	font-family: Rockwell, Georgia, Arial;
	font-size: 16px;
	font-weight: bold;
}

p {
    line-height: 24px;
    margin: 0 0 20px 0;
}

.title {
    border-bottom: 1px solid #fafafa;
}

#content {
    margin: 0 auto;
    overflow: hidden;
    padding: 35px 0 50px;
    position: relative;
    width: 960px;
}

/* Header
----------------------------------------- */
#header-container {
	background: #080808 url(../images/sprite.png) top left repeat-x;
	height: 142px;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border-bottom: 1px solid #fff;
}
#header {
	width: 960px;
	padding: 0;
	margin: 0 auto;
}

#logo {
	float:left;
	margin: 52px 0 0 0;
	padding: 0;
}

#topnav {
	float:right;
	display: block;
	list-style: none;
    margin: 52px 0 0 0;
}

#topnav li {
	float:left;
	margin: 0 0 0 20px;
}

#topnav li a {
	float:left;
	display: block;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 24px;
	padding: 11px 0 0 0;
	width: 128px;
	height: 36px;
	text-align: center;
	text-transform: lowercase;
}

#topnav li.active a {
    -moz-border-radius: 10px; /* Firefox */
    -webkit-border-radius: 10px; /* Safari, Chrome */
    border-radius: 10px; /* CSS3 */
    background: #c0c0c0;
	color: #000;
   background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#e2dedb), to(#bcbab8)); /* Safari 4+, Chrome 1-9 */
   background-image: -webkit-linear-gradient(top, #e2dedb, #bcbab8); /* Safari 5.1+, Mobile Safari, Chrome 10+ */
   background-image: -moz-linear-gradient(top, #e2dedb, #bcbab8); /* Firefox 3.6+ */
   background-image: -ms-linear-gradient(top, #e2dedb, #bcbab8); /* IE 10+ */
   background-image: -o-linear-gradient(top, #e2dedb, #bcbab8); /* Opera 11.10+ */
}


/* Startpage
----------------------------------------- */
#content .col-1 {
	width: 614px;
	float:left;
	padding: 0 40px 0 0;
}
#content .col-1 .intro {
	margin: 0 0 25px 0;
}
#content .col-2 {
	float:right;
	padding: 0 0 0 35px;
	width: 268px;
	font-size: 14px;
    background: transparent url(../images/sprite.png) 0 -356px no-repeat;
}

.experiences {
	width: 100px;
	float:left;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.experiences li {
	margin: 0 0 10px 0;
    background: transparent url(../images/sprite.png) -185px -155px no-repeat;
	padding-left: 23px;
}

/* Photos
_________________________________________ */
.photos #content {
	overflow: hidden;
}

.photos #content h1 {
    border-bottom: 1px solid #d7d5d5;
	font-size: 32px;
	padding-bottom: 5px;
    margin-bottom: 0;
}

ul.photos {
    list-style-type:none;
    padding: 0;
}

ul.photos li {
	width: 293px;
	height: 180px;
	float:left;
	border: 1px solid #c0c0c0;
	padding: 5px;
	margin: 0 20px 20px 0;
	background: #fff;
}

ul.photos li a {
	display: block;
	background: #c0c0c0;
	width: 293px;
	height: 180px;
}

ul.photos li.last {
	margin: 0 0 15px 0;
}

/* Web
----------------------------------------- */
.web #content h1 {
	font-size: 32px;
    border-bottom: 1px solid #d7d5d5;
	padding-bottom: 5px;
    margin-bottom: 0;
}

.web #content ol {
	margin: 20px 0 0 0;
    padding: 0;
}

.web #content ol li {
	overflow: hidden;
	margin: 0 0 30px 0;
	padding: 30px 0 0 0;
	background: transparent url(../images/sprite.png) 0 -805px repeat-x;
}

.web #content ol li p a {
	color: #434241;
	text-decoration: none;
	border-bottom: 1px dotted #434241;
}

.web #content ol li.first {
	background-image: none;
	padding: 10px 0 0 0;
}

.web #content ol li div.imageframe {
	float:left;
	background: #fff;
	border: 1px solid #cecccc;
	padding: 14px;
	margin: 0 30px 0 0 ;
}

.web #content ol li div.imageframe img {
	float:left;
}

.web #content h2 {
	font-size: 28px;
	margin: 15px 0 0 0;
}

/* Footer
----------------------------------------- */
#footer-container {
	background: #434241 url(../images/sprite.png) 0 -742px repeat-x;
	width: 100%;
}
#footer {
	padding: 69px 0 0 0;
	overflow: hidden;
	color: #c3c2c2;
	width: 960px;
	margin: 0 auto;
}
#footer ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#footer li a {
    text-decoration: none;
}

#footer .row-1 {
	margin: 0;
    padding: 0 0 25px 0;
    border-bottom: 1px solid #363635;
}
#footer .row-2 {
	padding: 15px 0;
    border-top: 1px solid #666665;
}
#footer .row-1,
#footer .row-2 {
	overflow: hidden;
}
#footer span {
	color: #fff;
}
#footer .block {
	float:left;
	margin: 0 53px 0 0;
}
#footer .books {
	margin: 0;
}
#footer .contacts {
	width: 287px;
	font-size: 16px;
	margin-right: 65px;
}
#footer .contacts h3 {
	background: transparent url(../images/sprite.png) 0 -228px no-repeat;
	padding: 0 0 0 45px;
}
#footer .contacts form label {
	display: none;
}
#footer .contacts input,
#footer .contacts textarea {
	display: block;
	margin: 0 0 10px;
	background: #302f2f;
	width: 287px;
	padding: 5px;
	color: #a4a4a4;
	font-family: Arial, Verdana, Sans-serif;
	font-size: 14px;
    border:  1px solid #c0c0c0;
}
#footer .contacts textarea {
	height: 181px;
	margin: 0 0 15px 0;
	overflow: hidden;
}
#footer .contacts button {
	background: transparent url(../images/sprite.png) 0 -324px no-repeat;
	width: 81px;
	height: 32px;
	border: none;
	text-align: left;
	padding-left: 10px;
	display: block;
	cursor: pointer;
	float: left;
	margin-right: 15px;
}
#footer .contacts button span {
	color: #434241;
}
#footer .contacts #loader {
	float:left;
	display: block;
	padding-left: 24px;
	font-size: 12px;
	margin: 8px 0 0 0;
	background: transparent url(../images/ajax-loader.gif) center left no-repeat;
}
#footer .contacts #response {
	font-size: 12px;
	display: block;
	float:left;
	margin: 5px 0 0 0;
	width: 200px;
}

#footer .contacts .failure {
	color: #ff0000;
}
#footer .contacts .validation-failed {
	display: block;
	font-size: 12px;
	color:#ff0000;
	background: transparent;
	padding: 4px 5px;
	position: relative;
	width: 287px;
	top: -10px;
}
#footer .blog {
	width: 270px;
}
#footer .blog h3 {
	background: transparent url(../images/sprite.png) 0 -260px no-repeat;
	padding: 0 0 0 45px;
}
#footer .blog h4 a {
	color: #fff;
}
#footer .blog p a {
	color:#c3c2c2;
}
#footer .blog h4 {
	margin: 0 0 10px 0;
	line-height: 22px;
}
#footer .blog p {
	font-size: 14px;
	line-height: 20px;
	margin: 0;
}
#footer .blog li {
	padding: 10px 0;
	margin: 0;
	border-top: 1px solid #666665;
    border-bottom: 1px solid #363635;
}
#footer .blog li.first {
    border-top: none;
	background-image: none;
	padding-top: 0;
}
#footer .blog li.last {
    border-bottom: none;
}
#footer .books {
	width: 270px;
	font-size: 14px;
	float:right;
}
#footer .books h3 {
	background: transparent url(../images/sprite.png) 0 -292px no-repeat;
	padding: 0 0 0 45px;
}
#footer .books p {
	margin: 0;
	line-height: 20px;
}
#footer .books p img {
	float:left;
	margin: 0 10px 0 0;
}
#footer .books li {
	padding: 10px 0;
	margin: 0;
	border-top: 1px solid #666665;
    border-bottom: 1px solid #363635;
}
#footer .books li.first {
    border-top: none;
	background-image: none;
	padding-top: 0;
}
#footer .books li.last {
    border-bottom: none;
}
#footer .copyright {
	float:left;
	font-size: 14px;
}
#footer .menu {
	float:right;
}
#footer .menu li {
	display: inline;
	margin: 0;
}
#footer .menu li a {
	border-right: 1px solid #c0c0c0;
	color: #fff;
	font-size: 14px;
	padding: 4px 9px 5px 4px;
}
#footer .menu li.last a {
	border-right: none;
}
#footer .menu li.active a {
	text-decoration: underline;
}


/* Easy Slider
 ----------------------------------------- */

#slider {
    margin: 0 0 30px 0;
}

#slider ul, #slider li,
#slider2 ul, #slider2 li{
	margin:0;
	padding:0;
	list-style:none;
	}
#slider2{margin-top:1em;}
#slider li, #slider2 li{
	/*
		define width and height of list item (slide)
		entire slider area will adjust according to the parameters provided here
	*/
	width:960px;
	height:467px;
	overflow:hidden;
	}
#prevBtn, #nextBtn,
#slider1next, #slider1prev{
	display:block;
	width:43px;
	height:43px;
	position:absolute;
	left:40px;
	top:222px;
	cursor: pointer;
	z-index:1000;
	}
#nextBtn, #slider1next{
	left:869px;
	}
#prevBtn a, #nextBtn a,
#slider1next a, #slider1prev a{
	display:block;
	position:relative;
	width:43px;
	height:43px;
	background:transparent url(../images/sprite.png) 0 -185px no-repeat;
	text-indent: -9999px;
	}
#nextBtn a, #slider1next a{
	background:transparent url(../images/sprite.png) 0 -142px no-repeat;
	}

/* numeric controls */

ol#controls{
	margin:1em 0;
	padding:0;
	height:28px;
	}
ol#controls li{
	margin:0 10px 0 0;
	padding:0;
	float:left;
	list-style:none;
	height:28px;
	line-height:28px;
	}
ol#controls li a{
	float:left;
	height:28px;
	line-height:28px;
	border:1px solid #ccc;
	background:#DAF3F8;
	color:#555;
	padding:0 10px;
	text-decoration:none;
	}
ol#controls li.current a{
	background:#5DC9E1;
	color:#fff;
	}
ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus{outline:none;}

/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 *
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 *
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1104;
	display: none;
}

#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url('../images/fancybox/fancybox.png');
}

#fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1100;
	display: none;
}

#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	z-index: 1101;
	outline: none;
	display: none;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
}

#fancybox-content {
	width: 0;
	height: 0;
	padding: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1102;
	border: 0px solid #fff;
}

#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1101;
}

#fancybox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	background: transparent url('../images/fancybox/fancybox.png') -40px 0px;
	cursor: pointer;
	z-index: 1103;
	display: none;
}

#fancybox-error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 14px;
	margin: 0;
}

#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
}

#fancybox-frame {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#fancybox-left, #fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background: transparent url('../images/fancybox/blank.gif');
	z-index: 1102;
	display: none;
}

#fancybox-left {
	left: 0px;
}

#fancybox-right {
	right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}

#fancybox-left-ico {
	background-image: url('../images/fancybox/fancybox.png');
	background-position: -40px -30px;
}

#fancybox-right-ico {
	background-image: url('../images/fancybox/fancybox.png');
	background-position: -40px -60px;
}

#fancybox-left:hover, #fancybox-right:hover {
	visibility: visible; /* IE6 */
}

#fancybox-left:hover span {
	left: 20px;
}

#fancybox-right:hover span {
	left: auto;
	right: 20px;
}

.fancybox-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	width: 20px;
	height: 20px;
	z-index: 1001;
}

#fancybox-bg-n {
	top: -20px;
	left: 0;
	width: 100%;
	background-image: url('../images/fancybox/fancybox-x.png');
}

#fancybox-bg-ne {
	top: -20px;
	right: -20px;
	background-image: url('../images/fancybox/fancybox.png');
	background-position: -40px -162px;
}

#fancybox-bg-e {
	top: 0;
	right: -20px;
	height: 100%;
	background-image: url('../images/fancybox/fancybox-y.png');
	background-position: -20px 0px;
}

#fancybox-bg-se {
	bottom: -20px;
	right: -20px;
	background-image: url('../images/fancybox/fancybox.png');
	background-position: -40px -182px;
}

#fancybox-bg-s {
	bottom: -20px;
	left: 0;
	width: 100%;
	background-image: url('../images/fancybox/fancybox-x.png');
	background-position: 0px -20px;
}

#fancybox-bg-sw {
	bottom: -20px;
	left: -20px;
	background-image: url('../images/fancybox/fancybox.png');
	background-position: -40px -142px;
}

#fancybox-bg-w {
	top: 0;
	left: -20px;
	height: 100%;
	background-image: url('../images/fancybox/fancybox-y.png');
}

#fancybox-bg-nw {
	top: -20px;
	left: -20px;
	background-image: url('../images/fancybox/fancybox.png');
	background-position: -40px -122px;
}

#fancybox-title {
	font-family: Helvetica;
	font-size: 12px;
	z-index: 1102;
}

.fancybox-title-inside {
	padding-bottom: 10px;
	text-align: center;
	color: #333;
	background: #fff;
	position: relative;
}

.fancybox-title-outside {
	padding-top: 10px;
	color: #fff;
}

.fancybox-title-over {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
	text-align: left;
}

#fancybox-title-over {
	padding: 10px;
	background-image: url('../images/fancybox/fancy_title_over.png');
	display: block;
}

.fancybox-title-float {
	position: absolute;
	left: 0;
	bottom: -20px;
	height: 32px;
}

#fancybox-title-float-wrap {
	border: none;
	border-collapse: collapse;
	width: auto;
}

#fancybox-title-float-wrap td {
	border: none;
	white-space: nowrap;
}

#fancybox-title-float-left {
	padding: 0 0 0 15px;
	background: url('../images/fancybox/fancybox.png') -40px -90px no-repeat;
}

#fancybox-title-float-main {
	color: #FFF;
	line-height: 29px;
	font-weight: bold;
	padding: 0 0 3px 0;
	background: url('../images/fancybox/fancybox-x.png') 0px -40px;
}

#fancybox-title-float-right {
	padding: 0 0 0 15px;
	background: url('../images/fancybox/fancybox.png') -55px -90px no-repeat;
}

/* IE6 */

.fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_close.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_nav_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_nav_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
.fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_main.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_title_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame {
	height: expression(this.parentNode.clientHeight + "px");
}

#fancybox-loading.fancybox-ie6 {
	position: absolute; margin-top: 0;
	top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px');
}

#fancybox-loading.fancybox-ie6 div	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_loading.png', sizingMethod='scale'); }

/* IE6, IE7, IE8 */

.fancybox-ie .fancybox-bg { background: transparent !important; }

.fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }


/* ==|== non-semantic helper classes ======================================== */
.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; }
.ir br { display: none; }
.hidden { display: none !important; visibility: hidden; }
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible { visibility: hidden; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }


/* ==|== media queries ====================================================== */

@media only screen and (min-width: 480px) {


}

@media only screen and (min-width: 768px) {

}



/* ==|== print styles ======================================================= */
 
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } 
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } 
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; }
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}

