/* Start of CMSMS style sheet 'PS_Standard' */
/*****************
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;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

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

/*
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 {
 
   background-color: inherit;
  color: #47b9e9;
text-decoration: none;
}
   
a:active {
 
/* 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 */
   
   color: #47b9e9; 
   text-decoration: none;
}

a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #47b9e9;                /* a different color can be used for visited links */
}
a:hover {
   text-decoration: underline;
   background-color: inherit;
  color: #47b9e9;                /* a different color can be used for visited links */
}



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

/*****************
basic layout 
*****************/
body {
   background-color: #f0f0f0;
   color: #333;
}

/* center wrapper, min max width */
div#pagewrapper {
	position: relative;
   margin: 0 auto;       /* this centers wrapper */  
   background-color: #f0f0f0; /* Hintergrundfarbe Contentbereich */
   width: 980px;
   }


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   height: 122px;    /* adjust according your image size */
   width: 980px;
   background: url(uploads/thema_ps/headerpic.jpg) no-repeat;           
}

/* position for the flags */

div#flags {
padding-left: 880px;
padding-top: 5px;
height: 27px; 
}

div#header h1{
	width: 270px;
}

div#header h1 a {
/* you can set your own image here */ 
   height: 90px;             /* adjust according your image size */
   width: 270px;
   display: block;
   text-indent: -9999em;  /* this hides the text */
   margin: 0;
	padding: 0;
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#header2 {
     width: 27em;    /* enough width for the search input box */
     text-align: left;
     font-size: 10px;
     color: #666;
	position: absolute;
	top: 55px;
	left: 280px;
}

div#header2 a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-decoration: none;
}
div#header2 a:active {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-decoration: none;
}
div#header2 a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-decoration: none;
}
div#header2 a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-decoration: underline;
}



div#sidebar {
   float: left;
   width: 255px; 
   background-color: #fff;
   padding-top:30px;

}

/* position for the search box */
    div#search {
     
     text-align: left;
     padding-left: 15px;
     padding-top:10px;
     background-color: #fff;
}
  


   div#search1 {
    
     text-align: left;
     padding-left: 5px;
     padding-top:10px;
     background-color: #f0f0f0;
     background: url(uploads/thema_ps/navischatten.jpg) no-repeat;
     background-position:bottom;
     background-position:left;     
}

div#search label {
	text-indent: -9999em;
	height: 0pt;
	width: 0pt;
	display: none;
}

div#search input.search-input {
/* specific size for image, your image may need these adjusted */
	width: 170px;
	height: 18px;
/* removes default borders, allows use of image */
	border-style: none;
/* text color */
	color: #47b9e9;
/* padding of text */
	padding: 1px 0px 10px 5px;
	float: left;
/* set all font properties at once, weight, size, family */
	font: bold 0.9em Arial, Helvetica, sans-serif;
/* left input image, set your own here */
	background: url(uploads/thema_ps/bg_search.jpg) no-repeat left top;
}

div#search input.search-button {
/* specific size for image, your image may need these adjusted */

        width: 25px;
	height: 28px;
/* removes default borders, allows use of image */
	border-style: none;
/* hides text, image has text */
	text-indent: -9999em;

/* provides positive hover effect */
	cursor: pointer;
/* removes default size/height */
	font-size: 0px;
	line-height: 0px;
/* submit button image, set your own here */
	background: url(uploads/thema_ps/search_button.jpg) no-repeat right top;
}
 div#content {
   margin: 0px  0em 0;  /* some air above and under menu and content */
}


div#main {
	float: left;
	width: 675px;
   	background-color:#fff;
	padding-top:10px;
	padding-left: 30px;
	padding-right: 20px;
	min-height:730px;
}




div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #333333;
   background-color: #f0f0f0; /* same bg color as in header */
        padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
        margin-left: 255px;
        border-top:1px dashed #666;
}
div#footer a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-decoration: none;
}
div#footer a:active {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-decoration: none;
}
div#footer a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-decoration: none;
}
div#footer a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-decoration: underline;
}
div#footer p {
   font-size: 0.5em;
   padding: 1.5em;      /* some air for footer */
   text-align: center; /* centered text */
   margin: 0;
}

div#footer p a {
   color: #000; /* needed becouse footer link would be same color as background otherwise */
}



div#footerps {
        padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 15px;
        margin-left: 255px;
        
       
}
div#footerps a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-decoration: none;
}
div#footerps a:active {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-decoration: none;
}
div#footerps a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-decoration: none;
}
div#footerps a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-decoration: underline;
}
div#footerps p {
   font-size: 0.5em;
   padding: 1.5em;      /* some air for footer */
   text-align: center; /* centered text */
   margin: 0;
}

div#footerps p a {
   color: #000; /* needed becouse footer link would be same color as background otherwise */
}


div#footer1 {
 
   color: #333333;
   height: 142px;
   background: url(uploads/thema_ps/footerpic.jpg) no-repeat ;
   background-position: right;
}





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

/* relational links under content */
div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
        
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;

}

div.left50 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
        
}

div.right50 {
  float: right;
  width: 49%;
  text-align: right;

}




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

}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
	color: #af101d; 
	font-size: 1.2em; 
	text-align: left; 
/* some air around the text */
	padding-left: 0em;
	padding-bottom: 1px;
/* set borders around header */
	border-bottom: 1px dashed  #e5e5e5; 
	border-left: 0.0em solid #e5e5e5; 
        line-height: 1.5em;
/* and some air under the border */
        margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #af101d; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #666; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #294B5F; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #294B5F; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h7 {
  text-decoration:none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   padding: 0.4em 0.2em 0.1em 0.2em; /* some air for it */
   color: #333333; /* this will be link color for all levels */ 
   font-size: 1.5em; 
   text-align: left;
   min-height:1em; /* Fixes IE7 whitespace bug */ 
   text-indent: 18px; 
   background-color: #fce6c4;
   border: solid 1px #f6b754;
}

/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.4em;
   padding: 0;
}

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;
}

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

/* 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;
}
 div#call { 

	right:1px;
	top:40%;
	height:86px;
	width:20px;
	margin:0;
	padding:0;
	position:fixed;
}

/* Der IE6 kennt kein position: fixed! */
* html div#call{
	position: absolute;
	right: -36px;
	top: 32px;
}





/* END LISTS */
/* End of 'PS_Standard' */

