@charset "utf-8";

body.mceContentBody { 
   background: #402313; 
   color:#402313;
}

@font-face 
{
	font-family: 'Levenim MT';
 	src: url('../fonts/2352AA_0_0.eot');
	src: url('../fonts/2352AA_0_0.eot?#iefix') format('embedded-opentype'),url('../sfonts/2352AA_0_0.woff') format('woff'),url('../fonts/2352AA_0_0.ttf') format('truetype');
}

.center
{
	width:1190px;
	margin:0 auto;
	padding:3px;
}

body
{
	font-family: CoolveticaRg-Regular;
	color:#FFF;
	font-size:21px;
}

#top_line
{
		height:10px;
	min-height:10px;
	max-height:10px;
	
	background-color:#323232;
	padding-top:5px;
	padding-left:5px;
	
}

#top_container
{	
	background-image:url(../images/bg.png);
}

#menu_logo
{	
}

logo
{
}

nav
{
	float:right;
}

nav li
{
	float:left;
}

nav a
{
	padding:10px;
	text-decoration:none;
	color:#fff;
	font-family: CoolveticaRg-Regular;
	font-size:16px;
}

#slider_content
{
}

#slider_container
{
	width:1190px;
	margin:0 auto;
}

#main_container
{	margin:0 auto;
width:1190px;
	background-color:#323232;
	
	
}

#footer
{	
	background-color:#262626;
	height:25px;
}

#gallery {
  width: 700px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 100px auto;
  border: 2px solid #003C72;
}

#navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  float: left;
}

#navigation li {
  padding: 0;
  margin: 0;
  float: left;
  clear: both;
}

#navigation li a img {
  display: block;
  border: none;
}

#navigation li a {
  display: block;
}

#full-picture {
  width: 600px;
  height: 375px;
  overflow: hidden;
  float: left;
}

 

/*Time to apply widths for accordian to work
Width of image = 640px
total images = 3
so width of hovered image = 600px
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: 1190px; height: 400px;
	overflow: hidden;
	color: #262626;
	/*Time for some styling*/
	margin: 0px auto;
	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: 230px;
	float: left;
	
	border-left: 1px solid #262626;
	
	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: 40px;}
/*Lets apply hover effects now*/
/*The LI hover style should override the UL hover style*/
.accordian ul li:hover {width: 500px;}


.accordian li img {
	display: block;
}

/*Image title styles*/
.image_title {
	position: absolute;
	left: 0; bottom: 0;	
	width: 198px;	

}
.image_title a {
	display: block;
	color: #262626;
	font-size:22px;
	text-decoration: none;
	padding:20px;
}






* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font: 14px/1 'Open Sans', sans-serif;
  color: #555;
  background: #262626;
}

.gallery {
  width: 950px;
  margin: 0 auto;
  padding: 5px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.3);
}

.gallery > div {
  position: relative;
  float: left;
  padding: 5px;
}

.gallery > div > img {
  display: block;
  width: 225px;
  transition: .1s transform;
  transform: translateZ(0); /* hack */
}

.gallery > div:hover {
  z-index: 1;
}

.gallery > div:hover > img {
  transform: scale(1.7,1.7);
  transition: .3s transform;
}

.cf:before, .cf:after {
  display: table;
  content: "";
  line-height: 0;
}

.cf:after {
  clear: both;
}

h1 {
  margin: 40px 0;
  font-size: 20px;
  font-weight: 300;
  text-align: center;
  color: #fff;
  font-family: Copperplate Got...;
}
h2 {
  margin: 40px 0;
  font-size: 20px;
  font-weight: 300;
  text-align: left;
  color: #fff;
  font-family: Copperplate Got...;
}