/* BASIC RESET */
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input{margin:0; padding:0;}

/* HTML ELEMENTS */
h1 { font-family:"Lucida Grande","Lucida Sans Unicode",Helvetica,Arial,Verdana,sans-serif; text-align: center; color: #000; font-size:48px; letter-spacing:-1px; }
h1 small{ font-size: 24px; display: block; color: #4479BA; }
h1 a { font-family:"Lucida Grande","Lucida Sans Unicode",Helvetica,Arial,Verdana,sans-serif; text-align: center; color: #000; font-size:48px; letter-spacing:-1px; text-decoration:none; border:none; outline:none; }

h2 {
	font-family: "Lucida Grande","Lucida Sans Unicode",Helvetica,Arial,Verdana,sans-serif;
	font-size: 12pt;
	padding-top: 0px;
	padding-bottom: 0px;
}

h3 {
	font-family: "Lucida Grande","Lucida Sans Unicode",Helvetica,Arial,Verdana,sans-serif;
	font-size: 16pt;
	padding-top: 0px;
	padding-bottom: 0px;
    color: #4479BA;
}

/* COMMON CLASSES */
.break { clear:both; }

/* Background Image */
#BackgroundImage {
    background-color:rgb(230,230,230);
    width: 100%; 
    height: 100%; 
    position: fixed; 
    left: 0px; 
    top: 0px; 
    z-index: -1; /* Ensure div tag stays behind content; -999 might work, too. */
}

.stretch {
    width:100%;
    height:100%;
}


/* WRAPPER */
#wrapper { width:642px; margin:25px auto;
    height: 111px;
}

/* CONTENT */
#navbar { margin-top:-10px; }
#navbar p { font: 14px "Lucida Grande","Lucida Sans Unicode",Helvetica,Arial,Verdana,sans-serif; color:#333333; line-height:18px; margin:15px auto; width:630px; }
#navbar p a { color:#0088CC; text-decoration:none; }
#navbar p a:hover { text-decoration:underline; }


/* APPLE STYLE NAVIGATION MENU */
#appleNav { margin:40px 0; list-style:none; 

    /* Lucinda Grande is the font used on the website from Apple. */
    font-family: "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, Helvetica, sans-serif; letter-spacing:-0.5px; font-size:13px;
    
    /* Apply a subtle text-shadow to the text */
    text-shadow: 0 -1px 3px #202020;

    /* We want to add the shadow to the complete navigation menu. In order to do that, we'll need to set
    the correct width and height, and also the correct borders, in order to create the perfect drop shadow */
    width:641px; 
    height:34px;
    
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    border-radius:4px;
    
    -moz-box-shadow: 0px 3px 3px #cecece;
    -webkit-box-shadow: 0px 3px 3px #cecece;
    box-shadow: 0 3px 4px #8b8b8b;
}

#appleNav li { display:block; float:left; border-right:1px solid #5d5d5d; border-left:1px solid #929292; width:105px; height:34px; border-bottom:1px solid #575757; border-top:1px solid #797979; 

    /* Gradient backgrounds for the buttons. Generated using http://gradients.glrzad.com/ */
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #787878), color-stop(0.5, #5E5E5E), color-stop(0.51, #707070), color-stop(1, #838383));
    background-image: -moz-linear-gradient(center bottom, #787878 0%, #5E5E5E 50%, #707070 51%, #838383 100%);
    background-color:#5f5f5f; /* Fallback */
}

/* Set the states when hovering */
#appleNav li:hover {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3F3F3F), color-stop(0.5, #383838), color-stop(0.51, #434343), color-stop(1, #555555));
    background-image: -moz-linear-gradient(center bottom, #3F3F3F 0%, #383838 50%, #434343 51%, #555555 100% );
    background-color:#383838; /* Fallback */
    
    /* We use the inset of the box shadow to create a subtle inner glow when hovering */
    -moz-box-shadow: inset 0 0 5px 5px #535353;
    -webkit-box-shadow: inset 0 0 5px 5px #535353;
    box-shadow: inset 0 0 5px 5px #535353;
}

/* When the user clicks the button, we simply change the box inset (compared to the "hover") */
#appleNav li:active {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3F3F3F), color-stop(0.5, #383838), color-stop(0.51, #434343), color-stop(1, #555555));
    background-image: -moz-linear-gradient(center bottom, #3F3F3F 0%, #383838 50%, #434343 51%, #555555 100% );
    background-color:#383838; /* Fallback */
    
    -moz-box-shadow: inset 0 1px 2px 2px #000;
    -webkit-box-shadow: inset 0 1px 2px 2px #000;
    box-shadow: inset 0 1px 2px 2px #000;
}

#appleNav li a { color:white; text-decoration:none; text-align:center; display:block; line-height:34px; outline:none; cursor:pointer; }

/* Rounded corner for the first in last item. Shorthand: Top left, Top right, Bottom right, Bottom left.
We also remove the borders, since they don't need them. */
#appleNav li:first-child {
    -moz-border-radius:4px 0 0 4px;
    -webkit-border-radius:4px 0 0 4px;
    border-radius:4px 0 0 4px;
    
    border-left:none;
}

/* The first child image - the logo - has to be centered. Because of the image dimensions, we manually need to shift it a bit. */
#appleNav li:first-child a img {
   vertical-align:middle; margin-top:-2px;
}

#appleNav li:last-child {
    -moz-border-radius:0 4px 4px 0;
    -webkit-border-radius:0 4px 4px 0;
    border-radius:0 4px 4px 0;
    
    border-right:none;
}

/* Fade in animation (Webkit only) */
@-webkit-keyframes showMenu {
    from { opacity: 0; top:-20px; }
    to   { opacity: 1; }
}

#appleNav {
     -webkit-animation: showMenu 1s; position:relative;
    top: 0px;
    left: 0px;
}


/* TABLE */
#table {width:642px; height: 550px; margin:0px auto 0px auto;}

#table_spc {width:642px; height: 6px; margin:0px;}

#table_td_left {width:632px; height:544px; margin:0px auto 0px auto;}
#tableinnerleft_navigation {width:636px; height:25px;margin:0px auto 0px auto;}
#tableinnerleft_navigation_space {width:22px;height:25px;margin:0px auto 0px auto;}
#tableinnerleft_navigation_left {width:33px;height:25px;margin:0px auto 0px auto;}
#tableinnerleft_navigation_middle {width:556px;height:25px;margin:0px auto 0px auto;text-align:center;padding-right:15px;}
#tableinnerleft_navigation_right {width:25px;height:25px;margin:0px auto 0px auto;}
#tableinnerleft_content {width:632px; height:513px;margin:6px auto 0px auto;}
#tableinnerleft_contentText {vertical-align:top; padding-left:10px; padding-right:10px; padding-top:10px; padding-bottom:10px;}
.FixedHeightContainerLeft{ float:right; height: 518px; width:612px; padding:0px; }
.ContentLeft{ height:518px; overflow:auto; padding:0px;}

#table_td_right {width:232px; height:550px; margin:0px auto 0px auto;}
#tableinnerright_content {width:232px; height:550px; margin:0px auto 0px auto;}
#tableinnerright_header {width:232px; height:30px; margin:0px auto 0px auto; text-align:center;}
#tableinnerright_contentText {vertical-align:top; padding-left:14px; padding-right:10px; padding-top:0px; padding-bottom:10px;}
.FixedHeightContainerRight{ float:right; height: 500px; width:212px; padding-top:0px; padding-left:10px; padding-right:10px; padding-bottom:10px; }
.ContentRight{ height:500px; overflow:auto; }

/* Elemente ein oder ausblenden */
.hidden { visibility: hidden; }
.unhidden { visibility: visible; } 

/*
To set something transparent in nearly any browser add class="transparent" to the element you want transparent. 
This code makes an element 50% transparent.
*/
.transparent50 {
   zoom: 1; /* gives the object layout */
   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
   filter: alpha(opacity=50);
   -moz-opacity: 0.5;
   -khtml-opacity: 0.5;
   opacity: 0.5;
 } 
.transparent100 {
   zoom: 1; /* gives the object layout */
   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   -moz-opacity: 0;
   -khtml-opacity: 0;
   opacity: 0;
 } 
.transparent75 {
   zoom: 1; /* gives the object layout */
   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
   filter: alpha(opacity=75);
   -moz-opacity: 0.75;
   -khtml-opacity: 0.75;
   opacity: 0.75;
 } 
.transparent0 {
   zoom: 1; /* gives the object layout */
   -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   -moz-opacity: 1;
   -khtml-opacity: 1;
   opacity: 1;
 } 

.boxbg { background-color:#ccc; }
.all-round {
    border-radius: 1em;
    -moz-border-radius: 1em;
    -webkit-border-radius: 1em;
}

.box_left_navigation{
	background-color:#ccc;
	cursor:default;
	position:relative;
	transition: all 0.7s linear;
	-webkit-transition: all 0.7s linear;
	-moz-transition: all 0.7s linear;
	-o-transition: all 0.7s linear;
	-ms-transition: all 0.7s linear;
}

.box_left_content{
	background-color:#ccc;
	cursor:default;
	position:relative;
	transition: all 0.7s linear;
	-webkit-transition: all 0.7s linear;
	-moz-transition: all 0.7s linear;
	-o-transition: all 0.7s linear;
	-ms-transition: all 0.7s linear;
}

.box_right_content{
	background-color:#ccc;
	cursor:default;
	position:relative;
	transition: all 0.7s linear;
	-webkit-transition: all 0.7s linear;
	-moz-transition: all 0.7s linear;
	-o-transition: all 0.7s linear;
	-ms-transition: all 0.7s linear;
}

.move_down:hover{ top:30px; }

/* global variables */
#gloVariables {width:642px; height: 25px; margin:10px auto 0px auto; visibility:hidden}


/* Hover Buttons */
.button-link {
    background: #4479BA;
    color: #FFF;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: solid 1px #20538D;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    height: 18px;
    width: 18px;
    vertical-align:top;
}
.button-link:hover {
    background: #356094;
    border: solid 1px #2A4E77;
    text-decoration: none;
}
.button-link:active {
    -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
    background: #2E5481;
    border: solid 1px #203E5F;
}

 p.MsoNormal
	{margin-top:0cm;
	margin-right:0cm;
	margin-bottom:10.0pt;
	margin-left:0cm;
	line-height:115%;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	}
p.MsoListParagraphCxSpFirst
	{margin-top:0cm;
	margin-right:0cm;
	margin-bottom:0cm;
	margin-left:36.0pt;
	margin-bottom:.0001pt;
	line-height:115%;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	}
p.MsoListParagraphCxSpMiddle
	{margin-top:0cm;
	margin-right:0cm;
	margin-bottom:0cm;
	margin-left:36.0pt;
	margin-bottom:.0001pt;
	line-height:115%;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	}
p.MsoListParagraphCxSpLast
	{margin-top:0cm;
	margin-right:0cm;
	margin-bottom:10.0pt;
	margin-left:36.0pt;
	line-height:115%;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	}

#tablecontent {width:600px; margin:0px auto 0px auto; font-size:11.0pt; font-family:"Calibri","sans-serif";}
#tablecontentleft {width:53px;margin:0px auto 0px auto; vertical-align:top; text-align:center;}
#tablecontentright {width:504px;margin:0px auto 0px auto;text-align:left;padding-right:15px; vertical-align:top;}

#tableVita {width:580px; margin:0px auto 0px auto; font-size:11.0pt; font-family:"Calibri","sans-serif";}
#tableVitaR1Left {width:580px;margin:0px auto 0px auto; vertical-align:top; text-align:left;}
#tableVitaR1Right {margin:0px auto 0px auto; vertical-align:top;text-align:right;}
#tableVitaHeader
{
	font-family: "Lucida Grande","Lucida Sans Unicode",Helvetica,Arial,Verdana,sans-serif;
	font-size: 16pt;
	padding-top: 0px;
	padding-bottom: 0px;
    color: #4479BA;
}
#tableVitaR1ContentLeft {width:53px;margin:0px auto 0px auto; vertical-align:top; text-align:center;}
#tableVitaR1ContentRight {width:351px;margin:0px auto 0px auto;text-align:left; vertical-align:top;}
#tableVitaR2ContentLeft {width:100px; margin:0px auto 0px auto; vertical-align:top; text-align:left;}
#tableVitaR2ContentRight {width:457px; margin:0px auto 0px auto;text-align:left; vertical-align:top;}
