/**
 * This stylsheet contains general formating information
 * which is layout-independant
 *
 * @ 11.02.2006
 */

@import url(color.css); 

@page {
   size: landscape;
}

* {
   font-family: Arial, Helvetica, sans-serif;
}
  
body {
   font-size: 11pt;
   color: #000000;

   background-color: #FFFFFF; 
   
   /* scrollbar settings */
   scrollbar-face-color: #F2F2F2;
   scrollbar-highlight-color: #F2F2F2;
   scrollbar-shadow-color: #F2F2F2;
   scrollbar-3dlight-color: #333333;
   scrollbar-arrow-color: #333333;
   scrollbar-track-color: #F2F2F2;
   scrollbar-darkshadow-color: #333333;   
}

td, th {
   font-size: 11pt;
}

table.ListTable td, table.ListTable th {
	vertical-align: top;
}

th {
   background-color: #333333;

   color: #FFFFFF;
   font-weight: bold;
   text-align: left;
}

img, input.image {
   border: none !important;
   vertical-align: middle;
}
 
a:link, a:visited, a:link:active, a:link:hover {
   text-decoration: none;
}

a:link:hover, a:visited:hover {
  text-decoration: underline overline; 
  background-color: #F2F2F2;
}

h4 {
	font-weight: bold;
	font-size: inherit;
	
	margin: 0;
	padding-top: 12px;
	margin-bottom: 8px;
}

p {
	padding: 0; margin: 0;
	margin-bottom: 12px;
	margin-top: 8px;
}

hr {
   height: 2px;
   border: none;
   margin-left: 0;
   margin-right: 0;
}

ul {
   margin: 0;
   padding: 0;
}

li {
   list-style-type: none;
   background-image: url(img/layout/bullet_active.gif);
   background-position: 2px 0.4em;
   background-repeat: no-repeat;
   padding-left: 15px;
   margin-top: 6px;
   margin-bottom: 6px;
}

small, .small {
   font-size: 10pt;
}

.highlighted {
   background-color: #333333;
   color: #FFFFFF;
}

.important {
	color: red;
}

.header {
   font-weight: bold;
}

pre, pre * {
   font-family: "Courier New", Courier, monospace;
}

/** form elements */
form {
   padding: 0 0 0 0;
   margin: 0 0 0 0;
   display: block;
}

input, select, textarea {
   font-size: 10pt;
}

input[type=text], input[type=password], select, textarea {
   background-color: #FFFFFF;
   border: 1px solid #333333;
   border-right-color: #999999;
   border-bottom-color: #999999;
}

input[type=text], input[type=password], textarea {
   padding: 1px;
}

select optgroup {
   background-color: #333333;
   color: #FFFFFF;
}

select optgroup option {
   background-color: #FFFFFF;
   color: #000000;
   padding-left: 10px;
}

input[type=text][disabled], input[type=password][disabled], select[disabled], textarea[disabled] {
   border: 1px solid #999999;
   background-color: #FFFFFF;
}

input.inputfocus, textarea.inputfocus, 
input[type=text]:focus, select:focus, textarea:focus {
   border: 1px solid #333333;
   background: url(img/layout/corner_small.gif) #F2F2F2 no-repeat bottom right;
}

input.Button, input.Button:focus,
button {
   background: url(img/layout/corner_small.gif) #F2F2F2 no-repeat bottom right;
   border: 2px solid #333333;
}

input.Button[disabled] {
   border: 2px solid #999999;
}

textarea {
//   overflow: auto; /** makes scrollbar invisible if not needed (ie hack) */
}

