<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* @override http://gokkast.us/assets/templates/main/styles/styles_us.css */


/* 
  HTML5 âœ° Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis/2.8.1/build/base/base.css
    camendesign/design/
    praegnanz/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2025-07-27 | Authors: Eric Meyer &amp; Richard Clark
  html5doctor/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}
nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; vertical-align:baseline; background:transparent;
	color: #5c7b89;
}

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

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

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select, password, password_confirm { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo/yui/
   Refer to developer.yahoo/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button, #password, #password_confirm { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea, password, password_confirm { 
  /* #444 looks better than black: twitter/H_FJ/statuses/11800719859 */ 
  color: #444;
}

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll;
	background-color: #141414;
}

 
/* Accessible focus treatment: people.opera/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none;
	color: #57a6c2;
}

a, a:active, a:visited {
	color: silver;
}
a:hover { color: #57a6c2; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* pathf/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto;
} /* thnx ivannikolic! sitepoint/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer;
}
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea, password, password_confirm { margin: 0;
}

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #5eb2d0;
	color: #5c7b89;
} 

/* make buttons play nice in IE:    
   viget/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

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

/* Hide for both screenreaders and browsers
   css-discuss.incutio/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   webaim/techniques/css/invisiblecontent/  &amp;  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* &gt;&gt; The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements &lt;&lt; j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }


#topnav li.back {
	margin-top: 7px;
	background: url("../images/glow.png") no-repeat center bottom;
}
#slide-nav{background-color: gray;}
.list-box-content .price{color:#2d84b6;}

ul.square li{background-image:url("square.gif");}
#twitter li{background-image:url("tweet.png");
}
#side li li{background-image:url("arrow.png");}
#side_right li li{background-image:url("arrow.png");
}
#side_left-portal li li{background-image:url("arrow.png");}
#side_left-portal li li.bulletstar{background-image:url("../images/star.png");}
#side_right-portal li li{background-image:url("arrow.png");}
#side_right-portal li li.bulletstar{background-image:url("../images/star.png");}

#Calendar .isevent .date {
	color: white;
	background-color: black;
}

#Calendar .event {
        color: black;
        background: black;
        border: 1px solid #AAA;
	width: 200px;
}
#Calendar .today .date {
background: silver; 
border: 1px solid silver;
color: gray;
}

.nieuwsheader{
	float: left;
	margin-left: 10px;
	clear: none;
	margin-top: -14px;
}
.nieuwsheaderinchapter{
	clear: none;
	height: 49px;
	margin-bottom: 4px;
	float: left;
	width: 938px;
	overflow: hidden;
}
.social{
	padding-left: 2px;
	float: none;
	text-align: right;
	margin: 6px 20px 10px;
	display: none;
}
.sm{
	height: 20px;
	float: right;
	margin-bottom: 10px;
	margin-top: 10px;
}


.fb-like-box{

	margin-bottom: 10px;
}
#fb-root{
	float: left;
	margin-bottom: 10px;
	padding-left: 2px;
	clear: none;
}
.fb-like{
	margin-bottom: 20px;
	height: 2px;
}
#fb-root-2{
	margin-bottom: 10px;
	padding-left: 2px;
	clear: none;
	float: left;
	height: 20px;
}


.entry-content.original h4 {
	background-image: url("../images/icon_artwork.jpg");
	line-height: 32px;
	background-color: gray;
	height: 20px;
}

.small{
	font-size: 10px;
	color: gray;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	font-variant: normal;
	float: left;
	display: inline;
	height: 10px;
	margin-top: 2px;
	padding-bottom: 10px;
	margin-bottom: 1px;
	line-height: 6px;
}

body {
	margin:0 auto;
	padding:0;
	background: url("../../../../banners/1040.jpg") no-repeat center top;
}
* {
	margin:0;
	padding:0;
	list-style-type: none;
	color: #e6e6e6;
	color: silver;
}

.clear{clear:both; height:1px !important; line-height:1px !important; float:none!important;
	margin: 0;
	padding: 0;
}
form{margin:0; padding:0;}
hr {
	border-width:0;
	height:1px;
	line-height:0;
	margin:30px 0px;
	page-break-after:always;
	text-align:center;
	width:100%;
	clear:both;
	color:#cfcfcf;
	background-color:#cfcfcf;
	background-repeat:repeat-x
}
/*** END OF GLOBAL  ***/

p,li{
	font-size: 12px;
	line-height: 18px;
	margin-bottom: 10px;
}
b{
	font-weight: bold;
}

h1 {
	font-size:24px; 
	line-height:28px;}
h2 {
	font-size: 20px; 
	line-height:40px;
	margin-top: 10px;
}
h3 {
	font-size:18px; 
	line-height:20px;
	margin-top: 10px;
}
h4 {
	font-size:24px; 
	line-height:18px;}
h5 {
	font-size:21px; 
	line-height:16px;}
h6 {
	font-size:18px; 
	line-height:15px;}
h1, h2, h3, h4, h5, h6 {
	color: #3e82a2;
    margin-bottom: 8px;
	text-transform: uppercase; 
}
h1:hover, h2:hover, h3:hover, h:hover4, h5:hover, h6:hover {
	color: #5eb2d0;
}
/* links */
a, a:visited {text-decoration:none; font-weight:normal; }
a:hover{text-decoration:underline;
	color: #5eb2d0;
}
/* float align */
.alignleft,
img.alignleft {
	display: inline;
	float: left;
	margin-right: 15px;
	margin-top: 3px;
}
.alignright, img.alignright {
	display: inline;
	float: right;
	margin-left: 15px;
	margin-top: 5px;
	width: 0;
	height: 0;
	overflow: visible;
}
.aligncenter,
img.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	color: #94bed2;
}

.alignnone,
img.alignnone {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top:3px;
}


img.alignleft
img.alignright, 
img.aligncenter,
img.alignnone {
	margin-bottom: 12px;
}

/* lists, blockquotes and paragraphs */
p, ul, ol, blockquote {
}
ul, ol {
	margin: 10px 0 20px 20px;
	list-style-position:inside
}
.nomargins{
	list-style-position:inside;
	margin: 10px 0 20px;
	clear: none;
}
li ol,li ul
{
	list-style:square;
	margin-bottom:0;
	margin-top:0;
}
li ol {list-style:decimal;}
	
blockquote {
	/*font-style:italic;*/
	margin:0px 0 20px 0px;
	padding:0px 10px 0px 50px;
	background-image:url("../images/quote.png");
	background-repeat:no-repeat;
	background-position:0px 0px;
	clear:both;
	font-size:16px;
	line-height:20px;
	font-family:Georgia, Arial;
	}
	
	
blockquote.left, blockquote.right  {
	float:right;
	letter-spacing:0px;
	margin-bottom:20px;
	margin-left:20px;
	margin-top:0px;
	padding:0px 20px 10px 60px;
	width:43%;
	background-position:0px 0px;
	}
	
blockquote.left{
	float:left;
	margin-left:0px;
	margin-right:20px;}

blockquote p{margin-bottom:0px; font-size:16px; line-height:20px}

/* code */
code {
	font-family:Verdana, Arial;
	letter-spacing:1px;
	margin:25px 0 25px 0px;
	display:block;
	font-size:0.9em;
	border-left:4px solid #cfcfcf;
	padding:15px 10px;
}

/*** END OF DEFAULT ELEMENT STYLES ***/

/*** CONTAINER ***/
#outer-container{
	width: 960px; /* must use for IE */
	margin: 10px auto 20px;
	border-right: 1px solid #2d4663;
	border-left: 1px solid #2d4663;
	border-bottom: 1px solid #2d4663;
-webkit-box-shadow: 0 0 20px #2d4663;
    -moz-box-shadow: 0 0 20px #2d4663;
    box-shadow:  0 0 20px #122836;
	background-repeat: repeat-x;
	background-position: 0;
}
#container{
	margin-left: 0;
	margin-right: 0px;
	padding-top: 0;
	padding-bottom: 10px;
	margin-top: 0;
}

#section-navigation{
	width: 30px;
	background-color: transparent;
	margin-left: -44px;
	height: 0;
	margin-top: 10px;
}

.artist-top{
	margin-top: -46px;
	z-index: 12;
	height: 160px;
	visibility: visible;
	overflow: visible;
	position: relative;
	background: url("../images/bookingsartistkop.png") no-repeat;
}
.records-top{
	margin-top: -46px;
	margin-left: 8px;
	z-index: 12;
	height: 160px;
	visibility: visible;
	overflow: visible;
	position: relative;
	background: url("../images/recordsartistkop.png") no-repeat;
}
.artist-pullback{
	margin-top: -63px;
	z-index: -15;
}
.post.events{
	height: 166px;
	background: url("../images/bg-events.jpg") -1px;
}

.post.bookings{
	height: 166px;
	background: url("../images/bg-bookings.jpg") -1px;
	color: black;
	margin-bottom: 10px;
}
.post.podcasts{
	height: 166px;
	background: url("../images/bg-podcasts.jpg") -1px;
}
.post.merchandise{
	height: 166px;
	background: url("../images/bg-merchandise.jpg") -1px;
}
.post.records{
	height: 166px;
	background: url("../images/bg-records.jpg") -1px;
}
.post.podcasts p,.post.events p,.post.records p,.post.bookings p,.post.merchandise p{
	padding-top: 6px;
	width: 675px;
	padding-bottom: 0;
	margin-bottom: 6px;
}
.post.podcasts h1,.post.events h1,.post.records h1,.post.bookings h1,.post.merchandise h1{
	padding-left: 70px;
	margin-top: -2px;
	color: white;
}

/* TOP */
#top{height: 160px;  margin-bottom: 0;
	z-index: -1;
background: url("../images/bg-headergokkastus.jpg") no-repeat center 0;
}
#bookings{height: 170px;  margin-bottom: 0;
background: url("../images/header-bookings.png") no-repeat center 0;
	z-index: -1;

}
#events{height: 170px;  margin-bottom: 0;
background: url("../images/header-events.png") no-repeat center 0;
}
#records{height: 170px;  margin-bottom: 0;
background: url("../images/header-records.png") no-repeat center 0;
	margin-left: 0;
}
#podcasts{height: 170px;  margin-bottom: 0;
background: url("../images/header-podcasts.png") no-repeat center 0;
}
#merchandice{height: 170px;  margin-bottom: 0;
background: url("../images/header-merchandise.png") no-repeat center 0;
}
#topinner{height:100px; border-bottom:dotted 1px #cfcfcf; margin-bottom:35px}
#top-left{width:250px; float:left;
}
#top-left-home{width:350px; float:left;}
#logo{ position:relative;
	margin-top: 10px;
}

#top-right{width: 700px; float: none;
	display: inline;
}
#top-right-home{width: 350px; float: right;
	margin-left: 30px;
	margin-right: 80px;
	overflow: hidden;
}
.rightlogo{
	float: right;
	margin-top: -40px;
	margin-left: -50px;
}
/* TOP MENU */

#top-navigation{
	position:relative;
	z-index:200;
	padding-bottom: 0;
	margin-left: 0;
	display: inline;
	float: left;
	clear: both;
	margin-top: 120px;
	width: 920px;
	padding-left: 20px;
}
#topnav{ padding:0px; list-style-type:none; float: left; position:relative; line-height:20px;
	margin-right: 0px;
	margin-top: 0px;
	margin-left: 0px;
}

#topnav{
	margin:0;
	padding:0;
	list-style-type:none;
	overflow:visible;
  }
#topnav ul {
	margin:0;
	padding:0;
	list-style-type:none;

}

#topnav li {
	margin: 0 6px 0 0;
	padding: 0;
	float:left;
	height:42px;
	background-repeat: repeat-x;
	background-position: 1px -2px;
}
#topnav a {
	display: block;
	line-height: 42px;
	margin: auto 0;
	padding:0 8px;
	color: #d4d4d4;
	text-decoration:none;
	font-size: 14px;
	text-transform: uppercase;
}

#topnav li a:hover{
	color: white;
	text-decoration: none;
	display: block;
	
  }
  
#topnav li:hover {

}

#topnav li ul {
  list-style: none;
  position: absolute;
  width: 220px;
  top: 41px;
  left: -999em;
  padding: 0;
  z-index:10;
}

#topnav li:hover ul, #topnav li.sfhover ul {
  left: auto;
  }
  
#topnav li ul li:hover ul {
 left: 90%;
 top: -1px;
}
	
#topnav li li {  
  margin: 0;
  padding: 0;
  width: 212px;
  left: auto;
  height:auto !important;
  position:relative!important;
  }
 #topnav li li.last{
  background: url("../images/topnav-sublast-bg.png") no-repeat center bottom;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 0;
	padding: 0 0 50px;
} 
#topnav li li.first{
  background: url("../images/topnav-sub-bg.jpg") repeat-y center;  
  margin: 2px 0 0;
	padding-bottom: 0;
	padding-left: 0;
	padding-right: 0;
}

	
#topnav li li a {
  font-size: 14px;
  line-height:18px;
  margin: 0;
  padding: 8px 15px 8px 15px;
	background: url("../images/topnav-sub-bg.jpg") repeat-y center;
}
	
#topnav li li a:hover {
  padding: 8px 15px 8px 15px;
  }

 
 #topnav1{
	margin: 84px 0 0 20px;
	padding:0;
	list-style-type:none;
	overflow:visible;
	float: left;
}
#topnav1 ul {
	margin:0;
	padding:0;
	list-style-type:none;

}

#topnav1 li {
	margin: 0 6px 0 0;
	padding: 0;
	float:left;
	height:42px;
	background-repeat: repeat-x;
	background-position: 1px -2px;
}
#topnav1 a {
	display: block;
	line-height: 42px;
	margin: 0px 0 auto;
	padding:0 8px;
	color: #d4d4d4;
	text-decoration:none;
	font-size: 14px;
	text-transform: uppercase;
}

#topnav1 li a:hover{
	color: white;
	text-decoration: none;
	display: block;
	
  }
  
#topnav1 li:hover {

}

#topnav1 li ul {
  list-style: none;
  position: absolute;
  width: 220px;
  top: 43px;
  left: -999em;
  padding: 0;
  z-index:10;
}

#topnav1 li:hover ul, #topnav1 li.sfhover ul {
  left: auto;
  }
  
#topnav1 li ul li:hover ul {
 left: 90%;
 top: -1px;
}
	
#topnav1 li li {  
  margin: 0;
  padding: 0;
  width: 212px;
  left: auto;
  height:auto !important;
  position:relative!important;

   background: url("../images/topnav-sub-bg.jpg") repeat-y center;
  

  }
 #topnav1 li li.last{
  background: url("../images/topnav-sublast-bg.png") no-repeat center bottom;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 0;
	padding: 0 0 50px;
} 
#topnav1 li li.first{  
  margin: 0;
  padding: 0;
}

	
#topnav1 li li a {
   background: url("../images/topnav-sub-bg.jpg") repeat-y center;
  color:#a3a3a3;
  font-size:11px;
  line-height:18px;
  margin: 0;
  padding: 8px 15px 8px 15px;
 
  }
	
#topnav1 li li a:hover {
  padding: 8px 15px 8px 15px;
  }
 

#topnav2{
	padding: 0;
	list-style-type:none;
	overflow:visible;
	width: 20px;
	margin-left: 2px;
	z-index: 2;
	height: 10px;
	margin-top: 200px;
	clear: none;
	display: inline;
}

#topnav2 li {
	padding: 0;
	color: #d3d2d3;
	width: 22px;
	text-align: center;
	line-height: 8px;
	height: 142px;
	margin-bottom: 4px;
	opacity: 0.45;
	margin-top: 4px;
	-webkit-box-shadow: 0 0 6px #6d6d6d;
    -moz-box-shadow: 0 0 6px #6d6d6d;
    box-shadow:  0 0 6px #6d6d6d;
	background-position: -3px;
	margin-left: 8px;
}
#topnav2 li.first {
	-webkit-box-shadow: 0 0 10px #aee4f2;
    -moz-box-shadow: 0 0 10px #aee4f2;
    box-shadow:  0 0 10px #aee4f2;
	margin-top: 30px;
	height: 120px;
}
#topnav2 li img {

	height: 120px;
	width: 20px;
}

#topnav2 li.current {
	-webkit-box-shadow: 0 0 10px #aee4f2;
    -moz-box-shadow: 0 0 10px #aee4f2;
    box-shadow:  0 0 10px #aee4f2;
}

#tab62{
	background: url("../images/tab-bookings.png") 0;
}
#tab62:hover,#tab62.current{
	background-image: url("../images/tab-bookings-over.png");
	opacity: 1;
}
#tab316{
	background-image: url("../images/tab-podcasts.png");
}
#tab316:hover, #tab316.current{
	background-image: url("../images/tab-podcasts-over.png");
	opacity: 1;
}
#tab224{
	background-image: url("../images/tab-records.png");
}
#tab224:hover, #tab224.current{
	background-image: url("../images/tab-records-over.png");
	opacity: 1;
}
#tab66{
	background-image: url("../images/tab-events.png");
}
#tab66:hover, #tab66.current{
	background-image: url("../images/tab-events-over.png");
	opacity: 1;
}
#tab65{
	background-image: url("../images/tab-merchandise.png");
}

#tab65:hover, #tab65.current{
	opacity: 1;
	background-image: url("../images/tab-merchandise-over.png");
}

#topnav2 li a:hover{
	color: red;
}
  
#topnav2 li a. current {
	background-color: silver;
}

#topnav2 li ul {
  list-style: none;
  position: absolute;
  width: 220px;
  top: 43px;
  left: -999em;
  padding: 0;
  z-index:10;
}

#topnav2 li:hover ul, #topnav2 li.sfhover ul {
  left: auto;
  }
  
#topnav2 li ul li:hover ul {
 left: 90%;
 top: -1px;
}
	
#topnav2 li li {  
  margin: 0;
  padding: 0;
  width: 212px;
  left: auto;
  height:auto !important;
  position:relative!important;

   background: url("../images/topnav-sub-bg.jpg") repeat-y center;
  

  }
 #topnav2 li li.last{
  background: url("../images/topnav-sublast-bg.png") no-repeat center bottom;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 0;
	padding: 0 0 50px;
} 
#topnav2 li li.first{  
  margin: 0;
  padding: 0;
}

	
#topnav2 li li a {
   background: url("../images/topnav-sub-bg.jpg") repeat-y center;
  color:#a3a3a3;
  font-size:11px;
  line-height:18px;
  margin: 0;
  padding: 8px 15px 8px 15px;
 
  }
	
#topnav2 li li a:hover {
  padding: 8px 15px 8px 15px;
  }


#topnav li:hover, #topnav li.sfhover,#topnav1 li:hover, #topnav1 li.sfhover ,#topnav2 li:hover, #topnav2 li.sfhover  { /* prevents IE7 drop-down topnav bug (focus on a page element prevents nested topnavs from disappearing) */
  position: static;
  }
  
.lavaLamp {
  position: relative;
  height: 32px;
  padding: 0px 0px 0px 0px;
  overflow: hidden;
}

.lavaLamp li {
  list-style: none;
  float:left
}

#topnav li.back {
	height: 32px;
	position: absolute;
	z-index: -1;
}

#topnav li.back .left {
	height: 32px;
	z-index: -1;
}
#topnav1 li.back {
	height: 82px;
	position: absolute;
	z-index: -1;
}

#topnav1 li.back .left {
	height: 82px;
	z-index: -1;
}
#topnav2 li.back {
	height: 82px;
	position: absolute;
	z-index: -1;
}

#topnav2 li.back .left {
	height: 82px;
	z-index: -1;
}
.lavaLamp li a {
  z-index: 10;
}

/* HEADER */
#header{
	width:950px;
	height:360px;
	position:relative;
	background-color: transparent; padding:5px;
}
#slider, #contentslider{list-style-type:none; margin:0; padding:0; height:360px; }
.nojs #slider {overflow:hidden;}/* if javascript disabled */
.slide-desc{position:absolute; right:0px; bottom:30px; width:430px; padding:25px 35px 40px 35px; color:#373737; background-image: url("../images/transparent-slide.png"); }
.nojs .slide-desc{visibility:hidden;}/* if javascript disabled */
#slider li{width:950px; height:360px;}
.slide-desc h1, .slide-desc span{opacity:1;
	color: black;
}
.slide-desc span{font-size:16px;}
#slide-nav{width:100px; height:40px; position:absolute; right:370px; bottom:15px; z-index:20;
	background-color: black;
}
.nojs #slide-nav{visibility:hidden;}/* if javascript disabled */
#prevslide{display:block; background-image:url("../images/prev-slide.png"); background-repeat:no-repeat; width:13px; height:20px; position:absolute; top:10px; left:20px}
#prevslide:hover{background-position:0 -20px;}
#nextslide{display:block; background-image:url("../images/next-slide.png"); background-repeat:no-repeat; width:13px; height:20px; position:absolute; top:10px; right:20px}
#nextslide:hover{background-position:0 -20px;}


#contentslider{list-style-type:none; margin:0; padding:0; height:360px; }
.nojs #contentslider {overflow:hidden;}/* if javascript disabled */
#contentslider.slide-desc{position:absolute; right:0px; bottom:30px; width:430px; padding:25px 35px 40px 35px; color:#373737; background-image: url(); }
.nojs, #contentslider.slide-desc {visibility:hidden;}/* if javascript disabled */
#contentslider li{width:580px; height:360px;}
.slide-desc h1, .slide-desc span{opacity:1;}
.slide-desc span{font-size:16px;}
#contentslider#slide-nav{width:100px; height:40px; position:absolute; right:370px; bottom:15px; z-index:20}
.nojs #slide-nav{visibility:hidden;}/* if javascript disabled */
#prevslide{display:block; background-image:url("../images/prev-slide.png"); background-repeat:no-repeat; width:13px; height:20px; position:absolute; top:10px; left:20px}
#prevslide:hover{background-position:0 -20px;}
#nextslide{display:block; background-image:url("../images/next-slide.png"); background-repeat:no-repeat; width:13px; height:20px; position:absolute; top:10px; right:20px}
#nextslide:hover{background-position:0 -20px;}

 #contentslider{list-style-type:none; margin:0; padding:0; height:230px; }
.nojs #slider2 {overflow:hidden;}/* if javascript disabled */
.slide-desc2{position:absolute; right:0px; bottom:30px; width:130px; padding:25px 35px 40px 35px; color:#373737; background-image: url("../images/transparent-slide.png");
	display: none;
}
.nojs .slide-desc{visibility:hidden;}/* if javascript disabled */
ul#slider2{
	width: 234px;
	height: 90px;
	margin: 0;
	padding: 0;
}
#slider2 li.rotator{width:220px; height:90px;
	list-style-position: inside;
	opacity: 0;
	list-style-type: none;
	background-image: none;
}
.slide-desc2 h1, .slide-desc span{opacity:1;}
.slide-desc2 span{font-size:16px;}
#slide-nav{width:100px; height:40px; position:absolute; right:370px; bottom:15px; z-index:20}
.nojs #slide-nav{visibility:hidden;}/* if javascript disabled */
#prevslide{display:block; background-image:url("../images/prev-slide.png"); background-repeat:no-repeat; width:13px; height:20px; position:absolute; top:10px; left:20px}
#prevslide:hover{background-position:0 -20px;}
#nextslide{display:block; background-image:url("../images/next-slide.png"); background-repeat:no-repeat; width:13px; height:20px; position:absolute; top:10px; right:20px}
#nextslide:hover{background-position:0 -20px;}
img.rotatorimage {
	text-align: center;
}
#contentslider{list-style-type:none; margin:0; padding:0; height:360px; }
.nojs #contentslider {overflow:hidden;}/* if javascript disabled */
#contentslider.slide-desc{position:absolute; right:0px; bottom:30px; width:430px; padding:25px 35px 40px 35px; color:#373737; background-image: url(); }
.nojs ,#contentslider.slide-desc{visibility:hidden;}/* if javascript disabled */
.rotator li{width:240px; height:240px;
	list-style-image: none;
	list-style-type: none;
	background-image: none;
	background-color: silver;
}
.slide-desc h1, .slide-desc span{opacity:1;}
.slide-desc span{font-size:16px;}
#contentslider#slide-nav{width:100px; height:40px; position:absolute; right:370px; bottom:15px; z-index:20}
.nojs #slide-nav{visibility:hidden;}/* if javascript disabled */
#prevslide{display:block; background-image:url("../images/prev-slide.png"); background-repeat:no-repeat; width:13px; height:20px; position:absolute; top:10px; left:20px}
#prevslide:hover{background-position:0 -20px;}
#nextslide{display:block; background-image:url("../images/next-slide.png"); background-repeat:no-repeat; width:13px; height:20px; position:absolute; top:10px; right:20px}
#nextslide:hover{background-position:0 -20px;}

/* INTRO CONTENT */
#intro-content{padding-bottom: 0;
	margin-bottom: 0;
margin-left: 0;
	padding-left: 10px;
	padding-right: 0;
	margin-top: 0;
	float: left;
	width: 480px;
}
#intro-text{font-size:30px; line-height:30px; color: #4e9dc3;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
}
#intro-text-small{font-size: 16px; color: white;
	display: block;
	padding-top: 10px;
}
#download-button{float:right; margin-right: 0;
	margin-top: 2px;
}


/* CONTENT portal*/

.kaart{
	background: url("../images/kaart.jpg") no-repeat;
	padding-left: 80px;
	padding-bottom: 10px;
}

.giclee{
	background: url("../images/lijst.jpg") no-repeat;
	padding-left: 80px;
}
.gicleelijst{
	background: url("../images/zonderlijst.jpg") no-repeat;
	padding-left: 80px;
}
.origineel{
	background: url("../images/doek.jpg") no-repeat;
	padding-left: 80px;
	padding-bottom: 14px;
}

#content{
	margin-left: 0px;
	margin-right: 0px;
	width: 960px;
	background-color: transparent;
	margin-top: 10px;
}
#main{
	margin-left: 10px;
	margin-right: 10px;
	padding: 0 0 5px;
	width: 940px;
}
#side{
	width: 249px; 
	margin-left: 10px;
	float: right;
}
#side_right{width: 259px; 
margin-right: 5px;
	float: left;
	margin-left: 0px;
	height: auto;
    }
    
#maincontent{width: 670px; float:left; 
border-right: 1px solid #06121a;
	padding-right: 5px;
	padding-left: 5px;
}
#maincontent_left{width: 670px; float: right; padding-left: 0px;
	border-left: 1px solid #06121a;
	background-image: url("..images/bg-widgets.png");
}
#maincontent_left ul{ 
	margin: 0;
	padding: 0;
}
.line-dotted{border-bottom:dotted 1px #cfcfcf; height:1px; margin:10px 0 30px 0; clear:both;
}
#middle-content{font-size:18px; line-height:25px; padding:10px;
border: 1px solid #464646;
margin:20px 0 30px 0;
color:#454545}

#content-portal{}
#main-portal{padding:0 10px 30px 10px;}
#side-portal{width:300px; float:left; margin-left:20px}
#side_right-portal{width: 225px; float:right;
	clear: none;
	display: inline;
}
#main_content-portal{
	clear: none;
	display: inline;
	float: left;
	margin-left: 20px;
	width: 410px;
border-left: 1px solid #f2f2f2;
	padding-left: 20px;
	padding-right: 20px;
border-right: 1px solid #f2f2f2;
	margin-right: 8px;
}

#side_left-portal{ float:left;
	width: 225px;
	padding: 0;
	margin: 0;
}
.line-dotted{border-bottom:dotted 1px #cfcfcf; height:1px; margin:10px 0 30px 0; clear:both}
#middle-content-portal{font-size:18px; line-height:25px; padding:10px;
border:dotted 1px #cfcfcf;
border-width:1px 0;
margin:20px 0 30px 0;
color:#454545}

.indexbutton{
	float: right;
	margin-top: -80px;
	margin-right: 20px;
	color: silver;
	border: 1px solid #464646;
	padding-top: 4px;
	padding-left: 8px;
	padding-right: 8px;
	background-color: #121212;
}
.indexbutton:hover{
    float: right;
	margin-top: -80px;
	margin-right: 20px;
	color: silver;
	background-color: #141414;
	border: 1px solid #ededed;
	padding-top: 4px;
	padding-left: 8px;
	padding-right: 8px;
}
.indexbutton a{
}
.addthis_toolbox{
	display: block;
	float: right;
	width: 100px;
	margin: 10px;
}
.indexbutton a:hover{
	color: white;
	text-decoration: none;
	float: none;
}
ul.list-box{margin:0; padding:0; list-style-type:none; list-style-position:outside}

ul.list-box &gt; li{
	background-color:#e6e6e6;
	border:solid 1px #e0e0e0;
	border-width:1px 1px 1px 1px;
	float:left;
	width:179px;
	margin-right:32px;
	text-align:center;
	padding:15px 15px 20px 15px;
	box-shadow: inset 0 0 2px 2px #ececec;
	-moz-box-shadow: inset 0 0 2px 2px #ececec;
	-webkit-box-shadow: inset 0 0 2px 2px #ececec;
	background-image:url("../images/gradient-box.png");
	background-repeat:no-repeat;
 }
 ul.list-box .title-box{margin-bottom:0; font-size:30px; color:#676767}
 ul.list-box li.last{margin-right:0;}
.list-box-container{
	background-color:#e8e8e8; padding:5px;
	-webkit-box-shadow: 0px 0px 8px #cbcbcb;
	-moz-box-shadow: 0px 0px 8px #cbcbcb;
	box-shadow: 0px 0px 8px #cbcbcb;
	margin-top:20px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
}
.list-box-content{background-color:#ededed; padding:15px 20px 20px 20px; text-align:center;}
.list-box-content hr{margin:20px 0; height:2px; border:2px}
.list-box-content ul{margin:0; padding:0; list-style-type:none;}
.list-box-content ul li{margin:0; padding:4px 0 8px 20px; list-style-type:none; background-image:url("../images/list-check.gif"); background-repeat:no-repeat; background-position:0 8px; text-align:left}
.list-box-content .price-text{text-align:center;}
.list-box-content .price{font-size:30px; }
.list-box-content .price-text .month{color:#a4a4a4; display:block; margin-top:-6px}
.list-box-content .but-color{}


/* widget-content */
.row-widget{ margin:20px 0 0 0}
.row-widget ul{
	list-style-type:none;
	padding:0;
	margin:0;
}
.row-widget ul li a, .row-widget ul li a:visited{}
.row-widget .widget-container{}
.row-widget .widget-title{ margin-bottom:28px;
	color: gray;
	text-transform: uppercase;
	font-size: 18px;
}
.twitted h2{
	font-size: 18px;
	color: gray;
	text-transform: uppercase;
	margin-top: -20px;
}
.row-widget .widget-container li{
	border-bottom: 1px dotted #464646;
	padding-bottom:4px;
	margin-bottom:4px;
}
.smalldate{font-size:11px; color:#919191; display:block}
.t1, .t1 a, .t1 a:visited{font-weight:bold; display:block; padding:2px 0; color:#676767}
ul.bulleted{margin:10px 0 0 0; padding:0; list-style-type:none;}
ul.bulleted li{
	border-bottom:0px !important;
	background-image:url("../images/bulleted.png");
	background-repeat:no-repeat;
	background-position:0 3px;
	padding: 0 0 10px 34px;
	margin:0px !important;
	overflow: visible;
	float: none;
	clear: none;
	line-height: 24px;
	font-size: 12px;
	text-align: right;
}

ul.bulleted li a, ul.bulleted li a:visited{}
ul.latest-projects{margin:0; padding:0; list-style-type:none;}
ul.latest-projects li{
	border-bottom:0px !important;
	padding:0 0 0 0px !important;
	margin-bottom:25px !important
}
ul.noborder{margin:0; padding:0; list-style-type:none;}
ul.noborder li{
	border-bottom:0px !important;
	padding:0 0 10px 0!important;
	margin:0px !important;
}
ul.square li{
	background-repeat:no-repeat;
	background-position:0 5px;
	padding:0 0 10px 20px !important;
}

#twitter li{
	background-repeat:no-repeat;
	background-position:0 3px;
	padding-left:30px;
	background-image:url("../images/tweet.png");
}
#twitter li a, #twitter li a:visited{color:#676767;}

.p-desc{ background-color:#e1e1e1; display:block; padding:8px; margin:5px 0 0 0}
.imgborder{border:solid 2px #d6d6d6;}

.qname, .qdesc, .qtext{display:block; }
.qname{font-weight:bold;}
.qdesc{font-size:11px; padding:2px 0}
.qdesc a, .qdesc a:visited{color:#676767;}
.qtext{font-style:italic; padding:2px 0 0 0}

li.widget-container div#twitter.twitted ul#twitter_update_list li{
	background-repeat:no-repeat;
	background-position:0 3px;
	padding-left:30px;
    background-image:url("../images/tweet.png");}

/* form and button */
input[type="text"],
textarea {
	padding: 5px;
	background: black;
	border: 1px solid #bfbfbf;
	box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	color:#828282
}

#cfMessage{
	width: 570px;
}

input[type="password"],
textarea {
	padding: 5px;
	background: #dadada;
	border: 1px solid #bfbfbf;
	box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	color:#828282
}
input[type="submit"],
textarea {
	padding: 5px;
	background: #dadada;
	border: 1px solid #bfbfbf;
	box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	color:#828282
}
div input.inputbox{
	padding: 5px 2px 5px 5px;
	background: #dadada;
	border: 1px solid #bfbfbf;
	box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	color:#828282;
	width: 236px;
	margin-right: 20px;
	float: left;
}
.inputbox{
	padding: 5px;
	background: #dadada;
	border: 1px solid #bfbfbf;
	box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-moz-box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-webkit-box-shadow: inset 3px 3px 3px rgba(0,0,0,0.1);
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	color:#828282;
}
.button{
font: bold 10px/8px "Lucida Grande","Lucida Sans Unicode",Verdana,Arial,Helvetica,sans-serif;
    color: gray;
    background: white url("../images/button-gradient.png");
    height: 20px;
    white-space: nowrap;
    vertical-align: top;
    text-decoration: none;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-text-shadow: 0 1px 1px gray;
    -moz-text-shadow: 0 1px 1px gray;
    text-shadow: 0 1px 1px gray;
    border: 1px solid gray;
    outline: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
    cursor: pointer;
	margin-bottom: 10px;
	text-transform: none;
	letter-spacing: 0;
	word-spacing: 0;
	cursor:pointer;
	margin-top: 4px;
	padding: 2px 4px;
	width: 140px;
	display: inline;
}
.button:hover{ background-position: bottom left;
    -webkit-box-shadow: 0 0 10px gray;
    -moz-box-shadow: 0 0 10px gray;
    box-shadow:  0 0 10px gray;
    -webkit-transition: -webkit-box-shadow 0.2s linear;
    text-decoration: none;
	background-color:gray;
	color: white;}

.more a{
	border:0;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	background-color:#777777;
	color:#b0b0b0 !important;
	font-size: 11px;
	padding:5px 10px;
	cursor:pointer;
	text-align: center;
	text-transform: uppercase;
	display: inline;
}
a.more{
font: bold 10px/20px "Lucida Grande","Lucida Sans Unicode",Verdana,Arial,Helvetica,sans-serif;
    color: #fffeff;
    height: 20px;
    vertical-align: top;
    text-decoration: none;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-text-shadow: 0 1px 1px gray;
    -moz-text-shadow: 0 1px 1px gray;
    text-shadow: gray 0 0 0px;
    border: 1px solid #5a5a5a;
    outline: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
    cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0;
	word-spacing: 0;
	cursor:pointer;
	background-color: black;
	margin-bottom: 10px;
	margin-top: 2px;
	position: relative;
	display: inline;
	padding: 2px 20px;
}


a.youtube{
	width: 100px;
	background: url("../images/youtube.png") no-repeat 2px;
	margin-left: 10px;
	text-transform: uppercase;
}
a.book{
	width: 140px;
	background: green url("../images/button-gradient.png") 2px;
	margin-left: 10px;
	text-transform: uppercase;
	height: 30px;
	line-height: 22px;
	font-weight: bold;
	margin-bottom: 10px;
}
a.twitter{
	width: 100px;
	background: url("../images/i-twitter.png") no-repeat 2px;
	margin-left: 10px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
a.facebook{
	width: 100px;
	background: url("../images/i-fb.png") no-repeat 2px;
	margin-left: 10px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
a.website{
	width: 100px;
	background: url("../images/website.png") no-repeat 2px;
	margin-left: 10px;
	text-transform: uppercase;
	margin-bottom: 10px;
}


a.more:hover{
    -webkit-box-shadow: 0 0 10px gray;
    -moz-box-shadow: 0 0 10px gray;
    box-shadow:  0 0 10px gray;
    -webkit-transition: -webkit-box-shadow 0.2s linear;
    text-decoration: none;
	color: white;

}

a.cart,a.Artikelvariant-1,a.Artikelvariant-2,a.Artikelvariant-3,a.Artikelvariant-4,a.Artikelvariant-5,a.Artikelvariant-6,a.Artikelvariant-7,a.Artikelvariant-8,a.Artikelvariant-9,a.Artikelvariant-10,a.Artikelvariant-11{
font: bold 10px/18px "Lucida Grande","Lucida Sans Unicode",Verdana,Arial,Helvetica,sans-serif;
    color: #fffeff;
    background: black url("../images/button-gradient.png");
    height: auto;
    white-space: nowrap;
    vertical-align: top;
    text-decoration: none;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-text-shadow: 0 1px 1px gray;
    -moz-text-shadow: 0 1px 1px gray;
    text-shadow: 0 1px 1px gray;
    border: 1px solid #1e4358;
    outline: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
    cursor: pointer;
	margin-bottom: 10px;
	text-transform: none;
	letter-spacing: 0;
	word-spacing: 0;
	cursor:pointer;
	margin-top: 4px;
	padding: 2px 4px;
	float: right;
}
a.back:hover{ background-position: bottom left;
    -webkit-box-shadow: 0 0 10px gray;
    -moz-box-shadow: 0 0 10px gray;
    box-shadow:  0 0 10px gray;
    -webkit-transition: -webkit-box-shadow 0.2s linear;
    text-decoration: none;
	background-color:gray;
	color: white;
}
button{
	font: bold 10px/18px "Lucida Grande","Lucida Sans Unicode",Verdana,Arial,Helvetica,sans-serif;
    color: #fffeff;
    background: silver url("../images/button-gradient.png");
    height: auto;
    white-space: nowrap;
    vertical-align: top;
    text-decoration: none;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-text-shadow: 0 1px 1px gray;
    -moz-text-shadow: 0 1px 1px gray;
    text-shadow: 0 1px 1px gray;
    border: 1px solid gray;
    outline: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
    cursor: pointer;
	margin-bottom: 10px;
	clear: none;
	text-transform: none;
	letter-spacing: 0;
	word-spacing: 0;
	margin-right: 10px;
	cursor:pointer;
	margin-top: 4px;
	padding: 4px 10px;}

button:hover{ background-position: bottom left;
    -webkit-box-shadow: 0 0 10px gray;
    -moz-box-shadow: 0 0 10px gray;
    box-shadow:  0 0 10px gray;
    -webkit-transition: -webkit-box-shadow 0.2s linear;
    text-decoration: none;
	background-color:gray;
	color: white;
}
a.back{
font: bold 10px/18px "Lucida Grande","Lucida Sans Unicode",Verdana,Arial,Helvetica,sans-serif;
    color: #fffeff;
    background: silver url("../images/button-gradient.png");
    height: auto;
    white-space: nowrap;
    vertical-align: top;
    text-decoration: none;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-text-shadow: 0 1px 1px gray;
    -moz-text-shadow: 0 1px 1px gray;
    text-shadow: 0 1px 1px gray;
    border: 1px solid gray;
    outline: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
    cursor: pointer;
	margin-bottom: 10px;
	clear: none;
	text-transform: none;
	letter-spacing: 0;
	word-spacing: 0;
	margin-right: 10px;
	cursor:pointer;
	margin-top: 4px;
	padding: 6px 10px;
}
a.back:hover{ background-position: bottom left;
    -webkit-box-shadow: 0 0 10px gray;
    -moz-box-shadow: 0 0 10px gray;
    box-shadow:  0 0 10px gray;
    -webkit-transition: -webkit-box-shadow 0.2s linear;
    text-decoration: none;
	background-color:gray;
	color: white;
}

a.kassa{
	font: bold 10px/18px "Lucida Grande","Lucida Sans Unicode",Verdana,Arial,Helvetica,sans-serif;
    color: #fffeff;
    background: black url("../images/button-gradient.png");
    height: auto;
    white-space: nowrap;
    vertical-align: top;
    text-decoration: none;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-text-shadow: 0 1px 1px gray;
    -moz-text-shadow: 0 1px 1px gray;
    text-shadow: 0 1px 1px gray;
    border: 1px solid #1e4358;
    outline: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
    cursor: pointer;
	margin-bottom: 10px;
	text-transform: none;
	letter-spacing: 0;
	word-spacing: 0;
	cursor:pointer;
	margin-top: 4px;
	padding: 2px 4px;
	float: right;}
	
a.kassa:hover{ background-position: bottom left;
    -webkit-box-shadow: 0 0 10px gray;
    -moz-box-shadow: 0 0 10px gray;
    box-shadow:  0 0 10px gray;
    -webkit-transition: -webkit-box-shadow 0.2s linear;
    text-decoration: none;
	background-color:gray;
	color: white;
}

a.login img{
	display: inline;
	position: relative;
	float: none;
	clear: none;
	top: 2px;
}
a.login{
font: bold 10px/18px "Lucida Grande","Lucida Sans Unicode",Verdana,Arial,Helvetica,sans-serif;
    color: #fffeff;
    background: red url("../images/button-gradient.png") 0;
    height: auto;
    white-space: nowrap;
    vertical-align: top;
    text-decoration: none;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-text-shadow: 0 1px 1px gray;
    -moz-text-shadow: 0 1px 1px gray;
    text-shadow: 0 1px 1px gray;
    border: 1px solid gray;
    outline: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
    cursor: pointer;
	margin-bottom: 10px;
	clear: none;
	text-transform: none;
	letter-spacing: 0;
	word-spacing: 0;
	margin-right: 10px;
	cursor:pointer;
	margin-top: 4px;
	padding: 4px 10px;
	float: right;
}
a.login:hover{ background-position: bottom left;
    -webkit-box-shadow: 0 0 10px gray;
    -moz-box-shadow: 0 0 10px gray;
    box-shadow:  0 0 10px gray;
    text-decoration: none;
	background-color: red;
	color: white;
}
a.payment{
	font: bold 10px/18px "Lucida Grande","Lucida Sans Unicode",Verdana,Arial,Helvetica,sans-serif;
    color: #fffeff;
    background: green url("../images/button-gradient.png") 0;
    height: auto;
    white-space: nowrap;
    vertical-align: top;
    text-decoration: none;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-text-shadow: 0 1px 1px gray;
    -moz-text-shadow: 0 1px 1px gray;
    text-shadow: 0 1px 1px gray;
    border: 1px solid gray;
    outline: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
    cursor: pointer;
	margin-bottom: 10px;
	clear: none;
	text-transform: none;
	letter-spacing: 0;
	word-spacing: 0;
	margin-right: 10px;
	cursor:pointer;
	margin-top: 4px;
	padding: 4px 10px;
	float: right;}
a.payment:hover{ background-position: bottom left;
    -webkit-box-shadow: 0 0 10px gray;
    -moz-box-shadow: 0 0 10px gray;
    box-shadow:  0 0 10px gray;
	background-color: green;
	color: white;
}

.volgende a{
font: bold 10px/18px "Lucida Grande","Lucida Sans Unicode",Verdana,Arial,Helvetica,sans-serif;
    color: #fffeff;
    background: black url("../images/button-gradient.png");
    height: auto;
    white-space: nowrap;
    vertical-align: top;
    text-decoration: none;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-text-shadow: 0 1px 1px gray;
    -moz-text-shadow: 0 1px 1px gray;
    text-shadow: 0 1px 1px gray;
    border: 1px solid #1e4358;
    outline: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
    cursor: pointer;
	margin-bottom: 10px;
	text-transform: none;
	letter-spacing: 0;
	word-spacing: 0;
	cursor:pointer;
	margin-top: 4px;
	padding: 2px 4px;
	float: right;
}

.vorige a{
font: bold 10px/18px "Lucida Grande","Lucida Sans Unicode",Verdana,Arial,Helvetica,sans-serif;
    color: #fffeff;
    background: black url("../images/button-gradient.png");
    height: auto;
    white-space: nowrap;
    vertical-align: top;
    text-decoration: none;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-text-shadow: 0 1px 1px gray;
    -moz-text-shadow: 0 1px 1px gray;
    text-shadow: 0 1px 1px gray;
    border: 1px solid #1e4358;
    outline: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
    cursor: pointer;
	text-transform: none;
	letter-spacing: 0;
	word-spacing: 0;
	cursor:pointer;
	padding: 2px 4px;
	float: left;
	margin: 4px 10px 10px;
}

.vorige a:hover,.volgende a:hover{
background-position: bottom left;
    -webkit-box-shadow: 0 0 10px gray;
    -moz-box-shadow: 0 0 10px gray;
    box-shadow:  0 0 10px gray;
    text-decoration: none;
	background-color:gray;
	color: white;
}
.resourcepagination{
	position: relative;
	width: 240px;
	margin-top: -180px;
	margin-right: 10px;
	float: right;
}
a.cart{
	float: right;
}
input#productaantal,input#productaantal-1,input#productaantal-2, input#productaantal-3, input#productaantal-4, input#productaantal-5, input#productaantal-6, input#productaantal-7, input#productaantal-8, input#productaantal-9, input#productaantal-10, input#productaantal-11  {
	width: 30px;
	float: none;
	margin-right: 10px;
	margin-left: 10px;
	text-align: left;
	background-color: #5b7c8d;
	color: white;
}
a.cart:hover,a.Artikelvariant-1:hover,a.Artikelvariant-2:hover,a.Artikelvariant-3:hover,a.Artikelvariant-4:hover,a.Artikelvariant-5:hover,a.Artikelvariant-6:hover,a.Artikelvariant-7:hover,a.Artikelvariant-8:hover,a.Artikelvariant-9:hover,a.Artikelvariant-10:hover,a.Artikelvariant-11:hover{	
background-position: bottom left;
    -webkit-box-shadow: 0 0 10px gray;
    -moz-box-shadow: 0 0 10px gray;
    box-shadow:  0 0 10px gray;
    text-decoration: none;
	background-color:gray;
	color: white;
}

#subscribe{padding:5px 0 0 0 !important;}


/* SIDE */
#side ul{
	list-style-type:none;
	list-style-position:outside;
	margin:0;
	padding:0;
}
#side ul li{
	list-style-type:none;
	margin:0;
	padding:0;
}
#side ul li a, #side ul li a:visited{color:#676767}
#side .widget-container{margin-bottom:40px;
	background: #101010 url("../images/bg-widgets.png") repeat-x;
}
#side .widget-title{margin-bottom:15px; font-size:18px; line-height:28px; text-transform:uppercase}
#side #searchwidget .widget-title{margin:0;}
#side #searchwidget input{width:188px;}
#side li li{
	list-style-type:none;
	margin:0;
	padding:6px 0 6px 10px;
	border-bottom: 1px dotted #222;
	background-repeat:no-repeat;
	background-position:5px 12px;
}
#side li li a{padding:0 0 0px 15px;}
#side li.current, #side li li:hover{background-color: #5f8192;}
#side li li a:hover{text-decoration:none; color:#767676;
	background-color: #5f8192;
}
#side ul ul ul{margin-left:5px;}

#side .widget-ads{margin-bottom:30px;}
#side .widget-ads ul li{background-image:none !important; float:left; margin:0px 25px 20px 0 !important; padding:0px !important; border:0px}
#side .widget-ads ul li:hover{background:none;}
#side .widget-ads ul li a{padding:0px;}

#side .widget-recentprojects{margin-bottom:20px;}
#side .widget-recentprojects ul li{background-image:none !important; float:left; margin:0px 25px 20px 0 !important; padding:0px !important; border:0px}
#side .widget-recentprojects ul li:hover{background:none;}
#side .widget-recentprojects ul li a{padding:0px;}


#side .widget-search{background-color:#676767; clear:both; padding:20px}
#side .widget-search .widget-title{margin-bottom:0px; line-height:10px; color:#d4d4d4}

#side .widget-search .button{background-color:#4b4b4b;}
#side .widget-search .button:hover{background-color:#777;}

/* SIDE right*/
#side_right ul{
	list-style-type:none;
	list-style-position:outside;
	margin: 0;
	padding:0;
	border-bottom-style: none;
}
#side_right ul li{
	list-style-type:none;
	padding:0;
	margin-top: 0;
	margin-left: 0;
	margin-bottom: 0;
}
#side_right ul li a, #side ul li a:visited{
	line-height: 18px;
}
#side_right .widget-container{
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;

	padding-bottom: 10px;
	background: #101010 url("../images/bg-widgets.png") repeat-x;
	margin-bottom: 20px;
	padding: 10px;
}
#side_right .widget-title{ font-size: 30px; line-height:28px; text-transform: uppercase;
	margin: 4px 0 0;
	height: 30px;
	padding-bottom: 10px;
}
#side_right #searchwidget .widget-title{margin:0;}
#side_right #searchwidget input{width:188px;}
#side_right li li{
	list-style-type:none;
	margin: 0 10px;
	padding:6px 0 6px 0px;
	background-repeat:no-repeat;
	background-position:5px 12px;
	background-image:url("arrow.png");
	border-bottom: 1px solid #202e35;
}
#side_right li li a{padding:0 0 0px 20px;

}
#side_right li.current, #side_right li li:hover{}
#side_right li li a:hover{text-decoration:none; color: #5eb2d0}
#side_right ul ul ul{margin-left:5px;
	margin-top: 10px;
}

#side_right  .widget-ads{margin-bottom:30px;}
#side_right  .widget-ads ul li{background-image:none !important; float:left; margin:0px 25px 20px 0 !important; padding:0px !important; border:0px}
#side_right  .widget-ads ul li:hover{background:none;}
#side_right  .widget-ads ul li a{padding:0px;}

#side_right  .widget-recentprojects{margin-bottom:20px;}
#side_right  .widget-recentprojects ul li{background-image:none !important; float:left; margin:0px 25px 20px 0 !important; padding:0px !important; border:0px}
#side_right  .widget-recentprojects ul li:hover{background:none;}
#side_right  .widget-recentprojects ul li a{padding:0px;}


#side_right  .widget-search{background-color:#676767; clear:both; padding:20px}
#side_right  .widget-search .widget-title{margin-bottom:0px; line-height:10px; color:#d4d4d4}
#side_right  .widget-search .button{background-color:#4b4b4b;}
#side_right  .widget-search .button:hover{background-color:#777;}

/* SIDE */
#side_left-portal ul{
	list-style-type:none;
	list-style-position:outside;
	margin:0;
	padding:0;
}
#side_left-portal ul li{
	list-style-type:none;
	margin:0;
	padding:0;
}
#side_left-portal ul li a, #side_left-portal ul li a:visited{color:#676767}
#side_left-portal .widget-container{margin-bottom:40px;
}
#side_left-portal .widget-title{margin-bottom:15px; font-size:18px; line-height:28px;}
#side_left-portal #searchwidget .widget-title{margin:0;}
#side_left-portal #searchwidget input{width:188px;}
#side_left-portal li li{
	list-style-type:none;
	margin:0;
	padding:6px 0 6px 10px;
	border-bottom:dotted 1px #cfcfcf;
	background-repeat:no-repeat;
	background-position:5px 12px;
}
#side_left-portal li li a{padding:0 0 0px 15px;
}
#side_left-portal li.current, #side_left-portal li li:hover{background-color:#e5e5e5;}
#side_left-portal li li a:hover{text-decoration:none; color:#767676}
#side_left-portal ul ul ul{margin-left:5px;}

#side_left-portal .widget-ads{margin-bottom:30px;}
#side_left-portal .widget-ads ul li{background-image:none !important; float:left; margin:0px 25px 20px 0 !important; padding:0px !important; border:0px}
#side_left-portal .widget-ads ul li:hover{background:none;}
#side_left-portal .widget-ads ul li a{padding:0px;}

#side_left-poratl .widget-recentprojects{margin-bottom:20px;}
#side_left-portal .widget-recentprojects ul li{background-image:none !important; float:left; margin:0px 25px 20px 0 !important; padding:0px !important; border:0px}
#side_left-portal .widget-recentprojects ul li:hover{background:none;}
#side_left-portal .widget-recentprojects ul li a{padding:0px;}


#side_left-portal .widget-search{background-color:#676767; clear:both; padding:20px}
#side_left-portal .widget-search .widget-title{margin-bottom:0px; line-height:10px; color:#d4d4d4}

#side_left-portal .widget-search .button{background-color:#4b4b4b;}
#side_left-portal .widget-search .button:hover{background-color:#777;}

/* SIDE right*/
#side_right-portal ul{
	list-style-type:none;
	list-style-position:outside;
	margin:0;
	padding:0;
}
#side_right-portal ul li{
	list-style-type:none;
	margin:0;
	padding:0;
}
#side_right-portal ul li a, #side_right-portal ul li a:visited{color:#676767}
#side_right-portal .widget-container{margin-bottom:40px;}
#side_right-portal .widget-title{margin-bottom:15px; font-size:18px; line-height:28px;}
#side_right-portal #searchwidget .widget-title{margin:0;}
#side_right-portal #searchwidget input{width:188px;}
#side_right-portal li li{
	list-style-type:none;
	margin:0;
	padding:6px 0 6px 0px;
	border-bottom:dotted 1px #cfcfcf;
	background-repeat:no-repeat;
	background-position:5px 12px;
}
#side_right-portal li li a{padding:0 0 0px 20px;
	font-size: 12px;
}
#side_right-portal li.current, #side_right-portal li li:hover{background-color:#e5e5e5;}
#side_right-portal li li a:hover{text-decoration:none; color:#767676}
#side_right-portal ul ul ul{margin-left:5px;}

#side_right-portal  .widget-ads{margin-bottom:30px;}
#side_right-portal  .widget-ads ul li{background-image:none !important; float:left; margin:0px 25px 20px 0 !important; padding:0px !important; border:0px}
#side_right-portal  .widget-ads ul li:hover{background:none;}
#side_right-portal  .widget-ads ul li a{padding:0px;}

#side_right-portal  .widget-recentprojects{margin-bottom:20px;}
#side_right-portal  .widget-recentprojects ul li{background-image:none !important; float:left; margin:0px 25px 20px 0 !important; padding:0px !important; border:0px}
#side_right-portal  .widget-recentprojects ul li:hover{background:none;}
#side_right-portal  .widget-recentprojects ul li a{padding:0px;}


#side_right-portal  .widget-search{background-color:#676767; clear:both; padding:20px}
#side_right-portal  .widget-search .widget-title{margin-bottom:0px; line-height:10px; color:#d4d4d4}

#side_right-portal  .widget-search .button{background-color:#4b4b4b;}
#side_right-portal  .widget-search .button:hover{background-color:#777;}

/* FOOTER */
#footer{
	clear:both;
	color:#afafaf;
	background: url("../images/bg-widgets.png") center top;
	border-top-width: 1px;
	border-top-color: #464646;
	margin-top: 30px;
	float: left;
	width: 940px;
	padding: 20px 10px;
}
#footer ul{
	list-style-type:none;
	list-style-position:outside;
	margin:0;
	padding:0;
}
#footer ul li{
	list-style-type:none;
	margin:0 0 6px 0;
	padding:0 0 6px 0;
	border-bottom:dotted 1px #afafaf;
	font-size:11px;
}
#footer ul li a, #footer ul li a:visited{
	color:#afafaf;
}
#footer ul li a:hover{text-decoration:none; color:#d4d3d3}
#footer li.widget-container{border:0; margin-bottom:15px; clear:both;
	background-image: none;
	background-color: transparent;
	    -moz-box-shadow: none;
    box-shadow: none;
}
#footer .widget-title{font-size:18px; color: gray; text-transform:uppercase; margin:0 0 12px 0}
#footer ul li#categories li, #footer ul li#archives li{ display:inline-block; width: 132px; float:left; margin-right: 10px}
#foot-col1, #foot-col2{
	float: left;
	width: 330px;
	height: 200px;
}
ul.sn{margin:0px 0 0 0 ; padding:0; list-style-type:none; }
ul.sn li{padding:0 2px !important; border:0 !important; display:inline}


#foot-col3{
	margin-right: 20px;
	padding-left: 10px;
	width: 334;
	padding-right: 0;
	margin-left: 20px;
	float: left;
}


#foot-col2{
	border-right: 1px solid #464646;
	margin-right: 0;
	margin-left: 10px;
	padding-right: 0;
	width: 31%;
}
#foot-col1{
	border-right: 1px none #464646;
	width: 31%;
	padding-left: 10px;
	padding-right: 10px;
}


#footer-copyright{ height:20px; color: gray; clear:both}
#copyright{padding:15px 0 0 20px;
	border-top-width: 1px;
	font-size: 10px;
	text-align: center;
}
#footer-copyright a, #footer-copyright a:visited{color:#dadada}
#footer-copyright a:hover{color: gray}

/* column list */
.four_column{list-style-type:none; margin:0px; padding:0px;}
.four_column li{list-style-type:none;width:22%; margin-right:4%; float:left;}
.four_column p{margin-bottom:10px;}

.three_column{list-style-type:none; margin:0px; padding:0px;}
.three_column li{list-style-type:none;width:30.66%; margin-right:4%; float:left;}
.three_column p{margin-bottom:10px;}

.two_column{list-style-type:none; margin:0px; padding:0px;}
.two_column li{list-style-type:none;width:48%; margin-right:4%; float:left;}
.two_column p{margin-bottom:10px;}

.three_four_column{list-style-type:none; margin:0px; padding:0px;}
.three_four_column li{list-style-type:none;width:74%; margin-right:4%; float:left;}
.three_four_column p{margin-bottom:10px;}

.two_column li li, .three_column li li, .four_column li li, .three_four_column li li{margin:0px; width:auto !important; float:none;}



/* column */
.one_half, .one_half ul{ width: 465px;
	padding-left: 0px;
	float: none;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin: 0;
}

.one_half.social, .one_half.social last{ width: 310px;
	margin: 0 20px 0 0;
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 0;
	float: left;
}
.one_third{ width: 290px;
	margin-left: 0px;
	float: left;
}

/* My Comment */
.one_fourth{width:225px;}

.two_third{ width:640px;}
.three_fourth{width:74%;}
.one_half, .one_third, .one_fourth, .three_fourth, .two_third{margin-right: 10px; float:left;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0;
}
.last{ margin-right:0 !important; clear:right;

}
.one_fifth {
	float: left;
	margin-right: 9px;
	margin-left: 2px;
}


.one_half.last .post{
	margin-top: 0px;
	margin-bottom: 10px;
	margin-left: 0;
	float: none;
	width: 444px;
}
.one_half.social .post{
	width: 290px;
	padding-right: 10px;
	margin-right: 0;
	clear: none;
}

.home-entry-content{
	height: 20px;
	float: right;
	margin-top: -20px;
}

/*==== Dropcaps ====*/



/*==== Highlight ====*/
.highlight1{padding:2px 5px;background-color:#e6e8e8;color:#000; border:solid 1px #ccc}	
.highlight2{padding:2px 5px;background-color:#666666;color:#fff; border:solid 1px #333}	

/*==== Bulleted List ====*/
.bullet-check{
	margin:0;
	padding:0;
	list-style-type:none;
}	
.bullet-check li{
	background: transparent url("../images/check.png");
	background-repeat:no-repeat;
	background-position:0 8px;
	margin:0;
	padding:0 0 0 25px;
	list-style-type:none;
	line-height:25px
}	
.bullet-arrow{
	margin:0;
	padding:0;
	list-style-type:none;
}	
.bullet-arrow li{
	background: transparent url("../images/arrow2.png");
	background-repeat:no-repeat;
	background-position:0 8px;
	margin:0;
	padding:0 0 0 25px;
	list-style-type:none;
	line-height:25px
}	
.bullet-star{
	margin:0;
	padding:0;
	list-style-type:none;
}	
li.bullet-star p{
	background: transparent url("../images/star.png") no-repeat 1px 2px;
	list-style-type:none;
	padding: 0 0 0 10px;
	font-size: 10px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
}
li.bullet-star a{
	list-style-type:none;
	margin-right: 0;
	margin-top: 0;
	margin-left: -2px;
	font-size: 10px;
	background-image: none;
	text-transform: uppercase;
}		
.bullet-plus{
	margin:0;
	padding:0;
	list-style-type:none;
}	
.bullet-plus li{
	background: transparent url("../images/plus.png");
	background-repeat:no-repeat;
	background-position:0 8px;
	margin:0;
	padding:0 0 0 25px;
	list-style-type:none;
	line-height:25px
}	
.bullet-circle{
	margin:0;
	padding:0;
	list-style-type:none;
}	
.bullet-circle li{
	background: transparent url("../images/circle.png");
	background-repeat:no-repeat;
	background-position:5px 10px;
	margin:0;
	padding:0 0 0 25px;
	list-style-type:none;
	line-height:25px
}	
/*==== Info Boxes  ====*/
.download-box, .note-box, .error-box, .info-box {
	padding: 20px 20px;
	margin: 0 0 25px 0;
	padding-left: 60px;
	background: #eee;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
}
.download-box {
	background: #dde2aa url("../images/download.png") no-repeat scroll 20px 18px;
	border: 1px solid #a2c058;
	color: #7b9244;
	padding-left:60px
}
.login-box {
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;

	background: white no-repeat scroll 0 0;
	border: 1px solid silver;
	color: white;
	font-size: 12px;
	padding: 10px;
	margin-top: 10px;
	font-weight: bold;
}
.register-box {
	background: white no-repeat scroll 0 0;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;

	border: 1px solid silver;
	color: white;
	font-size: 12px;
	font-weight: bold;
	padding: 10px;
	margin-top: 10px;
}
.note-box {
	background: #fdebae url("../images/note.png") no-repeat scroll 20px 15px;
	border: 1px solid #e6c555;
	color: #b28c0b;
	padding-left:65px
}
.error-box {
	background: #ffcccc url("../images/error.png") no-repeat scroll 20px 15px;
	border: 1px solid #ff9999;
	color: #fb1414;
	padding-left:60px
}
.error{
		color: #fb1414;
	padding-left:10px;
	clear: both;
	float: right;
}
.info-box {
	background: #bde3f9 url("../images/info.png") no-repeat scroll 20px 15px;
	border: 1px solid #8bb5cd;
	color: #1d97db;
	padding-left:65px
}




/*==== Pullquotes ====*/
.pullquote-right,.pullquote-left{
	padding:0px 10px;
	float:right;
	font-style:italic;
	font-size:14px;
	letter-spacing:0px;
	line-height:20px;
	margin:0px 2px 20px 20px;
	width:50%;
	font-family:"Bookman Old Style", Georgia, arial;
	color:#454545
	}
.pullquote-left{float:left;margin-left:2px;margin-right:20px;}



/*==== Tables ====*/
table {border-collapse:separate;border-spacing:0;width:100%;border-top: 1px solid #464646;margin-bottom:18px;
	background-color: black;
}
table,td,th { text-align:center;}
th{padding:10px;color:#666;text-transform:uppercase;}
td{padding:10px;color:#888;}
tfoot td{border:0px;}
th,tr:hover{background-color:#fff;}
table {
	border: 1px solid #464646;
	text-align: left;
	margin: 0 -1px 24px 0;
	width: 100%;
}
tr th,
thead th {
	color: #888;
	font-size: 12px;
	font-weight: bold;
	line-height: 18px;
	padding: 9px 24px;
}
tr td {
	border-top: 1px solid #464646;
	padding: 6px 24px;
}
tr.odd td {
	background: #F2F7FC;
}
table.kassastatus {
	width: 92%;
	margin-bottom:18px;
	background-color: #5b7c8d;
	border-style: dotted;
	border-color: gray;
	margin-left: 10px;
}
table.kassastatus tr td  {
	width:50%;
	margin-bottom:18px;
	background-color: #25363f;
	border-style: none;
	border-color: gray;
	padding: 4px;
	color: white;
}

/* TABLE LIST */
.table-box-container{ width:940px;}
.table-box-container ul{ margin:0px; border-bottom:1px dotted #c7c7c7; float:left; }
.table-box-container ul li{ float:left; list-style-type:none; padding:12px 0px; line-height:normal; color:#707070 !important; }
.table-box-container ul li h4{ margin:0px; font-size:14px;}
.table-box-container ul li.one{ width:455px; padding-left:20px; }
.table-box-container ul li.two{ width:150px; text-align:center; border-left:1px dotted #c7c7c7; }
.table-box-container ul li.three{ width:150px; text-align:center; border-left:1px dotted #c7c7c7; }
.table-box-container ul li.four{ width:150px; text-align:center; border-left:1px dotted #c7c7c7; }
ul.table_header li{ }

ul.tbl-odd{ background-color:#e8e8e8; float:left;}
ul.tbl-odd li.one{ width:465px; padding-left:10px; }
ul.tbl-even{ background-color:#e1e1e1}
ul.tbl-even li.one{ width:465px; padding-left:10px; }
ul.tbl-price{ border:0px; font-size:18px;}
ul.tbl-price a, ul.tbl-price a:visited{ color:#707070; text-decoration:underline; font-size:12px;}
ul.tbl-price a:hover{ text-decoration:none;}


.icontable{width:25px; margin-right:10px;}
.icontable img{vertical-align:middle;}



/* TABS */

/* tab with arrow */
.tabcontainer-arrow{margin:20px 0px 0px 0px;}

ul.tabs-arrow {
	margin: 0;
	padding: 0 0px;
	list-style: none;
	height: 30px;
	background-image:url("../images/line-tab.png");
	background-repeat:repeat-x;
	background-position:bottom;

}

ul.tabs-arrow li {
	float: left;
	margin: 0 5px 0 0;
	padding: 0 0 4px 0;
	height: 26px;
	line-height:18px;
	overflow: hidden;
	position: relative;
	font-size:12px;
	text-transform:uppercase
	
}
ul.tabs-arrow li:hover{background-image:url("../images/arrow-tab-active.png"); background-position:bottom; background-repeat:no-repeat;}
ul.tabs-arrow li a {
	text-decoration: none;
	color: #989898;
	display: block;
	padding: 0 15px;
	outline: none;
}

ul.tabs-arrow li a:hover {
	color:#454545;
}

ul.tabs-arrow li.active{background-image:url("../images/arrow-tab-active.png"); background-position:bottom; background-repeat:no-repeat; }
html ul.tabs-arrow li.active, html ul.tabs-arrow li.active a:hover  {color:#989898}
html ul.tabs-arrow li.active a{ color:#454545; }
#tab-body-content{
}
.tab-content-arrow {padding: 20px 0}



/* tab with frame */
.tabcontainer{margin:20px 0px 0px 0px;}

ul.tabs {
	margin: 0;
	padding: 0 0 0 0;
	list-style: none;
	height: 30px;
	width: 100%;

}
ul.tabs li {
	float: left;
	margin: 0 5px 0 0;
	padding: 0;
	height: 29px;
	line-height: 31px;
	background: #ededed;
	border: 1px solid #cfcfcf;
	border-width:1px 1px 1px 1px !important;
	-moz-border-radius-topleft: 3px; /* Firefox */
	-moz-border-radius-topright: 3px; /* Firefox */
	border-top-left-radius: 3px; /* CSS3 */
	border-top-right-radius: 3px; /* CSS3 */
	overflow: hidden;
	position: relative;
	font-size:12px;
	text-transform:uppercase
	
}
ul.tabs li:hover{border-bottom:solid 1px #ebebea;}
ul.tabs li a {
	text-decoration: none;
	color: #989898;
	display: block;
	padding: 0 25px;
	outline: none;
}
ul.tabs li a:hover {
	background: #f6f6f6;
	text-decoration:none;
	-moz-border-radius-topleft: 5px; /* Firefox */
	-moz-border-radius-topright: 5px; /* Firefox */
	border-top-left-radius: 5px; /* CSS3 */
	border-top-right-radius: 5px; /* CSS3 */
}
ul.tabs	 li.active{border-bottom:solid 1px #ebebea; }
html ul.tabs li.active, html ul.tabs li.active a:hover  {background: #ededed; color:#454545}
html ul.tabs li.active a{ color:#454545; }
#tab-body{
	border:solid 1px #cfcfcf;
	border-width:1px 1px 1px 1px;
	-moz-border-radius: 3px; /* Firefox */
	-webkit-border-radius: 3px; /* Safari, Chrome */
	border-radius: 3px; /* CSS3 */
	/* default background colour, for all layout engines that don't implement gradients */
	background: #ebebea;
	/* gecko based browsers */
	background: -moz-linear-gradient(top, #ebebea, #ffffff);
	/* webkit based browsers */

}
.tab-content {padding: 30px 25px}

/* TESTIMONIAL  */
.ts-thinkbox{}
.ts-thinkbox-list{
	padding-left:0px;
	clear:both;
	margin:0;
	list-style-position:outside;
}
.ts-thinkbox-list li{
	list-style-type:none;
	position:relative;
	margin-bottom:20px;
	width:570px;
	border:1px solid #cfcfcf;
	padding:15px 10px;
	line-height:18px;
	background-color:#f0efef;
	box-shadow: inset 0 0 2px 2px #eaeaea;
	-moz-box-shadow: inset 0 0 2px 2px #eaeaea;
	-webkit-box-shadow: inset 0 0 2px 2px #eaeaea;
	min-height:110px
}
.ts-thinkbox-thumb{
	width:96px;
	height:116px;
	border:2px solid #cacaca;
	margin-right:10px;
	float: left;
}
.ts-thinkbox-textinfo{
	font-size:14px;
	margin:-5px 0 0 0;
	padding:0px;
}
.ts-thinkbox-name{
	font-weight:bold;
}
.ts-thinkbox-company{color:#989898; font-size:12px}
.ts-thinkbox-quote{
	margin-left:120px;
}
.ts-thinkbox-quote blockquote{
	margin:0px 0px 0px 0px !important;
	padding:10px 0 0 0 !important;
	line-height:20px;
	background:none;
	clear:none;
	font-size:12px ;
	font-family:Arial;
	font-style:normal;
}
.ts-thinkbox-quote blockquote p{font-size:12px;}


/* JQUERY TOGGLE */
h2.trigger {
	padding: 15px 15px;
	margin: 0 0 5px 0;
	height: 13px;
	line-height: 13px;

	font-size:14px;
	font-weight: normal;
	border:solid 1px #cfcfcf;
	background-color:#f4f4f4;
	border: 1px solid #bfbfbf;
	box-shadow: inset 0 0 2px 2px #f7f7f7;
	-moz-box-shadow: inset 0 0 2px 2px #f7f7f7;
	-webkit-box-shadow: inset 0 0 2px 2px #f7f7f7;
}
h2.trigger a {
	text-decoration: none;
	display: block;
	color:#676767;
	background: url("../images/h2_trigger_a.png");
	background-repeat:no-repeat;
	background-position:0px 2px;
	padding-left:25px;
}
h2.active{background-color:#e5e5e5;
	box-shadow: inset 0 0 2px 2px #ececec;
	-moz-box-shadow: inset 0 0 2px 2px #ececec;
	-webkit-box-shadow: inset 0 0 2px 2px #ececec;
}
h2.active a{background-position:0px -12px !important;}
h2.trigger a:hover {
	color: #454545;
}
h2.active {background-position: left bottom;}
.toggle_container {
	margin: 0 0 5px;
	padding: 0;
	overflow: hidden;
	clear: both;
}
.toggle_container .block {
	padding: 10px;
}
.toggle_container .block p {
	padding: 5px 0;
	margin: 5px 0;
}



/* ------------------------------------------------------------------------
	This you can edit.
------------------------------------------------------------------------- */

	div.light_rounded .pp_top .pp_left { background: url("../images/light_rounded/sprite.png") -88px -53px no-repeat; } /* Top left corner */
	div.light_rounded .pp_top .pp_middle { background: #fff; } /* Top pattern/color */
	div.light_rounded .pp_top .pp_right { background: url("../images/light_rounded/sprite.png") -110px -53px no-repeat; } /* Top right corner */
	
	div.light_rounded .pp_content .ppt { color: #000; }
	div.light_rounded .pp_content_container .pp_left,
	div.light_rounded .pp_content_container .pp_right { background: #fff; }
	div.light_rounded .pp_content { background-color: #fff; } /* Content background */
	div.light_rounded .pp_next:hover { background: url("../images/light_rounded/btnNext.png") center right  no-repeat; cursor: pointer; } /* Next button */
	div.light_rounded .pp_previous:hover { background: url("../images/light_rounded/btnPrevious.png") center left no-repeat; cursor: pointer; } /* Previous button */
	div.light_rounded .pp_expand { background: url("../images/light_rounded/sprite.png") -31px -26px no-repeat; cursor: pointer; } /* Expand button */
	div.light_rounded .pp_expand:hover { background: url("../images/light_rounded/sprite.png") -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
	div.light_rounded .pp_contract { background: url("../images/light_rounded/sprite.png") 0 -26px no-repeat; cursor: pointer; } /* Contract button */
	div.light_rounded .pp_contract:hover { background: url("../images/light_rounded/sprite.png") 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
	div.light_rounded .pp_close { width: 75px; height: 22px; background: url("../images/light_rounded/sprite.png") -1px -1px no-repeat; cursor: pointer; } /* Close button */
	div.light_rounded #pp_full_res .pp_inline { color: #000; } 
	div.light_rounded .pp_gallery a.pp_arrow_previous,
	div.light_rounded .pp_gallery a.pp_arrow_next { margin-top: 12px !important; }
	div.light_rounded .pp_nav .pp_play { background: url("../images/light_rounded/sprite.png") -1px -100px no-repeat; height: 15px; width: 14px; }
	div.light_rounded .pp_nav .pp_pause { background: url("../images/light_rounded/sprite.png") -24px -100px no-repeat; height: 15px; width: 14px; }

	div.light_rounded .pp_arrow_previous { background: url("../images/light_rounded/sprite.png") 0 -71px no-repeat; } /* The previous arrow in the bottom nav */
		div.light_rounded .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
	div.light_rounded .pp_arrow_next { background: url("../images/light_rounded/sprite.png") -22px -71px no-repeat; } /* The next arrow in the bottom nav */
		div.light_rounded .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }

	div.light_rounded .pp_bottom .pp_left { background: url("../images/light_rounded/sprite.png") -88px -80px no-repeat; } /* Bottom left corner */
	div.light_rounded .pp_bottom .pp_middle { background: #fff; } /* Bottom pattern/color */
	div.light_rounded .pp_bottom .pp_right { background: url("../images/light_rounded/sprite.png") -110px -80px no-repeat; } /* Bottom right corner */

	div.light_rounded .pp_loaderIcon { background: url("../images/light_rounded/loader.gif") center center no-repeat; } /* Loader icon */
	
	/* ----------------------------------
		Dark Rounded Theme
	----------------------------------- */
	
	div.dark_rounded .pp_top .pp_left { background: url("../images/dark_rounded/sprite.png") -88px -53px no-repeat; } /* Top left corner */
	div.dark_rounded .pp_top .pp_middle { background: url("../images/dark_rounded/contentPattern.png") top left repeat; } /* Top pattern/color */
	div.dark_rounded .pp_top .pp_right { background: url("../images/dark_rounded/sprite.png") -110px -53px no-repeat; } /* Top right corner */
	
	div.dark_rounded .pp_content_container .pp_left { background: url("../images/dark_rounded/contentPattern.png") top left repeat-y; } /* Left Content background */
	div.dark_rounded .pp_content_container .pp_right { background: url("../images/dark_rounded/contentPattern.png") top right repeat-y; } /* Right Content background */
	div.dark_rounded .pp_content { background: url("../images/dark_rounded/contentPattern.png") top left repeat; } /* Content background */
	div.dark_rounded .pp_next:hover { background: url("../images/dark_rounded/btnNext.png") center right  no-repeat; cursor: pointer; } /* Next button */
	div.dark_rounded .pp_previous:hover { background: url("../images/dark_rounded/btnPrevious.png") center left no-repeat; cursor: pointer; } /* Previous button */
	div.dark_rounded .pp_expand { background: url("../images/dark_rounded/sprite.png") -31px -26px no-repeat; cursor: pointer; } /* Expand button */
	div.dark_rounded .pp_expand:hover { background: url("../images/dark_rounded/sprite.png") -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
	div.dark_rounded .pp_contract { background: url("../images/dark_rounded/sprite.png") 0 -26px no-repeat; cursor: pointer; } /* Contract button */
	div.dark_rounded .pp_contract:hover { background: url("../images/dark_rounded/sprite.png") 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
	div.dark_rounded .pp_close { width: 75px; height: 22px; background: url("../images/dark_rounded/sprite.png") -1px -1px no-repeat; cursor: pointer; } /* Close button */
	div.dark_rounded .currentTextHolder { color: #c4c4c4; }
	div.dark_rounded .pp_description { color: #fff; }
	div.dark_rounded #pp_full_res .pp_inline { color: #fff; }
	div.dark_rounded .pp_gallery a.pp_arrow_previous,
	div.dark_rounded .pp_gallery a.pp_arrow_next { margin-top: 12px !important; }
	div.dark_rounded .pp_nav .pp_play { background: url("../images/dark_rounded/sprite.png") -1px -100px no-repeat; height: 15px; width: 14px; }
	div.dark_rounded .pp_nav .pp_pause { background: url("../images/dark_rounded/sprite.png") -24px -100px no-repeat; height: 15px; width: 14px; }

	div.dark_rounded .pp_arrow_previous { background: url("../images/dark_rounded/sprite.png") 0 -71px no-repeat; } /* The previous arrow in the bottom nav */
		div.dark_rounded .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
	div.dark_rounded .pp_arrow_next { background: url("../images/dark_rounded/sprite.png") -22px -71px no-repeat; } /* The next arrow in the bottom nav */
		div.dark_rounded .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }

	div.dark_rounded .pp_bottom .pp_left { background: url("../images/dark_rounded/sprite.png") -88px -80px no-repeat; } /* Bottom left corner */
	div.dark_rounded .pp_bottom .pp_middle { background: url("../images/dark_rounded/contentPattern.png") top left repeat; } /* Bottom pattern/color */
	div.dark_rounded .pp_bottom .pp_right { background: url("../images/dark_rounded/sprite.png") -110px -80px no-repeat; } /* Bottom right corner */

	div.dark_rounded .pp_loaderIcon { background: url("../images/dark_rounded/loader.gif") center center no-repeat; } /* Loader icon */
	
	
	/* ----------------------------------
		Dark Square Theme
	----------------------------------- */
	
	div.dark_square .pp_left ,
	div.dark_square .pp_middle,
	div.dark_square .pp_right,
	div.dark_square .pp_content { background: url("../images/dark_square/contentPattern.png") top left repeat; }
	div.dark_square .currentTextHolder { color: #c4c4c4; }
	div.dark_square .pp_description { color: #fff; }
	div.dark_square .pp_loaderIcon { background: url("../images/dark_rounded/loader.gif") center center no-repeat; } /* Loader icon */
	
	div.dark_square .pp_content_container .pp_left { background: url("../images/dark_rounded/contentPattern.png") top left repeat-y; } /* Left Content background */
	div.dark_square .pp_content_container .pp_right { background: url("../images/dark_rounded/contentPattern.png") top right repeat-y; } /* Right Content background */
	div.dark_square .pp_expand { background: url("../images/dark_square/sprite.png") -31px -26px no-repeat; cursor: pointer; } /* Expand button */
	div.dark_square .pp_expand:hover { background: url("../images/dark_square/sprite.png") -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
	div.dark_square .pp_contract { background: url("../images/dark_square/sprite.png") 0 -26px no-repeat; cursor: pointer; } /* Contract button */
	div.dark_square .pp_contract:hover { background: url("../images/dark_square/sprite.png") 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
	div.dark_square .pp_close { width: 75px; height: 22px; background: url("../images/dark_square/sprite.png") -1px -1px no-repeat; cursor: pointer; } /* Close button */
	div.dark_square #pp_full_res .pp_inline { color: #fff; }
	div.dark_square .pp_gallery a.pp_arrow_previous,
	div.dark_square .pp_gallery a.pp_arrow_next { margin-top: 12px !important; }
	div.dark_square .pp_nav .pp_play { background: url("../images/dark_square/sprite.png") -1px -100px no-repeat; height: 15px; width: 14px; }
	div.dark_square .pp_nav .pp_pause { background: url("../images/dark_square/sprite.png") -24px -100px no-repeat; height: 15px; width: 14px; }
	
	div.dark_square .pp_arrow_previous { background: url("../images/dark_square/sprite.png") 0 -71px no-repeat; } /* The previous arrow in the bottom nav */
		div.dark_square .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
	div.dark_square .pp_arrow_next { background: url("../images/dark_square/sprite.png") -22px -71px no-repeat; } /* The next arrow in the bottom nav */
		div.dark_square .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }
	
	div.dark_square .pp_next:hover { background: url("../images/dark_square/btnNext.png") center right  no-repeat; cursor: pointer; } /* Next button */
	div.dark_square .pp_previous:hover { background: url("../images/dark_square/btnPrevious.png") center left no-repeat; cursor: pointer; } /* Previous button */


	/* ----------------------------------
		Light Square Theme
	----------------------------------- */
	
	div.light_square .pp_left ,
	div.light_square .pp_middle,
	div.light_square .pp_right,
	div.light_square .pp_content { background: #fff; }
	
	div.light_square .pp_content .ppt { color: #000; }
	div.light_square .pp_expand { background: url("../images/light_square/sprite.png") -31px -26px no-repeat; cursor: pointer; } /* Expand button */
	div.light_square .pp_expand:hover { background: url("../images/light_square/sprite.png") -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
	div.light_square .pp_contract { background: url("../images/light_square/sprite.png") 0 -26px no-repeat; cursor: pointer; } /* Contract button */
	div.light_square .pp_contract:hover { background: url("../images/light_square/sprite.png") 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
	div.light_square .pp_close { width: 75px; height: 22px; background: url("../images/light_square/sprite.png") -1px -1px no-repeat; cursor: pointer; } /* Close button */
	div.light_square #pp_full_res .pp_inline { color: #000; }
	div.light_square .pp_gallery a.pp_arrow_previous,
	div.light_square .pp_gallery a.pp_arrow_next { margin-top: 12px !important; }
	div.light_square .pp_nav .pp_play { background: url("../images/light_square/sprite.png") -1px -100px no-repeat; height: 15px; width: 14px; }
	div.light_square .pp_nav .pp_pause { background: url("../images/light_square/sprite.png") -24px -100px no-repeat; height: 15px; width: 14px; }
	
	div.light_square .pp_arrow_previous { background: url("../images/light_square/sprite.png") 0 -71px no-repeat; } /* The previous arrow in the bottom nav */
		div.light_square .pp_arrow_previous.disabled { background-position: 0 -87px; cursor: default; }
	div.light_square .pp_arrow_next { background: url("../images/light_square/sprite.png") -22px -71px no-repeat; } /* The next arrow in the bottom nav */
		div.light_square .pp_arrow_next.disabled { background-position: -22px -87px; cursor: default; }
	
	div.light_square .pp_next:hover { background: url("../images/light_square/btnNext.png") center right  no-repeat; cursor: pointer; } /* Next button */
	div.light_square .pp_previous:hover { background: url("../images/light_square/btnPrevious.png") center left no-repeat; cursor: pointer; } /* Previous button */


	/* ----------------------------------
		Facebook style Theme
	----------------------------------- */
	
	div.facebook .pp_top .pp_left { background: url("../images/facebook/sprite.png") -88px -53px no-repeat; } /* Top left corner */
	div.facebook .pp_top .pp_middle { background: url("../images/facebook/contentPatternTop.png") top left repeat-x; } /* Top pattern/color */
	div.facebook .pp_top .pp_right { background: url("../images/facebook/sprite.png") -110px -53px no-repeat; } /* Top right corner */
	
	div.facebook .pp_content .ppt { color: #000; }
	div.facebook .pp_content_container .pp_left { background: url("../images/facebook/contentPatternLeft.png") top left repeat-y; } /* Content background */
	div.facebook .pp_content_container .pp_right { background: url("../images/facebook/contentPatternRight.png") top right repeat-y; } /* Content background */
	div.facebook .pp_content { background: #fff; } /* Content background */
	div.facebook .pp_expand { background: url("../images/facebook/sprite.png") -31px -26px no-repeat; cursor: pointer; } /* Expand button */
	div.facebook .pp_expand:hover { background: url("../images/facebook/sprite.png") -31px -47px no-repeat; cursor: pointer; } /* Expand button hover */
	div.facebook .pp_contract { background: url("../images/facebook/sprite.png") 0 -26px no-repeat; cursor: pointer; } /* Contract button */
	div.facebook .pp_contract:hover { background: url("../images/facebook/sprite.png") 0 -47px no-repeat; cursor: pointer; } /* Contract button hover */
	div.facebook .pp_close { width: 22px; height: 22px; background: url("../images/facebook/sprite.png") -1px -1px no-repeat; cursor: pointer; } /* Close button */
	div.facebook #pp_full_res .pp_inline { color: #000; } 
	div.facebook .pp_loaderIcon { background: url("../images/facebook/loader.gif") center center no-repeat; } /* Loader icon */
	
	div.facebook .pp_arrow_previous { background: url("../images/facebook/sprite.png") 0 -71px no-repeat; height: 22px; margin-top: 0; width: 22px; } /* The previous arrow in the bottom nav */
		div.facebook .pp_arrow_previous.disabled { background-position: 0 -96px; cursor: default; }
	div.facebook .pp_arrow_next { background: url("../images/facebook/sprite.png") -32px -71px no-repeat; height: 22px; margin-top: 0; width: 22px; } /* The next arrow in the bottom nav */
		div.facebook .pp_arrow_next.disabled { background-position: -32px -96px; cursor: default; }
	div.facebook .pp_nav { margin-top: 0; }
	div.facebook .pp_nav p { font-size: 15px; padding: 0 3px 0 4px; }
	div.facebook .pp_nav .pp_play { background: url("../images/facebook/sprite.png") -1px -123px no-repeat; height: 22px; width: 22px; }
	div.facebook .pp_nav .pp_pause { background: url("../images/facebook/sprite.png") -32px -123px no-repeat; height: 22px; width: 22px; }
	
	div.facebook .pp_next:hover { background: url("../images/facebook/btnNext.png") center right no-repeat; cursor: pointer; } /* Next button */
	div.facebook .pp_previous:hover { background: url("../images/facebook/btnPrevious.png") center left no-repeat; cursor: pointer; } /* Previous button */
	
	div.facebook .pp_bottom .pp_left { background: url("../images/facebook/sprite.png") -88px -80px no-repeat; } /* Bottom left corner */
	div.facebook .pp_bottom .pp_middle { background: url("../images/facebook/contentPatternBottom.png") top left repeat-x; } /* Bottom pattern/color */
	div.facebook .pp_bottom .pp_right { background: url("../images/facebook/sprite.png") -110px -80px no-repeat; } /* Bottom right corner */


/* ------------------------------------------------------------------------
	DO NOT CHANGE
------------------------------------------------------------------------- */

	div.pp_pic_holder a:focus { outline:none; }

	div.pp_overlay {
		background: #000;
		display: none;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: 9500;
	}
	
	div.pp_pic_holder {
		display: none;
		position: absolute;
		width: 100px;
		z-index: 10000;
	}
		
		.pp_top {
			height: 20px;
			position: relative;
		}
			* html .pp_top { padding: 0 20px; }
		
			.pp_top .pp_left {
				height: 20px;
				left: 0;
				position: absolute;
				width: 20px;
			}
			.pp_top .pp_middle {
				height: 20px;
				left: 20px;
				position: absolute;
				right: 20px;
			}
				* html .pp_top .pp_middle {
					left: 0;
					position: static;
				}
			
			.pp_top .pp_right {
				height: 20px;
				left: auto;
				position: absolute;
				right: 0;
				top: 0;
				width: 20px;
			}
		
		.pp_content { height: 40px; }
		
		.pp_fade { display: none; }
		
		.pp_content_container {
			position: relative;
			text-align: left;
			width: 100%;
		}
		
			.pp_content_container .pp_left { padding-left: 20px; }
			.pp_content_container .pp_right { padding-right: 20px; }
		
			.pp_content_container .pp_details {
				float: left;
				margin: 10px 0 2px 0;
			}
				.pp_description {
					display: none;
					margin: 0 0 5px 0;
				}
				
				.pp_nav {
					clear: left;
					float: left;
					margin: 3px 0 0 0;
				}
				
					.pp_nav p {
						float: left;
						margin: 2px 4px;
					}
					
					.pp_nav .pp_play,
					.pp_nav .pp_pause {
						float: left;
						margin-right: 4px;
						text-indent: -10000px;
					}
				
					a.pp_arrow_previous,
					a.pp_arrow_next {
						display: block;
						float: left;
						height: 15px;
						margin-top: 3px;
						overflow: hidden;
						text-indent: -10000px;
						width: 14px;
					}
		
		.pp_hoverContainer {
			position: absolute;
			top: 0;
			width: 100%;
			z-index: 2000;
		}
		
		.pp_gallery {
			left: 50%;
			margin-top: -50px;
			position: absolute;
			z-index: 10000;
		}
			
			.pp_gallery ul {
				float: left;
				height: 35px;
				margin: 0 0 0 5px;
				overflow: hidden;
				position: relative;
			}
			
			.pp_gallery ul a {
				border: 1px #000 solid;
				border: 1px rgba(0,0,0,0.5) solid;
				display: block;
				float: left;
				height: 33px;
				overflow: hidden;
	width: 33px;
}
			
			.pp_gallery ul a:hover,
			.pp_gallery li.selected a { border-color: #fff; }
			
			.pp_gallery ul a img { border: 0; height:33px;
	width: 33px;
}
			
			.pp_gallery li {
				display: block;
				float: left;
				margin: 0 5px 0 0;
			}
			
			.pp_gallery li.default a {
				background: url("../images/facebook/default_thumbnail.gif") 0 0 no-repeat;
				display: block;
				height: 33px;
				width: 40px;
			}
			
			.pp_gallery li.default a img { display: none; }
			
			.pp_gallery .pp_arrow_previous,
			.pp_gallery .pp_arrow_next {
				margin-top: 7px !important;
			}
		
		a.pp_next {
			background: url("../images/light_rounded/btnNext.png") 10000px 10000px no-repeat;
			display: block;
			float: right;
			height: 100%;
			text-indent: -10000px;
			width: 49%;
		}
			
		a.pp_previous {
			background: url("../images/light_rounded/btnNext.png") 10000px 10000px no-repeat;
			display: block;
			float: left;
			height: 100%;
			text-indent: -10000px;
			width: 49%;
		}
		
		a.pp_expand,
		a.pp_contract {
			cursor: pointer;
			display: none;
			height: 20px;	
			position: absolute;
			right: 30px;
			text-indent: -10000px;
			top: 10px;
			width: 20px;
			z-index: 20000;
		}
			
		a.pp_close {
			display: block;
			float: right;
			text-indent: -10000px;
		}
		
		.pp_bottom {
			height: 20px;
			position: relative;
		}
			* html .pp_bottom { padding: 0 20px; }
			
			.pp_bottom .pp_left {
				height: 20px;
				left: 0;
				position: absolute;
				width: 20px;
			}
			.pp_bottom .pp_middle {
				height: 20px;
				left: 20px;
				position: absolute;
				right: 20px;
			}
				* html .pp_bottom .pp_middle {
					left: 0;
					position: static;
				}
				
			.pp_bottom .pp_right {
				height: 20px;
				left: auto;
				position: absolute;
				right: 0;
				top: 0;
				width: 20px;
			}
		
		.pp_loaderIcon {
			display: block;
			height: 24px;
			left: 50%;
			margin: -12px 0 0 -12px;
			position: absolute;
			top: 50%;
			width: 24px;
		}
		
		#pp_full_res {
			line-height: 1 !important;
		}
		
			#pp_full_res .pp_inline {
				text-align: left;
			}
			
				#pp_full_res .pp_inline p { margin: 0 0 15px 0; }
	
		div.ppt {
			color: #fff;
			display: none;
			font-size: 17px;
			margin: 0 0 5px 15px;
			z-index: 9999;
		}

/* ------------------------------------------------------------------------
	Miscellaneous
------------------------------------------------------------------------- */

	.clearfix:after {
	    content: "."; 
	    display: block; 
	    height: 0; 
	    clear: both; 
	    visibility: hidden;
	}

	.clearfix {display: inline-block;}

	/* Hides from IE-mac \*/
	* html .clearfix {height: 1%;}
	.clearfix {display: block;}
	/* End hide from IE-mac */
.pagetitle{ font-size:24px;}

.nomargin{margin-right:0px !important;}
.pagenavi { padding: 20px 0 0px 10px;
	margin-left: 10px;
	margin-bottom: 10px;
	height: 30px;
	clear: both;
	float: none;
	display: block;
}

ul.page{
	margin-left: -10px;
}
.pagenavi a, .pagenavi a:visited{
	   color: #fffeff;
    background: black url("../images/button-gradient.png");
    height: auto;
    white-space: nowrap;
    vertical-align: top;
    text-decoration: none;
    text-align: center;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-text-shadow: 0 1px 1px gray;
    -moz-text-shadow: 0 1px 1px gray;
    text-shadow: 0 1px 1px gray;
    border: 1px solid #1e4358;
    outline: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -moz-box-sizing: border-box;    
    box-sizing: border-box;
    cursor: pointer;
	margin-bottom: 10px;
	text-transform: none;
	letter-spacing: 0;
	word-spacing: 0;
	cursor:pointer;
	padding:5px 10px;
	margin-right:8px;
	float: left;
}

.pagenavi a:hover{
	background-color:#676767;
	color:#fff;
	padding:5px 10px;
	margin-right:8px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
}
.pagenavi .active{
	background-color:#676767;
	color:#fff;
	padding:5px 10px;
	margin-right:8px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	}
.pagenavi .pages{
	color:#676767;
	background-color:#cfcfcf;
	padding:5px 10px;
	margin-right:8px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
}


/* ABOUT */
.inline-block{list-style-type:none; margin:0px; padding:0px;}
.inline-block li{list-style-type:none; width:270px; float:left; margin-bottom:20px; position:relative; margin-right:40px;}
.block-text{ margin-left:75px;}
.italicText{font-style:italic; line-height:25px}
.txtbold{font-weight:bold;}

/* SERVICES */
/* SERVICES */
ul#list-services{margin:0; padding:0; list-style-type:none;}
ul#list-services li{ float:left; width:445px;  border-bottom:dotted 1px #cfcfcf; padding-bottom:10px; margin:0 0 10px 0; color:#989898;
}
ul#list-services li.left{ width:445px;  border-bottom:dotted 1px #cfcfcf; padding-bottom:10px; margin:0 0 30px 0; color:#989898;
	float: left;
	clear: both;
	height: 200px;
	text-align: left;
}
ul#list-services li.nomargin{ float: right; width:445px;  border-bottom:dotted 1px #cfcfcf; padding-bottom: 10px; margin:0 0 30px 0; color:#989898;
	clear: none;
	display: inline;
	height: 200px;
}
ul#list-services img{
	width: 100px;
	float: left;
}
ul#list-services a.more{
	width: 100px;
	float: none;
	clear: none;
	display: inline;
}
ul#list-services li.block-separator{
background-image:url("../images/separator-block.gif"); background-repeat:no-repeat; background-position: top center;width:50px; min-height:120px; margin-right:0;border:0;
	float: left;
}
.services-text{margin-left:120px;
	height: 140px;
}

/* PORTFOLIO */
.ts-display-pf-img{position:relative;}
.ts-display-clear{clear:both; height:1px !important; line-height:1px !important; float:none!important}
.ts-display-pf-text .more{
	text-align: center;
	float: left;
	background-color: #8680bb;
	width: 92%;
}
.ts-display-pf-text .more:hover{
	font-weight: bold;
	background-color: #bfb8dc;
}


/* PORTFOLIO */

.ts-display-clear{clear:both; height:1px !important; line-height:1px !important; float:none!important}
.ts-display-pf-text .more{
	text-align: center;
	float: left;
	background-color: silver;
	width: 92%;
}
.ts-display-pf-text .more:hover{
	font-weight: bold;
}

/*======= Portfolio 1 Column =======*/
#ts-display-pf-col-1{list-style-type:none; padding:0px; margin:0px;}
#ts-display-pf-col-1 li{list-style-type:none; padding:0px; margin:0px 0px 50px 0px;}
#ts-display-pf-col-1 li.nomargin{margin-right:0;}
#ts-display-pf-col-1 h2{margin-bottom:10px;}

#ts-display-pf-col-1 .ts-display-pf-img{
	width:600px;
	height:600px;
	float:left;
	margin-top:5px;
	margin-right:35px
}

#ts-display-pf-col-1 .ts-display-pf-img a.image{
	width:600px;
	height:600px;
	display:block;
	position:relative;
}

#ts-display-pf-col-1 .ts-display-pf-img a .rollover{
	background:url("../images/hover-opacity.png");
	background-color:#000;
	background-repeat:no-repeat;
	background-position:center;
	width:600px;
	height:600px;
	display:block;
    position:absolute;
	z-index:10;
	display:none;
	cursor:pointer;
}

#ts-display-pf-col-1 .ts-display-pf-text{
	width:285px;
	float:left;
	padding-left:0;
}
.glow-600{
	background:url("../images/glow-600.png");
	background-repeat:no-repeat;
	display:block;
	width:600px;
	height:17px;

}

/*======= Portfolio 2 Column =======*/
#ts-display-pf-col-2{list-style-type:none; padding:0; margin:0;}
#ts-display-pf-col-2 li{list-style-type:none; padding:0; margin:0 20px 50px 0; width:450px;  float:left}
#ts-display-pf-col-2 li.nomargin{margin-right:0;}
#ts-display-pf-col-2 h2{margin-bottom:10px;}

#ts-display-pf-col-2 .ts-display-pf-img{
	width:450px;
	height:450px;
}

#ts-display-pf-col-2 .ts-display-pf-img a.image{
	width:450px;
	height:450px;
	display:block;
	position:relative;

}

#ts-display-pf-col-2 .ts-display-pf-img a .rollover{
	background:url("../images/hover-opacity.png");
	background-color:#000;
	background-repeat:no-repeat;
	background-position:center;
	width:450px;
	height:450px;
	display:block;
    position:absolute;
	z-index:10;
	display:none;
	cursor:pointer;
}

#ts-display-pf-col-2 .ts-display-pf-text{
	margin-top:15px;
}
.glow-446{
	background:url("../images/glow-446.png");
	background-repeat:no-repeat;
	display:block;
	width:446px;
	height:17px;

}


/*======= Portfolio 3 Column =======*/
#ts-display-pf-col-3{list-style-type:none; padding:0; margin:0;}
#ts-display-pf-col-3 li{list-style-type:none; padding:0; margin: 0 20px 20px 0; width:292px; float:left}
#ts-display-pf-col-3 li.nomargin{margin-right:0;}
#ts-display-pf-col-3 h2{margin-bottom:10px}

#ts-display-pf-col-3 .ts-display-pf-img{


}

#ts-display-pf-col-3 .ts-display-pf-img a.image{
	display:block;
	position:relative;
}

#ts-display-pf-col-3 .ts-display-pf-img a .rollover{
	background:url("../images/hover-opacity.png");
	background-color:#000;
	background-repeat:no-repeat;
	background-position:center;
	width:302px;
	height:302px;
	display:block;
    position:absolute;
	z-index:10;
	display:none;
	cursor:pointer;
}

#ts-display-pf-col-3 .ts-display-pf-text{
	margin-top:15px;
}
.glow-290{
	background:url("../images/glow-290.png");
	background-repeat:no-repeat;
	display:block;
	width:298px;
	height:17px;

}

/*======= Portfolio 4 Column =======*/
#ts-display-pf-col-4{list-style-type:none; padding:0; margin:0;}
#ts-display-pf-col-4 li{list-style-type:none; padding:0; margin: 0 10px 50px 0; width: 225px;  float:left;
	height: 400px;
}
#ts-display-pf-col-4 li.nomargin{margin-right:0;}
#ts-display-pf-col-4 h2{margin-bottom:10px;
	font-size: 24px;
}

#ts-display-pf-col-4 .ts-display-pf-img{
	width:220px;
	height:220px;
}

#ts-display-pf-col-4 .ts-display-pf-img a.image{
	width:225px;
	height:220px;
	display:block;
	position:relative;

}

#ts-display-pf-col-4 .ts-display-pf-img a .rollover{
	background:url("../images/hover-opacity.png");
	background-color:#000;
	background-repeat:no-repeat;
	background-position:center;
	width:225px;
	height:225px;
	display:block;
    position:absolute;
	z-index:10;
	display:none;
	cursor:pointer;
}

#ts-display-pf-col-4 .ts-display-pf-text{
	margin-top:15px;
}

.glow-220{
	background:url("../images/glow-220.png");
	background-repeat:no-repeat;
	display:block;
	width:225px;
	height:17px;

}
/*======= Portfolio 8 Column =======*/
#ts-display-pf-col-8{list-style-type:none; padding:0; margin:0;
}
#ts-display-pf-col-8 li{list-style-type:none; margin: 0 9px 20px 0; width: 108px;  float: left;
	height: 300px;
	display: inline;
	padding-top: 0;
	padding-bottom: 0;
	text-align: center;
}
#ts-display-pf-col-8 li.nomargin{margin-right:0;}
#ts-display-pf-col-8 h4{margin-bottom: 4px;
	font-size: 10px;
	font-weight: bold;
	margin-top: 1px;
}
#ts-display-pf-col-8 p{margin-bottom:10px;
	font-size: 11px;
	overflow: hidden;
	line-height: 8px;
	text-align: left;
	width: 100px;
	padding-left: 10px;
}
#ts-display-pf-col-8 .ts-display-pf-img a img{
	width: 116px;
}

#ts-display-pf-col-8 .ts-display-pf-img a.image{
	width:107px;
	height:107px;
	display:block;
	position:relative;

}

#ts-display-pf-col-8 .ts-display-pf-img a .rollover{
	background:url("../images/hover-opacity.png");
	background-color:#000;
	background-repeat:no-repeat;
	background-position:center;
	width:108px;
	height:108px;
	display:block;
    position:absolute;
	z-index:10;
	display:none;
	cursor:pointer;
}

#ts-display-pf-col-8 .ts-display-pf-text p{
	margin-top:1px;
	line-height: 12px;
	font-size: 10px;
}

.glow-100{
	background:url("../images/glow-100.png");
	background-repeat:no-repeat;
	display:block;
	width:108x;
	height:17px;

}

/*======= Portfolio 12 Column =======*/
#ts-display-pf-col-12{list-style-type:none;
	width: 918px;
	padding: 0 0 0 5px;
	display: block;
	float: right;
	clear: both;

	margin: 0;
	height: 58px;
}


#ts-display-pf-col-12 li{list-style-type:none; width: 53px; height: 53px;
	margin: 0 2px;
	display: block;
	float: left;
}

#ts-display-pf-col-12 h4{margin-bottom: 0px;
	font-size: 10px;
	font-weight: bold;
	overflow: hidden;
	margin-top: -5px;
}
#ts-display-pf-col-12 p{
	margin-bottom:10px;
	font-size: 10px;
	overflow: hidden;
	line-height: 8px;
}
#ts-display-pf-col-12 .ts-display-pf-img{
	margin: 0;
	padding: 0;
}



#ts-display-pf-col-12 .ts-display-pf-text{
	margin-top:15px;
}
#ts-display-pf-col-12 li.none{list-style-type:none; padding:0; margin: 0 5px 5px 0; width: 73px;  float:left;}
#ts-display-pf-col-12 li.none:hover{
	border-style: none;
}

.glow-60{
	background:url("../images/glow-100.png");
	background-repeat:no-repeat;
	display:block;
	width: 73px;
	height: 6px;

}


/* BLOG */
h1.posttitle{
	float: none;
	margin: 0 0 10px;
	color: #3e82a2;
}
h2.home-posttitle{
	line-height: 18px;
	margin-right: 0;
	margin-bottom: 0;
	margin-top: 0;
}
h2.posttitle{
	float: none;
	margin: 0 0 4px;
	color: #3e82a2;
	line-height: 20px;
}
h2.posttitleresident{
	float: none;
	margin: -10px 0 0px;
	color: silver;
}

h2.widget-title{
	float: none;
	margin: -4px 0 10px;
	text-transform: uppercase;
	font-size: 18px;
}
.posttitle a, .posttitle a:visited{color: #3e82a2;
}
.posttitle a:hover{text-decoration:none;
	color: #57a6c2;
}
.home-post{   
	padding: 10px 10px 18px;
	background: #000000 url("../images/bg-widgets.png") repeat-x;
	-webkit-box-shadow: 0 0 10px #6d6d6d;
    -moz-box-shadow: 0 0 10px #6d6d6d;
    box-shadow:  0 0 10px #6d6d6d;
	border: 1px solid #686868;
	   -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
	color: #d3d2d3;
	margin-bottom: 20px;
	float: none;
	clear: none;
}

#outer-container,.post, #comment, .widget-container, .productintro, .productintrotype4, .productintrotype3, .productintrotype2,#ts-display-pf-col-12,#ts-display-portfolio{   
	padding: 10px;
	background: #000000 url("../images/bg-widgets.png") repeat-x;
	-webkit-box-shadow: 0 0 10px #6d6d6d;
    -moz-box-shadow: 0 0 10px #6d6d6d;
    box-shadow:  0 0 10px #6d6d6d;
	border: 1px solid #686868;
	   -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
	color: #d3d2d3;
	margin-bottom: 10px;
}
#ts-display-portfolio{
	float: left;
	background-color: #151515;
	padding-right: 0;
	padding-left: 0;
}
.post.single{margin-bottom:0px; padding-bottom:0px; border:0;}

.post ul{
	margin: 0;
}
.odd{
	float: left;
	width: 442px;
		padding: 10px;
	background: #000000 url("../images/bg-widgets.png") repeat-x;
	-webkit-box-shadow: 0 0 10px #6d6d6d;
    -moz-box-shadow: 0 0 10px #6d6d6d;
    box-shadow:  0 0 10px #6d6d6d;
	border: 1px solid #686868;
	   -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
	color: #d3d2d3;
	margin-bottom: 10px;
	display: inline;
	height: 160px;
}

.even{
	width: 442px;
	background: #000000 url("../images/bg-widgets.png") repeat-x;
	-webkit-box-shadow: 0 0 10px #6d6d6d;
    -moz-box-shadow: 0 0 10px #6d6d6d;
    box-shadow:  0 0 10px #6d6d6d;
	border: 1px solid #686868;
	   -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
	color: #d3d2d3;
	display: inline;
	float: right;
	position: relative;
	padding: 10px;
	height: 160px;
}

.odd .intro, .even .intro{
	width: 430px;
	height: 100px;
}
.entry-content{
	line-height: 18px;
	padding-bottom: 0;
	padding-left: 0;
	margin: 0;
	color: white;

	clear: both;
}
.entry-content-intro{
	line-height: 18px;
	padding-bottom: 0;
	padding-left: 0;
	margin: 0;
}
.entry-content-intro img{
	line-height: 18px;
	padding-bottom: 0;
	padding-left: 0;

}
.intro img{
	margin-right: 10px;
	float: left;
	margin-top: 1px;
}
.postimg img, .postimg img.alignright{
	background-position: left bottom;
	font-size: 14px;
	margin-right: 20px;
	margin-top: 20px;
	margin-left: 0;
	width: 80px;
	height: 80px;
}
.glow-250{
	background:url("../images/glow-250.png");
	background-repeat:no-repeat;
	display:block;
	width:250px;
	height:17px;
	clear: both;
}

.entry-content h4 {
	margin-bottom: 0;
	margin-top: 20px;
}
.entry-utility{font-size:11px; display:block; font-style:italic;  color:#b3b3b3;
	padding-left: 0;
	padding-right: 0;
	padding: 0;
	margin: 0;
	float: left;
	width: 100%;
}
.entry-utility a, .entry-utility a:visited{color:#b3b3b3; }
.entry-utility a:hover{}
.post .alignnone{display:block; margin:0}

	

.post .more:hover{text-decoration: none;
	color: white;
	background-color: black;
	display: inline;

}

#comment .pagenavi{
	padding:0 0 40px 0;
}
.commentlist{
	list-style-type:none;
	padding: 0;
	margin:0;
}
.commentlist ol{
	list-style-type:none;
	padding:30px 0 0 90px;
	margin:0;
}

.commentlist li{
	position:relative;
	padding:0 0 30px 0;
}
.commentlist li li{
	position:relative;
	padding:0;
}

.avatar{
	position:absolute;
	top:0;
	left:0;
}
.tuser{font-size:14px;}

/* BREADCRUMBS  */

#breadcrumbs{
	text-transform: uppercase;
	margin-right: 10px;
	margin-left: 12px;
	margin-top: 10px;
}
.B_currentCrumb{
	color: white;
}


#Calendar .calendar {
        border-collapse: collapse;
        font: normal 12px Arial;
        margin: auto;
            }
#Calendar .date {border: 1px solid #464646;  height: 20px;
	text-align: center;
	font-size: 10px;
	line-height: 20px;
}
#Calendar .date:hover {border: 1px solid #555555;
}
#Calendar .month {height: 30px; font-size: 1.2em;}
#Calendar .month, #Calendar .dow, #Calendar .prev, #Calendar .next {text-align: center; font-weight: bold;}
#Calendar .workday,
#Calendar .weekend {text-align: right;}
#Calendar .weekend {color: red;}
#Calendar .emptyday {}
#Calendar .today .date {background: white; border: 1px solid #464646;
	color: gray;
	font-weight: bold;
	font-size: 12px;
}
#Calendar .prev,
#Calendar .next {cursor: pointer; border:none !important;}
#Calendar .month {border: none !important;}
#Calendar .prev:hover, .next:hover {text-decoration: underline;}
#Calendar .isevent .date {color: white; font-weight: bold; cursor: pointer;
	background-color: #7abacd;
	border-style: solid;
	border-color: #464646;
}
#Calendar .event {
        text-align: left;
        position:absolute;
        z-index: 10;
        display: none;
        border: 1px solid #AAA;
        padding: 5px;
        max-width: 300px;
        margin-top: -10px;
        margin-left: 10px;
	border-top-color: #464646;
}
#Calendar .event .date {border: none; color: black !important; font-weight: normal;}
#Calendar table {border-collapse:separate;border-spacing:0;width: 100%;border-top: 1px solid #464646;margin-bottom:18px;
}
#Calendar table,td,th { text-align:center;
	position: relative;
	padding: 0;
	background-color: #060606;
}
#Calendar th{padding: 2%;color:#666;text-transform:uppercase;}
#Calendar td{padding: 2%;color:#888;}
#Calendar tfoot td{border:0px;}
#Calendar th,tr:hover{background-color: #3d3d3d;}


.sliderkit{display:none;position:relative;overflow:hidden;text-align:left;}
.sliderkit a,
.sliderkit a:hover{text-decoration:none;}
.sliderkit a:focus{outline:1px dotted #000;/*optional*/}
.sliderkit img{border:0;}

.module-arrows{
	width:68px;
	height: 27px;
	position:relative;
	float: none;
}


.module-arrow-left{
	width:34px;
	height:27px;
	position:relative;
	float:left;
	background-image:url("../images/ge-summary-arrows.gif");
	background-repeat:no-repeat;
	background-position:0px 0px;
}

.module-arrow-right{
	width:34px;
	height:27px;
	position:relative;
	float:left;
	background-image:url("../images/ge-summary-arrows.gif");
	background-repeat:no-repeat;
	background-position:-34px 0px;
}

.module-arrow-left a, .module-arrow-right a{
	width:100%;
	height:100%;
	display:block;
	text-decoration:none;
}

.module-arrow-left a:hover{
	background-image:url("../images/ge-summary-arrows.gif");
	background-repeat:no-repeat;
	background-position:0px -27px;
}

.module-arrow-right a:hover{
	background-image:url("../images/ge-summary-arrows.gif");
	background-repeat:no-repeat;
	background-position:-34px -27px;
}


/*-----------------------------------------------------------------------
Carousel - General
------------------------------------------------------------------------*/

.jcarousel-skin-3 .jcarousel-direction-rtl,
.jcarousel-skin-3b .jcarousel-direction-rtl,
.jcarousel-skin-5 .jcarousel-direction-rtl,
.jcarousel-skin-7 .jcarousel-direction-rtl,
.jcarousel-skin-1 .jcarousel-direction-rtl {
	direction: rtl;
}

.jcarousel-skin-3 .jcarousel-next-horizontal,
.jcarousel-skin-5 .jcarousel-next-horizontal,
.jcarousel-skin-7 .jcarousel-next-horizontal,
.jcarousel-skin-1 .jcarousel-next-horizontal {
    position: absolute;
    top: 100px;
    width: 34px;
    height: 27px;
    cursor: pointer;
    background: transparent url("../images/ge-summary-arrow-right-black.gif") no-repeat 0 0;
	-webkit-box-shadow: 0 0 10px #6d6d6d;
    -moz-box-shadow: 0 0 10px #6d6d6d;
    box-shadow:  0 0 10px #6d6d6d;
	border: 1px solid #686868;
	right: 4px;
}

.jcarousel-skin-3b .jcarousel-next-horizontal{
    position: absolute;
    top: -38px;
    right: 10px;
    width: 34px;
    height: 27px;
    cursor: pointer;
    background: transparent url("../images/ge-summary-arrow-right-black.gif") no-repeat 0 0;
}

.jcarousel-skin-3 .jcarousel-next-horizontal:hover,
.jcarousel-skin-3 .jcarousel-next-horizontal:active,
.jcarousel-skin-3b .jcarousel-next-horizontal:hover,
.jcarousel-skin-3b .jcarousel-next-horizontal:active,
.jcarousel-skin-5 .jcarousel-next-horizontal:hover,
.jcarousel-skin-5 .jcarousel-next-horizontal:active,
.jcarousel-skin-7 .jcarousel-next-horizontal:hover,
.jcarousel-skin-7 .jcarousel-next-horizontal:active,
.jcarousel-skin-1 .jcarousel-next-horizontal:hover,
.jcarousel-skin-1 .jcarousel-next-horizontal:active {
    background-position: -34px 0;
}

.jcarousel-skin-3 .jcarousel-prev-horizontal,
.jcarousel-skin-5 .jcarousel-prev-horizontal,
.jcarousel-skin-7 .jcarousel-prev-horizontal,
.jcarousel-skin-1 .jcarousel-prev-horizontal {
    position: absolute;
    top: 100px;
    width: 34px;
    height: 27px;
    cursor: pointer;
    background: transparent url("../images/ge-summary-arrow-left-black.gif") no-repeat 0 0;
	z-index: 9;
	-webkit-box-shadow: 0 0 10px #6d6d6d;
    -moz-box-shadow: 0 0 10px #6d6d6d;
    box-shadow:  0 0 10px #6d6d6d;
	border: 1px solid #686868;

}

.jcarousel-skin-3b .jcarousel-prev-horizontal{
    position: absolute;
    top: -38px;
    right: 44px;
    width: 34px;
    height: 27px;
    cursor: pointer;
    background: transparent url("../images/ge-summary-arrow-left-black.gif") no-repeat 0 0;
}

.jcarousel-skin-3 .jcarousel-prev-horizontal:hover,
.jcarousel-skin-3 .jcarousel-prev-horizontal:active,
.jcarousel-skin-3b .jcarousel-prev-horizontal:hover,
.jcarousel-skin-3b .jcarousel-prev-horizontal:active,
.jcarousel-skin-5 .jcarousel-prev-horizontal:hover,
.jcarousel-skin-5 .jcarousel-prev-horizontal:active,
.jcarousel-skin-7 .jcarousel-prev-horizontal:hover,
.jcarousel-skin-7 .jcarousel-prev-horizontal:active,
.jcarousel-skin-1 .jcarousel-prev-horizontal:hover,
.jcarousel-skin-1 .jcarousel-prev-horizontal:active {
    background-position: -34px 0;
}

/*-----------------------------------------------------------------------
Carousel - 3 Panels
------------------------------------------------------------------------*/

.jcarousel-skin-3 .jcarousel-container-horizontal,
.jcarousel-skin-3b .jcarousel-container-horizontal{
    width: 950px;
}

.jcarousel-skin-3 .jcarousel-clip-horizontal,
.jcarousel-skin-3b .jcarousel-clip-horizontal{
    width:  950px;
    height: auto;
}

.jcarousel-skin-3 .jcarousel-item,
.jcarousel-skin-3b .jcarousel-item{
    width: 312px;
    height: auto;
}

.jcarousel-skin-3 .jcarousel-item-horizontal,
.jcarousel-skin-3b .jcarousel-item-horizontal{
	margin-left: 0;
    margin-right: 10px;
}

.jcarousel-skin-3 .jcarousel-direction-rtl .jcarousel-item-horizontal,
.jcarousel-skin-3b .jcarousel-direction-rtl .jcarousel-item-horizontal{
	margin-left: 10px;
    margin-right: 0;
}

/*-----------------------------------------------------------------------
Carousel - 5 Panels
------------------------------------------------------------------------*/

.jcarousel-skin-7 .jcarousel-container-horizontal {
 	width:940px;
}

.jcarousel-skin-7 .jcarousel-clip-horizontal {
    width:950px;
    height: 224px;
}

.jcarousel-skin-7 .jcarousel-item {
    width: 146px;
    height: 218px;
	margin-right: 12px;
}

.jcarousel-skin-7 .jcarousel-item-horizontal img{
	float: none;
}

.jcarousel-skin-7 .jcarousel-direction-rtl .jcarousel-item-horizontal {
	margin-left: 10px;
    margin-right: 0;
}
/*-----------------------------------------------------------------------
Carousel - 7 Panels
------------------------------------------------------------------------*/

.jcarousel-skin-5 .jcarousel-container-horizontal {
 	width:940px;
}

.jcarousel-skin-5 .jcarousel-clip-horizontal {
    width:940px;
    height: 234px;
}

.jcarousel-skin-5 .jcarousel-item {
    width: 230px;
    height: 230px;
	margin-right: 5px;
	margin-bottom: 0;
	padding: 0;
}

.jcarousel-skin-5 .jcarousel-item-horizontal {
	    height: 234px;
}

.jcarousel-skin-5 .jcarousel-direction-rtl .jcarousel-item-horizontal {
	margin-left: 10px;
    margin-right: 0;
}

.slide{
	background: #000000 url("../images/bg-widgets.png") repeat-x;
	-webkit-box-shadow: 0 0 10px #6d6d6d;
    -moz-box-shadow: 0 0 10px #6d6d6d;
    box-shadow:  0 0 10px #6d6d6d;
	border: 1px solid #686868;
	   -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
	color: #d3d2d3;

	float: none;
	clear: none;
	padding-left: 10px;
	padding-top: 10px;
}


.jcarousel-skin-1 .jcarousel-container-horizontal {
    width: 950px;
}

.jcarousel-skin-1 .jcarousel-clip-horizontal {
    width:  950px;
    height: 510px;
}

.jcarousel-skin-1 .jcarousel-item {
    width: 950px;
    height: 510px;
	margin-top: 10px;
}

.jcarousel-skin-1 .jcarousel-item-horizontal {
	margin-left: 0;
    margin-right: 10px;
}

.jcarousel-skin-1 .jcarousel-direction-rtl .jcarousel-item-horizontal {
	margin-left: 10px;
    margin-right: 0;
}



.ge-summary{
	width:720px;
	height:auto;
	position:relative;
	float:left;
	margin-bottom:10px;
}

.ge-summary-case{
	width: 940px;
	height: 290px;
	overflow:hidden;
	position:relative;
	float:left;
	margin-bottom: 2px;
}
.ge-summary-case2{
	width: 940px;
	height: 270px;
	overflow:hidden;
	position:relative;
	float:left;
	margin-bottom: 2px;
	margin-top: -100px;
}

.ge-summary-title{
	font-size:14px;
	color:#323d43;
	line-height:20px;
	font-weight:bold;
}

.module-services-black .ge-summary-title{
	color:#ffffff;
}

.sp-summary{
	width:720px;
	height:auto;
	position:relative;
	float:left;
}
.module-header{
	height: 30px;
	margin-bottom: 10px;
}
.module-services li,
.module-services-black li{
	list-style-type:none;
	width:230px;
	height:auto;
	position:relative;
	float:left;
	margin-right:10px;
}

.module-services li p,
.module-services-black li p{
	padding-bottom:0px;
}

.module-services li img,
.module-services-black li img{
	margin-bottom:3px;
}

.module-services-black h3{
	color:#ffffff;
}

.module-clients li{
	list-style-type:none;
	width:134px;
	height:93px;
	position:relative;
	float:left;
	margin-right:10px;
}

.module-clients img{
	border:1px solid #cfcfcf;
}
.module-casestudies2{
	width:950px;
	height: 230px;
	position:relative;
	float:left;
	margin-left: 0px;
}
.module-casestudies{
	width:940px;
	height:235px;
	position:relative;
	float:left;
}

.module-casestudies li{
	list-style-type:none;
	width:940px;
	height:230px;
	position:relative;
	float: left;
	padding: 0;
	margin: 0;
}

.module-casestudies-image{
	position:relative;
}

.module-casestudies-text{
	position:relative;
	float:right;
	padding-top:10px;
}

.module-casestudies-text .ge-summary-title{
	font-size:14px;
	color:#323d43;
	line-height:20px;
	font-weight:bold;
	padding-bottom:0px;
}

 /* Quip */

.quip a { text-decoration: none; }
.quip a:hover { text-decoration: underline; }

.quip-comment form, .quip-comment p { padding: 0; margin: 0;}
div.quip-comment {
    padding: 4px;
}
li.quip-comment {
    background: transparent;
    list-style: none;
    padding: 0;
    margin: 0;
}
ol.quip-comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
ol.quip-comment-list li ol {
    margin-bottom: 0;
    padding-left: 20px;
}
ol.quip-comment-list li {
    list-style-type: none;
    position: relative;
    margin-left: 0;
}
ol.quip-children {
    margin: 0;
}

.quip-comment-alt {
	background-color: #141414;
}
.quip-comment-body {
    padding: 5px 7px;
	background-color: black;
	border: 1px solid #747474;
	margin-bottom: 10px;
	margin-top: 10px;
}
.quip-comment-text p {
    padding-top: 1em;
}
.quip-unapproved, .quip-unapproved a {
    color: #a4a4a4;
}
.quip-comment-createdon {
    font-style: italic;
    font-size: small;
}
.quip-comment-createdon a { color: #777; }
.quip-comment-author, .quip-comment-author a { color: #444; font-weight: bold; }
.quip-comment-author strong { color: #333; }

.quip-reply-link {
    font-size: 11px;
    float: left;
}
.quip-break { clear: left; }

.quip-error {
    color: red;
    font-size: .9em;
}
.quip-success {
    color: green;
}
.quip-clear {
    clear: both;
}

.quip-comment-right {
    float: right;
}
.quip-comment-options {
    clear: right;
    margin-top: 2px;
    text-align: right;
    font-size: 11px;
	display: none;
}
.quip-comment-options a {
    color: #777;
}
.quip-avatar {
    float: right;
    padding: 3px;
    margin: 2px;
    border: 1px solid #ccc;
}

/* add comment */
.quip-add-comment p {
    color: #888;
    margin-bottom: .2em;
}
span.quip-allowed-tags {
    font-weight: normal;
    font-size: 11px;
    font-style: normal;
    float: right;
    }
.quip-add-comment .textarea {
    width:auto;
}
.quip-add-comment fieldset {
    width: 100%;
    padding:0;
	margin-left: 0;
}
.quip-add-comment textarea {
    width: 90%;
    padding:0;
	float: left;
	clear: none;
}
.quip-add-comment input[type=text] {
    width: 50%;
    float: left;
    border: 1px solid #888;
    padding: 5px;
    }
    .quip-add-comment input{
    width: 50%;
    border: 1px solid #888;
    padding: 5px;
	float: none;
	clear: left;
}
    .quip-comment-notify.me{
    width: 25%;
    border: 1px solid #888;
    padding: 5px;
	float: none;
	clear: left;
}
input#quip-comment-notify-qcom{
	width: 20px;
	float: right;
}
.quip-add-comment label {
    width: 20%;
    float: left;
	clear: both;
}
.quip-fld br { clear: both; }

div.quip-comment input[type=submit] {
    cursor: pointer;
}
.quip-preview {
    border-bottom: 1px solid #d4d4d4;
    padding: 7px 7px;
    background-color: #f2f2f2;
}

 /* Gallery */

.gal-item {
    float: left;
    padding: 3px;
    border: 1px solid #d4d4d4;
    margin: 4px;
    opacity: 0.8;
}

.gal-item:hover {
    opacity: 1.0;
}

/* fileupload css file */

div.fu-error-presubmit {
    font-family: arial, sans-serif;
    font-size:20px;
    color:red;
    background-color:#dcdcdc;
    margin: 15px;
    padding: 15px;
    text-align: left;
    width: 50%
}
div.fu-outer {
    font-family: arial, sans-serif;
    font-size:20px;
    color:black;
    padding:20px;
}

div.fu-outer p {
    color:black;
    font-size: 20px;
    margin:5px 15px 5px 30px;
    padding: 5px;
}
div.fu-outer input {
    padding:5px;
    margin:5px;
    font-size:20px;
    float: right;
	margin-bottom: 10px;
	clear: none;
	width: 100%;
	height: 100%;
}

div.fu-outer p.fu-inner-line {
   font-size:20px;
   margin:5px;
   padding:5px;
	margin-left: 0px;
	margin-right:10px;
	margin-top: 10px;
}

div.fu-error {
    font-size:20px;
    color:red;
    background-color:#dcdcdc;
    text-align:left;
    margin:5px 1px 5px 30px;
    padding: 5px;
    width:50%;
}
div.fu-success {
    font-size:20px;
    color:black;
    background-color:#dcdcdc;
    text-align:left;
    margin: 5px 15px 5px 30px;
    padding: 5px;
    width: 100px;
   
}

 /* Forms */
 
 
.register{
	font-size: 12px;
	float: left;
}
form.form{
	margin-bottom: 10px;
	margin-right: 10px;
	float: none;
	clear: none;
	margin-top: 20px;
}
.form label, .loginUsernameLabel, .loginPasswordLabel{
	width: 200px;
	display: block;
	float: none;
	padding-top: 4px;
}
input[type=text], textarea
{
	border:solid 1px #e0e0e0;
	margin:4px 4px 8px 0px; 
	padding:5px; 
	vertical-align:middle; 
	font-size:11px;
	width: 100%;
	background-color: black;
	float: left;
}

li.artist label{
	font-size: 18px;
	line-height: 22px;
}
fieldset div.field label {
	line-height: 11px;
	margin-right: 10px;
	float: left;
}
div.fieldmessage{
	margin-top: 20px;
	float: none;
}
#cfContact.button,.form-buttons, span.loginLoginButton input{
	margin-top: 20px;
	padding-right: 10px;
	padding-left: 10px;
	line-height: 14px;
	background-color: black;
	margin-bottom: 20px;
	float: right;
	display: inline;
	clear: left;
}
select#cfRegarding{
	font-size: 14px;
	line-height: 30px;
	color: white;
	margin-top: 20px;
}

center{
	margin-bottom: 10px;
	font-weight: bold;
}
#cfContact.button{
	margin-top: 20px;
	padding-right: 10px;
	padding-left: 10px;
	line-height: 12px;
	background-color: black;
	margin-bottom: 20px;
	float: left;
	clear: none;
	height: 24px;
	width: 180px;
}

.text.widgetform{
	width: 170px;
}
fieldset { 
	float: left;
	padding-right: 0px;
	margin-left: 30px;
	width: 272px;
}
#cfMessagewide{
	width: 840px;
	margin-top: 10px;
	margin-bottom: 10px;
	float: left;
	clear: both;
}

.field{
	width: 280px;
	margin-top: 4px;
}
legend {
  padding: 0.2em 0.5em;
  color: gray;
  font-size: 90%;

	border-style: none;
	font-weight: bold;
	text-transform: uppercase;
}

fieldset legend {
	text-transform: uppercase;
	float: left;
	margin-bottom: 20px;
	width: 270px;
	margin-top: 10px;
	font-size: 16px;
}

label select{
	width: 210px;
	margin: 0 0px 0px 0;
	
}

.loginRegister a{
	font-weight: bold;
	text-transform: uppercase;
}
form.sisea-search-form{
	float: left;
}

form.sisea-search-form fieldset{
	float: left;
	font-size: 10px;
	padding-left: 0;
	margin-left:  0;
	margin-right: 0;
	padding-right: 0;
	width: 100%;
}

form.sisea-search-form fieldset input{
	float: left;
	font-size: 10px;
	margin-top: 4px;
	margin-left: 20px;
	width: 190px;
	background-color: #060d10;
}
form.sisea-search-form fieldset input#search{
	float: left;
	text-align: left;
	width: 180px;
	margin-left: 20px;
	background-color: #060d10;
	margin-top: 10px;
}

form.sisea-search-form fieldset label{
	width: 200px;
	display: none;
	float: none;
	font-size: 12px;
	height: 0;
}
.productintro{
	margin-bottom: 30px;
	background-image: url("../images/bg-widgets.png");
	clear: both;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.residentimage a{
	width: 54px;
	height: 54px;
	margin: 0;
	border: 1px solid black;
	float: left;
}
.residentimage a:hover{
	width: 54px;
	height: 54px;
	margin: 0;
	border: 1px solid white;
	-webkit-box-shadow: 0 0 10px #aee4f2;
    -moz-box-shadow: 0 0 10px #aee4f2;
    box-shadow:  0 0 10px #aee4f2;
}

}
.productintrotype4{
	margin-bottom: 10px;
	padding-right: 10px;
	background-image: url("../images/bg-widgets.png");
	width: 217px;
	padding-left: 0;
	float: left;
	margin-left: -2px;
}

.spacer{
	width: 10px;
	height: 220px;
	float: left;
}

.productintrotype4 h4{
	background: url("../images/icon-small.png") no-repeat 4px 0;
	width: 212px;
	padding-left: 24px;
	text-transform: uppercase;
}
.productintrotype4 img{

}
.productintrotype4 a{
	font-size: 12px;
	padding-left: 10px;
	background-color: transparent;
	background-image: none;
	height: 20px;
	color: silver;
}

.productintrotype2 img{

}
.productintrotype2 a{
	font-size: 12px;
	padding-left: 10px;
	background-color: transparent;
	background-image: none;
	height: 20px;
	color: silver;
}

.productintrotype2{
	margin-bottom: 10px;
	padding-right: 10px;
	background-image: url("../images/bg-widgets.png");
	margin-left: 8px;
	width: 135px;
	float: left;
	padding-left: 0;
}
.productintrotype2 h4{
	background: url("../images/icon-small.png") no-repeat 4px 0;
	width: 135px;
	padding-left: 24px;
	text-transform: uppercase;
}
.productintrotype2 img{

}
.productintrotype2 a{
	font-size: 12px;
	padding-left: 10px;
	background-color: transparent;
	background-image: none;
	height: 20px;
	color: silver;
}


.productintrotype3{
	float: left;
	width: 188px;
	background-image: url("../images/bg-widgets.png");
	height: 260px;
	margin: 0px 5px 10px;
}
.productintrotype3 a{
	color: #d3d2d3;
	text-decoration: none;
}
.productintrotype3 img{
	padding: 5px;
}
.productintrotype3 h2{
	font-size: 14px;
	width: 156px;
    background: url("../images/icon-small.png") no-repeat 4px 6px;
	height: 10px;
	text-align: center;
	line-height: 12px;
	color: #d3d2d3;
	text-decoration: none;
}
.productintrotype3 a.more{
	width: 100%;
	float: left;
	margin: 0;
}

#tvtags{
	word-wrap: break-word;
	float: left;
	width: 100%;
	padding: 10px;
}

@media screen and (max-device-width: 480px) {
  
 }


@media print {
  * { color: #444 !important; text-shadow: none !important;
	background-color: transparent;
}
  a, a:visited { text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid;
}
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
</pre></body></html>