/* ----------------------------------------------------------------
    Go To Top
-----------------------------------------------------------------*/
#gotoTop {
    display: none;
    position: fixed;
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 35px;
	z-index: 999999999;
    text-align: center;
    color: #FFF;
	background: #444;
    top: auto;
    left: auto;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    transition: background-color .2s linear;
    -moz-transition: background-color .2s linear;
    -webkit-transition: background-color .2s linear;
    -ms-transition: background-color .2s linear;
    -o-transition: background-color .2s linear;
}


/* ----------------------------------------------------------------
    Divider Styles
-----------------------------------------------------------------*/
.divider {
	height: 1px;
	background: #ddd;
	margin: 10px 0 30px 0;
}
.dotted-divider {
	height: 1px;
	margin: 10px 0 30px 0;
	background: url('images/dotted-divider.png') repeat-x;
}

.double-divider {
	height: 4px;
	margin: 10px 0 30px 0;
	background: url('images/double-divider.png') repeat-x;
}

.dashed-divider {
	height: 1px;
	margin: 10px 0 30px 0;
	background: url('images/dashed-divider.png') repeat-x;
}


/* ----------------------------------------------------------------
    Page Styles
-----------------------------------------------------------------*/

.between-icon {
	text-align: center;
	color: #999;
	font-size: 14px;
	line-height: 30px;
	float: left;
	padding-right: 5px;
}

.between-icon.dash:before {
	content: '-';
}

.highlight {
    display: inline;
    padding: 2px 5px 3px 5px;
    color: #FFF !important;
    background-color: #444;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
}


.dropcap {
    float: left;
    display: block;
    margin: 3px 8px 0 0;
    padding: 2px 5px;
    font-size: 24px;
	text-align: center;
    line-height: 1;
	font-weight: bold;
	background: transparent;
}

/* ----------------------------------------------------------------
    Tooltip Style
-----------------------------------------------------------------*/
.tooltip{
	display: inline;
	position: relative;
	border-bottom: 1px dotted #444;
	padding-bottom: 3px;
	cursor: help;
}
		
.tooltip:hover:after{
	background: #444;
	border-radius: 2px;
	bottom: 26px;
	color: #fff;
	text-align: center;
	content: attr(title);
	left: -60%;
	padding: 4px 6px;
	position: absolute;
	z-index: 98;
	font-size: 11px;
	display: block;
	width: 100px;
}
		
.tooltip:hover:before{
	border: solid;
	border-color: #333 transparent;
	border-width: 6px 6px 0 6px;
	bottom: 20px;
	content: "";
	left: 40%;
	position: absolute;
	z-index: 99;
}


/* ----------------------------------------------------------------
    List Styles
-----------------------------------------------------------------*/
.list-style {
  padding-left: 0;
  margin-left: 2.142857142857143em;
  list-style-type: disc;
}

.list-style li {
	margin-bottom: 5px;
	
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline li {
  display: inline-block;
  padding-right: 0px;
  padding-left: 0px;
  margin: 0;
  margin-right: 7px;
}


.list-inline li > span:after {
	content: '/';
	color: #999;
	font-size: 11px;
	margin: 0 0 0 5px;
}

.list-tags li a {
	padding: 4px 7px;
	margin: 3px 3px 3px 0;
	background: #f6f6f6;
	float: left;
	font-size: 11px;
}

.list-tags li a:hover {
	transition: all ease-in-out 0.3s;
	background: #47a3da;
	color: #fff;
	cursor: pointer;
}
.list-tags li a:link {
	font-weight: normal;
}
.list-tags li:hover > a:link {
	font-weight: normal;
}

.list-underline li {
	line-height: 20px;
	width: 100%;
	padding: 5px 0px;
	display: inline-block;
	border-bottom: 1px solid #eee;
}
.list-underline li h6 {
	font-weight: bold;
	width: 45%;
	font-size: 12px;
	display: inline-block;
	text-transform: capitalize;
	float: left;
}

.list-underline li span {
	float: right;
	width: 55%;
	text-align: left;
	color: #888;
}

/* ----------------------------------------------------------------
    FAQs Filter Style
-----------------------------------------------------------------*/

#list-filter ul {
	display: inline-block;
	margin-bottom: 20px;
}

#list-filter ul li {
	float: left;
	cursor: pointer;
	margin-right: 10px;
	
}

#list-filter li a:hover,
#list-filter li .current {
	color: #fff;
	background: transparent;
}

#list-filter li a {
	color: inherit;
	padding: 8px 15px;
	background: #eee;
	font-weight: bold;
}

.discounted-item {
	clear: left;
}

#toggle-list .toggle-title {
	width: 100%;
    padding: 15px 15px 13px;
    cursor: pointer;
	position: relative;
	float: left;
	line-height: 24px;
	border: 1px solid #ccc;
	border-top: 1px solid #999;
	margin-bottom: 10px;
}

#toggle-list .toggle-title:before {
	font-family: 'FontAwesome';
	content: "\f059";
	float: left;
	margin-right: 5px;
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 25px;
	color: #585858;
}

#toggle-list .answer {
	display: none;
	float: left;
	padding: 20px;
	position: relative;
	margin-bottom: 10px;
	margin-top: -20px;
	border: 1px solid #ccc;
	border-top: none;
	background: #fff;
	color: #888;
}

#toggle-list .close {
	color: transparent;
	border-top: 1px solid transparent;
	border-left: 1px solid #ccc !important;
	border-right: 1px solid #ccc !important;
}

#toggle-list .close:before {
	font-family: 'FontAwesome';
	content: "\f139";
	float: left;
	margin-right: 5px;
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 25px;
	color: #47a3da;
}

/* ----------------------------------------------------------------
    Photo List Filter Style
-----------------------------------------------------------------*/
#photo-filter {
	margin: 10px 0;
}


.controls li {
	cursor: pointer;
	padding: 8px 10px;
	background: #eee;
}

.controls li:hover,
.controls li.active {
	color: #fff;
	background: transparent;
}


#photo-filter {
	width: 100%;
}

#photo-filter:after {
	content: '';
	display: inline-block;
	width: 100%;
}

#photo-filter a {
	display: none;
	height: 200px;
	float: left;
	padding: 0px;
	overflow: hidden;
	position: relative;
}

#photo-filter a img {
	width: 100%;
	position: absolute;
	left: 0;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;	
	transition: all 300ms ease-out;
}

#photo-filter a .caption {
	background-color: rgba(0,0,0,0.8);
	position: absolute;
	color: #fff;
	z-index: 100;
		-webkit-transition: all 300ms ease-out;
		-moz-transition: all 300ms ease-out;
		-o-transition: all 300ms ease-out;
		-ms-transition: all 300ms ease-out;	
		transition: all 300ms ease-out;
	left: 0;
}

#photo-filter a .scale-caption  {
	opacity: 0;
	width: 100%;
	height: 100%;
	text-align: left;
	padding: 15px;
}

#photo-filter a .scale-caption h3, 
#photo-filter a .scale-caption p {
	position: relative;
	left: -200px;
	width: 100%;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;	
	transition: all 300ms ease-out;
}

#photo-filter a .scale-caption h3 {
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	-ms-transition-delay: 300ms;	
	transition-delay: 300ms;
}

#photo-filter a .scale-caption p {
	left: -400px;
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	-ms-transition-delay: 500ms;	
	transition-delay: 400ms;
}


/** Fade Caption :hover Behaviour **/
#photo-filter a:hover .scale-caption  {
	opacity: 1;
}

/** Scale Caption :hover Behaviour **/
#photo-filter a:hover img {
	-moz-transform: scale(1.4);
	-o-transform: scale(1.4);
	-webkit-transform: scale(1.4);
	transform: scale(1.4);
}

#photo-filter a:hover .scale-caption h3 {
	-moz-transform: translateX(200px);
	-o-transform: translateX(200px);
	-webkit-transform: translateX(200px);
	transform: translateX(200px);
}

#photo-filter a:hover .scale-caption p {
	-moz-transform: translateX(400px);
	-o-transform: translateX(400px);
	-webkit-transform: translateX(400px);
	transform: translateX(400px);
}

#photo-filter .gap{
	display: inline-block;
}



/* ----------------------------------------------------------------
    Gallery Style
----------------------------------------------------------------*/
#gallery .gal-thumb {
	width: 100%;
	height: 200px;
	cursor: pointer;
	float: left;
	position: relative;
	overflow: hidden;
	border: 1px solid #ddd;
}
#gallery .gal-thumb img {
	width: 100%;
	position: absolute;
	left: 0;
		-webkit-transition: all 300ms ease-out;
		-moz-transition: all 300ms ease-out;
		-o-transition: all 300ms ease-out;
		-ms-transition: all 300ms ease-out;	
	transition: all 300ms ease-out;
}
/*
#gallery div .caption {
	background-color: rgba(0,0,0,0.8);
	position: absolute;
	color: #fff;
	z-index: 100;
		-webkit-transition: all 300ms ease-out;
		-moz-transition: all 300ms ease-out;
		-o-transition: all 300ms ease-out;
		-ms-transition: all 300ms ease-out;	
		transition: all 300ms ease-out;
	left: 0;
}

#gallery div .scale-caption  {
	opacity: 0;
	width: 100%;
	height: 100%;
	text-align: left;
	padding: 25px;
}

#gallery div .scale-caption h3, 
#gallery div .scale-caption p {
	position: relative;
	left: -200px;
	width: 100%;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;	
	transition: all 300ms ease-out;
}

#gallery div .scale-caption h3 {
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	-ms-transition-delay: 300ms;	
	transition-delay: 300ms;
}

#gallery div .scale-caption p {
	left: -400px;
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	-ms-transition-delay: 500ms;	
	transition-delay: 400ms;
}


#gallery div:hover .scale-caption  {
	opacity: 1;
}

#gallery div:hover img {
	-moz-transform: scale(1.4);
	-o-transform: scale(1.4);
	-webkit-transform: scale(1.4);
	transform: scale(1.4);
}

#gallery div:hover .scale-caption h3 {
	-moz-transform: translateX(200px);
	-o-transform: translateX(200px);
	-webkit-transform: translateX(200px);
	transform: translateX(200px);
}

#gallery div:hover .scale-caption p {
	-moz-transform: translateX(400px);
	-o-transform: translateX(400px);
	-webkit-transform: translateX(400px);
	transform: translateX(400px);
}
*/

.photo-info {
	width: 100%;
	height: 33px;
	
	display: inline-block;
	background: #f6f6f6;
	border: 1px solid #ddd;
	border-top: none;
	overflow: hidden;
}

.photo-info h6 {
	font-weight: bold;
	text-align: center;
	font-size: 13px;
	line-height: 33px;
	color: #666;
}

/* ----------------------------------------------------------------
    Post Styles
-----------------------------------------------------------------*/
.date-box { 
	width: 60px;
	height: 65px;
	text-align: center;
	display: block;
	float: left;
	margin: 0 20px 0 0;
	background: #fff;
	
}
.date-box h4 {
	line-height: 40px;
	height: 40px;
	text-shadow: -1px 0 0 rgba(255, 255, 255, 0.2);
	border: 1px solid #ddd;
	background: #fafafa;
	border-bottom: none;
	padding: 0px;
	margin: 0px;
}

.date-box span {
	color: #fff;
	background: transparent;
	line-height: 25px;
	height: 25px;
	width: 100%;
	display: block;
}


.answer {
	background: #fff;
	padding: 0;
	margin: 0;
	position: relative;
	width: 100%;
	
}

.answer .answer-title {
	color: #fff;
	background: transparent;
	padding: 7px 15px;
	margin: 0;
	width: 100%;
	display: block;
	box-shadow: none;
	border: none;
}

.answer img {
	margin: 0 !important;
	padding: 0 !important;
}
.answer .content {
	padding: 20px 15px 10px;
	border: 1px solid #ccc;
	border-top: none;
}
.answer .content p {
	color: #999;
}
/* ----------------------------------------------------------------
    Image Styles
-----------------------------------------------------------------*/
.img-circle { border-radius: 50%; }
.img-responsive { 
	display: block; 
	height: auto; 
	max-width: 100%; 
}
.img-rounded { border-radius: 10px; }
.img-thumbnail { 
	display: inline-block; 
	height: auto;
	max-width: 100%;
	padding: 8px;
	line-height: 1.428571429;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.2s ease-in-out;
		  transition: all 0.2s ease-in-out;
}



/* ----------------------------------------------------------------
    Shape Styles
-----------------------------------------------------------------*/
.square {
	border-radius: 0%;
}
.circle {
	border-radius: 50%;
}
.round {
	border-radius: 15%;
}


/* ----------------------------------------------------------------
    Icon Styles
-----------------------------------------------------------------*/
p > .icon {
	margin-right: 15px;
	margin-bottom: 5px;
	margin-top: 10px;
}

.icon {
	text-align: center;
	display: block;
	cursor: default;
	float: left;
	color: #fff;
	background: #555;
	border: 1px solid rgba(0, 0, 0, 0.1);
	width: 55px;
	height: 55px;
	position: relative;
	box-shadow: 0, 0, 2px rgba(0, 0, 0, 0.3);
}
.icon i {
	font-size: 30px;
	line-height: 50px !important;
}


.icon.mini {
	width: 25px;
	height: 25px;
}
.icon.mini i {
	font-size: 14px;
	line-height: 22px !important;
}


.icon.sm {
	width: 35px;
	height: 35px;
}
.icon.sm i {
	font-size: 20px;
	line-height: 33px !important;
}


.icon.lg {
	width: 70px;
	height: 70px;
}
.icon.lg i {
	font-size: 40px;
	line-height: 65px !important;
}


.icon.huge {
	width: 120px;
	height: 120px;
}
.icon.huge i {
	font-size: 80px;
	line-height: 115px !important;
}


.icon + .icon {
	margin-right: 5px;
}

a .icon:hover {
	transition: all ease-in-out 0.3s;
	cursor: pointer;
	border: 1px solid transparent;
}




.landing {
	text-align: center !important;
	padding-top: 200px;
}

.landing h1 {
	font-family: 'Droid Sans', sans-serif;
	font-weight: bold;
	letter-spacing: -10px;
	font-size: 160px;
	text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.11);
	margin-bottom: 40px;
	color: #888;
	text-align: center;
}
.landing img {
	margin: 0 auto !important;
}

.sky-banner {
	position: fixed;
	left: 50%;
	top: 150px;
	margin-left: 600px;
	z-index: 99998;
}