@import url(http://fonts.googleapis.com/css?family=Fjalla+One);

body { 
	font-family: "Arial";
	font-size: 100%;
	background: white url('../image/bg.png') repeat;
}

.ic, .ic a {
	border:0;
	float:right;
	background:#fff;
	color:#f00;
	width:50%;
	line-height:10px;
	font-size:10px;
	margin:-220% 0 0 0;
	overflow:hidden;
	padding:0
}

.topbg {
	background: black url('../image/header.png') repeat;
	height: 400px;
	border-bottom: 3px solid #ccc;
	width: 100%;
	margin-bottom: -380px;
}

.wrapper {
	position: relative;

	width: 900px;
	margin: 0 auto;

	
}

.header {
	font-family: "Fjalla One", "Arial Narrow";
	display: inline-block;
}

.header h1 {
	font-size: 2em;
	color: white;
	text-transform: uppercase;
}
.header h1 span {
	color: #3299bb;
}
.header p {
	color: #3299bb;
	text-transform: uppercase;
	
}
.header a {
	text-decoration: none;
	
}

.menu {
	position: absolute;
	left: 48%;
	background: #3299bb;
	border-radius: 5px;
	top: 0px;
}
.menu ul {
	list-style-type: none;
}
.menu ul:after {
	content: none;
	content: '';
	font-size: 0px;
	display: table;
	clear:both;
}
.menu ul li {
	float: left;
	border-right: 1px solid #aaa;
}
.menu ul li:last-of-type {
	border-right: none;
}
.menu ul li a {
	display: block;
	padding: 20px;
	color: white;
	text-decoration: none;
}
.arrow {
	z-index: 2;
	position: absolute;
	display: none;
	width: 0;
	height: 0;
	border-bottom: 15px solid white;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent
}
.content {
	
	width: 100%;
	background: #fff;
	margin: 30px 0;
	box-shadow: 0px 0px 5px 2px black;
	border-radius: 7px;
	padding: 10px;
	color: black;
	line-height: 1.5;
}
.content h2 {
	font-size: 1.5em;
	text-transform: uppercase;
	font-weight: bold;
	color: #3299bb;
}
.content p {
	font-size: .8em;
}

.horiz {
	width: 870px;
	height: 2px;
	background: transparent url('../image/horizontal.png') no-repeat;
	margin: 20px auto 20px auto;
	
}
/* 219px */
.cols {
	width: 900px;
	margin: 0 auto;
}
.cols:after {
	content:none;
	content: '';
	font-size: 0;
	display: table;
	clear:both;
}
.col,.sep { float: left; }
.sep {
	position: relative;
	top: 30px;
	width: 1px;
	height: 100px;
	background: white url('../image/vert.png') no-repeat;
}
.col {
	width: 209px;
	padding: 0 10px;
}
.col:first-of-type {
	padding-left: 0;
}
.col:last-of-type {
	padding-right: 0;
}
.col h3 {
	font-size: 1.1em;
	text-transform: uppercase;
	font-weight: bold;
	color: #3299bb;
}
.smallbutton {
	background: #3299bb;
	color: white;
	text-decoration: none;
	padding: 3px 10px;
	border-radius: 5px;
	position: relative;
	float:right;
}
.smallbutton:hover {
	background: #226b83;
}
.smallbutton:active {
	top: 2px;
	left: 2px;
	
}

.highlight {
	background: #eee;
	border: 1px solid #ccc;
	padding: 3px 5px;
	border-radius: 5px;
}
blockquote {
	padding: 0px;
	border-left: 4px solid #ccc;
	background: #eee;
	background-image: url('../image/q.png');
	background-repeat:no-repeat;
	background-size: 80px auto;
	background-position: 10px 10px;
}

p.quote {
	padding: 20px 20px 0 20px;
	font-style: italic;
}
p.author {
	padding: 0px 20px 20px 20px;
	text-align: right;
	font-size: .7em;
	font-weight: bold;
}
[data-tooltip] {
	position: relative;
}
[data-tooltip]::before,
[data-tooltip]::after {
	position: absolute;
	display: none;
	opacity: 0.85;
}
[data-tooltip]::before {
	/*
	 * using data-tooltip instead of title so we 
	 * don't have the real tooltip overlapping
	 */
	content: attr(data-tooltip);
	background: #000;
	color: #fff;
	font-size: 13px;
	padding: 5px;
	border-radius: 5px;
	/* we don't want the text to wrap */
	white-space: nowrap;
	text-decoration: none;
}
[data-tooltip]::after {
	width: 0;
	height: 0;
	border: 6px solid transparent;
	content: '';
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
	display: block;
}

/** positioning **/

/* left tooltip */
[data-tooltip][data-placement="left"]::before {
	top: -25%;
	right: 100%;
	margin-right: 10px;
}
[data-tooltip][data-placement="left"]::after {
	border-left-color: #000;
	border-right: none;
	top: 50%;
	right: 100%;
	margin-top: -6px;
	margin-right: 4px;
}

/* right tooltip */
[data-tooltip][data-placement="right"]::before {
	top: -25%;
	left: 100%;
	margin-left: 10px;
}
[data-tooltip][data-placement="right"]::after {
	border-right-color: #000;
	border-left: none;
	top: 50%;
	left: 100%;
	margin-top: -6px;
	margin-left: 4px;
}

/* top tooltip */
[data-tooltip][data-placement="top"]::before {
	bottom: 100%;
	left: 0;
	margin-bottom: 10px;
}
[data-tooltip][data-placement="top"]::after {
	border-top-color: #000;
	border-bottom: none;
	bottom: 100%;
	left: 10px;
	margin-bottom: 4px;
}

/* bottom tooltip */
[data-tooltip][data-placement="bottom"]::before {
	top: 100%;
	left: 0;
	margin-top: 10px;
}
[data-tooltip][data-placement="bottom"]::after {
	border-bottom-color: #000;
	border-top: none;
	top: 100%;
	left: 10px;
	margin-top: 4px;
}
.gallery img {
	position: relative;
	width: 150px;
	height: 84px;
	float:left;
}
.gallery img:hover {
	position:relative;
	box-shadow: 0px 0px 5px 2px black;
	z-index: 1;

}
.gallery:after {
	content: none;
	content: '';
	font-size: 0px;
	display: table;
	clear:both;
}
.photoshow {
	position: absolute;
	width: 900px;
	display: none;
	background: rgba(0,0,0,.5);
	z-index: 2;
	border-radius: 20px;
}
.photoshow img {
	position: relative;
	width: 850px;
	margin-left: 25px;
	padding: 20px 0;
}
.photoshow .info {
	position: absolute;
	background: rgba(0,0,0,.5);
	width: 850px;
	margin-left: 25px;
	display:none;
}
.photoshow .info p {
	color: white;
}
.photoshow .info p:first-of-type {
	text-transform: uppercase;
	font-weight: bold;
	padding: 20px 20px 0 20px;
}
.photoshow .info p:last-of-type {
	padding: 0 20px 20px 20px;
	font-size: .8em;
}