/* Start of CMSMS style sheet 'Layout: EDVService' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
font-family: Verdana, Arial, Helvetica, sans-serif;
}

/*

Set initial font styles
*/
body {
   text-align: left;
   font-size: 8pt;
   border-collapse: collapse;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

input,select {
   color: #111;
   border: 1px solid #BBB;
   font-size: 8pt;
   margin:0;
   padding:0;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
   border-bottom: 1px dotted #010288;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #010288; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
   border-bottom: 1px dotted #000170;
  color: #000170;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
}

/*****************
basic layout 
*****************/
body {
   background-color: AppWorkspace;
   color: #000;
   margin: 10px 0;    /* gives some air for the pagewrapper */
}

div#pagewrapper {
   margin: 0 auto;
   padding: 0;
   width: 780px;
   color: black;
   border-top: 1px solid Black;
   border-right: 1px solid Black;
   border-bottom: 1px solid Black;
   background: AppWorkspace url(images/edvservice/menu2.png) repeat-y 0 0;
}


/* Head */

div#header {
   border-left: 1px solid Black;
   background-color: #FFF;
   padding: 6px 0 6px 6px;
   height: 107px;
}

div#header h1 a {
   display: none;
   text-indent: -999em;  /* this hides the text */
   text-decoration:none;
   border: none;
}

div#header a#logo {
   border: none;
   float: left;
}

div#header a#abrevis {
   border: none;
   margin-top: 40px;
   float: left;
}

td#kontakt {
   color: #666;
   text-align: right;
   display: table-cell;
   vertical-align: middle;
   padding-left: 1em;
   border-left: 1px dotted #666;
   height: 97px;
}

td#kontakt a {
   color: #666;
   border-bottom: 1px dotted #666;
}

td#news {
   color: #666;
   text-align: right;
   display: table-cell;
   vertical-align: middle;
   padding-right: 1em;
}

td#news a {
   color: #666;
   border-bottom: 1px dotted #666;
}

tr#bar {
   height: 97px;
}

table#barwrapper {
   display: table-row;
   float: right;
   display: table;
   margin: 4px 1em 4px 0;
}

div.breadcrumbs {
   font-size: 90%;
   margin: 0 1em;
   padding: 0.5em;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

div#main {
   margin: 0 0 0 205px;
   padding: 0;
}

div#main div#text{
   margin: 1em 2em 0 2em;
   background-color: #FFF;
}

div#sidebar {
   float: left;
   width: 189px;
   padding: 1em 0 0 15px;
   color: #FFF;
   border-top: 1px solid black;
   margin: 0;
   overflow: visible;
}

div#footerbox {
   clear: both;
   background-color: #FFF;
   border-left: 1px solid black;
}

div#footer {
   padding: 1.5em;
   color: #000;
   font-size: 90%;
}

div#footer p {
   color: #444;
   text-align: left;  /* centered text */
   margin: 0;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 1em 0 1em 0;
   border-bottom: 1px dotted black;
   margin: 1em 0 1em 0;
}

div.sideborder {
   height:1px;
   width: 203px;
   margin:0;
   padding:0;
   background-color: Black;
}

div#imageFade {
   width: 575px;
   height: 245px;
   display:block;
   /*background: white url(images/edvservice/test2.jpg) no-repeat 0 0;*/
}

div#banner {
  width: 575px;
  height: 122px;
  display: block;
  margin-top: -1px;
}

div#imageFade img {
   width: 575px;
   height: 245px;
   display: none;
   position: absolute;
}

/********************
CONTENT STYLING
*********************/
div#content {
}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}

div#text ul {
   list-style-position: inside;
}

div#text ul li {
   padding-left: 3em;
}

div#content h2 {
	font-size: 1.5em; 
	text-align: left; 
/* some air around the text */
	margin: 1em 0 0.5em 0;
}
div#content h3 {
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 1em 0 0.5em 0;
}
div#content h4 {
   font-size: 1.2em;
   line-height: 1.2em;
   margin: 1em 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   line-height: 1.4em;
   padding: 0;
   margin: 0 0 0.5em 0.5em;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

table#partnertab td { padding: 10px;}

table#partnertab a { border: none; }

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0 0 1.5em 0;
}

div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 0;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* END LISTS */
/* End of 'Layout: EDVService' */

