/* 

THIS FILE SHOULD BE VALID CSS level 2.1 
PLEASE CHECK AT http://jigsaw.w3.org/css-validator AFTER CHANGES
AUTHOR: MARTIN BARTENBERGER

FOR A BETTER OVERVIEW THE FILE IS DIVIDED IN THE FOLLOWING SECTIONS
PLEASE ADD NEW ENTRIES IN THE PROPER SECTION!

*/



/******************************** 1. GENERAL STUFF (BODY, LINKS, ...) ********************************/ 

body {
    text-align: center; /* center Box #wrapper horicental for IE 5, 5.5 */
    background-color: white;
    font-family: Georgia, 'Courier New', Courier, serif;
	font-weight: 100;
    font-size: 13px; /* AUSGANGS-Schriftgroesse */
    color: black;
}

a {
    color: #30588B;
    text-decoration: none;
}

a:visited {
    color: #6495CD; /* IMPORTANT FOR USABILITY */
}

a:hover {
    text-decoration: underline;
}

.clear {
    clear: both; /* use this class to clear things */
}
    
img {
    border: 0;
}

h2 {
   font-size: 18px;
}

/* Message boxes f.e. for login message, ... */
.message {
    padding: 5px;
    font-weight: bold;
    border: 1px solid gray;
    background-color: yellow;
}
    
/********************************* 2. SITE LAYOUT (DIVS) ************************************/

div {
   text-align: left; /* undo text-align:center so that text ist showed left-aligned */
}

/* WRAPPER -Center all */   
div#wrapper {
    width: 980px; /* Fix width 980px */
    margin: 0px auto; /* centered with auto */
    padding: 0px;
    margin-bottom: 50px; /* Distance to bottom */
    margin-top: 30px;
}

/**** HEADER ****/

#header {
	color: #292929;
	margin-bottom: 15px;
}

#header h1 { 
	font-size: 22px;
	display: inline;
	margin-right: 2em;
}

#header a {
	color: #292929;
}

#header a:hover {
	text-decoration: none;
}


/************* NAVIGATION START ******************/


#navigation ul, #navigation ul li {
     list-style: none;
     display: inline;
     margin: 0;
     padding: 0;
}

#navigation ul li {
	margin-bottom: 5px;
	margin-right: 20px;
	font-size: 16px;
}


#navigation ul li a {
    color: black;
}

#cover_picture {
}

/************ NAVIGATION END *******************/


/************ 3. CONTENT **********************/


/* Picture Homepage */

/* PROJECT LIST */

.project {
    margin-bottom: 30px;
}

.project_title {
    float: left;
    width: 500px;
	margin-top: 0;
}

.project_title a {
	color: #292929;
}

.project_title a:visited {
	color: #646464;
}

.project_picture {
    float: left;
    margin-right: 20px;
}

.project_desc {
    float: left;
    width: 500px;
}

.project_actions {
	float: right;
}

/* PICTURE SITE */

/* include media, title and slideshow */
#media_box {
	float: left;
	width: 480px;
}

/* Includes media title and navigation too */
#media_outerbox {
	width: 480px;
	float: left;
	margin-bottom: 20px;
}

/* Picture only */
#media_innerbox {
	width: 480px;
	height: 480px;
	border: 1px solid #efebeb;
	/* Vertical centered */
	display: table-cell;
	vertical-align: middle;
}

#media_innerbox img {
	display: block;
	margin: auto;
}

#media_title {
	display: inline;
	margin-top: 0;
    	float: left;
	width: 380px;
	font-size: 14px;
	font-weight: normal;
}

#media_nav {
	display: inline;
	float: right;
	margin-left: 10px;
	font-size: 14px;
}

#media_nav a {
	color: black;
}

#thumbnails {
	height: 190px; /* 20px for scrollbar */
	width: 480px;
	float: left;
}

#thumbnails img:hover {
	opacity: 1 !important;
}

#thumbnails img {
	margin: 2px;
}

/* Not activated media are grey in slideshow */
#thumbnails img.media_deactive {
	opacity: 0.6;
}

#media_project-box {
	float: right;
	width: 480px;
}

#media_project-title {
	margin-top: 0;
}

#media_project-desc {
	line-height: 1.7em;
}
/************* 4. FORMS **********************/

form {
    padding: 10px;
    max-width: 600px;
}

div.label {
    margin-top: 5px;
    margin-bottom: 5px;
}

label {
	float: left;
	width: 10em;
}

span.error_message {
	float:right;
    color: red;
}

/* do not display initially, will be made visible via javascript */
#file_video {
    display: none;
}

fieldset.radiogroup {
    border: 0px;
}

fieldset.radiogroup label {
	float: none;
	width: 10em;
}

fieldset.radiogroup > span > span {
    display: block;
}


