/**********************************************************
// Body
**********************************************************/
html { height: 100%; }
body {
	overflow-x: hidden;
	cursor: default;
	display: block;
	}
	
body *,
body *:before,
body *:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
	}

a {
	text-decoration: none;
	cursor: pointer;
	}

a:hover img {
	opacity: 0.85;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
		-ms-transition: opacity 0.2s linear;
		 -o-transition: opacity 0.2s linear;
			transition: opacity 0.2s linear;
	}

.Hidden { display: none;  }
.Left   { float: left;    }
.Right  { float: right;   }
.Center {
	margin: auto;
	text-align: center;
	}

hr {
	margin: 25px auto;
	width: 100%;
	max-width: 450px;
	border: 0;
	border-bottom: 1px solid #000;
	}

.CLR       { *zoom: 1; }
.CLR:after { clear: both; }
.CLR:before,
.CLR:after {
	content: " ";
	display: table;
	}

.Trans {
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		 -o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
	}
	
.Shrink {
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		 -o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
	}

.Shrink:hover {
	opacity: 1;
	transform: scale(.90);
	}

/**********************************************************
// General Content Tags
**********************************************************/	
img {
	max-width: 100%;
	height: auto;
	}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 15px auto;
	}

.alignnone,
div.alignnone {
	display: inline-block;
	margin: 15px 0;
	}

.alignleft,
div.alignleft {
	float: left;
	display: block;
	margin-right: 15px;
	margin-bottom: 15px;
	}

.alignright,
div.alignright {
	float: right;
	display: block;
	margin-left: 15px;
	margin-bottom: 15px;
	}
	
.sticky-post {
	color: #686868;
	display: block;
	font-size: 14px;
	line-height: 24px;
	text-transform: uppercase;
	}
	
.bypostauthor > article .fn:after {
	font: normal normal normal 14px/1 FontAwesome;
	content: "\f007";
	position: relative;
	display: none;
	}
	
/**********************************************************
// Wrappers
**********************************************************/
#Wrapper-Outer {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 5000;
	}
	
#Wrapper-Inner {
	margin: auto;
	width: 100%;
	overflow: hidden;
	}

/**********************************************************
// Mobile Navigation
**********************************************************/
#Mobile-Nav {
	width: 200px;
	box-shadow: inset 1px 0 2px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	position: fixed;
	z-index: 9000;
	right: -200px;
	bottom: 0;
	top: 0;
	}
	
#Mobile-Nav-Outer {
	width: 250px;
	height: 100%;
	overflow-x: hidden;
	overflow-y: scroll;
	}

#Mobile-Nav-Inner {
	width: 200px;
	float: left;
	}
	
#Mobile-Nav-Inner li {
	width: 100%;
	min-height: 20px;
	line-height: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}
	
#Mobile-Nav-Inner li ul {
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	}
	
#Mobile-Nav-Inner li ul li {
	width: 100%;
	min-height: 20px;
	line-height: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}
	
#Mobile-Nav-Inner li ul li:last-child { border-bottom: 0; }

#Mobile-Nav-Inner a {
	padding: 10px 0 10px 20px;
	display: block;
	-webkit-transition: background 0.1s ease-in-out;
	   -moz-transition: background 0.1s ease-in-out;
	    -ms-transition: background 0.1s ease-in-out;
	     -o-transition: background 0.1s ease-in-out;
	        transition: background 0.1s ease-in-out;
	}

#Mobile-Nav-Inner a:hover {
	text-decoration: none;
	background-color: rgba(0, 0, 0, 0.05);
	}
	
#Mobile-Nav-Inner li ul li a { padding-left: 40px; }

#Mobile-Nav-Close {
	width: 100%;
	height: 100%;
	display: none;
	position: fixed;
	z-index: 9999;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	}
	
/**********************************************************
// Sidebar
**********************************************************/
#Sidebar .widget { margin-top: 60px; }
#Sidebar aside:first-child { margin-top: 0; }

/**********************************************************
// WordPress Gallery
**********************************************************/
.gallery { margin-bottom: 20px; }

.gallery:before,
.gallery:after {
	content: "";
	display: table;
	}

.gallery:after { clear: both; }

.gallery-item {
	margin: 0 4px 4px 0;
	overflow: hidden;
	position: relative;
	line-height: 0;
	float: left;
	}

.gallery-columns-1 .gallery-item { max-width: 100%; }

.gallery-columns-2 .gallery-item {
	max-width: 48%;
	max-width: -webkit-calc(50% - 4px);
	max-width:         calc(50% - 4px);
	}

.gallery-columns-3 .gallery-item {
	max-width: 32%;
	max-width: -webkit-calc(33.3% - 4px);
	max-width:         calc(33.3% - 4px);
	}

.gallery-columns-4 .gallery-item {
	max-width: 23%;
	max-width: -webkit-calc(25% - 4px);
	max-width:         calc(25% - 4px);
	}

.gallery-columns-5 .gallery-item {
	max-width: 19%;
	max-width: -webkit-calc(20% - 4px);
	max-width:         calc(20% - 4px);
	}

.gallery-columns-6 .gallery-item {
	max-width: 15%;
	max-width: -webkit-calc(16.7% - 4px);
	max-width:         calc(16.7% - 4px);
	}

.gallery-columns-7 .gallery-item {
	max-width: 13%;
	max-width: -webkit-calc(14.28% - 4px);
	max-width:         calc(14.28% - 4px);
	}

.gallery-columns-8 .gallery-item {
	max-width: 11%;
	max-width: -webkit-calc(12.5% - 4px);
	max-width:         calc(12.5% - 4px);
	}

.gallery-columns-9 .gallery-item {
	max-width: 9%;
	max-width: -webkit-calc(11.1% - 4px);
	max-width:         calc(11.1% - 4px);
	}

.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) { margin-right: 0; }

.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),
.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) { clear: left; }

.gallery-caption {
	margin: 0;
	padding: 40% 8px 0 8px;
	width: 100%;
	max-height: 100%;
	line-height: 1.5;
	background: rgba(0, 0, 0, 0.58);
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
	color: #FFF;
	font-size: 20px;
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		 -o-transition: all 0.2s ease-in-out;
			transition: all 0.2s ease-in-out;
	text-align: center;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	top: 0;
	}

.gallery-item:hover .gallery-caption { opacity: 1; }

.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption { display: none; }

/**********************************************************
// Entry >> List Styles
**********************************************************/
.Entry ol,
.Entry ul {
	margin-left: 20px;
	padding: 10px 0 10px 20px;
	line-height: 22px;
	}

.Entry ol { list-style-type: decimal; }
.Entry ul { list-style-type: disc; }

/**********************************************************
// Captions
**********************************************************/
figcaption.wp-caption-text {
	margin-top: -8px;
	line-height: 18px;
	text-align: center;
	font-style: italic;
	font-size: 15px;
	}