/*
// File written by Jochen "Khuri" Höhmann <khuri@khuris.com>
// Copyright 2010
//
// File        : shared.css
// Begin       : 2010.01.16 13:01:01
// Last Update : 2010.02.25 20:18:29
*/

/* This file contains basic definitions and those shared by the user and admin page */

*.doprint {
	visibility: hidden;
	display: none;
}
*.goleft {float: left !important;}
*.goright {float: right !important;}
*.markred {background-color: #FFAAAA !important;}
*.textred {color: #f00 !important;}
*.textgreen {color: #0f0 !important;}
*.noborder {border: 0px none !important;}
*.nobg {background: none !important;}
*.pointer {cursor: pointer !important;}
*.hidden {visibility: hidden; display: none;}
*.visible {visibility: visible; display: block;}
*.block {display: block;}
*.clear {clear: both;}
*.font_courier {font-family: Courier New, Courier, sans-serif;}

/* Status box */
#statusbox {
	padding: 10px;
	width: 400px;
	font-weight: bold;
	position: fixed;
	top: 200px;
	left: 50%;
	margin-left: -220px;
	text-align: left;
	z-Index: 1000;
}
#statusbox.error,#statusbox.ok {
	border: 10px solid red;
	background-color: #FFE4E1;
	color: red;
}
#statusbox.ok {
	border: 10px solid green;
	background-color: #C0E6C0;
	color: green;
}
#statusbox.ok fieldset,#statusbox.error fieldset {
	min-height: 60px;
	padding: 6px;
	border: 1px solid green;
}
#statusbox.error fieldset {
	border: 1px solid red;
}
#statusbox span {
	font-size: 9px;
	font-weight: normal;
}

/* Calendar styles */
div.calendarbox {
	position: relative;
	top: 0px;
	left: 4px;
	display: none;
	border: 1px solid #A9A9A9;
	background-color: #D3D3D3;
	width: 180px;
	z-index: 100;
}
table.calendar {
	text-align: center;
	cursor: default;
}
table.calendar td {
	width: 26px;
	background-color: #EBEBEB;
}
table.calendar td:hover {
	background-color: #D2DCFF;
	cursor: pointer;
}
table.calendar td.inactive,table.calendar td.inactive:hover {
	cursor: default;
	background-color: #EBEBEB;
}
table.calendar th.switch {
	background-color: #FFF;
	cursor: pointer;
}
table.calendar button.set {
	background-color: #EEE;
	border: 1px solid #c3c3c3;
	cursor: pointer;
	width: 100%;
}
table.calendar td.today {
	font-weight: bold;
}
table.calendar td.markday {
	background-color: #FFB6C1;
}
table.calendar td.sunday {
	color: #F08080;
}
table.calendar span {
	font-family: Courier;
	font-weight: normal;
	background-color: #eee;
	padding: 0px 2px;
}