
/* HUMAN SHAPE - HUMAN GAMES */

/* basics */

/* reset */
* {
	margin: 0;
	padding: 0;
	}

/* render html5 elements as block */
header, footer, section, aside, nav, article {
	display: block;
	}

/* standard body */
body {
	margin: 0 auto;
	width: 1000px;
	font: 12px/20px "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	color: 575757;
	background-image: -webkit-gradient(linear, 0% 0%, 0% 90%, from(#f79605), to(#fff));
    background: -moz-linear-gradient(top, #f79605,#ffffff) no-repeat;
    background-color: #ffffff;
	
	/*
 ************************************************************ 
 ********** Background Gradient ********** 
 ************************************************************ 
*/ 
    filter:progid:DXImageTransform.Microsoft.Gradient
    (GradientType=0,StartColorStr='#f79605',EndColorStr='#ffffff');    
}

/*
 ************************************************************ 
 ********** STYLE WEBKIT : SAFARI ********** 
 ************************************************************ 
*/ 

[if Webkit] body  {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: -webkit-gradient(linear, left top, left bottom, from(#f79605), to(#fff)) no-repeat;
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    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;
}

/*
 ************************************************************ 
 ********** STYLE IE : INTERNET EXPLORER ********** 
 ************************************************************ 
*/ 

[if IE] body  {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background-color: #fff;
    filter:progid:DXImageTransform.Microsoft.Gradient
    (GradientType=0,StartColorStr='#f79605',EndColorStr='#ffffff');
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    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: #000;
	}
	
/* standard alignments */
.alignleft {
	float: left;
	}

img.alignleft {
	margin: 5px 10px 0 0; 
	}

.alignright {
	float: right;
	}

img.alignright {
	margin: 5px 0 0 10px; 
	}
	
.center {
	text-align: center;
	}

/* Hx tags */

h1 {
	font-size: 48px;
	padding: 36px 0 10px 20px;
	color: #cae645;
	text-shadow: 2px 2px 2px #000;
	}

h2 {
	font-size: 18px;
	padding: 00px 0;
	}

h3 {
	font-size: 12px;
	padding: 10px 0;
	}

p {
	padding-bottom: 40px;
	}

/* intro */

#intro {
	position: relative;
	margin-top: -26px;
	padding: 20px;
	background: #222 url("images/introbkg.png") repeat-x;
	
	/* background size */
	-webkit-background-size: 100%;
	-o-background-size: 100%;
	-khtml-background-size: 100%;

	
	/* curved border radius */
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	
	/* shadow */
	box-shadow: 0px 0px 6px #000000;
	-webkit-box-shadow: 0px 0px 6px #000000;
	-moz-box-shadow: 0px 0px 6px #000000;
	}
	
#intro2 {
	position: relative;
	margin-top: 0px;
	padding: 0px 0px 0px 0px;
	background: #222 url("images/introbkg.png") repeat-x;
	
	/* background size */
	-webkit-background-size: 100%;
	-o-background-size: 100%;
	-khtml-background-size: 100%;

	
	/* curved border radius */
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	
	/* shadow */
	box-shadow: 0px 0px 6px #000000;
	-webkit-box-shadow: 0px 0px 6px #000000;
	-moz-box-shadow: 0px 0px 6px #000000;
	}	
	
#intro h2, #intro p {
	padding: 0 0 20px 0;
	position: 0 0 20px 0;
	z-index: 9999;
	width: 450px;
	}
	
/* intro texte 1 */	
#intro h2 {
	padding: 40px 0 0px 0;
	font-weight: normal;
	color: #f2f2f2;
	}
	
/* intro texte 2 */	
#intro p {
	padding: 0;
	color: #575757;
	}
	
#intro img {
	position: absolute;
	top: 39px;
	right: 15px;
	width: 320px;
	height: 70px;
	/* curved border radius */
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	}

/* contentHead and sidebar layout */

#contentHead {
	float: right; 
	width: 640px; 
	margin:10px 5px 10px 0; 
	padding:5px 20px 5px 20px;
	background-color: #f2f2f2;
	
/* curved border radius */
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	
/* shadow */
	box-shadow: 0px 0px 6px #000000;
	-webkit-box-shadow: 0px 0px 6px #000000;
	-moz-box-shadow: 0px 0px 6px #000000;
}

/* content and sidebar layout */

#content {
	float: right; 
	width: 654px; 
	margin:10px 5px 10px 0; 
	padding:5px 20px 5px 20px;
	background-color: #f2f2f2;
	
/* curved border radius */
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	
/* shadow */
	box-shadow: 0px 0px 6px #000000;
	-webkit-box-shadow: 0px 0px 6px #000000;
	-moz-box-shadow: 0px 0px 6px #000000;

}

aside {
	float: left;
	text-align: left; 
	width: 290px; 
	margin:10px 5px 10px 0; 
	padding:5px 5px 5px 5px;
	background-color: #f2f2f2;

/* curved border radius */
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	
/* shadow */
	box-shadow: 0px 0px 6px #000000;
	-webkit-box-shadow: 0px 0px 6px #000000;
	-moz-box-shadow: 0px 0px 6px #000000;
	}

/* article */

.articlecontent {
	font-size: 12px;
	font-style: regular;
	color: #575757;
	}

.articlecontentHeader {
	font-size: 12px;
	font-style: regular;
	color: #575757;
	padding: 10px; border: 2px solid #B3B3B3; display: table;
/* curved border radius */
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	clear: both;
	margin-bottom: 10px;
	}
	
.articlecontentHeader2 {
	background:#333;	
	font-size: 12px;
	font-style: regular;
	color: #e7e7e7;
	padding: 10px; border: 2px solid #B3B3B3; display: table;
/* curved border radius */
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	clear: both;
	margin-bottom: 10px;
	
/* shadow */
	box-shadow: 0px 0px 6px #000000;
	-webkit-box-shadow: 0px 0px 6px #000000;
	-moz-box-shadow: 0px 0px 6px #000000;
	}
	
.articlecontentHeader3 {
	background:#333;	
	font-size: 12px;
	font-style: regular;
	color: #e7e7e7;
	padding: 10px; border: 2px solid #B3B3B3; display: table;
/* curved border radius */
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	clear: both;
	margin-bottom: 10px;
	margin-top: 10px;
	
/* shadow */
	box-shadow: 0px 0px 6px #000000;
	-webkit-box-shadow: 0px 0px 6px #000000;
	-moz-box-shadow: 0px 0px 6px #000000;
	}

.articlecontent header p, .blogPost header p a {
	font-size: 12px;
	font-style: regular;
	color: #575757;
	}

.articlecontent p a {
	color: #575757;
	}
	
.articlecontent p a:hover {
	color: #000;
	}
	
.articlecontent header p a:hover {
	text-decoration: none;
	color: #000;
	}
	
/* multiple columns */
.articlecontent div {
	-moz-column-count: 2;
	-webkit-column-count: 2;
	-moz-column-gap: 20px;
	-webkit-column-gap: 20px;
	}
	
/* box shadow on pics */
.articlecontent img {
	margin:10px 5px 5px 10; 
	padding:0px 0px 0px 0px;
	background-color: #f2f2f2;
	-webkit-box-shadow: 3px 3px 7px #777;
	/* background size */
	-webkit-background-size: 100%;
	-o-background-size: 100%;
	-khtml-background-size: 100%;
	
	/* curved border radius */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	
	/* shadow */
	box-shadow: 0px 0px 6px #000000;
	-webkit-box-shadow: 0px 0px 6px #000000;
	-moz-box-shadow: 0px 0px 6px #000000;
	}

/* sidebar */
aside section {
	margin: 10px 0 0 10px;
	padding-left: 5px;
	}

aside section ul {
	margin: 0 0 0 20px;
	color: #e43e01;
	}
	
aside section ul li a {
	display: block;
	text-decoration: none;
	color: #000;
	}
		
aside section ul li a:hover {
	text-decoration: underline;
	}
	
aside section ul li.selected {
	font-size: 14px;
	font-weight: bold;
	color: #e43e01;
	text-decoration: none;
	color: #000;
	}
	
/* nav */

nav {
	margin: 10px 0 0 10px;
	padding: 10px 10px 10px 0;
	}

nav ul {
	list-style: none;
	}

nav ul li a {
	display: block;
	line-height: 30px;
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	color: #ffd494;
	background-color: #000;
	padding-left: 10px;
	margin-bottom: 5px;
	
	/* curved border radius */
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	}
			
nav ul li a:hover {
	background-color: #f79b10;
	color: #333;
	}
			
nav ul li.selected a {
	color: #fff;
	}

/* footer */
footer {
	clear: both;
	background: #222;
	width: 1000px;
	color: #fff;
	margin-bottom: 10px;
	
/* curved border radius */
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	
/* shadow */
	box-shadow: 0px 0px 6px #000000;
	-webkit-box-shadow: 0px 0px 6px #000000;
	-moz-box-shadow: 0px 0px 6px #000000;
	}

footer p {
  text-align: right;
  font-size: 11px;
	padding-right: 20px;
	}

footer a {
	color: #999;
	}
	
footer a:hover {
	color: #FFF;
	text-decoration: none;
	}

/* slideshow styles */
		.slideShow ul, .slideShow li {
			list-style-type: none;
			margin: 0px;
			padding: 0px;
		}
		.slideShow {
			background:#333;	
	        font-size: 12px;
	        font-style: regular;
	        color: #e7e7e7;
	        padding: 10px; border: 2px solid #B3B3B3; display: table;
        /* curved border radius */
	        -moz-border-radius: 10px;
	        -webkit-border-radius: 10px;
	        clear: both;
	        margin-bottom: 10px;
	        margin-top: 10px;
	
        /* shadow */
	        box-shadow: 0px 0px 6px #000000;
	        -webkit-box-shadow: 0px 0px 6px #000000;
	        -moz-box-shadow: 0px 0px 6px #000000;
		}
		.slideShow .navigation {
			margin-top: 10px;
			clear: left;
			display: block;
		}
		.slideShow .navigation li {
			display: inline;
		}
		.slideShow .navigation a {
			background-color: #B3B3B3;
			margin: 0px 2px 0px 0px;
			padding: 3px 8px;
			color: #232323;
			display: inline-block;
			text-decoration: none;
			font-size: 0.8em;
			/* curved border radius */
	        -moz-border-radius: 5px;
	        -webkit-border-radius: 5px;
	        clear: both;
	        margin-bottom: 10px;
	        margin-top: 10px;
		}
		.slideShow ul.topNavigation {
			margin: 0px 0px 40px 0px;
		}
		.slideShow .navigation a:hover, .slideShow .navigation a.selected {
			background-color: #ffd494;
			color: #000000;
		}
		
		/** slides with more than an image in it **/
		.slide img {
			position: absolute;
		}
		.slide h1 {
			position: absolute;
			background-color: #dedede;
			opacity: .7;
			filter: alpha(opacity=70);
			left: 0px;
			top: 0px;
		}
		
		/** slides with text over images **/
		.slide p {
			margin: 1em;
			position: absolute;
			background-color: #dedede;
			opacity: .8;
			filter: alpha(opacity=80);
			-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
			color: #000;
			z-index: 1000;
			padding: 0.2em 0.8em;
			/* curved border radius */
	        -moz-border-radius: 5px;
	        -webkit-border-radius: 5px;
	        clear: both;
	        margin-bottom: 10px;
	        margin-top: 10px;
		}
		.slide p a {
			color: #fff;
		}
		
		/** slideshow with images in navigation **/
		.navigation.white a, .navigation.white li {
			background-color: #ffffff;
		}
		.navigation.white a {
			border: 1px solid #ffffff;
			padding: 0px;
			line-height: 0.8em;
		}
		.navigation.white a:hover, .navigation.white a.selected {
			background-color: #ffffff;
			border: 1px solid #999;
		}