@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS framework
 * (en) central stylesheet
 * (de) zentrales Stylesheet
 *
 * @creator       YAML Builder V1.2b (http://builder.yaml.de)
 * @file          my_layout.css
 * @-yaml-minver  3.1
 * 
 */

/* import core styles | Basis-Stylesheets einbinden */
@import url(../css/core/base.css);

/* import screen layout | Screen-Layout einbinden */
@import url(../css/nav_shinybuttons.css);
@import url(../css/nav_vlist.css);
@import url(../css/screen/basemod.css);
@import url(../css/screen/content.css);

/* import print layout | Druck-Layout einbinden */
@import url(../yaml/print/print_draft.css);

/* intrapage tab navigation; e.g. used on tabbed plan pages */
/* $Id: example.css,v 1.4 2008/04/19 10:04:09 joyce Exp $ */

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberlive .tabbertabhide
 {

  background-repeat:repeat-x;
  display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber {
}
.tabberlive {
 margin-top:5px;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0;
 padding: 0px 0;
 border-bottom: 1px solid #8ba9a3;
 font: normal 12px Arial, Helvetica, sans-serif;
 


}

ul.tabbernav li
{
 list-style: none;
 margin: 1;

 background-repeat:repeat-x;
 display: inline;
 
}

ul.tabbernav li a
{
 padding: 3px 10px;
 margin-left: -10px;
 border: 1px solid #999999;
 background-color:#1e398d;
 margin-right:2px;


 border-bottom: none;
 /*background: #DDE;*/
 text-decoration: none;
}

ul.tabbernav li a:link { color: #fff; }
ul.tabbernav li a:visited { color: #1e398d; }

ul.tabbernav li a:hover
{
 color: #676767;
 /*background: #AAE;*/

 background-repeat:repeat;
 border-color: #c6c6c6;
 color:#1e398d;
 background-color:#fff;
}

ul.tabbernav li.tabberactive a
{
/* background-color: #fff;*/

 background-repeat:repeat-x;
 border-bottom: 1px solid #fff;
 background-color:#FFFFFF;
 color:#1e398d;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #000;
 background: white;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 padding:20px 0 20px 0;

 border-top:0;
 background-repeat:repeat;


 /*height:130px;*/


 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 /* height:200px; */

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

 /* overflow:auto; */
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h1 {
display:block;
font-family:arial, "Times New Roman", Times, serif;
	color:#fff;
	font-size:1.1em;
	line-height:20px;
	margin: 3px 0px 0px 0px;
	padding: 0 0 25px 0;
	
}

.tabberlive .tabbertab h2 {
display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
height:300px;
}
.tabberlive#tab2 {
height:300px;
}
.tabberlive#tab2 .tabbertab {
 height:300px;
 overflow:auto;

}

