/*------------------------------------------------
 PLEASE DONT'S STEAL,
 JUST TAKE THE INSPIRATION!
------------------------------------------------- */

/*------------------------------------------------
 CSS INFO
--------------------------------------------------
 FILE: main.css
 PROJECT: Video mapping
 URL: www.videomapping.cz
 AUTHOR: Jan Hommer, Beegital
 DATE: 04-2011
------------------------------------------------- */

/*------------------------------------------------
 STANDARD HTML TAG RESET 
------------------------------------------------- */

* {
	padding: 0;
	margin: 0;
	border: 0;
}

/*------------------------------------------------
 STANDARD HTML TAG DEFINITION
------------------------------------------------- */

body,
form, input {
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #a4a4a4;
}

body {
	background: #000;
}

a, input, select {
	outline: 0;
}

a:link {
	color: #a4a4a4;
}

a:visited {
	color: #a4a4a4;
}

a:hover {
	color: #fff;
}

.al {
	text-align: left;
}

.ac {
	text-align: center;
}

.ar {
	text-align: right;
}

.aj {
	text-align: justify;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

img {
	border: none;
}

img.fl {
	margin: 5px 10px 0 0;
}

img.fr {
	margin: 5px 0 0 10px;
}

hr.cl {
	clear: both;
	visibility: hidden;
	padding: 0;
	margin: 0;
	height: 0;
	font-size: 0;
}

.cursorHand {
	cursor: pointer;
	cursor: hand;
}

/*------------------------------------------------
 WRAP
------------------------------------------------- */

#wrap {
	width: 1000px;
	margin: 0 auto;
}

/*------------------------------------------------
 HEADER
------------------------------------------------- */

#header {
	height: 420px;
}

#header #logo {
	float: left;
	width: 500px;
	height: 300px;
}

#header #menu {
	float: left;
	width: 500px;
	height: 120px;
	text-align: center;
}

#header #menu ul {
	display: inline-block;
	list-style: none;
	padding-top: 72px;
}

#header #menu ul li {
	float: left;
	background: url('../img/menu_li.gif') center left no-repeat;
}

#header #menu ul li.first {
	background: none;
}

#header #menu ul li a {
	float: left;
	display: block;
	padding: 6px 14px;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: normal;
	text-decoration: none;
	letter-spacing: 1px;
}

#header #menu ul li a:hover, #menu ul li a.selected {
	background: url('../img/menu_a.gif') bottom center no-repeat;
}

#header #animation {
	float: right;
	width: 500px;
	height: 420px;
	background: url('../img/animation.jpg');
}

/*------------------------------------------------
 CONTENT
------------------------------------------------- */

#content {
	clear: both;
	padding: 35px;
	overflow: hidden;
}

#content h1 {
	padding-bottom: 40px;
	font-size: 18px;
	font-weight: normal;
	text-transform: uppercase;
}

#content h2 {
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 16px;
	font-weight: normal;
}

#content h3 {
	padding-top: 25px;
	padding-bottom: 20px;
	font-size: 14px;
	font-weight: normal;
}

#content h4 {
	padding-top: 30px;
	padding-bottom: 20px;
	font-size: 12px;
	font-weight: normal;
}

#content p {
	padding-bottom: 20px;
}

#content ul {
	list-style: square;
	padding-left: 20px;
	padding-bottom: 10px;
}

#content ol {
	padding-left: 25px;
	padding-bottom: 10px;
}

#content li {
	padding-bottom: 3px;
}

#content blockquote {
	padding: 10px 20px 0;
	margin: 10px 0 20px 20px;
	border-left: 5px solid #666;
}

#content img {
	border: 2px solid #555;
}

/* gallery */

#content .gallery {
	margin-top: -15px;
	margin-bottom: 25px;
	overflow: hidden;
}

#content .photo {
	display: table;
	#position: relative;
	float: left;
	width: 220px;
	height: 160px;
	margin-right: 8px;
	margin-bottom: 8px;
	border: 2px solid #555;
	text-align: center;
	font-size: 0;
}

#content .photo img {
	border: none;
}

#content .photo .over {
	#position: absolute;
	#top: 50%;
	display: table-cell;
	vertical-align: middle;
}

#content .photo .over .in {
	#position: relative;
	#top: -50%
}

/*------------------------------------------------
 FOOTER
------------------------------------------------- */

#footer {
	padding: 10px 0 10px 30px;
	margin-bottom: 30px; 
	background: url('../img/footer.gif') top center no-repeat;
	overflow: hidden;
	font-size: 12px;
	color: #666;
}

#footer a {
	color: #666;
}

#footer p.fr {
	padding-top: 22px;
}

/*------------------------------------------------
 BEE FORM
------------------------------------------------- */

.bee_form {
	float: right;
	width: 490px;
}

.bee_form p {
	clear: both;
	padding: 0 0 10px;
	overflow: hidden;
}

.bee_form p sup {
	color: #dd0000;
}

.bee_form p label {
	display: block;
	float: left;
	width: 70px;
	padding: 2px 5px 0 0;
	text-align: right;
}

.bee_form p label.error {
	float: left;
	width: auto;
	padding: 2px 0 0 5px;
	color: #dd0000;
}

.bee_form p.textarea label.error {
	clear: both;
	padding: 5px 0 0 75px;
	color: #dd0000;
}

.bee_form p input.textinput, .bee_form p textarea.textarea {
	float: left;
	width: 200px;
	padding: 2px;
	border: 1px solid #fff;
	background: #000;
	color: #fff;
}

.bee_form p input.textinput.error, .bee_form p textarea.textarea.error {
	border: 1px solid #dd0000;
}

.bee_form p input.submitinput {
	padding: 5px 10px;
	background: #fff;
	color: #000;
	cursor: pointer;
}

.bee_form p textarea.textarea {
	width: 400px;
	height: 100px;
}