/*
	Set's border, padding and margin to 0 for all values
*/
* {
	border: 0;
	margin: 0;
	padding: 0;
}

body, html {
/* 
	This is the left column background "faked" with an image. 
	The 100px is added to have control of where the vertically repeating starts. 
	The background color #fff (white) will be the background color for our content area 
*/
	background-color: #fff;
	background-image: url(../images/left_bg.gif);
	background-repeat: repeat-y;
	background-position: 0 100px;
	color: #000;
	font-family: verdana, arial, helvetica, sans-serif;
	height: 100%;
}

body {
	font-size: 75%;
	min-width: 760px; /* Don't work in IE */
	background: url(../images/right_bg_main.gif) repeat-y 100% 100px;
}

#mainContainer {
/*
	This is the right column background "faked" with an image.
	The 100px is added to have control of where the vertically repeating starts.
*/
	background: url(../images/right_bg.gif) repeat-y 100% 100px;
	min-height: 100%;
}

#mainpage #mainContainer {
/*
	This is the right column background "faked" with an image.
	The 100px is added to have control of where the vertically repeating starts.
*/
	background: url(../images/right_bg_main.gif) repeat-y 100% 100px;
	min-height: 100%;
}

* html #mainContainer {
/*
	IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height
*/
	height: 100%;
}

p {
	margin-bottom: 5px;
}

/**************************
GENERAL
**************************/

h1 {
	font-size: 220%;
}

h2 {
	font-size: 150%;
	padding: 0 0 0 1em;
	color: black;
	border-bottom: 2px solid #f8931e;
	text-transform: uppercase;
}

h3 {
	font-size: 120%;
	display: inline-block;
	border-bottom: 2px solid #0093b1;
}

a:link, a:visited, a:active {
	text-decoration: underline;
	color: #0093b1;
}

a:visited {
	color: purple;
}

a:hover {
	text-decoration: none;
}

table {
	font-size: 100%;
	margin-bottom: 1em;
}

td, th {
	vertical-align: top;
	width: 95%;
	padding: .5em;
	width: auto;
}

table, td, th {
	border: 1px solid;
	border-spacing: 0px;
}

th {
	text-align: left;
}

input, textarea, select {
	border: 1px solid;
	background-color: #f0f0f0;
}

label {
	cursor: pointer;
}

option {
	padding-right: 1em;
}

optgroup option {
	text-indent: 1.5em;
}

legend {
	font-weight: bold;
	border-bottom: 2px solid #0093b1;
}

fieldset {
	margin: 0 0 1em 0;
	padding: 1em;
}

form th {
	width: 10em;
}

ul, ol, dl, h2, h3, h4, h5, h6 {
	margin-top: 20px;
	margin-bottom: 14px;
	padding-top: 0;
	padding-bottom: 0;
}

.hide {
	display: none;
}

.centered {
	text-align: center !important;
	vertical-align: middle;
}

.clear {
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
}

.flag_cz {
	background-image: url(../images/flag_en.gif);
	background-position: right;
	background-repeat: no-repeat;
}

.flag_en {
	background-image: url(../images/flag_cz.gif);
	background-position: right;
	background-repeat: no-repeat;
}

p, td {
	text-align: justify;
}

.info1 {
	width: 4em;
}

.info2 {
	width: 10em;
}

.info3 {
	width: 20em;
}

.info4 {
	width: 30em;
}

.info5 {
	width: 15em;
	text-align: left;
}

.even {
	background-color: #bee0e9;
}

.noborder, .noborder th, .noborder td {
	border: none;
}

.table_full {
	width: 85%;	
}

.table_auto {
	width: auto;
}

.paper_info {
	margin-left: 2em;
}

#error_msg {
	margin: 1em 0 0 0;
	background-color: red;
	padding: 1em;
	border: solid;
	border-width: 0 10px 0 10px;
}

#error_msg p {
	font-size: medium;
	font-weight: bold;
}

#message {
	background-color: #ddf1f5;
	padding: 1em;
	border: solid;
	border-width: 0 10px 0 10px;
}

ul {
	margin: .5em 0 .5em 2em;
}

ul li {
	margin-bottom: .5em;
}

/**************************
HEADER
**************************/
#header {
	padding: 0;
	background-color: #0093b1;
}

#header h1 a {
	display: block;
	height: 141px;
	width: 100%;
}

#header h1.cz {
	background-image: url(../images/topr.gif);
	background-position: top right;
	background-repeat: no-repeat;
}

#header h1.en {
	background-image: url(../images/topr.gif);
	background-position: top right;
	background-repeat: no-repeat;
}

#header h1 a {
	background-image: url(../images/topl_cz.gif);
	background-position: top left;
	background-repeat: no-repeat;
	text-decoration: none;
}

#header h1.en a {
	background-image: url(../images/topl_en.gif);
}

/**************************
CONTENT AND COLUMNS
**************************/
.outer {
/* Same width as margin-left for the float-wrap div */
	padding-left: 165px;
/* Our right column width */
	padding-right: 225px;
}

.inner {
/* Padding-bottom value is the same value as the total height of the footer */
	padding-bottom: 45px;
	width: 100%;
}

/*
	div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
	div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid
	blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
*/
.float-wrap {
	float: left;
	margin-left: -165px; /*** Same length as .outer padding-left but with negative value ***/
	width: 100%;
}

#content {
	float: right;
	margin-right: -165px; /*** Same length as .outer padding-left but with negative value ***/
	position: relative; /*** IE needs this  ***/
	width: 100%;
}

#contentWrap {
	padding: 4em 1em 1em 1em;
}

#mainpage #content ul {
	list-style: none;
}

#mainpage #content li {
	padding: 0 0 0 40px;
	background-image: url(../images/li_small.gif);
   background-repeat: no-repeat;
   background-position: 0 5px;
}

#content img {
	border: none;
	margin: 15px;
}

#content ul li img {
	margin: 1px;
}

#content ul li p {
	margin: 0;
}

h3.news {
	padding: 0;
	margin: 0 0 5px 0;
}

/**************************
LEFT COLUMN
**************************/
/*
	div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
	div.left is carried over into the proper position. 
*/
#left {
	float: left;
	position: relative; /*** IE needs this  ***/
	width: 155px;
}

/*************************
RIGHT COLUMN
**************************/
#right {
	float: right;
	margin-right: -225px; /** This negative margin-right value is the same as the right column width (width + padding). ***/
	padding: 0;
	position: relative; /*** IE needs this  ***/
	position: relative; /*** IE needs this  ***/
	width: 225px;	
}

#rightlogo {
	background-image: url(../images/logo_right.gif);
	background-position: top right;
	background-repeat: no-repeat;
	height: 214px;
}

#mainpage #rightlogo {
	background-image: url(../images/logo_right_main.jpg);
}

#right img {
	margin-bottom: 15px;
}

#right h3 {
	display: inline-block;
	margin-top: 10px;
	margin-left: 0;
	border-bottom: 2px solid #f8931e;
}

#mainlogos {
	margin-left: 60px;
	width: 125px;
}

#mainlogos div {
	text-align: center;
}

/**************************
FOOTER
**************************/
#footer {
	height: 20px; /*** The drawback with this solution is that the height of the footer can't have a flexible height. If you add so much content to the footer that it extends 45px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/
	margin-top: -20px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/
}

#footer p {
	text-align: center;
}

/************************
NAVIGATION
************************/
#vnav {
	padding: 5em 2.5em 0 1.5em;
}

#vnav ul {
	margin: 0;
	position: relative;	/* IE needs this to fix a rendering problem */
	list-style-type: none;
	list-style: none;
}

#vnav ul li {
	list-style-type: none;
	list-style: none;
	display: block;
	padding: 0.5em 0 0 0;
}

#vnav ul li a {
	display: inline-block;
	padding: 2px 5px 3px 0px;
	height: 0.01%; /* hide from IE5.0/Win & IE5/Mac */
	color: black;
	text-decoration: none;
	font-weight: bold;
	cursor: pointer;
	border-bottom: 2px solid white;
}

#vnav ul li a:hover {
	color: white;
	font-weight: bold;
}

/************************
RNAV
************************/
#linksmenu {
	margin-left: 123px;
	width: 100px;
}

#linksmenu * {
	padding: 0;
	margin: 0;
}

#linksmenu h3 {
	padding-left: 5px;	
	border-color: white;
}

#rnav ul {
	margin-top: 10px;
	position: relative;	/* IE needs this to fix a rendering problem */
	list-style-type: none;
	list-style: none;
	display: block;
}

#rnav ul li {
	border-bottom: 2px solid white;
	list-style-type: none;
	list-style: none;
	display: block;
	padding: 0.5em 0 0 .7em;
}

#rnav ul li a {
	margin-top: 5px;
	height: 0.01%;	/* hide from IE5.0/Win & IE5/Mac */
	display: block;
	text-decoration: none;
	cursor: pointer;
	color: black;
}

#rnav ul li a:hover, #rnav ul li a:hover {
	color: white;
	font-weight: bold;
}

/*******************
APPLICATION
*******************/
#application table {
	background-color: #ddf1f5;
	padding: .5em;
	width: auto;
	border: 1px solid;
}

#application table.fulltable {
	width: 100%;
	border: 1px solid;
}

#application table thead {
	border: 0;
	border-color: silver;
	background-color: silver;
	font-size: 1em;
}

#application td, #application th {
	padding: .3em;
	text-align: left;
}

#application .label {
	width: 8em;
}

#application .list {
	width: 1.5em;
}

#application input[type="text"] {
	width: 30em;
	padding: 0 .5em;
}

#application h3 {
	text-transform: uppercase;
}

/*******************
PROGRAMME
*******************/
.programme_session {
	background-color: #0093b1;
	padding: 10px;
	margin-bottom: .5em;
}

.programme_session h3 {
	background-color: #0093b1;
	font-weight: inherit;
	color: white;
	margin: 0;
	padding-bottom: 3px;
	border-bottom: 1px solid black;
}

.programme_session p {
	margin: .5em 0 0 0;
}

#programme td {
	padding: 1em 1em;
}

#programme td ul li {
	border-bottom: 1.5em;
	margin-bottom: .55em;
}


/*************************
SPEAKERS
*************************/
.speaker {
	margin: 5px 0 10px 0;
}

.speaker img {
	float: left;
	margin: 0 !important;
}

.speaker p, .speaker h3 {
	display: block;
	border: none;
	margin: 0 0 0 160px;
}

.speaker h4 {
	padding: 0;
	border: none;
	margin: 5px 0 0 160px;
}

.cleaner {
	clear: both;
}


/*************************
BANNERS
*************************/
#banner {
	position: absolute;
	top: 20px;
	left: 30%;
	text-align: center;
}
