/* 
  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.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/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; font-size:100%; vertical-align:baseline; background:transparent; }

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 { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/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 { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/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 { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

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

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

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


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; 
  
  /* www.pathf.com/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! www.sitepoint.com/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.com/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 { 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.com/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: #FF5E99; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/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.com/wiki/Screenreader_Visibility */
.hidden { display: none !important; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  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; }

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

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






 /* Primary Styles
    Author: Zephir Software Design AG
 */

body {
	background: #d9e3eb url(../images/bg-body.gif) repeat-x;
	color: #666;
	font-family: "Lucida Grande", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.3em;
}

input, textarea {
	font-family: "Lucida Grande", Arial, sans-serif;
	font-size: 14px;
}

h1, h2, h3 {
	font-family: Rockwell, Verdana, sans-serif;
	font-weight: normal;
	text-transform: uppercase;
}

h1 {
	color: #fff;
	font-size: 48px;
	letter-spacing: 3px;
	line-height: 48px;
}

h2 {
	font-size: 32px;
	letter-spacing: 2px;
	line-height: 32px;
}

h2 span.small {
	font-size: 14px;
}

h3 {
	font-size: 20px;
	letter-spacing: 1px;
	line-height: 20px;
}

p {
    margin-bottom: 1em;
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: #007dc3;
	padding: 2px 0;
	text-decoration: none;
}

a:visited {
	color: #007dc3;
}

a:hover,
a:active {
	color: #000;
}

div.flash-error, div.flash-notice, div.flash-success
{
	padding:.8em;
	margin: 0 20px 20px 20px;
	border:2px solid #ddd;
}

div.flash-error
{
	background:#FBE3E4;
	border-color:#FBC2C4;
}

div.flash-notice
{
	background:#FFF6BF;
	border-color:#FFD324;
}

div.flash-success
{
	background:#E6EFC2;
	border-color:#C6D880;
}

/* Action Links with icons */

a.action {
	font-family: Georgia, Times, serif;
	font-style: italic;
	text-decoration: underline;
}

a.action.heartplus {
	padding-left: 22px;
	background: url(../images/icons/icons.png) no-repeat 0 -57px;
}

a:hover.action.heartplus {
	background: url(../images/icons/icons.png) no-repeat 0 -87px;
}

a.action.heartminus {
	padding-left: 22px;
	background: url(../images/icons/icons.png) no-repeat 0 -117px;
}

a:hover.action.heartminus {
	background: url(../images/icons/icons.png) no-repeat 0 -147px;
}

a.action.calculator {
	padding-left: 22px;
	background: url(../images/icons/icons.png) no-repeat 0 -180px;
}

a:hover.action.calculator {
	background: url(../images/icons/icons.png) no-repeat 0 -210px;
}

a.action.bubble {
	padding-left: 22px;
	background: url(../images/icons/icons.png) no-repeat 0 -298px;
}

a:hover.action.bubble {
	background: url(../images/icons/icons.png) no-repeat 0 -328px;
}

a.action.print {
	padding-left: 22px;
	background: url(../images/icons/icons.png) no-repeat 0 -356px;
}

a:hover.action.print {
	background: url(../images/icons/icons.png) no-repeat 0 -386px;
}

a.checkbox {
	padding-left: 17px;
	background: url(../images/checkbox.png) no-repeat 0 4px;
}

a.checkbox.active {
	background: url(../images/checkbox.png) no-repeat 0 -18px;
}

#wrapper {
	border-left: 1px solid #b6c9dd;
	border-right: 1px solid #b6c9dd;
	margin-left: 45px;
	width: 964px;
}

header {
	position: relative;
}

body.home header {
	height: 256px;
}

#content {
	padding-bottom: 20px;
	position: relative;
}

body.white-sidebar #content {
	background: url(../images/bg-content-white-sidebar.gif) repeat-y;
}

#main {
	float: left;
	min-height: 300px;
	width: 644px;
}

#side {
	float: left;
	min-height: 300px;
	width: 320px;
}

footer {
	background-color: #b2c4cd;
	position: relative;
}


/* --- COLOR SCHEMES --- */

/* Blue (default) */

body #title,
body.blue #title {
	background: #00aaec url(../images/header/bg-title-blue.jpg) no-repeat;
}

/* Green */

body.green #title {
	background: #cc3 url(../images/header/bg-title-green.jpg) no-repeat;
}

body.green #subnav li a {
	background-color: #a5a529;
	color: #fff;
}

body.green #subnav li.active a,
body.green #subnav li a:hover {
	background-color: #fff;
	color: #a5a529;
}

body.green h3 a {
	color: #a5a529;
}

/* Red */

body.red #title {
	background: #a01e18 url(../images/header/bg-title-red.jpg) no-repeat;
}

body.red #subnav li a {
	background-color: #861914;
	color: #fff;
}

body.red #subnav li.active a,
body.red #subnav li a:hover {
	background-color: #fff;
	color: #a01e18;
}

body.red h3 a {
	color: #a01e18;
}

/* Magenta */

body.magenta #title {
	background: #d12185 url(../images/header/bg-title-magenta.jpg) no-repeat;
}

body.magenta #subnav li a {
	background-color: #9d1964;
	color: #fff;
}

body.magenta #subnav li.active a,
body.magenta #subnav li a:hover {
	background-color: #fff;
	color: #d55bb5;
}

body.magenta h3 a {
	color: #be1e5c;
}

/* Orange */

body.orange #title {
	background: #f2af48 url(../images/header/bg-title-orange.jpg) no-repeat;
}

body.orange #subnav li a {
	background-color: #bd8938;
	color: #fff;
}

body.orange #subnav li.active a,
body.orange #subnav li a:hover {
	background-color: #fff;
	color: #d7812b;
}


/* --- HEADER --- */

/* Branding */

#branding-logo,
#branding-claim,
#branding-contact {
	background: white url(../images/header/bg-branding.gif) no-repeat;
	float: left;
	height: 94px;
	margin-right: 2px;
	width: 320px;
}

body.home #branding-logo,
body.home #branding-claim,
body.home #branding-contact {
	height: 110px;
}

#branding-logo {
	border-top: 5px solid #8c8c23;
}

#branding-logo a {
	display: block;
}

#branding-logo img {
	margin: 11px 0 0 20px;
}

body.home #branding-logo img {
	margin-top: 19px;
}

#branding-claim {
	border-top: 5px solid #a01e18;
	color: #000;
	font-family: Georgia, Times, serif;
	font-size: 18px;
	font-style: italic;
	line-height: 21px;
}

#branding-claim p {
	margin: 15px 0 10px 20px;
}

body.home #branding-claim p {
	margin-top: 23px;
}

#branding-claim strong {
	color: #666;
	font-weight: normal;
}

#branding-contact {
	border-top: 5px solid #d7812b;
	margin-right: 0;
}

#branding-contact p {
	margin: 15px 0 0 20px;
}

#branding-contact p a {
	line-height: 34px;
}

#branding-contact img {
	float: right;
	margin-left: 20px;
}

/* Title box */

#title {
	height: 185px;
	position: relative;
	width: 964px;
}

#title h1 {
	left: 10px;
	margin: 0;
	position: absolute;
	top: 12px;
	width: 600px;
}

/* NAVIGATION */

/* Social Navigation */

#socialnav {
	list-style-type: none;
	margin: 384px 0 0 -26px;
	position: absolute;
}

/* Meta Navigation */

#metanav {
	list-style-type: none;
	margin: 0 0 0 10px;
}

#metanav li {
	color: #666;
	float: left;
	height: 50px;
	line-height: 50px;
}

#metanav li.spacer {
	margin: 0 10px;
}

#metanav li a {
	color: #666;
}

#metanav li a:hover {
	color: #000;
}

#metanav li.home a {
	padding-left: 22px;
	background: url(../images/icons/icons.png) no-repeat 0 -237px;
}

#metanav li.home a:hover {
	background: url(../images/icons/icons.png) no-repeat 0 -267px;
}

/* Language Navigation */

#langnav {
	float: right;
	list-style-type: none;
	margin: 0 10px 0 0;
}

#langnav li {
	color: #666;
	float: left;
	height: 50px;
	line-height: 50px;
}

#langnav li.spacer {
	margin: 0 10px;
}

#langnav li a {
	color: #666;
	text-decoration: underline;
}

#langnav li.active {
	font-weight: bold;
}

#langnav li a:hover {
	color: #000;
}

/* Main Navigation */

#mainnav {
	list-style-type: none;
	margin: 0;
}

#mainnav li {
	float: left;
	height: 26px;
	letter-spacing: 1px;
	line-height: 24px;
	margin-right: 2px;
	text-align: center;
	text-transform: uppercase;
	width: 320px;
}

#mainnav li a {
	background-color: #666;
	color: #fff;
	display: block;
	font-family: Rockwell, Verdana, sans-serif;
	font-size: 16px;
	height: 26px;
	padding: 0; /* For IE6 */
	width: 320px;
}

#mainnav li.team-events {
	background: #cc3 url(../images/header/bg-mainnav-green.gif) no-repeat;
}

#mainnav li.team-building {
	background: #a01e18 url(../images/header/bg-mainnav-red.gif) no-repeat;
}

#mainnav li.events-nach-mass {
	background: #f2af48 url(../images/header/bg-mainnav-orange.gif) no-repeat;
	margin-right: 0;
}

#mainnav li.team-events a:hover {
	background-color: #8c8c23;
}

#mainnav li.team-building a:hover {
	background-color: #a01e18;
}

#mainnav li.events-nach-mass a:hover {
	background-color: #d7812b;
}

body.team-events #mainnav li.team-events a,
body.team-building #mainnav li.team-building a,
body.events-nach-mass #mainnav li.events-nach-mass a {
	display: none;
}

#mainnav li a span {
	display: none;
}

/* Main Navigation Homepage */

#mainnav-home {
	left: 0;
	list-style-type: none;
	margin: 0;
	position: absolute;
	top: 165px;
	z-index: 10;
}

html.ie6 #mainnav-home {
	position: relative;
	top: 0;
}

#mainnav-home li {
	float: left;
	height: 91px;
	letter-spacing: 1px;
	line-height: 24px;
	margin-right: 2px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	width: 320px;
}

#mainnav-home li a {
	color: #fff;
	display: block;
	font-family: Rockwell, Verdana, sans-serif;
	font-size: 24px;
	height: 91px;
	padding-top: 20px;
	width: 320px;
}

#mainnav-home li a span {
	bottom: 10px;
	color: #fff;
	display: none;
	font-family: "Lucida Grande", Arial, sans-serif;
	font-size: 14px;
	letter-spacing: 0;
	position: absolute;
	right: 40px;
	text-transform: none;
}

#mainnav-home li a:hover span {
	display: block;
}

html.ie6 #mainnav-home li a:hover span {
	display: none;
}

#mainnav-home li.team-events {
	background: #cc3 url(../images/header/bg-mainnav-home-green.gif) no-repeat;
}

#mainnav-home li.team-building {
	background: #a01e18 url(../images/header/bg-mainnav-home-red.gif) no-repeat;
}

#mainnav-home li.events-nach-mass {
	background: #f2af48 url(../images/header/bg-mainnav-home-orange.gif) no-repeat;
	margin-right: 0;
}

#mainnav-home li.team-events:hover,
#mainnav-home li.team-events a:hover,
#mainnav-home li.team-building:hover,
#mainnav-home li.team-building a:hover,
#mainnav-home li.events-nach-mass:hover,
#mainnav-home li.events-nach-mass a:hover {
	height: 159px;
}

html.ie6 #mainnav-home li a:hover {
	height: 91px;
}

/* Sub Navigation */

#subnav {
	bottom: 1px;
	left: 10px;
	list-style-type: none;
	margin: 0;
	position: absolute;
}

#subnav li {
	float: left;
	height: 37px;
	line-height: 35px;
	margin-right: 2px;
}

#subnav li a {
	display: block;
	height: 37px;
	padding: 0 9px;
}

html.ie6 #subnav li a {
	display: inline-block;
}

#subnav li.active a {
	height: 38px;
}

/* Search */

#search {
	left: 664px;
	position: absolute;
	top: 21px;
}

/* ---- FOOTER ---- */

footer {
	font-size: 11px;
	line-height: 16px;
	padding: 1px 0 38px 0;
}

footer ul.links {
	list-style: none;
	margin: 0;
}

footer ul.links li {
	border-right: 2px solid #95a4ac;
	float: left;
	height: 129px;
	padding: 0 20px;
	width: 119px;
}

footer ul.links li.last {
	border-right: none;
}

/* footer.footer = Hack für Safari */
footer.footer a,
footer.footer a:visited {
	color: #666;
}

footer li.last a {
	color: #007dc3;
}

footer a:hover,
footer li.last a:hover {
	color: #000;
}

footer p.copyright,
footer p.keywords {
	margin: 0;
	text-align: center;
}

footer div.divider {
    border-top-color: #95a4ac;
    margin: 27px auto 8px auto;
    width: 280px;
}

ul.colorbars {
	list-style: none;
	margin: 0 0 24px 0;
}

ul.colorbars li {
	float: left;
	height: 5px;
	width: 320px;
}

ul.colorbars li.col1 {
	background-color: #8c8c23;
	margin-right: 2px;
}

ul.colorbars li.col2 {
	background-color: #ab2241;
	margin-right: 2px;
}

ul.colorbars li.col3 {
	background-color: #d7812b;
}

/* ---- HIGHLIGHTS ---- */

ul.highlights {
	list-style: none;
	margin: 0;
	background: #fff url(../images/bg-highlights.jpg) repeat-x;
}

 ul.highlights li {
	border-right: 2px solid #b6c9dd;
	float: left;
	min-height: 440px;
	padding: 28px 20px;
	position: relative;
	width: 280px;
}

ul.highlights li.col3 {
	border-right: none;
}

ul.highlights h3 {
	margin-bottom: 15px;
}

ul.highlights h3 a,
ul.highlights h4 a {
	color: #666;
}

ul.highlights h3 a:hover,
ul.highlights h4 a:hover {
	color: #007dc3;
}

ul.highlights img.guidebook-button {
	bottom: 20px;
	right: 20px;
	position: absolute;
}

div.event-highlight h4 {
	margin: 1em 0 0.5em 0;
}

div.blog-highlight p.date {
	color: #999;
}

div.blog-highlight h4 {
	margin: 0 0 1em 0;
}

div.blog-highlight {
	margin-bottom: 2em;
}


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

div.form div.errorMessage {
	color: #f00;
	font-size: 12px;
}

div.form h4 {
	margin: 20px 0 6px 0;
}

div.form ul {
	list-style: none;
	margin: 0;
}

div.form ul li {
	margin-bottom: 5px;
}

div.form dt {
	float: left;
	margin: 0 0 5px 0;
	width: 180px;
}

div.form dd {
	margin: 0 0 5px 180px;
	width: 250px;
}

html.ie6 div.form dd,
html.ie7 div.form dd {
	margin-left: 0;
}

div.form span.required {
	color: #f00;
	font-weight: normal;
}

div.form input.text,
div.form textarea {
	border: 1px solid #b6c9dd;
	color: #666;
	display: block;
	padding: 2px;
	width: 250px;
}

div.form input[type=radio],
div.form input[type=checkbox] {
	margin-bottom: 2px;
}

div.form dd.subscribe {
	font-size: 12px;
	margin-top: 12px;
}

div.form dd.subscribe input {
	float: left;
	margin-top: 2px;
}

div.form dd.subscribe label {
	display: block;
	margin-left: 20px;
}

div.form dd.captcha,
div.form dt.captcha {
	padding-top: 12px;
}

div.form dd.captcha input {
	width: 125px;
}

div.form dd.captcha img {
	margin: 5px 0 0 -7px;
}

div.form dd.captcha a {
	position: relative;
	top: -22px;
}

div.form dd.buttons {
	margin-top: 20px;
}

input.button {
	background-color: #007dc3;
	border: none;
	color: #fff;
	height: 28px;
	line-height: 28px;
	padding: 0 25px;
}

input.button:hover {
	background-color: #000;
}


/* ---- MISC ---- */

#content.white-sidebar {
	background: url(../images/bg-content-white-sidebar.gif) repeat-y;
}

div.content-header {
	height: 42px;
	line-height: 42px;
	margin: 0 20px;
}

div.content-header h2 {
	font-size: 20px;
	letter-spacing: 1px;
	line-height: 42px;
}

div.divider {
    border-top: 1px solid #b6c9dd;
    height: 0;
    margin: 20px 0;
    width: 100%;
}

div.divider-short {
	border-top: 2px solid #b6c9dd;
    height: 0;
    margin: 20px 0;
	width: 50px;
}

.hint {
	color: #999;
	font-size: 12px;
}

ul.download {
	background-color: #e7edf2;
	list-style: none;
	margin: 0;
	padding: 10px;
}

ul.download li img {
	margin-right: 20px;
	vertical-align: middle;
}


/* --- EVENT LIST --- */

ul.events {
	list-style-type: none;
	margin: 1px 0 0 0;
	width: 642px;
}

ul.events li {
	margin-top: -1px;
}

li.event {
	position: relative;
}

li.event.hover:hover,
li.event.pinkbox {
	background-color: #eef2f6;
	border-right: 1px solid #b6c9dd;
}

li.event .inner {
	border-bottom: 1px solid #b6c9dd;
	border-top: 1px solid #b6c9dd;
	margin: 0 20px;
	padding: 20px 0;
}

li.event.hover:hover .inner,
li.event.pinkbox .inner {
	margin: 0;
	padding: 20px;
}

li.event img {
	float: left;
}

li.event h3 {
	margin: 0 0 10px 210px;
	width: 342px;
}

li.event p.info {
	margin: 0 0 10px 210px;
	width: 342px;
}

li.event p.links {
	margin: 0 0 0 210px;
	width: 342px;
}

li.event img.weather {
	position: absolute;
	left: 582px;
	top: 0;
}

li.event img.swissmap {
	left: 582px;
	position: absolute;
	top: 75px;
}

li.event.pinkbox {
	background-color: #fae6ee;
}

li.event.pinkbox h3 a {
	color: #be1e5c;
}


/* --- EVENT DETAILS --- */

div.event-details {
	border-top: 1px solid #b6c9dd;
	margin: 0 20px 20px 20px;
	padding-top: 20px;
}

div.event-details h2 {
	margin: 0;
}

div.event-details ul {
	margin-bottom: 1em;
}

div.event-details div.media {
	float: left;
	margin: 20px 22px 0 0;
	width: 300px;
}

div.event-details div.info {
	float: left;
	margin: 17px 0 0 0;
	width: 280px;
}

div.images-box,
div.videos-box,
div.sounds-box {
	border: 1px solid #b6c9dd;
	margin-top: 12px;
	padding: 14px 9px 4px;
	width: 280px;
}

div.images-box h3,
div.videos-box h3,
div.sounds-box h3 {
	letter-spacing: 1px;
	line-height: 20px;
	margin: 0 0 12px 0;
}

div.images-box h3 span.small,
div.videos-box h3 span.small,
div.sounds-box h3 span.small {
	font-family: "Lucida Grande", Arial, sans-serif;
	font-size: 14px;
	letter-spacing: 0;
}

div.images-box img,
div.videos-box img {
	display: block;
}

div.images-box a,
div.videos-box a {
	border: 1px solid #666;
	float: left;
	margin: 5px 5px 0 0;
	padding: 0;
}

div.images-box a:hover,
div.videos-box a:hover {
	border: 1px solid #fff;
}

div.images-box a.col3,
div.videos-box a.col2 {
	margin-right: 0;
}

div.images-box a,
div.videos-box a {
	position: relative;
}

div.images-box p.caption,
div.videos-box p.caption {
	font-size: 10px;
	margin-top: 4px;
	text-align: center;
}

a img.image-zoom-icon,
a img.video-play-icon {
	bottom: 0;
	display: none;
	position: absolute;
	right: 0;
	z-index: 10;
}

a:hover img.image-zoom-icon,
a:hover img.video-play-icon {
	display: block;
}

div.sounds-box ul {
	list-style: none;
	margin: 0;
}

/* Event Actions */

div.event-actions {
	background: url(../images/sidebar-shadow.png) no-repeat 0 0;
	border-bottom: 1px solid #b6c9dd;
	padding: 20px 20px 10px 20px;
}

div.event-actions a {
	display: block;
	margin-bottom: 10px;
}

/* Event Profile */

div.event-profile {
	font-size: 12px;
	line-height: 18px;
	margin: 20px;
}

div.event-profile h4 {
	color: #000;
	font-size: 12px;
	margin: 1em 0 0 0;
}

div.event-profile table {
	width: 100%;
}

div.event-profile td {
	padding: 2px 2em 2px 0;
	width: 50%;
}

div.event-profile td.col2 {
	white-space: nowrap;
}

div.event-profile tr.even {
	background-color: #fff;
}

div.event-profile tr.odd {
	background-color: #eef2f6;
}

div.event-profile ul {
	list-style: none;
	margin: 0;
}

div.event-profile li {
	background: url(../images/list-bullet.png) no-repeat 0 2px;
	line-height: 16px;
	margin-bottom: 2px;
	padding-left: 12px;
}

/* Cross links */

div.cross-links div.divider-short {
	margin-top: 0;
}

div.cross-links div.events {
	float: left;
	font-size: 11px;
	line-height: 13px;
	margin: 20px 22px 20px 20px;
	width: 280px;
}

html.ie6 div.cross-links div.events {
	width: 238px;
}

div.cross-links div.events h3 {
	margin: 0 0 11px 11px;
}

div.cross-links div.events p {
	margin: 0;
}

div.cross-links div.events p.title {
	margin-bottom: 1em;
}

div.cross-links div.events ul {
	list-style: none;
	margin: 0;
}

div.cross-links div.events li {
	padding: 6px 11px;
}

div.cross-links div.events li:hover {
	background-color: #eef2f6;
	border: 1px solid #b2c4cd;
	padding: 5px 10px;
}

div.cross-links div.events img {
	display: block;
	float: left;
	margin-right: 10px;
}

div.cross-links div.quotes {
	float: left;
	font-size: 12px;
	line-height: 15px;
	margin: 20px;
	width: 280px;
}

html.ie6 div.cross-links div.events {
	width: 240px;
}

div.cross-links div.quotes h3 {
	margin: 0 0 17px 0;
}

div.cross-links div.quotes ul {
	list-style: none;
	margin: 0;
}

div.cross-links div.quotes li {
	border-bottom: 1px dotted #b2c4cd;
	margin-bottom: 1em;
	padding-bottom: 1em;
}

div.cross-links div.quotes li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

div.quotes p.company {
	margin: 0;
}

div.quotes p.date {
	color: #999;
	margin: 0;
}

div.quotes p.quote {
	margin-top: 1em;
}


/* ---- QUOTATION FORM ---- */

div.quotation {
	padding: 20px;
}


/* ---- RECOMMENDATION FORM ----*/

div.recommendation {
	padding: 20px;
}

div.recommendation dt {
	width: 120px;
}

div.recommendation dd {
	margin-left: 120px;
}

div.recommendation textarea.message {
	width: 370px;
}

div.recommendation dt.captcha {
	width: 120px;
}

div.recommendation dd.captcha {
	margin-left: 120px;
}

div.recommendation dt.colspan {
	display: none;
}

div.recommendation dd.colspan {
	margin-left: 0;
	width: 450px;
}


/* ---- GUIDEBOOK ---- */

div.guidebook {
	padding: 0 20px 40px 20px;
}

div.guidebook p.hint{
	margin-top: 28px;
}

div.guidebook dt {
	width: 140px;
}

div.guidebook dd {
	margin-left: 140px;
}

div.guidebook p {
	width: 80%;
}


/* --- SELECTION ---- */

div.selection-form {
	margin: 0 20px 20px 20px;
}

div.selection-box {
	background-color: #fff;
	border-bottom: 1px solid #b6c9dd;
	font-size: 12px;
	margin: 0;
	padding: 0 20px;
}

div.selection-box div.title {
	height: 42px;
}

div.selection-box p {
	margin-left: 28px;
}

div.selection-box h3 {
	background: url(../images/icons/icons.png) no-repeat 0 14px;
	height: 30px;
	letter-spacing: 1px;
	line-height: 42px;
	margin: 0;
	padding-left: 28px;
}

div.selection-box h3 a {
	color: #666;
}

div.selection-box h3 a:hover {
	color: #007dc3;
}

div.selection-box h3 span.small {
	font-family: "Lucida Grande", Arial, sans-serif;
	font-size: 14px;
	letter-spacing: 0;
}

div.selection-box ul {
	border-top: 1px dotted #b6c9dd;
	list-style: none;
	margin: 0 0 20px 28px;
}

div.selection-box li {
	border-bottom: 1px dotted #b6c9dd;
	padding: 6px 0 7px 0;
}

div.selection-box a.trash {
	display: block;
	float: right;
	height: 10px;
	overflow: hidden;
	width: 9px;
}

div.selection-box a.trash img {
	position: relative;
	top: 0;
}

div.selection-box a.trash:hover img {
	top: -14px;
}

div.shadow-box {
	background: url(../images/sidebar-shadow.png) no-repeat 0 0;
	height: 20px;
}


/* --- SIDEBAR --- */

div.sidebar {
	background-color: #fff;
	float: left;
	padding: 20px;
	width: 280px;
}


/* --- CUSTOMERS LIST --- */

div.customers-list {
    margin-top: 23px;
}

div.customers-list ul {
    color: #666;
    float: left;
    list-style: none;
    margin: 0 0 20px 0;
}

div.customers-list ul li {
    display: block;
    margin: 0 20px;
    width: 282px;
}

div.customers-list ul li.alphabet {
    border-bottom: 1px dotted #b2c4cd;
	font-family: Rockwell, Verdana, sans-serif;
    font-size: 32px;
    line-height: 32px;
    margin-top: 17px;
    margin-bottom: 8px;
    padding-bottom: 6px;
}

div.customers-list ul li:first-child.alphabet {
    margin-top: 0;
}

div.customers-list ul a {
    color: #666;
    text-decoration: none;
}

div.customers-list ul a:hover {
    color: #007dc3;
    text-decoration: underline;
}


/* --- CUSTOMER DETAILS --- */

div.customer-details {
    border-top: #b6c9dd 1px solid;
    padding-top: 20px;
    margin: 0 20px 20px 20px;
    width: 604px;
}

div.customer-details div.logo {
    margin-bottom: 40px;
}

div.customer-details p.date {
    color: #999;
}

div.customer-details p.quote {
    color: #666;
}


/* --- HOMEPAGE --- */

body.home #content {
	background: #fff url(../images/bg-content-home.jpg) no-repeat;
}

#content div.home {
	margin: 20px 20px 40px 20px;
}

#content div.home p {
	font-family: Georgia, Times, serif;
	font-size: 24px;
	font-style: italic;
	line-height: 28px;
	margin-top: 26px;
}

#content div.home p strong {
	color: #000;
	font-weight: normal;
}

div.home-guidebook {
	margin: 20px 20px 40px 0;
	text-align: right;
}

div.home-search {
	margin: 0 20px;
}

#search input.button {
	background-color: #666;
}

#search input.button:hover {
	background-color: #000;
}

form.event-search input.text {
	background: #fff url(../images/icons/search-icon.gif) no-repeat 258px 3px;
	border: 1px solid #7a7a7a;
	margin-bottom: 16px;
	padding: 2px;
	width: 274px;
}

form.event-search input.button {
	margin-top: 16px;
}

form.event-search select {
	width: 200px;
}

body.home div.selection-box {
	background: none;
	border-bottom: none;
	border-top: 1px solid #b6c9dd;
	margin-top: 30px;
	padding-top: 20px;
}


/* --- GENERAL PAGES / STYLES --- */

div.general-page {
	border-top: 1px solid #b6c9dd;
	margin: 0 20px 20px 20px;
	min-height: 300px;
	padding-top: 20px;
}

div.general-page div.col1 {
	float: left;
	margin-right: 22px;
	width: 300px;
}

div.general-page div.col2 {
	float: left;
	width: 280px;
}

div.general-page h3 {
	margin: 2em 0 1em 0;
}

div.general-page p,
div.general-page ul {
	margin-bottom: 1em;
	margin-top: 1em;
}

div.general-page p:first-child,
div.general-page ul:first-child,
div.general-page h3:first-child {
	margin-top: 0;
}

div.general-page p:last-child,
div.general-page ul:last-child {
	margin-bottom: 0;
}

div.general-page li {
	margin-bottom: 0.5em;
}

div.general-page p.lead {
	font-family: georgia, times, serif;
	font-size: 24px;
	font-style: italic;
	line-height: 28px;
	margin-bottom: 40px;
}

div.general-page p.lead strong {
	color: #000;
	font-weight: normal;
}

div.margin {
	margin: 20px;
}

div.bordertop {
	border-top: 1px solid #b6c9dd;
	margin-top: 0;
	padding-top: 20px;
}


/* --- CONTENT SLIDER / EXAMPLES --- */

div.scroller {
	font-size: 12px;
	overflow: hidden;
	width: 320px;
}

div.scroller-content {
	width: 5000px;
}

div.scroller-section {
	float: left;
	margin: 0 20px;
	width: 280px;
}

html.ie6 div.scroller-section {
	display: inline;
}

div.examples h4 {
	font-size: 14px;
	font-weight: normal;
	letter-spacing: 1px;
	margin-bottom: 1em;
}

div.examples strong {
	color: #000;
}

div.examples td.col1 {
	padding-bottom: 0.5em;
	padding-right: 1em;
	white-space: nowrap;
}

div.examples td {
	padding-bottom: 0.5em;
}


/* --- SITEMAP --- */

div.sitemap {
	line-height: 1em;
}

div.sitemap ul {
	list-style: none;
	margin-left: 0;
}

div.sitemap ul ul {
	margin-left: 20px;
}

div.sitemap h4 {
	margin-top: 1.8em;
}


html.ie6 img {
	behavior: url(/js/iepngfix/iepngfix.htc);
}



/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; 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.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}


