/**
Stylesheet: Slideshow.css
	CSS for Slideshow.

License:
	MIT-style license.

Copyright:
	Copyright (c) 2008 [Aeron Glemann](http://www.electricprism.com/aeron/).
	
HTML:
	<div class="slideshow">
		<div class="slideshow-images" />
		<div class="slideshow-captions" />
		<div class="slideshow-controller" />
		<div class="slideshow-loader" />
		<div class="slideshow-thumbnails" />
	</div>
	
Notes:
	These next four rules are set by the Slideshow script.
	You can override any of them with the !important keyword but the slideshow probably will not work as intended.
*/
.slideshow {
	display: block;
	position: relative;
	z-index: 0;
	background: #000;
}
.slideshow-images {
	display: block;
	overflow: hidden;
	position: relative;
}		
.slideshow-images img {
	display: block;
	position: absolute;
	z-index: 1;
}		
.slideshow-thumbnails {
	display: block;
	overflow: hidden;
}
/**
HTML:
	<div class="slideshow-images">
		<img />
		<img />
	</div>
	
Notes:
	The images div is where the slides are shown.
	Customize the visible / prev / next classes to effect the slideshow transitions: fading, wiping, etc.
*/

.slideshow-images {
	left: 0
	height: 500px;
	top: 0;
	width: 900px;
}
.slideshow-images img {
	float: left;
}	
.slideshow-images-visible { 
	right: 0;
	opacity: 1;
	top: 0;
}	
.slideshow-images-prev {
	opacity: 0;
}
.slideshow-images-next {;
	opacity: 0; 
}
	
/**
Notes:
	These are examples of user-defined styles.
	Customize these classes to your usage of Slideshow.
*/
.slideshow {
	height: 500px;
	margin: 0 auto;
	width: 900px;
}
.slideshow a img {
	border: 0;
}
/**
HTML:
	<div class="slideshow-captions">
		...
	</div>
	
Notes:
	Customize the hidden / visible classes to affect the captions animation.
*/
.slideshow-captions {
	background: #000;
	bottom: 0;
	color: #fff;
	font: normal 11.5px/22px Palatino, sans-serif;
	left: 0;
	overflow: hidden;
	position: absolute;
	text-indent: 20px;
	width: 900px;
	z-index: 10000;
}
.slideshow-captions-hidden {
	height: 0;
	opacity: 0;
}
.slideshow-captions-visible {
	height: 22px;
	opacity: .7;
}
/**
HTML:
	<div class="slideshow-controller">
		<ul>
			<li class="first"><a /></li>
			<li class="prev"><a /></li>
			<li class="pause play"><a /></li>
			<li class="next"><a /></li>
			<li class="last"><a /></li>
		</ul>
	</div>
	
Notes:
	Customize the hidden / visible classes to affect the controller animation.
*/
.slideshow-controller {
	height: 25px;
	margin: -500px 0 0 0px;
	overflow: hidden;
	position: absolute;
	width: 125px;
	z-index: 10000;
	background-image: url(controller.gif);
}
.slideshow-controller * {
	margin: 0;
	padding: 0;
}
.slideshow-controller-hidden { 
	opacity: 0;
}
.slideshow-controller-visible {
	opacity: 1;
}
.slideshow-controller a {
	cursor: pointer;
	display: block;
	height: 13px;
	overflow: hidden;
	position: absolute;
	top: 6px;
}
.slideshow-controller a.active {
	background-position: 0 14px;
}
.slideshow-controller li {
	list-style: none;
}
.slideshow-controller li.first a {
	background-image: url(controller-first.gif);
	left: 12px;
	width: 11px;
}
.slideshow-controller li.last a {
	background-image: url(controller-last.gif);
	left: 105px;
	width: 11px;
}
.slideshow-controller li.next a {
	background-image: url(controller-next.gif);
	left: 80px;
	width: 17px;
}
.slideshow-controller li.pause a {
	background-image: url(controller-pause.gif);
	left: 56px;
	width:15px;
}
.slideshow-controller li.play a {
	background-position: 15px 0;
}
.slideshow-controller li.play a.active {
	background-position: 15px 14px;
}
.slideshow-controller li.prev a {
	background-image: url(controller-prev.gif);
	left: 31px;
	width: 17px;
}
/**
HTML:
	<div class="slideshow-loader" />
	
Notes:
	Customize the hidden / visible classes to affect the loader animation.
*/
slideshow-loader {
	height: 28px;
	right: 0;
	position: absolute;
	top: 0;
	width: 28px;
	z-index: 10001;
}
.slideshow-loader-hidden {
	opacity: 0;
}
.slideshow-loader-visible {
	opacity: 1;
}
/**
HTML:
	<div class="slideshow-thumbnails">
		<ul>
			<li><a class="slideshow-thumbnails-active" /></li>
			<li><a class="slideshow-thumbnails-inactive" /></li>
			...
			<li><a class="slideshow-thumbnails-inactive" /></li>
		</ul>
	</div>
	
Notes:
	Customize the active / inactive classes to affect the thumbnails animation.
	Use the !important keyword to override FX without affecting performance.
*/
	.slideshow-thumbnails {
	height: 75px;
	position: absolute;
	width: 900px;
	left: 0px;
	float: left;
}
.slideshow-thumbnails * {
	margin: 0;
	padding: 0;
}
.slideshow-thumbnails ul {
	left: 0;
	position: absolute;
	top: 0;
	width: 10000px;
}
.slideshow-thumbnails li {
	float: left;
	list-style: none;
	margin: 5px 0;
	position: relative;
}
.slideshow-thumbnails a {
	display: block;
	float: left;
	padding: 5px;
	position: relative;
}
.slideshow-thumbnails a:hover {
	background-color: #ccc !important;
	opacity: 1 !important;
}
.slideshow-thumbnails-active {
	opacity: 1;
}
.slideshow-thumbnails-active a{
	background-color: #000;
	opacity: 1;
}
.slideshow-thumbnails-inactive {
	opacity: .2;
}
.slideshow-thumbnails-inactive a{
	background-color: #000;
	opacity: .2;
}
.slideshow-thumbnails img {
	display: block;
}

/**

SLIDESHOW CSS ENDS HERE 

---------------------------------

WEB CSS BEGINS HERE
	
*/
.background{
	background-color: #000;
	margin-top: 10px;
}
.header {
	height: 40px;
	margin: 0 auto;
	width: 900px;
	padding: 0px 0 5px 0;
	background-image:url(../images/header_b.gif);
	background-repeat: no-repeat;
	top: 0px;
	
}
.footer {
	margin: 90px auto 0px auto;
	width: 900px;
	font-family: Arial, sans-serif;
	font-size: 10px;
	color: #555;
	line-height: 5px;
}


.footer_home {
	margin: 0px auto 0px auto;
	width: 900px;
	font-family: Arial, sans-serif;
	font-size: 10px;
	color: #555;
	line-height: 5px;
}

.menu {
	height: 15px;
	margin: 0 auto;
	width: 900px;
	font-family: Arial, sans-serif;
	font-size: 12px;
	padding: 0 0 10px 0;
	text-decoration: none;
	color: #aaa
}
.menu a{
	font-size: 12px;
	padding: 0px 10px 0 0;
	text-decoration: none;
}
.menu a:visited{
	font-size: 12px;
	padding: 0px 10px 0 0;
	text-decoration: none;
	color: #aaa;
}
.menu a:hover{
	color: #0C6
}
.waktouf a{
	font-family: Arial, sans-serif;
	color: #555;
	font-size: 10px;
	text-decoration: none;
}
.waktouf a:visited{
	font-family: Arial, sans-serif;
	color: #555;
	text-decoration: none;
}
.waktouf a:hover{
	color: #0C6;
	text-decoration: none;
}
.networkicons {
	display: block;
	float: right;
	opacity: .4;
	padding: 1px 0 0px 10px;
	border: none;
}


.theme {
	margin: 0 auto;
	width: 900px;
	font-family: Arial, sans-serif;
	font-size: 12px;
	padding: 0 0 0px 0;
	text-decoration: none;
	color: #666
}
.theme a{
	font-size: 12px;
	padding: 10px 0 0 10px;
	text-decoration: none;
}
.theme a:visited{
	font-size: 12px;
	padding: 10px 10px 0 0;
	text-decoration: none;
}
.theme a:hover{
	color: #0C6
}

.title {
	margin: 0 0 0px 10px;
	font-family: arial;
	font-size: 22px;
	text-decoration: none;
	color: #ccc;	
	position: relative;
	bottom: 9px;
	
}


.body {
	margin: auto;
	width: 550px;
	font-family: Arial, sans-serif;
	font-size: 12px;
	text-decoration: none;
	color: #999;
	padding: 0 350px 0 0;
}


.body_exhibitions {
	margin: auto;
	width: 550px;
	font-family: Arial, sans-serif;
	font-size: 12px;
	text-decoration: none;
	color: #999;
	padding: 0 350px 0 0;
}


.home_pic {
	margin: auto;
	width: 900px;

}

