/*
Theme Name: Microcanon
Theme URI: http://www.microcanon.nl/
Description: Wordpress template voor Microcanon.nl
Author: BroeksMedia
Version: 1.0

CHAPTERS
----------------------------------------------------------------------------------

01	CSS reset
02	Page building
03	Navigation
04	Text
05	Links & Buttons
06	Forms
07	Top slider
08	Sidebar
09	Time Table
10	Posts / Actueel
11	Table of contents
12	Colorbox (Popup tool)

COLORS
----------------------------------------------------------------------------------

Dark blue:		#124362
Blue:			#2486c4
Medium blue:	#91c2e1
Light blue:		#d3e7f3
Pink:			#ec0d72
Dark pink:		#760739
Orange:			#f7941e
Black:			#1a1a1a
Dark grey:		#333333
Grey:			#999999
Light grey:		#d6d6d6

----------------------------------------------------------------------------------

	01 CSS RESET - http://meyerweb.com/eric/tools/css/reset/ - v1.0 | 20080212
	
----------------------------------------------------------------------------------
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

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

/*
----------------------------------------------------------------------------------

	02 PAGE BUILDING
	
----------------------------------------------------------------------------------
*/

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 22px;
	color: #333333;
	background: url(img/bg_body.gif) left top repeat-x;
}

#container {
	width: 960px;
	margin: 0 auto;
	background: url(img/bg_content.gif) 470px 150px no-repeat;
}
.home #container {
	background: url(img/bg_content.gif) 470px 490px no-repeat;
}
.header {
	height: 100px;
}
.slider {
	margin: 15px 0 0 0;
}

.content {
	float: left;
	width: 570px;
	margin: 50px 0 0 0;
	padding: 0 40px 0 20px;
}
.sidebar {
	float: right;
	width: 270px;
	padding: 50px 30px;
}

.bottom_glow {
	clear: both;
	width: 960px;
	height: 89px;
	background: url(img/sprite.gif) left -91px no-repeat;
}

.footer {
	clear: both;
	background: #000000;
	color: #999999;
	font-size: 12px;
	line-height: 18px;
}
.footer_wrapper {
	width: 960px;
	height: 200px;
	margin: 0 auto;
	padding: 50px 0 0 0;
}

/*
----------------------------------------------------------------------------------

	03 NAVIGATION
	
----------------------------------------------------------------------------------
*/

h2.logo {
	margin: 20px 0 0 20px;
	display: block;
	width: 73px;
	height: 60px;
	float: left;
}
h2.logo a {
	display: block;
	width: 73px;
	height: 60px;
	background: url(img/sprite.gif) left top no-repeat;
	text-indent: -9999px;
}

ul.nav {
	float: right;
	padding: 40px 0 0 0;
}
ul.nav li {
	height: 60px;
	float: left;
	margin: 0 20px 0 30px;
}
ul.nav li a {
	text-decoration: none;
}
ul.nav li a span {
	display: block;
	width: auto;
	float: left;
	height: 60px;
	line-height: 60px;
	vertical-align: middle;
	color: #124362;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	text-decoration: none;
}
ul.nav li a:hover span,
ul.nav li a:focus span {
	color: #2486c4;
}
ul.nav li.active a span {
	background: url(img/bg_nav_active.gif) center bottom no-repeat;
}

ul.subnav {
	position: relative;
}
ul.subnav li {
	height: 32px;
	line-height: 32px;
	vertical-align: middle;
}
ul.subnav li a {
	position: absolute;
	left: -42px;
	display: block;
	padding: 0 0 0 42px;
	width: 270px;
	color: #124362;
	text-decoration: none;
}
ul.subnav li.current_page_item a {
	background: url(img/bg_subnav.png) left top no-repeat;
	color: #2486c4;
}
ul.subnav li a:hover,
ul.subnav li a:focus {
	color: #2486c4;
}

.pagination a.page,
.pagination a.prev,
.pagination a.next,
.pagination span.current {
	display: block;
	width: 25px;
	height: 25px;
	line-height: 25px;
	float: left;
	margin: 0 10px 0 0;
	border: 1px solid #91c2e1;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	vertical-align: middle;
	background: #d3e7f3;
	color: #124362;
	
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.pagination a.page:hover,
.pagination a.page:focus,
.pagination a.prev:hover,
.pagination a.prev:focus,
.pagination a.next:hover,
.pagination a.next:focus {
	border: 1px solid #2486c4;
}
.pagination span.current {
	background: #2486c4;
	border: 1px solid #2486c4;
	color: #FFFFFF;
}
.pagination span.prev a,
.pagination span.next a {
	font-size: 12px;
	line-height: 16px;
	width: 45%;
	float: left;
	padding: 0 0 0 16px;
	background: url(img/sprite.gif) left -195px no-repeat;

}
.pagination span.next a {
	text-align: right;
	float: right;
	padding: 0 16px 0 0;
	background: url(img/sprite.gif) right -195px no-repeat;
}

/*
----------------------------------------------------------------------------------

	04 TEXT
	
----------------------------------------------------------------------------------
*/


h1, h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 28px;
	font-weight: normal;
	line-height: 36px;
	color: #124362;
}
h2 {
	font-size: 22px;
	line-height: 30px;
}
.post h2 {
	padding: 11px 0 0 0;
}

p,
.content ul {
	margin: 11px 0;
}
.sidebar ul {
	margin: 11px 0 44px 0;
}
.single p {
	clear: both;
}
.single-hoofdstukken p {
	clear: none;
}
.button_alternative {
	font-size: 13px;
	color: #999999;
	font-style: italic;
	line-height: 29px;
	vertical-align: middle;

}

p img {
	float: left;
	margin: 0 30px 30px 0;
}

p.half_colm {
	margin: 0 20px;
	width: 440px;
	float: left;
}
.footer strong {
	color: #CCCCCC;
}

.bigpost h1 {
	font-size: 32px;
}
.bigpost h2 {
	padding: 11px 0 0 0;
}

.post ul,
.post ol {
	padding: 0 0 0 20px;
}
.post ul li {
	list-style-type: disc;
}
.post ol li {
	list-style-type: decimal;
}


/*
----------------------------------------------------------------------------------

	05 LINKS & BUTTONS
	
----------------------------------------------------------------------------------
*/

a {
	color: #ec0d72;
}
a:hover,
a:focus {
	color: #2486c4;
}
.sidebar h2 a {
	color: #124362;
	text-decoration: none;
}

a.button_big {
	float: left;
	height: 29px;
	padding: 0 20px 0 0;
	margin: 0 10px 0 0;
	font-size: 15px;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFFFFF;
	background: url(img/sprite.gif) right top no-repeat;
}
a.button_big span {
	display: block;
	width: auto;
	height: 29px;
	padding: 0 0 0 20px;
	line-height: 29px;
	vertical-align: middle;
	background: url(img/sprite.gif) -660px top no-repeat;
}
a.button_big:hover,
a.button_big:focus {
	background: url(img/sprite.gif) right -30px no-repeat;
}
a.button_big:hover span,
a.button_big:focus span {
	background: url(img/sprite.gif) -660px -30px no-repeat;
}
a.button_big:focus {
	position: relative;
	top: 1px;
}

.button_alternative a {
	color: #999999;
}
.button_alternative a:hover,
.button_alternative a:focus {
	color: #333333;
}

a.more,
a.back,
ul.categories a {
	padding: 0 0 0 16px;
	background: url(img/sprite.gif) -950px -195px no-repeat;
	text-decoration: none;
}
a.more:hover,
a.more:focus,
a.back:hover,
a.back:focus {
	text-decoration: underline;
}
a.back {
	background: url(img/sprite.gif) left -195px no-repeat;
}
.sidebar p a.more {
	background: url(img/sprite.gif) -950px -196px no-repeat;
}

p.pdf_wrapper a {
	display:block;
	clear: both;
	padding: 0 0 0 20px;
	background: url(img/icon_pdf.png) left no-repeat;
	color: #999999;
}
p.pdf_wrapper a:hover,
p.pdf_wrapper a:focus {
	color: #2486c4;
}


/*
----------------------------------------------------------------------------------

	06 FORMS
	
----------------------------------------------------------------------------------
*/




/*
----------------------------------------------------------------------------------

	07 TOP SLIDER
	
----------------------------------------------------------------------------------
*/

div.slider {
	height: 325px;
	width: 960px;
	overflow: hidden;
}
div.slider ul {
	height: 325px;
	width: 1920px;
}
div.slider ul li {
	height: 325px;
	width: 960px;
	float: left;
}
div.slider ul li img {
	float: left;
	margin: 0 35px 0 55px;
}
div.slider ul li h2 {
	padding: 75px 0 0 0;
	font-size: 32px;
	line-height: 40px;
}
div.slider ul li p {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #999999;
}
div.slider ul li p span {
	color: #91c2e1;
}
a.bx-prev,
a.bx-next {
	display: none;
}
div.slider .bx-pager {
	position: relative;
	top: -30px;
	margin: 0 30px 0 0;
	float: right;
}
div.slider .bx-pager a {
	display: block;
	width: 11px;
	height: 11px;
	margin: 0 2px;
	float: left;
	background: url(img/sprite.gif) -500px 0px no-repeat;
	text-indent: -9999px;
}
div.slider .bx-pager a.pager-active {
	background: url(img/sprite.gif) -500px -11px no-repeat;
}




/*
----------------------------------------------------------------------------------

	08 SIDEBAR
	
----------------------------------------------------------------------------------
*/

.sidebar h4,
.sidebar h4 a {
	color: #f7941e;
	text-decoration: none;
}
.sidebar p {
	color: #999999;
}
.sidebar ul li p {
	margin: 0 0 22px 0;
	font-size: 12px;
}

/* SPONSORS */
ul.sponsors li {
	margin: 0 0 30px 0;
}

ul.sponsors li a {
	display: block;
	margin: 0 auto;
	text-indent: -9999px;
}
ul.sponsors li a.netherlands_genomics_initiative {
	width: 218px;
	height: 37px;
	background: url(img/sprite.gif) -80px top no-repeat;
}
ul.sponsors li a.stichting_antonie_van_leeuwenhoek {
	width: 190px;
	height: 80px;
	background: url(img/sprite.gif) -300px top no-repeat;
}
ul.sponsors li a.cvi {
	width: 220px;
	height: 25px;
	background: url(img/sprite.gif) -120px -260px no-repeat;
}
ul.sponsors li a.knpv {
	width: 110px;
	height: 49px;
	background: url(img/sprite.gif) left -260px no-repeat;
}

/*
----------------------------------------------------------------------------------

	09 TIME TABLE
	
----------------------------------------------------------------------------------
*/

#time_table {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden;
	overflow: scroll;
	color: #FFFFFF;
	background: url(img/bg_time_table.gif) left top repeat-x;
}
#time_table ol {
	position: absolute;
	left: 0;
	top: 0;
	width: 3360px;
	padding: 0 0 0 525px;
	margin: -20px 0 0 0;
	height: 400px;
	background: url(img/1px_white.gif) left 200px repeat-x;
}
#time_table ol li {
	position: relative;
	top: 0;
	float: left;
	width: 450px;
	height: 204px;
	margin: 0 0 0 -525px;
	background: url(img/bg_time_table_point.gif) 110px bottom no-repeat;
}
#time_table ol li.odd {
	top: 196px;
	left: -400px;
	margin: 0 0 0 160px;
	background: url(img/bg_time_table_point_bottom.gif) 110px top no-repeat;
	
} 
#time_table ol li img {
	width: 226px;
	height: 226px;
	background-image: url(img/sprite_time_table.png);
	background-position: left top;
	position: absolute;
	left: 0;
	top: 0;
}
#time_table ol li.tt01 img {
	background-image: url(img/tt/01.png);
}
#time_table ol li.tt02 img {
	background-image: url(img/tt/02.png);
}
#time_table ol li.tt03 img {
	background-image: url(img/tt/03.png);
}
#time_table ol li.tt04 img {
	background-image: url(img/tt/04.png);
}
#time_table ol li.tt05 img {
	background-image: url(img/tt/05.png);
}
#time_table ol li.tt06 img {
	background-image: url(img/tt/06a.png);
}
#time_table ol li.tt07 img {
	background-image: url(img/tt/07.png);
}
#time_table ol li.tt08 img {
	background-image: url(img/tt/08.png);
}
#time_table ol li.tt09 img {
	background-image: url(img/tt/09.png);
}
#time_table ol li.tt10 img {
	background-image: url(img/tt/10.png);
}
#time_table ol li.tt11 img {
	background-image: url(img/tt/11.png);
}
#time_table ol li.tt12 img {
	background-image: url(img/tt/12.png);
}
#time_table ol li.tt13 img {
	background-image: url(img/tt/13.png);
}
#time_table ol li.tt14 img {
	background-image: url(img/tt/14.png);
}
#time_table ol li.tt15 img {
	background-image: url(img/tt/15.png);
}
#time_table ol li.tt16 img {
	background-image: url(img/tt/16.png);
}
#time_table ol li.tt17 img {
	background-image: url(img/tt/17.png);
}
#time_table ol li.tt18 img {
	background-image: url(img/tt/18.png);
}
#time_table ol li.tt19 img {
	background-image: url(img/tt/19.png);
}
#time_table ol li.tt20 img {
	background-image: url(img/tt/21.png);
}
#time_table ol li.tt21 img {
	background-image: url(img/tt/20.png);
}
#time_table ol li.tt22 img {
	background-image: url(img/tt/22.png);
}
#time_table ol li.tt23 img {
	background-image: url(img/tt/23.png);
}
#time_table ol li.tt24 img {
	background-image: url(img/tt/24.png);
}
#time_table ol li.tt25 img {
	background-image: url(img/tt/25.png);
}
#time_table ol li.tt26 img {
	background-image: url(img/tt/26.png);
}
#time_table ol li.tt27 img {
	background-image: url(img/tt/27.png);
}
#time_table ol li.tt28 img {
	background-image: url(img/tt/28.png);
}
#time_table ol li h4 {
	font-size: 13px;
	line-height: 16px;
	padding: 50px 0 0 190px;
}
#time_table ol li p {
	padding: 0 0 0 190px;
	margin: 0;
	font-size: 11px;
	line-height: 16px;
}
#time_table ol li p.time {
	position: absolute;
	left: -115px;
	top: 210px;
	width: 75px;
	text-align: center;
	line-height: 12px;
}
#time_table ol li.odd p.time {
	position: absolute;
	left: -115px;
	top: -30px;
	width: 75px;
	text-align: center;
	line-height: 12px;
}
#time_table .drag_controls {
	position: relative;
	top: 370px;
	background: #124362 url(img/bg_time_table_scrollbar.gif) left top repeat-x;
	width: 860px;
	height: 18px;
	margin: 0 auto;
	
	-moz-border-radius: 4px;
	border-radius: 4px;
}
#time_table .drag_controls .drag_controller {
	position: absolute;
	left: 0;
	top: 0;
	margin: 2px;
	height: 14px;
	width: 40px;
	background: #154b6f url(img/bg_drag_controller.gif) left top repeat-x;
	
	-moz-border-radius: 3px;
	border-radius: 3px;
}
#time_table .drag_controls .drag_controller:hover {
	cursor: pointer;
}

/*
----------------------------------------------------------------------------------

	10 POSTS / ACTUEEL
	
----------------------------------------------------------------------------------
*/

.post {
	clear: both;
	
}
.post h2 a,
.post h1 a {
	color: #124362;
	text-decoration: none;
}
.post h2 a:hover,
.post h2 a:focus,
.post h1 a:hover,
.post h1 a:focus {
	color: #2486c4;
}
.post img {
	float: left;
	margin: 11px 22px 22px 0;
}
.blog .post p {
	margin: 11px 0 0 0;
}
.wp-caption {
	float: left;
	margin: 10px 20px 10px 0;
	padding: 10px;
	border: 1px solid #F2F2F2;
	
	font-size: 11px;
	line-height: 18px;
	color: #666666;
}
.wp-caption img {
	margin: 0 0 5px 0;
}
.wp-caption p {
	clear: both;
	margin: 0;
}

/*
----------------------------------------------------------------------------------

	11 TABLE OF CONTENTS (TOC)
	
----------------------------------------------------------------------------------
*/

ol.toc {
	margin: 11px 0;
}
ol.toc li {
	clear: both;
	padding: 0 0 0 100px;
	position: relative;
}
ol.toc li li {
	width: 100%;
	clear: both;
	float: left;
	margin: 11px 0;
	padding: 0;
}
ol.toc li p {
	margin: 0;
}
ol.toc h2 {
	position: absolute;
	display: block;
	width: 85px;
	left: 0;
	text-align: right;
}
ol.toc p.chapter_title {
	padding: 5px 0 0 0;
	color: #2486c4;
	font-size: 18px;
	font-family: Georgia, "Times New Roman", Times, serif;
}
ol.toc h3 {
	color: #F7941E;
	position: relative;
}
ol.toc h3 span {
	position: absolute;
	left: -100px;
	display: block;
	width: 85px;
	text-align: right;
	color: #124362;
	font-size: 18px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
}
ol.toc p.subtitle {
	font-weight: bold;
}
ol.toc p.author {
	font-size: 12px;
	color: #999999;
}


/*
----------------------------------------------------------------------------------

	11 Colorbox
	
    ColorBox Core Style
    The following rules are the styles that are consistant between themes.
    Avoid changing this area to maintain compatability with future versions of ColorBox.
	
----------------------------------------------------------------------------------
*/
/*
 * 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('img/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('img/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('img/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('img/fancybox/fancybox.png');
	background-position: -40px -30px;
}

#fancybox-right-ico {
	background-image: url('img/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('img/fancybox/fancybox-x.png');
}

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

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

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

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

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

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

#fancybox-bg-nw {
	top: -20px;
	left: -20px;
	background-image: url('img/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('img/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('img/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('img/fancybox/fancybox-x.png') 0px -40px;
}

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

/* IE6 */

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

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

.fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/microcanon/img/fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
.fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/microcanon/img/fancybox/fancy_title_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/microcanon/img/fancybox/fancy_title_main.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/microcanon/img/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='/wp-content/themes/microcanon/img/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='/wp-content/themes/microcanon/img/fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/microcanon/img/fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/microcanon/img/fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/microcanon/img/fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/microcanon/img/fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/microcanon/img/fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/microcanon/img/fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/microcanon/img/fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }


#fancybox-content .content {
	padding: 20px;
	margin: 0;
}

/*
----------------------------------------------------------------------------------

	HELPERS
	
----------------------------------------------------------------------------------
*/

div.hr {
	width: 100%;
	display: inline-block;
}

hr {
	display: block;
	width: 100%;
	height: 1px;
	line-height: 1px;
	font-size: 1px;
	clear: both;
	margin: 0;
	padding: 0;
	border: none;
	background: url(img/sprite.gif) center -90px;
}
.content hr {
	margin: 40px 0 50px 0;
	background: transparent url(img/sprite.gif) left -190px;
}


.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
 
.clearfix {
	display: inline-block;
}
 
html[xmlns] .clearfix {
	display: block;
}
 
* html .clearfix {
	height: 1%;
}
