/* DISPLAY */
.hidden {
	display: none !important;
}
.invisible {
	visibility: hidden !important;
}
.clear {
	clear: both;
}
.pointer {
	cursor: pointer;	
}
.bb, .borderbox {
	box-sizing: border-box; /* css3 rec */
	behavior: url("boxsizing.htc"); /* ie6/7 */
	-ms-box-sizing: border-box; /* ie8 */
	-moz-box-sizing: border-box; /* ff2+ */
	-webkit-box-sizing: border-box; /* safari3+ */
	-khtml-box-sizing: border-box; /* konqueror */
}
.abs {
	position: absolute !important;
}
.rel {
	position: relative !important;
}

/* HEADINGS */
h1 {
}
h2 {
}

h3 {
}
h4 {
}

/* TEXT */
p {
	margin: 0 0 1em 0;
}
p.tight {
	line-height: 1.1em;
}
.uppercase {
	text-transform: uppercase;
}
.capitalize, .capitalise {
	text-transform: capitalize;
}
.keepcase {
	text-transform: none;
}
.noselect {
	-moz-user-select: none; /* mozilla */
	-khtml-user-select: none; /* safari */
	-o-user-select: none; /* opera */
	cursor: pointer;
}
.noinput {
	-moz-user-input: disabled; /* mozilla */
	/*user-input: none;  css3 proposal */
}
.nofocus {
	-moz-user-focus: ignore; /* mozilla */
}

/* COLORS */
.highlight {color: orange;}
.orange {color: orange;}
.red {color: #ce2b2e;}
.green {color: green;}
.blue {color: #01b7cd;}
.yellow {color: yellow;}

/* LINKS */
A {
	color: grey;
	font-weight: bold;
}
A:hover, .over A { 
	color: #FAAF40;
}
/* get rid of link outlines in firefox */
a {
	outline-color: invert;
	outline-style: none;
	outline-width: medium;
}
a:focus {
	outline: none;
}

/* BUTTONS */
.menu_feature_button {
}

/* IMAGES */
img {
	border: 0;
}
img.stretch {
	height:100%;
	width:100%;
	display:block;
	position:absolute;
}
img.icon {
	vertical-align: middle;
	width: 15px;
	height: 15px;
	margin: 2px 0;
}
img.blowup {
	border: 1px solid white;
	display: block;
}
.caption {
	font: italic 10px Arial;
	text-align: center;
}

/* TABLES */
table.layout {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
table.layout td {
	vertical-align: top;
	padding: 0;
}
table.flexible {
	table-layout: auto;
}

/* LISTS */
ul, ol {
	margin: 5px;
	padding: 5px;
}
li {
	margin-left: 5px;
	padding-left: 5px;
}

/* EFFECTS */
.shade_x { 
	
}
.shade_y { 
	
}
.shade_x.shade_y, .shade { 
	
}

/* MESSAGE LISTS */
.message_list li {
	display: block;
	background: transparent url(/base/images/ok_message.gif) scroll no-repeat 2px 2px;
	padding: 2px 4px 4px 25px;
	font-size: 12px;
}
.message_list li.warning {
	background-image: url(/base/images/warning_message.gif);
}
.message_list li.error {
	background: url(/base/images/error_message.gif) scroll no-repeat 2px 2px;
}

/* OPTIONS BOXES */
.options {
	clear: both;
	margin-bottom: 4px;
}
.options a {
	border: 1px solid grey;
	color: grey;
	font-size: 10px;
	padding: 1px 4px;
	opacity: 0.5;
	margin-right: 4px;
	text-decoration: none;
	text-transform: capitalize;
}
.options.admin a {
	background-color: #FEE;
}
.options.client a {
	background-color: #8AC875;
	color: white;
}

/* Light-blue information panel */
.info {
	background-color: #EEF;
	color: #333;
	padding: 3px 6px;
	font-size: 10px;
}
