﻿/*CSS*/

	body {
		margin:0;
		padding:0;
		border:0;	/* This removes the border around the viewport in old versions of IE */
		width:100%;
		background:#fff;
		min-width:600px;    	/* Minimum width of layout - remove line if not required */
					/* The min-width property does not work in old versions of Internet Explorer */
		font-size:90%;
	}

	a {
	}

	a:hover {
		color:#ff0000;
		text-decoration:none;
	}

	h1, h2, h3 {
		margin:.8em 0 .2em 0;
		padding:0;
	}

	p {
	margin:.4em 0 .8em 0;
	padding:0;
	}
img {
	margin:10px 0 5px;
}
	
.wrapper_all{
	margin:0 auto;
}
	
.breaker{
	margin:0 auto;
	background:#000;
	display:block;
	height:20px;
	width:1100px;
	font-family: 'Special Elite', cursive;
	font-size:50px;
	color:#FFF;
}
	
#content_tree{
	margin:0 auto;
	width:1100px;
	background-image:url('img/background_wood_02.png');
}
#content_tree h1{	
	padding:40px 20px;
	margin:0;
	font-family: 'Special Elite', cursive;
	font-size:40px;
	text-align:center;
	text-shadow:2px 2px 2px #FFF,
			-2px -2px 2px #FFF;
}
	
#content_tree img{
	margin:0 auto;
	display:block;
	width:80%;
	max-width:900px;
	box-shadow: 0px 0px 69px 5px rgba(0,0,0,1);	
}
	
#content_main{
}
	
	/* column container */
	.colmask {
		clear:both;
		width:1100px;			/* width of whole page */
		overflow:hidden;		/* This chops off any overhanging divs */
		margin:0 auto;
	}
	/* common column settings */
	.colright,
	.colmid,
	.colleft {
		float:left;
		width:100%;
		position:relative;
		padding-bottom:50px;	/*middle content bottom padding*/
	}
	.col1,
	.col2,
	.col3 {
		float:left;
		position:relative;
		padding:0 0 1em 0;
		overflow:hidden;
	}
	/* 2 Column (double page) settings */
	.doublepage {
		background-image:url('img/background_wood_01.jpg');		/* right column background colour */
	}
	.doublepage .colleft {
		right:50%;			/* right column width */
		background:#fff;		/* left column background colour */
		border-right:3px solid #000;
	}
	.doublepage .col1 {
		width:46%;			/* left column content width (column width minus left and right padding) */
		left:52%;			/* right column width plus left column left padding */
	}
	.doublepage .col2 {
		width:46%;			/* right column content width (column width minus left and right padding) */
		left:56%;			/* (right column width) plus (left column left and right padding) plus (right column left padding) */
	}
	/*column text styles*/
	.colleft h1{
		padding-top:20px;
		font-size:30px;
		font-family: 'Special Elite', cursive;
	}
	.colleft .text {
		margin:10px;
		margin-top:30px;
		margin-bottom:70px;
		padding:10px;
		padding-left:30px;
		font-size:19px;
		text-align: justify;
		
		border-left:10px double #000;
	}
	.colleft .text::first-letter{
	font-size:40px;
	line-height:0%;
	}
	
	.colleft .text em {
	font-weight:bold;
	font-style:normal;
	}


/*Column image styles*/
	.colleft .col2 em{ 		/*red star*/
		font-weight:bolder;
		line-height:100%;
  		font-size: 18px;
  		vertical-align: text-bottom;
		font-family:arial;	
		font-style:normal;
	}
	.colleft .image_special{
		margin:0 auto;
		margin-top:50px;
		width:90%;
		display:block;
		border:3px #000 solid;
		box-sizing: border-box;
		background:#FFF;

	}
	.colleft .image_special img{
		float:left;
		margin:14px;
		height:90px;
		border: solid #000 1px;
	}
	.colleft .image_special .desc{
		padding:10px 15px 15px 15px;
		font-size:16px;
		font-weight:bold;
		font-family:Helvetica, sans-serif;
	}


	.colleft .image{
		border:3px #000 solid;
		margin:0 auto;
		margin-top:52px;
		width:90%;

		transition:all .2s ease-out;
	}
	.colleft .image img{
		margin:0 auto;
		width:100%;
		display:block;
		box-sizing: border-box;
	}
	.colleft .image:hover{
		box-shadow:0 0 5px 5px rgba(0,0,0,0.6);
	}
	.colleft .image .desc{
		background-color:#ddd;
		border-top:1px #000 solid;
		padding:10px 20px;
		font-family: 'Special Elite', cursive;
		font-size:16px;
	}
	.colleft .image .desc::before{
		content:' ';
		 font-style: normal;
	}

	.content_image{
		float:right;
		margin:5px;
		margin-left:25px;
		height: 150px;
 		width: 150px;
 		overflow: hidden;
 		display:block;
 		border:1px solid #000;
		border-radius:2px;
		overflow:hidden;
		
		transition:all .1s ease;
	}

/* Footer styles */

	#content_gallery {
		clear:both;
		float:left;
		width:100%;
	}

/*Gallery styles*/

	#gallery{
	clear:both;
	margin:40px auto;
	text-align:center;
	width:1000px;
	}
	#gallery .image{
	margin:5px;
	height: 100px;
 	width: 150px;
 	overflow: hidden;
 	display:inline-block;
 	border:1px solid #000;
	border-radius:2px;
	overflow:hidden;
 	
 	transition:all .1s ease;
	}
	#gallery .image img{
	height: auto;
 	width: 200px;
	margin:0 auto;

	transition:all .2s ease;
	}
	#gallery .image:hover{
	box-shadow:0 0 2px 2px rgba(0,0,0,0.6);
	}
	#gallery .image img:hover{
		width:110%;
	}