@charset "utf-8";
body  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	background-color:#99F;
/*	background: #69F url('../img/bg.png') fixed top left repeat-x;*/
	margin: 20px 0px 20px 0px;
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

img
{
	border: none;
}

a:link, a:visited{
  font-color:black;
  text-decoration:none;
  font-size:13px;
}
a:hover, a:active{
  text-decoration:none;
}

input[type=text], input[type=password]{
  background-color:#FFF;
  border:1px solid #333;
  font-family: Tahoma, Verdana, Arial, sans serif;
  padding:2px;
}

input[type=submit], input[type=button]{
  font-family: Tahoma, Verdana, Arial, sans serif;
  padding:2px;
  font-weight:bold;
  font-size:11px;
  border:0;
  background:none;
  width:150px;
  height:25px;
  background-repeat:no-repeat;
  background-color:transparent;
  background-image:url('../img/buttons/button.png');  
}

input[type=submit].plain, input[type=button].plain{
  font-family: Tahoma, Verdana, Arial, sans serif;
  padding: 0px;
  margin: 2px 0px 2px 0px;
  font-weight:normal;
  font-size:11px;
  color: blue;
  border: 2px solid #BBF;
  height:auto;
  width:auto;
  background-repeat:no-repeat;
  background-color:transparent; 
}      
/* HEADER */
#header{
  height:29px;
  padding:0px 0px 0px 0px;
}
#logo{
  width:960px;
}
a.toplink:link, a.toplink:visited{
  /*width:115px;*/
  height:20px;
  color:#039;
  text-decoration: underline;
  display:block;
  margin:0;
  text-align:center;
  padding: 2px 15px 0px 15px;
  float:right;
  font-weight:bold;
}
a.toplink:hover, a.toplink:active, a.cur_tab{
  color: #FFF;
  background:#039;
  text-decoration: none;
}

/* SIDEMENU */

.sidemenu a:link, a:visited{
  color: #06C;
}

.sidemenu a:hover, a:active{
  color:#039;
}

a.sublink:link, a.sublink:visited{
  color: #06C;
  margin-left:16px;
}

a.sublink:hover, a.sublink:active{
  color: #039;
}

div.sidemenu{
  width: 180px;
  margin-left:8px;
  margin-right:8px;
  padding:4px 8px 4px 8px;
/*  background-color:#EEE;
  border:1px solid #039;*/

}

div.squarewhite{
  float: left;
  width: 45px;
  height: 45px;
  background:#F4F4FF;
}

div.squareblack{
  float: left;
  width: 45px;
  height: 45px;
  background:#56A;
}

/*h4.sidetitle{
  font-size:14px;
  font-weight:bold;
  color:#039;
  border-bottom:1px solid #039;
  margin:0px 0px 8px 0px;
}*/

/* LAY-OUT */

.thrColFixHdr #container { 
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	border:1px solid #039;
} 
.thrColFixHdr #header { 
	background: #FFF; 
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.thrColFixHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 167px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 0px 0px; /* padding keeps the content of the div away from the edges */
	margin-left:-16px;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 171px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 16px 15px 20px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #mainContent { 
	margin: 0 auto; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 570px;
	min-height: 400px;
} 
.thrColFixHdr #footer { 
	text-align:center;
	background-color:#039;
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.thrColFixHdr #footer p {
	color:#FFF;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 3px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.thrColFixHdr #footer a {
	color: #O39;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
div.row
{
	overflow: hidden;
	width: 95%;
}
div.row_cell
{
	float: left;
}
h2{
	color:#039;
	margin-left:20px;
}
h3{
	color:#039;
}
.vak{
	border:1px solid #039;
	background-color:#EEF;
	padding:5px;
}
.page input[type=text]{
	font-size:24px;
	font-weight:bold;
	border:none;
	color:#039;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.page textarea{
	border:0;
	width:480px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	height:250px;	
}
.page span.info{
	font-style:italic;	
	font-size:11px;
	color:#999;
}

.news p
{
	margin: 0; 
	padding: 0;
}

p.caption{
	text-align:center;
	font-style:italic;
}

p.error, p.good, p.info{
	display:block;
	width:480px;
	text-align:center;
	padding:3px 3px 3px 3px;
	margin-left: auto;
	margin-right: auto;
}
p.error{
	border:1px solid #C00;
	background-color:#FCC;
}
p.good{
	border:1px solid #0C0;
	background-color:#C5F0BD;
}
p.info{
	border:1px solid #039;
	background-color:#DDF;
}
a.error:visited, a.error:link, a.error:active{
	color:#F00;
}

a.good:visited, a.good:link, a.good:active{
	color:#090;
	background-color:#C5F0BD;
}	

h4.title, h4.sidetitle{
	color:#039;
	border-bottom:1px solid #039;
	margin:0px 0px 10px 0px;
	background-color:#DDF;
	padding:2px 12px;
	font-size:13px;
}
td.title{
	color:#039;
	border-bottom:1px solid #039;
	background-color:#DDF;
	font-weight:bold;
}
div.title
{	
	color:#039;
	border-bottom:1px solid #039;
	background-color:#DDF;
	font-weight:bold;
	padding:2px 6px;
	font-size:13px;
}

.attachment
{
	color:#039;
	margin:-10px 0px 10px 0px;
	background-color:#EEEEEE;
	padding:2px 12px;
	font-size:13px;
}

.profile_data{
	width:150px;
	font-weight:bold;
}

.title, .title a:link, .title a:active, .title a:visited{
	color:#039;
}
.thumbs td{
	width:100px;
}
p.admin_panel{		
	background-color:#EEE;
	margin:10px 0px 0px 0px;
	padding:4px 8px;
	color:#000;
	font-size:13px;
}
p.admin_panel a{
	color:#900;
}
.sideinfo{
	font-size:10px;
	font-style:italic;
	text-align:right;
}

a.btn{
	display: block-inline;
	padding: 2px 10px;
	background-color:#930;
	border: 1px outset #000;
	color:#FFF;
	font-weight:bold;
	text-decoration:none;
}
ul{
	list-style-position:outside;
	list-style-image:none;
	list-style-type:none;

	text-transform: none;
	padding: 6px;
	margin: 2px;
}
div.menubar{
	height:27px;
	margin-bottom:5px;
	width:480px;
	background-color:#DDD;
}
#colorbar{
	z-index:1000;
	border:1px solid black;
	height:198px;
	width:295px;
	position:absolute;
	margin:-5px 0px 0px 100px;
	background-color:#FFF;
}
#colorbar a:hover, #colorbar a:active, #colorbar a:link, #colorbar a:visited{
	display:block;
	width:10px;
	height:10px;
	padding:0px;	
	float:left;
	border:1px solid gray;
	margin:0px 0px;
	text-decoration:none;	
}
.menubar a:hover, .menubar a:active, .menubar a:link, .menubar a:visited{
	display:block;
	width:20px;
	height:20px;
	padding:0px;
	margin:3px;
	float:left;
	border:1px solid transparent;
}
.menubar a:hover, .menubar a:active{
	background-color:#FF9;
	border:1px solid black;	
}
#imagebar{
	z-index:1000;
	border:1px solid black;
	height:260px;
	width:510px;
	position:absolute;
	margin:-5px 0px 0px 10px;
	background-color:#FFF;
	overflow:auto;
	margin-bottom:10px;
}
.agendaitem{
	border-left:3px solid #FF6;
	background-repeat:repeat-x;
	padding:3px 5px;
	cursor:pointer;
	height:50px;
}

/* Form */

.record
{
	overflow: hidden;
}

.record_name, .record_name_required
{
	padding-left: 20px;
	padding-top: 3px;
	float: left;
	width: 130px;
}

.record_name_required
{
	font-weight: bold;
}

.record_input
{

}

/* MessageCenter */

div.message_container
{
	overflow: hidden;
	width: 100%;
}

div.message_left
{
	float: left; 
	width: 70px;
}

div.message_right
{
	margin: 3px;
	padding-left: 10px;
	float: right;
	width: 82%;
}

div.message
{
	min-height: 40px;
}

div.message_title
{
	font-size: 10px;
}

div.message_actions
{
	float: right;
	margin-top: -2px;
}