/* Drupal 7 Framework - Created by André Griffin
------------------------------------------------
[Table of contents]

 0.Reset
 1.Global
 2.Layout
 3.Main
 4.Sidebars
 5.Header
 6.Navigation
 7.Nodes
 8.Comments
 9.Blocks
10.Footer
11.CSS Support

Font sizes: 16px base font with 24px line-height
------------------------------------------------
       font-size / line-height / margin-top
------------------------------------------------
40px = 2.5em     / 1.2         / 0.6em
32px = 2em       / 1.5         / 0.75em
24px = 1.5em     / 1           / 1em
20px = 1.25em    / 1.2         / 1.2em
16px = 1em       / 1..5        / 1.5em
14px = 0.875em   / 1.7143      / 1.7143em
13px = 0.8125em  / 1.8462      / 1.8462em
12px = 0.75em    / 2           / 2em
10px = 0.625em   / 2.4         / 2.4em

Equation for font sizing: 
  Desired px ÷ Default (or parent) px = em size
------------------------------------------------*/

/**
 * 0.RESET 
 */

@import "reset.css";


*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
  outline: none;
 }
 
/**
 * 1.GLOBAL
 */
@font-face {
    font-family: 'arial_black';
    src: url('arial_black-webfont.eot');
    src: url('arial_black-webfont.eot?#iefix') format('embedded-opentype'),
         url('arial_black-webfont.woff') format('woff'),
         url('arial_black-webfont.ttf') format('truetype'),
         url('arial_black-webfont.svg#arial_blackregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

body {
  background: #fff;
  color: #222;
  font-family: Arial, sans-serif;
  font-size: 100%;
  margin: 0;
  padding: 0;
}
strong, b{
	font-weight: bold;
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
}

h1, .h1 {
  font-size: 2em;
  line-height: 1.5;
  margin-top: 0.75em;
}

h2, .h2 {
  font-weight: bold;	
  font-size: 18px;
}

h3, .h3 {
  font-size: 1.25em;
  line-height: 1.2;
  margin-top: 1.2em;
}

h4, h5, h6, .h4, .h5, .h6 {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 1.5em;
}

p {
  font-size: 1em;
  line-height: 1.5;
  margin: 0 0 1.5em 0;
}

a { color: #000; text-decoration: none; outline: none; }
a::-moz-focus-inner {
  border: 0;
}
a:visited { color: #000; outline: none;}

a:hover, a:active, li a.active  { color: #000; outline: none;}

a:focus { outline: none; }

a:hover, a:active { outline: 0; }

/* apply common styling after reset.css */

li ul, li ol {  margin: 0; }
ul, ol {  margin: 0 1.5em 1.5em 0;  padding-left: 1.5em; }
ul {  list-style-type: disc; }
ol {  list-style-type: decimal; }
dl {  margin: 0 0 1.5em 0; }
dl dt {  font-weight: bold; }
dd {  margin-left: 1.5em; }
hr {  background: #666;  border: none;  clear: both;  float: none;  height: 1px;  margin: 0 0 1.4375em;  width: 100%; }
fieldset {  border: 1px solid #ccc;  margin: 0 0 1.4375em;  padding: 1.5em; }
table {  margin-bottom: 1.5em;  width: 100%; }
th, tr, td {  vertical-align: top; font-size: 13px;}
.field-name-field-page-sidebar td p{ margin-bottom: 0px; line-height: 13px; }

th { padding-right: 1em; }
.sticky-header th, .sticky-table th {  border-bottom: 3px solid #ccc;  padding-right: 1em;  text-align: left; }

em{ font-style: italic; }
blockquote div,
blockquote span,
blockquote p{ padding: 10px 15px 0px 15px; color: #333; font-style: italic;}




 
/* clear floats */
.clear { clear: both; }

/* display block */
.display-block { display: block; }

#container{
	width: 992px;
	margin: 0 auto;
	padding: 0px 20px;
}
#social-links{
	float: right;
	margin: 10px 16px 10px 0px;
	
}
#social-links,
#social-links a{
	color: #bbb;
	font-size: 10px;
	font-style: italic;
}
#logo-container{
	position: relative;
	height: 237px;
}
#logo-container img,
#logo-container #logo-mid-layer{
	position: absolute;
}

#logo-container #logo-mid-layer #square,
#logo-container #logo-mid-layer #landscape{
	height: 204px;
	position: absolute;
	top: 16px;
}
#logo-container #logo-mid-layer #square{
	width: 186px;
	left: 16px;
}

#logo-container #logo-mid-layer #landscape{
	width: 685px;
	left: 251px;
}

/* MENU */
#navigation{
	padding: 11px 11px;
}

#main-menu,
#secondary-menu{
	position: relative;
	float: left;
	width: 100%;
	text-align: justify;
	width: 930px;
	margin-bottom: 0px;	
}
#secondary-menu{
	border-top: 1px solid #000;
}
#main-menu a,
#secondary-menu a{
	position: relative;
	float: left;
	cursor: pointer;
	padding: 3px 7px;
	text-transform: uppercase;
}
#main-menu a{
	font-family: arial_black;
	color: #000;
}
#main-menu a.active{
	background-color: #000;
	color: #FFF;
}
#secondary-menu a{
	font-style: italic;
}

#main-menu a:last-child,
#secondary-menu a:last-child{
	float: right;
	padding: 3px 7px 3px 7px;
}

#content-top{
	position: relative;
	float: left;
	width: 952px;
	height: 16px;
	background: transparent url('../images/borders.gif') no-repeat center top;
	display: none;
}
#content-frame{
	position: relative;
	float: left;
	background-color: #000;
	padding: 16px;
	width: 952px;
	/* Safari 3-4, iOS 1-3.2, Android 1.6- */
  -webkit-border-radius: 10px; 

  /* Firefox 1-3.6 */
  -moz-border-radius: 10px; 
  
  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
  border-radius: 10px;
}
#content-area{
	position: relative;
	float: left;
	width: 100%;
	background-color: #fff;
}
#content-bottom{
	position: relative;
	float: left;
	width: 952px;
	height: 16px;
	background: transparent url('../images/borders.gif') no-repeat center bottom;
	display: none;
}

/* EVENTS */
.row,
.view-id-related_nodes .views-row-odd,
.view-id-related_nodes .views-row-even{
	position: relative;
	float: left;
	width: 100%;
}
.event{
	padding: 16px 16px 12px 16px;
	width: 100%;
}
.event.teaser{
	position: relative;
	float: left;
	border-bottom: 1px solid #000;
}
.event.teaser .event-link{
	position: relative;
	float: left;
	width: 100%;
}

.field-name-field-event-header{
	clear: both;
	
}
.info{
	position: relative;
	float: left;
	margin-bottom: 0px;
	width: 100%;
}
.date, .price{
	font-size: 22px;
	font-weight: bold;
	line-height: 1;
}
.date{
	float: left;
	font-weight: bold;
}
.price{
	float: right;
}
.buy{
 	background: transparent url('../images/buy.png') no-repeat center left; 
 	margin-left: 10px;
 	float: right;
 	padding: 3px 3px 1px 16px;
	margin-top: -3px;
}
.event.full .buy{
	background: none;
	padding: 2px 11px 0px;
	margin-left: 10px;
	float: right;
	margin-top: -2px;
}

.header-1, .header-2, .header-3{
	font-family: 'arial_black';
	margin: 0;
	
}
.field-name-field-event-header p{
	margin: 0px;
}
.event.teaser p.header-1,
.header-1{
	font-size: 60px;
	line-height: 0.9;
	margin-left: -2px;
}
.header-2{
	font-size: 40px;
	line-height: 1;
}
.header-3{
	font-size: 30px;
	line-height: 31px;
}
.country-code{
	font-weight: bold;
	font-size: 15px;
	margin: 0px 0px 0px 5px;
	line-height: 15px;
	
}
.event.teaser p{
	margin: 0;
	line-height: 1;
}
.event.teaser p.header-2,
.event.teaser p.header-3
.event.teaser p.country-code{
	line-height: 1;
}
.images{
	position: relative;
	float: left;
	line-height: 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	margin-bottom: 20px;
	width: 100%;
	height: 366px;
	background-color: #ddd;
}

.slideshow-item {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 8;
	background-color: #000;
}

.slideshow-item.active {
    z-index:10;
}

.slideshow-item.last-active {
    z-index:9;
}
.slideshow-item img{
	position: absolute;
	top: 0px;
	left: 0px;
	background-color: black;
	width: 921px;
}


.text{
	position: relative;
	float: left;
	padding-left: 19px;
	width: 560px;
	padding-bottom: 50px;
	margin-top: -3px;
}
.text p,
.text div{
	margin-bottom: 10px;
	line-height: 1.5;
}
.text p a,
.text div a{
	text-decoration: underline;
	color: #666;
}

.sharethis-buttons{
	position: relative;
	float: right;
	margin: 20px 0px;
}
.right-column{
	width: 291px;
	float: right;
	margin-right: 19px;
}
.embed{
	position: relative;
	margin-bottom: 10px;
}
.embed-overlay{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;	
	z-index: 3;
}
.embed-popup{
	display: none;
	padding: 16px;
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
    background-color: #fff;
}
.links{
	margin-top: 20px;
}
.links h2{
	border-bottom: 1px solid #ccc;
	line-height: 1.2;
}
.links a{
	font-style: italic;
	font-weight: bold;
	font-size: 14px;
	line-height: 1.5;
	width: 100%;
	text-transform: uppercase;
}
.field-name-field-event-links-1 p,
.field-name-field-event-links .field-item{
	border-bottom: 1px solid #ccc;
}

.field-name-field-event-links-1 p{
	margin: 0px;
	text-transform: uppercase;
}
.field-name-field-event-links-1 p a{
	font-weight: normal;
}
.field-name-field-event-links-1 p strong{
	font-weight: bold;
}

.extra-images{
	margin-top: 30px;
}

.related{
	min-height: 40px;
}

#share-links{
	position: absolute;
	bottom: -40px;
	right: 0px;
	text-align: right;
	font-style: italic;
	font-size: 12px;
}
.share-link{
	position: relative;
	float: left;
	margin-left: 20px;
	cursor: pointer;
}
.share-link:hover{
	color: #888;
}
.sharethis-buttons{
	display:none;
}
#facebook-link{
	margin-left: 10px;
}

#add-to-cal{
	position: absolute;
	bottom: 0px;
	left: 16px;
	text-align: left;
	font-style: italic;
	font-size: 12px;
	display: none;
}
#add-to-cal .calendar-links{
	margin-top: 5px;
}
#add-to-cal .calendar-links a{
	margin-right: 10px;
}
/* Galleries */
.gallery.teaser{
	position: relative;
	float: left;
}
.gallery .container{
	position: relative;
	float: left;
	border-bottom: 1px solid #000;
}
.gallery img{
	position: relative;
	float: left;
}
.gallery.full .title,
.gallery.full .title-background{
	position: absolute;
	left: 0px;
	bottom: 0px;
	z-index: 2;
	padding: 15px;
	width: 921px;
}
.gallery.full .title-background{
	z-index: 1;
	color: #fff;
	background-color: #FFF;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
	-moz-opacity: 0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;
}
.gallery.teaser .title{
	position: relative;
	float: left;
	padding: 15px;
	width: 920px;
}

.gallery p{
	margin: 0px;
}
.gallery-share{
	cursor: pointer;
	float: right; 
	font-size: 10px;
	margin-top: 3px;
	margin-right: 3px;
}
.fb-share-button{
	position: absolute !important; 
	top: 14px; 
	right: 12px; 
}
.fb-share-button,
.fb-share-button span,
.fb-share-button iframe{
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;

}

.gallery .header-3{
	width: 100%;
}

#outerImageContainer{
	border-radius: 10px;
}

#imageDataContainer{
	background-color: transparent !important;
}
#caption{
	padding-top: 20px;
	color: #fff;
	font-weight: normal !important;
	text-align: center;
	width: 100%;
}
#numberDisplay,
#bottomNav{
	display: none !important;
}
#imageData #imageDetails{
	width: 100%;
	text-align: center;
}
#lightboxImage{
	padding: 6px;
}

/* pages */
.field-name-field-page-text p,
.field-name-field-page-text div,
.field-name-field-new-page-text p,
.field-name-field-new-page-text div{
	width: 593px;
	padding: 0px 16px;
	margin: 0px;
	position: relative;
	float: left;
}
.field-name-field-page-text div,
.field-name-field-new-page-text div{
	padding: 0px 0px;
}
.field-name-field-page-text p img.image-wide-image,
.field-name-field-page-text p img.image-text-image-wide,
.field-name-field-new-page-text p img.image-wide-image,
.field-name-field-new-page-text p img.image-text-image-wide,
.field-name-field-new-page-text p img{
	margin-left: -16px;
	position: relative;
	float: left;
}
.content-type-page .header-2{
	padding: 16px;
	text-transform: uppercase;
	width: 920px;
	font-size: 2em !important;
}

/* user */
#user-login{
	padding: 20px;
	text-align: center;
}
#user-login input{
	text-align: center;
	font-size: 20px !important;
	border: 1px solid #666;
	color: #666;
	padding: 5px;
}
#user-login input[type=text]{
	text-transform: uppercase;
}

#user-login input[type=text],
#user-login input[type=password]{
	width: 300px;
	letter-spacing: 3px;
}
#user-login input[type=submit]{
	background-color: #fff;
	text-transform: uppercase;
}	
#user-login label{
	font-size: 20px;
	text-transform: uppercase;
	padding: 5px;
	color: #444;
}
#user-login .description{
	font-size: 10px;
	text-transform: uppercase;
	color: #666;
	padding: 5px;
}

#user-login .form-required{
	display: none;
}
.page-user .profile{
	padding: 16px;
	display: none;
}
#block-system-navigation{
	padding: 16px;
}

/* NEWS */
.news .info{
	padding: 16px;
}
.news.teaser,
.news.teaser .info,
.news.teaser .container{
	position: relative;
	float: left;
}
.news.teaser{
	border-bottom: 1px solid #000;
}
.news.teaser p{
	margin: 0px;
}
.news .header-2{
	width: 100%;
}
.news.full{
	position: relative;
	float: left;
	padding: 0px 0px 40px 0px;
}
.news.full .info{
	padding-bottom: 16px;
}
.news.full .text{
	padding: 0px;
}
.news .image-text-image-wide{
	margin-left: -16px;
}
.field-name-field-news-text{
	width: 541px;
	padding: 0px 16px 40px 16px;
}

/* SEARCH */

#block-search-form{
	display: none;
	padding: 20px 16px 40px 16px;
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
    background-color: #fff;
}
#search-form{
	display: block;
	padding: 16px 16px 40px 16px;
	border-bottom: 1px solid #000;
	margin: 0px;
}
#search-form label{
	display: none;
}
#search-form input[type=submit],
#block-search-form input[type=submit]{
	background-color: #fff;
	text-transform: uppercase;
	text-align: center;
}
#search-form input,
#block-search-form input{
	font-size: 20px !important;
	border: 1px solid #666;
	color: #666;
	padding: 5px;
}
#search-form input{
	text-align: left;
}
#block-search-form input[type=search]{
	width: 600px;
}

#search-form input[type=text]{
	width: 820px;
}
#search-form input[type=submit]{
	width: 60px;
	letter-spacing: 3px;
	text-align: center;
	text-align: center;
}
.search-advanced{
	display: none;
}
.page-search ol{
	padding: 0;
	margin: 0;
}
.page-search h2{
	display: none;
}
.page-search ul,
.page-search li{
	list-style: none;
	margin: 0;
	padding: 16px;
}
.page-search li{
	padding: 3px 0px;
	font-size: 11px;
	fontstyle: italic;
	color: #888;
}

/* FOOTER */
#footer p{
	padding: 50px 0px;
	text-align: center;
	margin: 0px;
}
#footer p a{
	color: #888;
	font-size: 11px;
	letter-spacing: 1px;
	padding: 0px 10px;
}

/* MESSAGES */
.messages.error{
	
}
div.status,
div.error{
	background-image: none;
	border: none;
}
div.messages{
	padding: 16px;
	margin: 0px 0px 00px 0px;
}



/*
*
* UDSALG
*
*/

#sale-sticker-1,
#sale-sticker-2{
	position: absolute;
	width: 220px;
	height: 220px;
	z-index: 100;
}
#sale-sticker-1 img,
#sale-sticker-2 img{
	width: 100%;
}
#sale-sticker-1{
	top: -14px;
	right: -80px;
}
#sale-sticker-2{
	top: 340px;
  left: -150px;
}
.sale-sticker{
	position: absolute;
	top: 0px;
	right: 0px;
	width: 60px;
	height: 60px;
	z-index: 100;
	cursor: pointer;
}
.sale-sticker img{
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
	width: 100%;
}
.sale-sticker img.sale-shadow{
	top: 5px;
	left: 5px;
}
.sale-sticker div{
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 2;
	width: 60px;
	text-align: center;
}
.sale-sticker .sale-before{
	font-size: 8px;
	top: 13px;
}
.sale-sticker .sale-now{
	top: 25px;
	font-size: 10px;
	font-family: 'arial_black';
}
.sale-sticker .sale-buy{
	top: 40px;
	font-size: 9px;
	font-weight: bold;
	letter-spacing: 1px;
}



#paypal-form{
	display: block;
  position: relative;
  float: left;
  width: 100%;
  margin-left: 20px;
  margin-bottom: 30px;
}

.node-type-page .content-type-page .field-name-field-page-text p,
.node-type-page .content-type-page .field-name-field-page-text p span,
.node-type-page .content-type-page .field-name-field-page-text p strong,
.node-type-page .content-type-page .field-name-field-new-page-text p,
.node-type-page .content-type-page .field-name-field-new-page-text p span,
.node-type-page .content-type-page .field-name-field-new-page-text p strong{
	font-size: 1em !important;
}
.node-type-page .content-type-page .field-name-field-page-text p span.header-2,
.node-type-page .content-type-page .field-name-field-page-text p.header-2,
.node-type-page .content-type-page .field-name-field-new-page-text p span.header-2,
.node-type-page .content-type-page .field-name-field-new-page-text p.header-2{
	font-size: 2.5em !important;
}
.node-type-page .content-type-page .field-name-field-page-text p a,
.node-type-page .content-type-page .field-name-field-new-page-text p a{
	text-decoration: underline;
}
.node-type-page .content-type-page .field-name-field-page-text p a:hover,
.node-type-page .content-type-page .field-name-field-new-page-text p a:hover{
	color: #888;
}

.view-id-images.view-display-id-default .item-list,
.view-id-previous_events.view-display-id-default .item-list{
	position: relative;
	float: left;
	width: 100%;
	background: #000;
	padding-top: 10px;
}
.view-id-images.view-display-id-default .item-list .pager,
.view-id-previous_events.view-display-id-default .item-list .pager{
	margin: 0;
}
.view-id-images.view-display-id-default .pager-next,
.view-id-previous_events.view-display-id-default .pager-next{
	width: 100%;
	text-align: center;
	background: #000;
	color: #fff;
}
.view-id-images.view-display-id-default .pager-next a,
.view-id-previous_events.view-display-id-default .pager-next a{
	color: #fff;
}

.view-id-images.view-display-id-default .pager-next .throbber,
.view-id-previous_events.view-display-id-default .pager-next .throbber{
	display: none;
}


.w1032 #main-menu a, .w1032 #secondary-menu a{
	font-size: 30px;
}
.w1032 #secondary-menu a{
	padding: 5px 20px;
}
.w1032 #secondary-menu a:last-child{
	float: left;
}

.field-name-field-page-sidebar{
    float: left;
    width: 327px;
    background: #000;
    color: #fff;
    padding: 20px;
    text-transform: uppercase;
}
.field-name-field-page-sidebar p{
	margin-bottom: 5px;
}
.field-name-field-page-sidebar p.header-2{
	font-size: 19px !important;
	padding-left: 0px;
}
.field-name-field-page-sidebar table tr td:last-child{
	text-align: right;
}
.field-name-field-page-sidebar table tr td{
	text-transform: uppercase;
	padding: 5px 0px;
}
.page-node-2194 .field-name-field-page-sidebar{
	background: #000 url("../images/barbackground.jpg") repeat repeat;
	background-size: 150px 150px;
}