/* @group Fonts */
/* http://www.fontspring.com/blog/the-new-bulletproof-font-face-syntax */
@font-face {
	font-family: 'PTSans';
	src: url('../fonts/PT_Sans-webfont.eot#') format('eot'),
		 url('../fonts/PT_Sans-webfont.woff') format('woff'),
		 url('../fonts/PT_Sans-webfont.ttf') format('truetype'),
		 url('../fonts/PT_Sans-webfont.svg#webfont6MwxiJev') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'PTSans';
	src: url('../fonts/PT_Sans_Bold-webfont.eot#') format('eot'),
		 url('../fonts/PT_Sans_Bold-webfont.woff') format('woff'),
		 url('../fonts/PT_Sans_Bold-webfont.ttf') format('truetype'),
		 url('../fonts/PT_Sans_Bold-webfont.svg#webfonttr1X6ZwX') format('svg');
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: 'PTSans';
	src: url('../fonts/PT_Sans_Italic-webfont.eot') format('eot'),
		 url('../fonts/PT_Sans_Italic-webfont.woff') format('woff'),
		 url('../fonts/PT_Sans_Italic-webfont.ttf') format('truetype'),
		 url('../fonts/PT_Sans_Italic-webfont.svg#webfontYtPqKeMF') format('svg');
	font-weight: normal;
	font-style: italic;
}

/* @end */


/*
  style.css contains a reset, font normalization and some base styles.

  credit is left where credit is due.
  additionally, 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, 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, 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/
   Please refer to developer.yahoo.com/yui/fonts/ 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, "Times New Roman", Times, serif; */
	font-family: 'PTSans', Arial, Helvetica, sans-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; }

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

td { 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"], input[type="image"], 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; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders
   www.webaim.org/techniques/css/invisiblecontent/
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.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 << j.mp/phayesclearfix */
.clearfix:after  {
	content: "\0020"; display: block; height: 0; clear: both; visibility: hidden;
}
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }



 /* Primary Styles
    Author: atnexxt, Thomas Krüger
 */

body {
	background: #fff url(../pics/bg-head.png) repeat-x;
	color: #5c5850;
/* 	font-family: Georgia, "Times New Roman", Times, serif; */

	position: relative;
}

a:link, a:visited {
	color: #b5152b;
}

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

.container {
	width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

nav {
	font-family: Georgia, "Times New Roman", Times, serif;
}

nav ul {
	margin: 0;
	padding: 0;
}

nav li {
	display: inline-block;
}

html.ie7 nav li {
	display: inline;
}

nav a {
	text-decoration: none;
	display: block;
}

/* @group Navigation - Top */

#nav-top {
	background: transparent;
}

#nav-top li.active, #nav-top a {
	background: #b5152b;
	color: #88857c;
	text-decoration: none;
}

#nav-top li.active {
	color: #fff;
	padding: 6px 14px 4px;
}

#nav-top a {
	display: block;
	background: transparent;
	padding: 6px 14px 4px;
}

#nav-top a:hover {
	color: #b5152b;
}

#menu-language a, #menu-language li.active, #menu-language li.deactivated {
	background: none;
	padding: 5px;
}

#menu-language li.active {
/* 	border: 1px solid #b5152b; */
}

#menu-language { float: left; }
#menu-service { float: right; }

/* @end */

/* @group Header (Logo) */

header {
	text-align: center;
	padding: 0;
}

header img { border: none; }

/* @end */

/* @group Navigation - Main */

#nav-main {
	font-size: 15px;
	margin: 0;
	padding-top: 10px;
	position: relative;
}

#nav-main .container {
/* 	background: #fff url(../pics/menu-line.png) 0 50% repeat-x; */
	overflow: hidden;
}

#nav-main ul {
	float: left;
	left: 50%;
	position: relative;
}

#nav-main li {
	display: block;
	float: left;
	margin: 0 10px;
	position: relative;
	right: 50%;
}

#nav-main a, #nav-main li.active {
	padding: 10px 10px 2px;
}

#nav-main li.active a { /* if 2nd menu level page */
	padding: 0;
}

#nav-main a:link, #nav-main a:visited {
	color: #5c5850;
	display: block;
}

#nav-main a:focus, #nav-main a:hover, #nav-main a:active {
	color: #b5152b;
	display: block;
}

#nav-main li.link {

}

#nav-main li.active {
	color: #b5152b;
	border-bottom: 5px solid #b5152b;
}

li.not-active {
	border-bottom: 5px solid transparent;
}

/* @end */

/* @group Main Content */

#main {
	background: #fff url('../pics/violin-silhouette.png') 95% 1px no-repeat;
	text-align: left;
	margin: -6px 0 30px;
	padding-top: 60px;
}


.main-content-alpha {
	float: left;
	width: 49%;
}
.main-content-beta {
	float: right;
	width: 48%;
	padding-top: 80px;
}

.text-narrow {
	width: 49%;
}

#page15 .main-content-alpha,
#page16 .main-content-alpha,
#page17 .main-content-alpha,
#page18 .main-content-alpha {
	width: 14%;
	padding-left: 10%;
	padding-top: 70px;
}

#page15 .main-content-beta,
#page16 .main-content-beta,
#page17 .main-content-beta,
#page18 .main-content-beta {
	width: 74%;
}

.main-content-beta .csc-default {
	clear: both;
}

.tx-imagecycle-pi1, .tx-imagecycle-pi1-images {
	margin-bottom: 20px;
}

/* @group nav instruments */
#menu-instruments li {
	color: #5c5850;
	display: block;
	font-variant: small-caps;
	font-size: 24px;
	list-style: none;
}

#menu-instruments li a:link, #menu-instruments li a:visited, #menu-instruments li.active {
	color: #5c5850;
	padding: 5px;
}

#menu-instruments li a:hover, #menu-instruments li a:active, #menu-instruments li a:focus {
	color: #000;
	padding: 5px;
	text-decoration: underline;
}

#menu-instruments li.active {
	color: #b5152b;
}
/* @end */

/* @group intruments listing */
li.instrument {
	border-bottom: 1px solid #eee;
	clear: both;
	list-style: none;
	margin-bottom: 20px;
}

li.instrument img {
	float: left;
	margin-right: 10px;
}

.instrument-info {
	margin-left: 50%;
}


/* @end */

/* @group Typography */

h1, h2 {
	color: #b5152b;
	font: small-caps normal 26px Georgia,"Times New Roman",Times,serif;
	margin-bottom: 15px;
}

h2 {
	color: #000;
	font-size: 18px;
	margin-top: 18px;
}

h3 {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}

p {
	margin-bottom: 18px;
}

.align-right { text-align: right; }
.align-center { text-align: center; }

blockquote, cite {
	font-style: italic;
}

div.csc-textpic-border div.csc-textpic-imagewrap .csc-textpic-image img,
div.csc-textpic-border div.csc-textpic-single-image img,
.tx-imagecycle-pi1-images,
.instrument img,
#map_canvas { /* shadow around images etc. */
	font-size: 11px;
	border: none;
	-moz-box-shadow: 3px 3px 4px #999;
	-webkit-box-shadow: 3px 3px 4px #999;
	box-shadow: 3px 3px 4px #999;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#999999')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#999999');
}


.csc-textpic-image {
	font-size: 11px;
	position: relative;
}

/*.tx-imagecycle-pi1-images span, div.csc-textpic div.csc-textpic-imagewrap .tx-imagecycle-pi1-images .csc-textpic-image*/
.csc-textpic-caption { /* caption */
	position: absolute;
	left: 0;
	bottom: 0;
	width: 96%; /* 'cause of shadow around image */
	padding: 5px;
	color: #fff;
	background: #000;
	opacity: 0.8;
	white-space: nowrap;
	display: block;
}


.text-align-right {
	text-align: right;
}

.main-content-beta .tx-imagecycle-pi1 {
	float: right;
}

/* @end */

/* @group powermail-kontaktform */
span.powermail_mandatory {
	/* Color of mandatory error message */
	color: #b5152b;
}
fieldset.tx-powermail-pi1_fieldset {
	/* Fieldset */
	border: 1px solid #aaa;
	padding: 10px;
	margin-top: 30px;
}

#kontakt fieldset.tx-powermail-pi1_fieldset label {
	/* label */
	display: block;
	float: none;
}

fieldset.tx-powermail-pi1_fieldset input.powermail_text,
fieldset.tx-powermail-pi1_fieldset select.powermail_select {
	/* Input and textarea */
	width: 180px;
}

.powermail_textarea {
	height: 180px;
	width: 280px;
}

fieldset.tx-powermail-pi1_fieldset div.tx_powermail_pi1_fieldwrap_html_radio input.powermail_radio {
	/* Radiobuttons */
	margin: 5px 0;
}
div.tx_powermail_pi1_fieldwrap_html {
	/* DIV container arround every field */
	margin: 20px 0;
}
fieldset.tx-powermail-pi1_fieldset input.powermail_submit {
	/* submit button */
	margin: 10px 0 10px 200px;
	font-weight: bold;
	color: white;
	background-color: #b5152b;
	padding: 3px 6px;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-box-shadow: 1px 0 1px #444;
	-webkit-box-shadow: 1px 0 1px #444;
}

#kontakt fieldset, #kontakt div.even {
	background: none;
}

div.tx_powermail_pi1_fieldwrap_html_submit {
	margin: 0;
}

fieldset.tx-powermail-pi1_fieldset_submit legend { display: none; }
#kontakt .tx-powermail-pi1_fieldset_submit {
	border: none;
	margin-top: 0;
}
#kontakt fieldset.tx-powermail-pi1_fieldset input.powermail_submit {
	margin-left: 0;
}


/* @end */

#page10 #map_canvas {
	float: right;
	margin-right: 12px;
}


/* @end */

/* @group Footer */

footer {
	background: #fff url(../pics/bg-footer.png) repeat-x;
	clear: both;
	color: #f7f7f7;
	font: 11px 'PTSans', Arial, Helvetica, sans-serif;
	padding-top: 20px;
	text-align: left;
}

footer .container {
	height: 200px;
	min-height: 200px;
}

footer p {
	background: transparent url(../pics/signet-schade-geigen-footer.png) no-repeat top left;
	padding: 20px 0 20px 60px;

}

/* @end */










/*
 * 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: #000 !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; }
}



/*
 * Media queries for responsive design
 */

@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; } */
}

.tx-powermail-pi1_fieldset_submit + input[type="text"] {
	display: none;
}
