/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */


/* =============================================================================
   HTML5 element display
   ========================================================================== */

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


/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Force vertical scrollbar in non-IE
 * 3. Remove Android and iOS tap highlight color to prevent entire container being highlighted
 *    www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
 * 4. Prevent iOS text size adjust on device orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html { font-size: 100%; overflow-y: scroll; -webkit-overflow-scrolling: touch; -webkit-tap-highlight-color: rgba(0,0,0,0); -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; }

/* 
 * These selection declarations have to be separate
 * No text-shadow: twitter.com/miketaylr/status/12228805301
 * Also: hot pink!
 */

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


/* =============================================================================
   Links
   ========================================================================== */

a { color: #00e; }
a:visited { color: #551a8b; }
a:focus { outline: thin dotted; }

/* Improve readability when focused and hovered in all browsers: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: 0; }


/* =============================================================================
   Typography
   ========================================================================== */

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

/* Redeclare monospace font family: en.wikipedia.org/wiki/User:Davidgothberg/Test59 */
pre, code, kbd, samp { font-family: monospace, monospace; _font-family: 'courier new', monospace; font-size: 1em; }

/* Improve readability of pre-formatted text in all browsers */
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%; }

/* Position subscript and superscript content without affecting line-height: gist.github.com/413930 */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }


/* =============================================================================
   Lists
   ========================================================================== */

ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; margin: 0; padding: 0; }


/* =============================================================================
   Embedded content
   ========================================================================== */

/*
 * Improve image quality when scaled in IE7
 * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img { border: 0; -ms-interpolation-mode: bicubic; }

/*
 * Correct overflow displayed oddly in IE9 
 */

svg:not(:root) {
    overflow: hidden;
}


/* =============================================================================
   Figures
   ========================================================================== */

figure { margin: 0; }


/* =============================================================================
   Forms
   ========================================================================== */

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }

/* 
 * 1. Correct color not inheriting in IE6/7/8/9 
 * 2. Correct alignment displayed oddly in IE6/7 
 */

legend { border: 0; *margin-left: -7px; padding: 0; }

/* Indicate that 'label' will shift focus to the associated form element */
label { cursor: pointer; }

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */

button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 * 2. Correct inner spacing displayed oddly in IE6/7
 */

button, input { line-height: normal; *overflow: visible; }

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 */

button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; }

/* 
 * Remove inner padding and border in FF3/4
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ 
 */

button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }

/* Remove default vertical scrollbar in IE6/7/8/9 */
textarea { overflow: auto; vertical-align: top; }

/* Colors for form validity */
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }


/* =============================================================================
   Tables
   ========================================================================== */

table { border-collapse: collapse; border-spacing: 0; }


/* =============================================================================
   Primary styles
   Author: 
   ========================================================================== */








/* =============================================================================
   Non-semantic helper classes
   Please define your styles before this section.
   ========================================================================== */

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

/* 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: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.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 */
.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 */
.invisible { visibility: hidden; }

/* Contain floats: nicolasgallagher.com/micro-clearfix-hack/ */ 
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }



/* =============================================================================
   PLACEHOLDER Media Queries for Responsive Design.
   These override the primary ('mobile first') styles
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 480px) {
  /* Style adjustments for viewports 480px and over go here */

}

@media only screen and (min-width: 768px) {
  /* Style adjustments for viewports 768px and over go here */

}


/* =============================================================================
   Print styles.
   Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
 
@media print {
  * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
  a, a:visited { color: #444 !important; 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: ""; }  /* Don't show links for images, or javascript/internal links */
  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; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}

/* =============================================================================
   Pages tyles.
   ========================================================================== */
body {
	background: url('../img/bg.jpg') top center no-repeat #CEE4EF;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
}

a {
	text-decoration:none;
}
   
#container {
	width:880px;
	margin: 0 auto;
}

header {
	width:100%;
}

footer {
	width:100%;
	height:204px;
	background-color:#33689A;
	color:#fff;
}

footer ul li {
	list-style-type:none;
	margin-left: -40px;
}

footer img {
	padding-top: 10px;
	padding-right: 10px;
}

footer a:link, footer a:hover, footer a:active, footer a:visited {
	color:#fff;
}

#photo-text a:link, #photo-text a:active, #photo-text a:visited{
	color:#33689A;
	font-weight: bold;
	text-decoration: underline;
}

#photo-text a:hover {
 	text-decoration: none;
}

#header_top {
	width:100%;
	height:145px;
	padding-top:10px;
	color:#33689a;
}

#header_line {
	width:100%;
	height:10px;
}

#header_banner {
	background: url('../img/header_banner.jpg') no-repeat;
	width:100%;
	height:312px;
}
#blue_line {
    width:100%;
    margin:0;
    padding:0;
    height:10px;
    background:#33689a;
}

#random_image {
	text-align:left;
	padding-top:38px;
	padding-left:580px;
}

#minibanners div {
    position:absolute;
    width:272px;
    height:157px;
}

#minibanners div .minibanner_descr {
    width:268px;
    height:23px;
    background:#33689A;
    overflow:hidden;
    color:#fff;
    position:absolute;
    margin-top:-36px;
    margin-left:2px;
    padding-top:10px;
    text-align:center;
}

#logo {
    position:absolute;
	padding-left: 10px;
	z-index:999;
}
#header_tw_fb {
    width:100%;
    text-align:right;
    font-weight:bold;
    padding-top:5px;
}

#header_tw_fb img{
	padding-left: 5px;
}

#tw_fb{
	float:right;
	padding-left:10px;
	margin-top:-5px;
}

#cart_div {
    width:100%;
    text-align:right;
    padding-top:20px;
    height: 24px;
}
#cart_div a:link, #cart_div a:hover, #cart_div a:active, #cart_div a:visited {
    color: #33689A;
}
.linktext {
    margin-top:-5px;
}
.cart_img {
    padding-left:5px;
}
.center {
    text-align: center;
}
#top_menu {
    width:100%;
    text-align:right;
    padding-top:40px;
}
#top_menu ul li {
    float:right;
    padding-left:25px;
    list-style-type:none;
}
#top_menu ul li.active {
    font-weight:bold;
}

#searchBar {
	height:35px;
	width:100%;
	padding-left:15px;
	padding-top:5px;
	overflow:hidden;
}

#searchBar div {
    float:left;
}

#breadcrumb {
    padding-top:5px;
    width:700px;
}

#breadcrumb a, #breadcrumb a:hover, #breadcrumb a:active, #breadcrumb a:visited { 
    color: black; 
} 

#breadcrumb a:hover {
	text-decoration: underline;
}


#search_div{
    width:163px;
    height:25px;
    background:url('../img/searchBarRight.png');
	background-repeat:no-repeat; /*important*/
	padding:0px;
	margin:0px;
	position:relative; /*important*/
}

#search_div form { 
	display:inline; 
}

#searchBar .inputboxSearchRight {
    border:0px; /*important*/
	background-color:transparent; /*important*/
	position:absolute; /*important*/
	top:0px;
	left:3px;
	width:148px;
	height:23px;
    z-index:0;
}

#searchBar .search_div_submit {
	border:0px; /*important*/
	background-color:transparent; /*important*/
	position:absolute; /*important*/
	top:2px;
	left:140px;
	width:21px;
	height:23px;
}

#newsletter_wrapper{
	margin-top: 5px;
    width:150px;
    height:20px;
    background:url('../img/searchBar.png');
	background-repeat:no-repeat; /*important*/
	padding:0px;
	position:relative; /*important*/
}

#newsletter_wrapper form { 
	display:inline; 
	font-size: 12px;
}

#newsletter_wrapper .inputboxEmail {
/*	margin-top:5px;
	padding-left:6px;
	padding-bottom:4px;
	padding-right:15px; */
    border:0px; /*important*/
	background-color:transparent; /*important*/
	position:absolute; /*important*/
	top:2px;
	left:3px;
	width:125px;
	height:14px;
}

#newsletter_wrapper .search_div_submit {
	border:0px; /*important*/
	background-color:transparent; /*important*/
	position:absolute; /*important*/
	top:3px;
	left:131px;
	width: 15px;
	height: 14px;
}


.defaultTextActive {
    color:#BFBFBF;
}

#filter .defaultTextActive {
    color: #1F3ABF;
}

#main {
	/*background: #ed522b;*/
    background: #fff;
}
#main .left {
	height: inherit;
	float: left;
	width: 180px;
	line-height: 16px;
	color:#fff;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	background: #ed522b;
}

#main .left h1{
	line-height: 20px;
	color:#fff;
	text-transform:uppercase;
	text-align: left;
	font-size: 12px;
	font-weight: bold;
}

#main .left h2{
	color: black;
	text-transform:uppercase;
	font-size: 14px;
	font-weight: bold;
	font-style: italic;
}

#main .left_margin{
	text-align: left;
	padding-top:10px;
	padding-left:15px;
}

#play_small{
	margin-top: -15px;
	float: left;
}

#play_small img{
	float: right;
	padding-left: 10px;
}

#chart {
}

#chart img{
	margin-top:20px;
	padding-right: 10px;
}

#right_margin{
	margin-right:25px;
	text-align: justify;
}

#main .right {
	padding-left:25px;
	margin-top: 20px;
	float: left;
	width: 675px;
	min-height: 795px;
	color: #33689a;
	text-align: left;
	font-size: 12px;
	background: url('../img/right_col.png');
}

#main .right img{
}

#main .right h1{
	line-height: 14px;
	color: #33689A;
	text-transform:uppercase;
	text-align: left;
	font-size: 14px;
	font-style: italic;
	font-weight: normal;
}

#main .right h2{
	text-transform:uppercase;
	text-align: left;
	font-size: 14px;
	font-weight: bold;	
}
#main ul.list {
    margin-left:-57px;    
    padding-right:43px;
}

#main ul.list li {
    float:left;
    color: #ed522b;
	text-transform:uppercase;
	font-size: 12px;
	font-weight: bold;	    
    list-style-type:none;
}
#main ul.list li a {
    color: #ed522b;
    padding-left:14px;
}
#main ul.list li a.active {
	color: #33689a;
}

#photo-text {
	line-height: 20px;
	text-align: justify;
}

#photo-text h2 {
	margin-top: -5px;
	margin-left: 20px;
	text-transform:uppercase;
	text-align: center;
	font-size: 14px;
	font-weight: bold;	
}


#photo-text h3{
	font-size: 12px;
	font-weight: bold;
	font-style: italic;
	line-height: 12px;
}

#photo-text .lines{
	padding-left: 20px;
	text-align: left;
}

#pull {
	line-height: 20px;
} 

#pull input{
	margin-top: 10px;
	margin-bottom: 15px;
}

#pull .pullCheckBox{
	width: 14px;
	height: 14px;
	margin-right: 20px;
	font-weight: bold;
	/*background: url('/img/checkbox.png') no-repeat;*/
	border: none;
	outline: none;
}

#bigForm {
	color:black;
}

#bigForm .defaultTextActive {
    color:#BFBFBF;
}

#bigForm .field {
	width: 200px;
	margin-right: 20px;
}

#bigForm .fieldSelect {
    width: 206px;
    margin-right: 20px;
    color:#BFBFBF;
}

#bigForm .fieldBig{
	width: 430px;
	height: 100px;
}

#bigForm .active {
    color:#000;
}

.filter {
	padding-right:30px;
}

#main select{
	color: #1F3ABF;
	background: url('../img/filter_bar.png';)
	border: none;
}

#main .right td{
	height:30px;
	width: 150px;
}

#main .right .leftColumn {
	float: left;
	width: 250px;
}

.leftColumn .image {
    width:250px;
    height:210px;
    overflow:hidden;
    text-align: center;
}

#main .right .rightColumn{
	float: left;
	width: 370px;
	padding-left: 30px;
	text-align: justify;
	line-height: 18px;
}

#price {
	float:right;
	margin-top: -35px;
}

a.prod_link { 
    color: #33689A; 
    text-decoration: underline;
    font-style: italic;
} 

.product_list {
	float: left;
	width: 580px;
	height: 130px;
	background: #ececec;
	margin-bottom:20px;
	margin-right:40px;
}

.product_list .image{
	float: left;
	padding-top: 15px;
	padding-left: 10px;
	width:250px;
	height:100px;
	overflow:hidden;
	text-align: center;
}

.product_list .description{
	float: left;
	width: 300px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: justify;
	line-height: 18px;	
	overflow: hidden;
}

.product_list .description .price{
	float:right;
	color:#ed522b;
	/*padding-left:14px;*/
	padding-top:5px;
}

.product_list .description .title{
	padding-top: 5px;
	padding-bottom: 5px;
	width: 220px; 
	color:#ed522b;
	font-weight: bold;
	font-style: italic;
	font-size: 14px;
	height: 34px;
	float:left;
}

.product_list .description .title a, .product_list .description .title a:hover, .product_list .description .title a:active, .product_list .description .title a:visited { 
		color:#ed522b;
}

.product_list a, .product_list a:hover, .product_list a:active, .product_list a:visited { 
    color: #33689A; 
    text-decoration: underline;	
}

.more {
    height:23px;
    width:92px;
    color:#fff;
    font-weight: bold;
    background: url('../img/submit.png') no-repeat;
    border:none;
    float:right;
    padding-top:3px;        
}

.more a, .more a:hover, .more a:active, .more a:visited { 
    color:#fff;
    text-decoration:none; 
}

#eclairer {
    position:absolute;    
    padding-left:190px;
    padding-top:10px;
}
.orange {
    color:#ed522b;
}
.bold {
    font-weight: bold;
}
.italic {
    font-style: italic;
}
.clear {
	clear:both;
}
.column {
	float:left;
}

.column1 {
	width:140px;
	padding-left: 40px;
	padding-top: 15px;
	text-align: left;   
}
.column2 {
	width:180px;
	padding-left: 40px;
	padding-top: 15px;
	text-align: left;   
}
.column3 {
	width:170px;
	padding-left: 40px;
	padding-top: 15px;
	text-align: left;   
}
.column4 {
    width:135px;
	padding-left: 40px;
	padding-top: 15px;
	text-align: left;    
}
.column8 {
    width:135px;
	padding-left: 40px;
	padding-top: 15px;
	text-align: left;    
}

.header_text {
	padding-top: 5px;
	font-size:14px;
	font-weight:bold;
}

#copyrights {
    color:#33689a;
    width:880px;
    margin:0 auto;
    text-align:right;
    padding-bottom:10px;
}

#current {
	font-weight: bold;
}

/* 
	LEVEL ONE
*/
ul.dropdown {
    z-index:100; 
	text-align:left;
	position:relative;
}
ul.dropdown li { 
    height:40px;
	color: #33689A;
}
ul.dropdown a:hover	{
	
}
ul.dropdown a:active { 
}
ul.dropdown li a { 
	display: block; 
	color: #33689A;
}
ul.dropdown li:last-child a { 
	border-right: none; 
}
	 /* Doesn't work in IE */
ul.dropdown li.hover, ul.dropdown li:hover { 
	position: relative; 
}
ul.dropdown li.hover a { 

}
/* 
	LEVEL TWO
*/
ul.dropdown ul { 
	visibility: hidden; 
	position: absolute;
	padding-top:13px;
	width:195px;
}
ul.dropdown ul li { 
	height:30px; 
    width:185px;
	padding-top:5px;
    padding-right:26px;
    float:left;
    list-style-type:none;	 
	font-weight: normal; 
	font-size: 16px;
	background: url('../img/blue.png');
	color:#fff; 
}
/* IE 6 & 7 Needs Inline Block */
ul.dropdown ul li a	{ 
	width: 100%; 
	display: inline-block; 
	color:#fff; 
} 
/* 
	LEVEL THREE
*/
ul.dropdown ul ul { 
	margin-left: 26px;
	margin-top: -13px;
	left: 100%; 
	top: 0; 
}
ul.dropdown li:hover > ul { 
	visibility: visible; 
}

ul.dropdown ul ul li { 
	height:30px; 
	padding-top:5px;
	width: 215px; 
    float:left;
    list-style-type:none;	 
	font-weight:normal; 
	background:url('../img/red.png');
	color:#fff;
}

ul.dropdown ul ul li a:hover{
	font-weight: bold;	
}

/* IE 6 & 7 Needs Inline Block */
ul.dropdown ul ul li a	{ 
	width: 100%; 
	display: inline-block; 
	color:#fff; 
} 
img.arrow {
    position:absolute;
    margin-right:10px;
    margin-top:3px;
}

ul#menu li {
    list-style-type:none;
    float:left;
    width:170px;
    text-align: left;
    font-size:15px;
    line-height:30px;
    margin-left:-40px;
    padding-right:10px;
}

ul#menu li.odd a:hover, ul#menu li.even a:hover{
	color: #33689A;	
}

ul#menu .menu_title a {
    width: 145px;
}
ul#menu .menu_arrow {
    height:inherit;
}
ul#menu li img {
    vertical-align: -50%;
}

ul#menu li.first {
	margin-top: -12px;
	background:#33689A;
}

ul#menu li.odd {
	background: #f56541;
}

ul#menu li.even {
	background: #ed522b;
}

ul#menu a, ul#menu a:hover, ul#menu a:visited, ul#menu a:active { 
    float: left;
    padding-left: 15px;
    color: #fff; 
}

a.blue {
    color:#33689A;
} 
a.white {
    color:#fff;
}
.bottom {
    vertical-align: bottom;
}
ul.paginator {
    float:left;
    color:#33689A;
    padding:0px;
    margin:0px;
}
ul.paginator li {
    list-style-type:none;
    float: left;
    text-align: left;
    padding-left:5px;
    padding-right:5px;
}
ul.paginator li.active, ul.paginator li.current {
    font-weight:bold;
    text-decoration:underline;        
}
ul.paginator a, ul.paginator a:hover, ul.paginator a:active, ul.paginator a:visited { 
    color: #33689A;
    font-weight:normal;
} 

.submit{
    height: 24px;
    width: 92px;
    color: white;
    font-weight: bold;
    background: url('../img/submit.png') no-repeat;
    border: none;       
}

.formTextArea {
	width: 427px;
	height: 100px;
}

#flashMessage {
    width: 400px;
    position: absolute;
    top: 45%;
    border: 1px #ED522B solid;
    background: #D2E4F0;
    padding:20px;
    font-weight: bold;
    cursor:pointer;
}

.lightbox-error {
    position: absolute;
    top:150px;
    width: 292px;
    border: 1px #ED522B solid;
    background: #D2E4F0;
    padding:20px;
    font-weight: bold;
    cursor:pointer;    
}

.columnfilter {
    float:right;
    text-align:right;
    width:170px;
}
.columnpaginator {
    float:right;
    text-align:left;
    width:470px;
}

#advert {
	background: url('../img/advert2.png') no-repeat;
	width: 660px;
	height: 204px;
	float: left;
	margin-bottom: 20px;
}

#advert .play_button {
	float: right;
	margin-right: 78px;
	margin-top: 147px;
}

#header_tw_fb a:link, #header_tw_fb a:hover, #header_tw_fb a:active, #header_tw_fb a:visited {
    color: #33689A;
}

#header_tw_fb a:hover{
    text-decoration: underline;
} 


.subsection_active {
    position:absolute;
    float:right;
    margin-top:8px;
    padding:0 5px 0 0px;
} 

#NotificationReferForm {
    padding:20px;
}
#NotificationReferForm label {
    display:block;
    width:200px;
}


#print_icon {
    color: #000000;
    cursor: pointer;
    margin-left: 595px;
    margin-top: -27px;
    position: absolute;
    z-index: 100;
}

.left_author_text{
	float: left;
	height: 370px;
	width: 410px;
}

.right_author_img{
	float: left;
	margin-left: 20px;
	height: 370px;
	text-align: center;
	text-decoration: underline;
}

.right_author_img img{
	margin-top: 10px;	
}

#license_email_form{
	text-align: left;
	font-weight: bold;
	float: left;
	margin-top: 20px;
	margin-bottom: 20px;
}

#license_email_form select{
	margin-top: 0px;
	margin-bottom: 5px;
	border: 1px solid #999999;
	height: 20px;
}

select#province{
	width: 280px;
}

#license_email_form textarea{
	margin-top: 10px;
	margin-bottom: 30px;
	width: 500px;
	height: 120px;
	float: left;
	border: 1px solid #999999;
}

#license_email_form textarea.license{
	margin-bottom: 20px;
	padding-left: 10px; 
	padding-top: 10px;
	text-align: justify;
	height: 210px;
}
#license_email_form input{
	float: left;
}

#license_email_form .text_input{
	float: left;
	width: 180px;
	border: 1px solid #999999;
}

#license_email_form .submit{
	margin-left: 90px;
}


.text_next_to_checkbox{
	float: left;
	color: black;
	font-weight: normal;
}

.form_line{
	height: 24px;
	float: left;
	width: 540px;
	margin-bottom: 14px;
}

.label{
	float: left;
	width: 220px;
	margin-right: 10px;
}

.label2{
	float: left;
	width: 220px;
	margin-right: 10px;
	margin-top: 6px;
}

.table{
	margin-top: 20px;
	margin-bottom: 30px;
	float: left;
	width: 500px;
}

.header_form{
	float: left;
	width: 540px;
	height: 40px;
	text-align: center;
}

.header_form .col_small, .header_form .col_big, .header_form .one_line{
	background: #33689a;
	color: white;
	font-style: italic;
	line-height: 26px;
}

.header_subtitle{
	float: left;
	width: 540px;
	height: 30px;
	text-align: center;
	background: #33689a;
	color: white;
	font-style: italic;
	line-height: 26px;
	margin-bottom: 14px;
	margin-top: -14px;
}

.col_small{
	float: left;
	width: 135px;
	margin-right: 1px;
}

.col_big{
	float: left;
	width: 268px;
}	         

.col_checkbox{
	float: left;
	width: 25px;
}

.col_label{
	float: left;
	width: 240px;
}	  

.col_text{
	float: left;
	width: 200px;
	margin-right: 20px;
}

.col_text input{
	float: left;
	width: 185px;
	border: 1px solid #999999;
	margin-left: 10px;
}

.col_data{
	float: left;
	width: 50px;
}

.col_data input{
	float: left;
	width: 40px;
	border: 1px solid #999999;
	margin-left: 5px;
}

.margin_left_small{
	margin-left: 50px;
}

.margin_left_big {
	margin-left: 120px;
}

.bottomline{
	border-bottom: 1px solid #9dbfdf;
}

#main .right h2.special{
	font-size: 18px;
    font-weight: bold;
    text-align: left;
    text-transform: uppercase;
    margin-top: 50px;
}

.form_background_line {
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: -15px;
	padding-left: 15px;
	padding-top: 0px;
	padding-bottom: 10px;
	height: 25px;
	width: 625px;
	background: #ededed;
}

a.cv{
    height: 22px;
    color: #333333;
    text-decoration: underline;
    border: none;       
}

#rss_feed{
	float: left;
	color: black;
	font-size: 12px;
	margin-left: -25px;
	margin-top: 15px;
}

#rss_feed .global_margin{margin-left: 25px; margin-right: 20px; float: left; margin-bottom: 10px;}

.right #rss_feed h1{ font-size: 20px; color: black; font-weight: bold; font-style:normal;}
.right #rss_feed h2{}

#rss_feed .entry{
	margin-top: 5px;
	padding-bottom: 5px;
	border-bottom: 1px solid #333333;
}

#rss_feed .entry a{
	font-size: 14px;
	line-height: 20px;
}

#rss_feed .entry a:hover{
	text-decoration: underline;
}

#rss_feed .date{
	color: #222222;
	font-style: italic;
	margin-top: 5px;
	margin-bottom: 5px;
}

#rss_feed .text{
	color: black;
}

.dubuc_logo{
	float: left;
	width: 240px;
	margin-left: 0px;
}

.align_center{
	text-align: center;
}


#cboxLoadedContent{overflow:hidden !important;}