* {margin: 0; padding: 0;}

body {
	font-family: 'Lucida Grande', helvetica, arial, sans-serif;
	font-size: 12px;
	background: #fff;
        text-align: center;
}
label {
	width: 200px;
	font-size:12px;
}
.err {
	font-size: 14px;
	color: #f00;
	margin: 20px 20px;
}
.success {
	font-size: 14px;
	color: #0f0;
	margin: 10px 10px;
}
.logo {
        /*margin: 20px 20px;*/
        margin: 0px auto;
        background: #fff;
        width: 870px;
        height: 120px;
        text-align: right;
        /*position: relative; */
}
.logo2 {
        /*margin: 20px 20px;*/
        margin: 0px auto;
        background: #fff;
        width: 870px;
        height: 85px;
        text-align: right;
        /*position: relative; */
}
.lang {
    /*margin: 10px 440px;*/
    left: 200px;
    position: absolute; 
    
}

.lang img {
    margin: 20px 0px;
    padding: 3px;
    width: 22px;
}
.container {
        /*margin: 20px 20px;*/
        margin: 35px auto;
        background: #A5A5A5;
        width: 870px;
        height: 600px;
        text-align: right;
        position: relative; 
}
.container2 {
        /*margin: 20px 20px;*/
        margin: 0px auto;
        background: #fff;
        width: 870px;
        height: 580px;
        text-align: right;
        position: relative; 
}

.bodyMain {
        margin: 0px 5px;
        padding: 5px 5px;
        background: #fff;
        width: 620px;
        height: 250px;
        float: right;
}
.bodyMain form input, textarea {
        color: #999;
}
.bodyleft {
        margin: 0px 0px;
        padding: 5px 5px;
        float: right;
        background: #fff;
        width: 215px;
        height: 250px;
}
.bodyleft h2, .bodyMain h2, .bodyMain p {
	font-family: georgia;
	font-weight: normal;
	font-style: italic;
	font-size: 14px;
	margin-bottom: 15px;
        margin-top: 15px;
	line-height: 16px;
}

.product {
		float: right;
}
.pic {
		width: 115px;
		height: 105px;
		float: right;
}
.titl {
		float: inherit;
		width: 450px;
		height: 30px;
		line-height: 102px;
		vertical-align: middle;
		/*border-style:solid;
		border-width:2px;
		border-color: #000;*/
}
.txt {
		width: 550px;
		height: 90px;
		line-height: 25px;
		float: top;
		vertical-align: middle;
}
.footer {
		width: 550px;
		float: right;
		font-size: 11px;
		color: #999;
}
.divpic {
		width: 550px;
		float: right;
}
.divider {
        width: 3px;
        height: 10px;
        background: #EEE; 
        float: right;
}
.navigation {
	/*margin: 0px 0px;*/
        margin: 5px auto;
	background: #fff;
	overflow: hidden;
	width: 860px;
	
	box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.2);
}

.navigation li {
	width: 145px; border-right: 5px solid #666;
	float: right;
	cursor: pointer;
	list-style-type: none;
	
	padding: 10px 50px 10px 15px;
	
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
}

.navigation li h2 {
	font-family: georgia;
	font-weight: normal;
	font-style: italic;
	font-size: 14px;
	margin-bottom: 5px;
	line-height: 16px;
}

.navigation li p{
	font-size: 11px;
	color: #999;
	
	-webkit-transition: all 0.1s ease-in;
	-moz-transition: all 0.1s ease-in;
	-o-transition: all 0.1s ease-in;
}

.navigation li a
{
    color: #000;
    padding: 0%;
    outline: none;
    text-decoration: none;
}
.navigation li a:visited
{
    color: #000;
}
.navigation li:hover {
	background: #333;
	border-right: 5px solid #000;
}

.navigation li:hover h2 {
	font-weight: bold;
	color: #fff;
}

.navigation li:hover p {
	color: #ccc;
	padding-right: 5px;
}




/*Time to apply widths for accordian to work
Width of image = 640px
total images = 5
so width of hovered image = 640px
width of un-hovered image = 40px - you can set this to anything
so total container width = 640 + 40*4 = 800px;
default width = 800/5 = 160px;
*/

.accordian {
	width: 860px; height: 250px;
	overflow: hidden;
	
	/*Time for some styling*/
	margin: 5px 5px;
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
	-webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
	-moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.35);
}

/*A small hack to prevent flickering on some browsers*/
.accordian ul {
	width: 2000px;
	/*This will give ample space to the last item to move
	instead of falling down/flickering during hovers.*/
}

.accordian li {
	position: relative;
	display: block;
	width: 171px;
	float: left;
	
	border-left: 1px solid #555;
	
	box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 25px 10px rgba(0, 0, 0, 0.5);
	
	/*Transitions to give animation effect*/
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	/*If you hover on the images now you should be able to 
	see the basic accordian*/
}

/*Reduce with of un-hovered elements*/
.accordian ul:hover li {width: 55px;}
/*Lets apply hover effects now*/
/*The LI hover style should override the UL hover style*/
.accordian ul li:hover {width: 640px;}


.accordian li img {
	display: block;
}

/*Image title styles*/
.image_title {
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	left: 0; bottom: 0;	
        width: 640px;	
}
.image_title a {
	text-align: left;
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 20px;
	font-size: 16px;
}


/* photo Gallary */
.gallaryContainer {
        /*Fancy Full page BG*/
	background: url("http://thecodeplayer.com/uploads/media/sunsky_m.png") center center fixed;
	background-size: cover;
	font-family: arial, verdana, tahoma;
}
#lightbox {
	margin: 10px auto;
	width: 520px; 
	border-bottom: 1px solid #ccc;
}
#lightbox h1 {
	text-transform: uppercase;
	text-align: center;
	padding: 10px 0;
	margin: 20px 0;
	color: white;
	font-size: 24px;
	background: rgba(255, 255, 255, 0.1);
	border-right: 2px solid rgba(255, 255, 255, 0.65);
	border-left: 2px solid rgba(255, 255, 255, 0.65);
}
#lightbox ul {
	overflow: hidden;
}
/*Image styles*/
#lightbox ul li {
	float: right;
	padding: 10px;
	background: #fff;
	margin: 0 20px 20px 0;
	list-style-type: none;
	position: relative;
	cursor: pointer;
}
/*No left margin for images in the 2nd column*/
#lightbox ul li:nth-child(even) {
	margin-left: 0;
}
#lightbox ul li img {
	display: block;
}

/*Image titles*/
#lightbox .image_title {
	width: 250px; height: 175px;
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0; right: 0;
	display: table;
	/*Hover effect - default state*/
	opacity: 0;
	transition: all 0.5s;
}
#lightbox .title {
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
	text-transform: uppercase;
	font-size: 14px;
	text-align: center;
	/*Vertical center align*/
	display: table-cell;
	vertical-align: middle;
	/*Hover effect - default state*/
	transform: scale(0.2);
	transition: all 0.25s;
}
/*Zoom icon over each title using iconfont and pseudo elements*/
#lightbox .title::before {
	content: 'L';
	font-family: websymbols;
	font-size: 24px;
	color: #fff;
	opacity: 0.5;
	display: block;
	line-height: 36px;
}
/*Hover states*/
#lightbox li:hover {
	box-shadow: inset 0 0 10px 1px rgba(0, 0, 0, 0.75);
}
#lightbox li:hover .image_title {
	opacity: 1;
}
#lightbox li:hover .title {
	transform: scale(1);
}

/*Lets change the iconfont to websymbols since entypo has some issues with rendering on windows*/
@font-face {
	font-family: websymbols;
	src: url("http://thecodeplayer.com/uploads/fonts/websymbols.eot");
	src: url('http://thecodeplayer.com/uploads/fonts/websymbols.eot?#iefix') format('embedded-opentype'),
     url('http://thecodeplayer.com/uploads/fonts/websymbols.woff') format('woff'),
     url('http://thecodeplayer.com/uploads/fonts/websymbols.ttf') format('truetype'),
     url('http://thecodeplayer.com/uploads/fonts/websymbols.svg#WebSymbolsRegular') format('svg');
}



/*Lightbox element style*/
.lb_backdrop {
	background: rgba(0, 0, 0, 0.9);
	position: fixed;
	top: 0; right: 0; left: 0; bottom: 0;
}
/*The canvas contains the larger image*/
.lb_canvas {
	background: white;
	width: 50px; height: 50px;
	position: fixed;
	top: 0; right: 0; /*Will be centered later by Jquery*/
	box-shadow: 0 0 20px 5px black;
	padding: 10px;
}
/*A separate class for loading GIF, for easy Jquery handling*/
.lb_canvas.loading {
	background: white url("http://thecodeplayer.com/uploads/media/loading.gif") center center no-repeat;
}
/*Lightbox Controls*/
.lb_controls {
	width: 400px; 
	background: rgba(0, 0, 0, 0.75);
	position: fixed;
	bottom: 10px;
	color: white;
	/*To horizontally center it*/
	right: 0; left: 0; margin: 0 auto; 
}
.lb_controls span {
	line-height: 30px;
	height: 30px;
}
.lb_controls span.inactive {
	opacity: 0.25;
}
.lb_previous, .lb_next {
	position: absolute;
	top: 0;
	padding: 5px 12px;
	font-family: websymbols;
	font-size: 14px;
	background: black;
	cursor: pointer;
}
.lb_previous {
	right: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.lb_next {
	left: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.lb_title {
	text-align: center;
	display: block;
	font-size: 14px;
	text-transform: uppercase;
	padding: 5px 0;
	font-weight: bold;
}
