@import url("../fonts/font-awesome/font-awesome.css");
@import url("../fonts/open-sans/open-sans.css");
@import url("../fonts/roboto/roboto.css");


/* ========================================================== 
   INITIALIZE
=============================================================*/
/* SKIN ONE COLOR CLASSES
--------------------------------------------------------*/
.color-1 {
  color: #ddba58;
}

.color-1-bg {
  background-color: #ddba58;
}

.color-2 {
  color: #2f4e6f;
}

.color-2-tint-20pc {
  color: #58718b;
}

.color-2-80pc {
  color: rgba(47, 78, 111, 0.8);
}

.color-2-bg {
  background-color: #2f4e6f;
}

.color-2-bg-90pc {
 
}

.color-2-bg-80pc {
  background-color: rgba(47, 78, 111, 0.8);
}

.color-2-bg-70pc {
  background-color: rgba(47, 78, 111, 0.7);
}

.color-2-bg-60pc {
  background-color: rgba(47, 78, 111, 0.6);
}

.color-2-bg-50pc {
  background-color: rgba(47, 78, 111, 0.5);
}

/* CUSTOM SHORT CODES
-------------------------------------------------- */
.u-case {
  text-transform: uppercase;
}

.l-case {
  text-transform: lowercase;
}

.c-case {
  text-transform: capitalize;
}

.no-margin {
  margin: 0 !important;
}

.no-margin-x {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.no-margin-y {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.no-margin-b {
  margin-bottom: 0 !important;
}

.no-margin-t {
  margin-top: 0 !important;
}

.no-pad {
  padding: 0 !important;
}

.no-pad-x {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.no-pad-y {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.no-pad-b {
  padding-bottom: 0 !important;
}

.no-pad-t {
  padding-top: 0 !important;
}

.pad-t-80 {
  padding-top: 80px;
}

.pad-y-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.pad-y-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.margin-t-30 {
  margin-top: 30px !important;
}

.margin-y-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.margin-t-20 {
  margin-top: 20px !important;
}

.margin-t-15 {
  margin-top: 15px !important;
}

.margin-t-10 {
  margin-top: 15px !important;
}

.margin-b-30 {
  margin-bottom: 30px !important;
}

.margin-b-20 {
  margin-bottom: 20px !important;
}

.margin-b-15 {
  margin-bottom: 15px !important;
}

.margin-b-10 {
  margin-bottom: 15px !important;
}

.width-100pc {
  width: 100%;
}

.width-90pc {
  width: 90%;
}

.width-95pc {
  width: 95%;
}

.width-80pc {
  width: 80%;
}

.width-50pc {
  width: 50%;
}

.smaller {
  font-size: 90%;
}

.rnd-3 {
  border-radius: 3px;
}

.rnd-5 {
  border-radius: 5px;
}

.bold {
  font-weight: bold !important;
}

.align-center {
  text-align: center;
}

.grayscale {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
}

.grayscale:hover {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
}

/* TRANSITIONS
-------------------------------------------------- 

(1) On hovering, .ts-1(Transition One) animates the marked element with the defined transition.
(2) On hovering, .tts-1(Targeted Transition One) animates the child of the parent element(marked with .tts-1-target) with the defined transition.

 */
.ts-1, .tts-1 .tts-1-target {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

.ts-1:hover, .tts-1:hover .tts-1-target {
  -webkit-transform: scale(1.1) rotate(360deg);
  -moz-transform: scale(1.1) rotate(360deg);
  -o-transform: scale(1.1) rotate(360deg);
  -ms-transform: scale(1.1) rotate(360deg);
  transform: scale(1.1) rotate(360deg);
}

.ts-fadein, .tts-fadein .tts-fadein-target {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-opacity: 0;
  -moz-opacity: 0;
  -o-opacity: 0;
  -ms-opacity: 0;
  opacity: 0;
}

.ts-fadein:hover, .tts-fadein:hover .tts-fadein-target {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  -o-opacity: 1;
  -ms-opacity: 1;
  opacity: 1;
}

/* TYPOGRAPHY
-------------------------------------------------- */
.font-1, h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans";
  font-weight: normal;
}

.font-2 {
	font-family: "Open Sans";
	font-size: 28px;
color: #fff; 
}

body {
  font: 13px "Open Sans", Arial, sans-serif;
  line-height: 1.7em;
  color: #58718b;
}

h1, h2, h3, h4, h5, h6 {
  color: #435f7d;
  margin: 0 0 20px 0;
}

.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6 {
  color: #fff;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 13px;
}

p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
  display: block;
  margin-top: 40px;
}

p {
  margin-bottom: 20px;
  line-height: 1.7em;
}

img + p {
  margin-top: 20px;
}

hr {
  margin: 60px 0;
  border-color: #ddd;
}

h4 + hr {
  margin-top: 0;
  line-height: 1;
}

a {
  color: #2f4e6f;
}

a:hover {
  text-decoration: none;
}

a, a:focus, a:active {
  outline: 0;
  text-decoration: none;
}

blockquote {
  background: #F7F8F8;
  padding: 20px 25px;
  font-weight: 300;
  margin: 0 0 30px 0;
  font-size: 15px;
  border-left: 5px solid #ddba58;
}

img {
  max-width: 100%;
  height: auto;
}

img + p {
  margin-top: 30px;
}

p + blockquote {
  margin-top: 30px;
}

.dropcap {
  float: left;
  font-size: 32px;
  margin: 8px 5px 5px 0;
}

.hr-diamond {
  text-align: center;
  position: relative;
  height: 7px;
  border: 0;
  margin: 60px auto 60px auto;
  line-height: 1;
}

.hr-diamond .diamond {
  display: inline-block;
  height: 18px;
  width: 18px;
  border: 1px solid #ddd;
  background: #fff;
  transform: rotate(45deg);
}

.hr-diamond .line {
  height: 1px;
  width: 100%;
  position: absolute;
  background: #ddd;
  top: 9px;
  left: 0;
}

.pagination, .pagination > li:first-child > a, .pagination > li:first-child > span,
.pagination > li:last-child > a, .pagination > li:last-child > span,
.btn, .alert, .container .jumbotron, .form-control, .form-control:focus {
  box-shadow: none;
  border-radius: 3px;
}

/* BUTTONS
-------------------------------------------------- */
.btn {
  text-transform: capitalize;
  color: #fff;
  border: 0;
  padding: 8px 16px;
}

.btn-primary {
  background-color: #ddba58;
}

.btn-primary:hover {
  background-color: #ca4816;
}

.btn-color {
  color: white;
}

.btn-color.white-bg, .btn-color.white-bg:hover {
  color: #2f4e6f;
}

.btn-color:hover {
  color: #fff;
  background-image: -webkit-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: -moz-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: -o-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: -ms-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
}

.btn i {
  margin: 0 10px 0 0;
  text-shadow: none;
  font-weight: normal;
  font-size: 1.2em;
  vertical-align: middle;
}

.btn-outline {
  color: #fff;
  border: 1px solid #fff;
}

.btn-default {
  background: #F5F5F5;
  border: 1px solid #ddd;
  color: #666;
}

.btn-default.no-border {
  border: none;
}

.btn-default:hover {
  background: #eeeeee;
}

.split-buttons {
  margin: 0 auto;
  position: relative;
  width: 350px;
}

.split-buttons span {
  background: #323740;
  bottom: 0;
  color: #FFFFFF;
  display: block;
  font-style: italic;
  height: 30px;
  left: 0;
  line-height: 30px;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 30px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.1);
}

.split-buttons .btn {
  display: inline-block;
  margin: 0;
  font: bold 16px "Roboto Condensed";
  padding: 18px 0;
  text-transform: uppercase;
  width: 50%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

/* TABS
---------------------------------------------------*/
.tab-pane {
  padding: 20px;
  border: 1px solid #ddd;
  border-top: 0;
  background: #fff;
}

.tab-content.no-border .tab-pane {
  padding: 20px 0;
  border: 0;
  background: none;
}

.nav-tabs > li > a {
  color: #333;
  border: 1px solid #ddd;
  border-bottom: 0;
  border-right-width: 0;
  margin: 0;
  background: #FAFAFA;
  font-size: 13px;
  padding: 15px 20px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.nav-tabs > li:last-child > a, .nav-tabs > li:last-child.active > a {
  border-right-width: 1px !important;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  border-right-width: 0;
  border-top: 2px solid #ddba58;
}

.nav-tabs > li > a:hover {
  background: #fff;
  border-color: #ddd;
}

/* BREADCRUMB
---------------------------------------------------*/
.breadcrumb {
  padding: 0;
  background: none;
  margin: 0;
  display: inline-block;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.breadcrumb li {
  line-height: 35px;
  font-size: 12px;
  text-transform: uppercase;
}

.breadcrumb li a {
  color: #888888;
}

.breadcrumb li.active {
  font-weight: 600;
}

.breadcrumb i {
  text-align: center;
  display: inline-block;
  line-height: 35px;
  width: 35px;
  background: #eee;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

/* PROGRESS
-------------------------------------------------- */
.progress {
  height: 35px;
}

.progress-bar {
  text-align: left;
}

.grey-bg .progress {
  background-color: white;
}

.progress-title {
  display: none;
  line-height: 1;
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 13px;
  color: #888;
}

.progress .skill {
  font-family: "Roboto Condensed Light";
  line-height: 35px;
  padding: 0;
  margin: 0 0 0 20px;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

.progress .skill i {
  float: right;
  font-style: normal;
  margin: 0 20px 0 0;
}

/* PANELS
-------------------------------------------------- */
.panel-group .panel {
  margin-bottom: 15px;
}

.panel-heading {
  padding: 15px 20px;
}

.panel-heading .fa {
  margin-right: 7px;
}

/* JUMBOTRON
-------------------------------------------------- */
.container .jumbotron {
  background: #FCFCFC;
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  padding: 60px 40px 40px 40px;
}

.jumbotron h1 {
  font-size: 35px;
  text-transform: capitalize;
  margin: 0 0 15px 0;
  color: #666;
}

.jumbotron p {
  font-size: 14px;
  margin: 0 0 20px 0;
}

.jumbotron .btn {
  padding: 13px 30px;
  margin: 10px 10px 0 0;
}

/* TABLE
-------------------------------------------------- */
.table {
  border: 1px solid #dddddd;
}

.table tbody > tr > td, .table thead > tr > th {
  padding: 15px;
}

/* CALLOUTS
-------------------------------------------------- */
.bs-callout {
  border-left: 3px solid #EEEEEE;
  margin: 20px 0;
  padding: 20px;
}

.bs-callout h4 {
  margin: 0 0 5px 0;
}

.bs-callout p {
  margin: 0;
}

.bs-callout-warning {
  background-color: #fcf8f2 !important;
  border-color: #F0AD4E;
}

.bs-callout-warning h4 {
  color: #f0ad4e;
}

.bs-callout-danger {
  background-color: #FDF7F7;
  border-color: #d9534f !important;
}

.bs-callout-danger h4 {
  color: #d9534f;
}

.bs-callout-info {
  background-color: #F4F8FA;
  border-color: #5bc0de !important;
}

.bs-callout-info h4 {
  color: #5bc0de;
}

.bs-callout-success {
  background-color: #DFF0D8;
  border-color: #d6e9c6 !important;
}

/* STYLED LIST
-------------------------------------------------- */
ul.styled-list {
  list-style: none;
  padding: 0;
}

ul.styled-list i {
  line-height: 20px;
  width: 20px;
  border-radius: 50%;
  text-align: center;
  font-size: 10px;
  display: inline-block;
  background: #ddba58;
  color: #fff;
  margin: 0 10px 0 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -o-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
}

ul.styled-list li {
  line-height: 30px;
}

/* MISC
-------------------------------------------------- */
.more-link {
  text-transform: capitalize;
}

.more-link i {
  line-height: 15px;
  width: 15px;
  text-align: center;
  font-size: 10px;
  display: inline-block;
  margin: 0 0 0 7px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -o-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.white-bg {
  background-color: white;
}

.white-bg-20pc {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ========================================================== 
   BACKGROUND IMAGES
=============================================================*/
.pic-bg-1 {
  background: url("../images/backgrounds/cover1.jpg") no-repeat;
 
}

.pic-bg-2 {
  background: url("../images/backgrounds/cover2.jpg") no-repeat center 0 fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}

.pic-bg-3 {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	-ms-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	background-image: url(../images/backgrounds/rewards-back.jpg);
	background-repeat: no-repeat;
	background-position: center 0;
}

.pat-bg-1 {
  background: url("../images/backgrounds/pat1.png") repeat fixed;
}

.pat-bg-2 {
  background: url("../images/backgrounds/pat1-2.png") repeat fixed;
}

.pat-bg-3 {
  background: url("../images/backgrounds/pat2.png") repeat fixed;
}

.pat-bg-4 {
  background: url("../images/backgrounds/pat3.png") repeat fixed;
}

.pat-bg-5 {
  background: url("../images/backgrounds/pat4.png") repeat fixed;
}

.grey-bg {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background-color: #F7F8F8;
}

/* ========================================================== 
   LAYOUT MODULES
=============================================================*/
/* WRAPPER
-------------------------------------------------- */
body {
  background: #fff;
}

#page-wrapper {
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  background: #fff;
  max-width: 1024px;
  -webkit-box-shadow: 0 5px 20px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 20px 2px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 5px 20px 2px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0 5px 20px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 20px 2px rgba(0, 0, 0, 0.2);
}

/* HEADER
-------------------------------------------------- */
#header {
  background: #fff;
  z-index: 999;
  width: 100%;
  width: 1024px;
  border-bottom: 1px solid #ddd;
  
}

#page-wrapper.wide #header {
  width: 100%;
}

#top-bar {
  border-top: 5px solid #ddba58;
  position: relative;
}

#top-bar.open {
  border: 0;
}

#top-bar .container {
  display: none;
}

#top-bar .toggle:before {
  content: "+";
}

#top-bar .toggle.open:before {
  content: "-";
}

#top-bar .toggle {
  background: #ddba58 url(../images/top-toggle.png);
  color: #FFF;
  cursor: pointer;
  display: block;
  font-size: 20px;
  font-weight: 300;
  height: 30px;
  line-height: 1;
  padding: 0 5px 0 0;
  position: absolute;
  bottom: -30px;
  right: 0;
  text-align: right;
  width: 44px;
}

#top-bar .links {
  list-style: none;
  margin: 0;
  padding: 0;
}

#top-bar .links > li {
  display: inline-block;
  opacity: 0.9;
}

#top-bar .links > li:hover {
  opacity: 1;
}

#top-bar .links > li > a {
  color: #fff;
  display: block;
  font-size: 11px;
  line-height: 40px;
  padding: 0 15px;
  text-transform: uppercase;
}

#top-bar .links > li > a > i {
  font-size: 12px;
  line-height: 40px;
  margin-right: 10px;
}

#top-bar .links.pull-right {
  float: right;
}

/* MAIN NAV
----------------------------------------------------------------------------- */
#main-nav .navbar-toggle {
  margin: 24px 30px 0 0;
  background: none !important;
  padding: 7px 15px;
}

#main-nav .navbar-toggle .fa {
  color: #dddddd;
}

#main-nav {
  background: none;
  width: 100%;
  border: none;
  display: block;
  min-height: 0;
  margin: 0;
}

#main-nav.navbar-default .navbar-nav > li {
  margin: 0;
}

#main-nav.navbar-default .navbar-nav > li > a {
  font: normal 15px "Roboto Condensed";
  text-transform: uppercase;
  line-height: 87px;
  display: block;
  padding: 0 17px;
  color: #666;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

#main-nav.navbar-default .navbar-nav > li .child-symbol {
  margin-left: 10px;
  color: #ddba58;
}

#main-nav.navbar-default .navbar-nav > .active > a, #main-nav.navbar-default .navbar-nav > li:hover > a {
  background: none;
  color: #ddba58;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

#main-nav.navbar-default .navbar-nav > .open > a,
#main-nav.navbar-default .navbar-nav > .open > a:hover,
#main-nav.navbar-default .navbar-nav > .open > a:focus {
  background-color: white;
}

#main-nav.navbar-default .navbar-nav > li.cart-link > a {
  text-transform: lowercase;
  border: 3px solid #eee;
  color: #8294a8;
  font: normal 13px "Roboto Condensed";
  background: none;
  line-height: 35px;
  margin: 23px 0 0 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

#main-nav.navbar-default .navbar-nav > li.cart-link > a:hover {
  color: #ddba58;
  border-color: #ddd;
  background: none;
}

#main-nav.navbar-default .navbar-nav > li > a.btn .fa {
  color: #ddba58;
  vertical-align: baseline;
}

#main-nav .dropdown-menu {
  top: 87px;
  left: 0;
  padding: 0;
  background: none;
  border: none;
  border-top: 3px solid #ddba58;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

#main-nav .dropdown-menu a {
  background: #fff;
  color: #888;
  border: 1px solid #eee;
  border-top: none;
  padding: 12px 20px;
  font-size: 12px;
  position: relative;
  text-transform: capitalize;
}

#main-nav .dropdown-menu li:first-child a {
  border-top: none;
}

#main-nav .dropdown-menu a:hover, #main-nav .dropdown-menu li.active a {
  background: #f7f8f8;
}

#main-nav .navbar-brand {
  padding: 0;
  height: 100%;
}

#logo {
  font: bold 35px "Roboto Condensed";
  line-height: 35px;
  padding: 0;
  margin: 23px 0 0 0;
}

#logo .fa {
  margin: 0 7px 0 0;
  line-height: 1;
  font-size: 35px;
}

#logo img {
  height: 35px;
  width: auto;
  margin: 0;
  padding: 0;
  display: block;
}

/* CONTENT BLOCKS
---------------------------------------------------*/
#content-wrapper {
  padding: 0 0 80px 0;
}

.overlay {
  height: 100%;
  width: 100%;
}

.full-block .container {
  padding-top: 80px;
  padding-bottom: 80px;
}

.error-block .container {
  padding-top: 110px;
  padding-bottom: 110px;
}

.page-title .container {
	padding-top: 100px;
	padding-top: 50px;
	padding-bottom: 50px;
}

.page-title.short .container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.page-title .section-title {
  margin: 0;
}

.dark-bg {

}

/* TITLE BLOCKS
---------------------------------------------------*/
.section-title {
  text-align: center;
  margin: 0 0 40px 0;
}

.section-title h2 {
  text-transform: uppercase;
  margin: 0 0 20px 0;
  line-height: 1;
  font-size: 30px;
  font-family: "Roboto Black";
  font-weight: normal;
}

.section-title p {
  display: inline-block;
  margin: 10px 0 0 0;
  font-size: 18px;
  font-family: "Roboto Condensed Light";
  color: #888;
  text-transform: capitalize;
  font-weight: normal;
}

.section-title .line {
  display: block;
  width: 120px;
  margin: 0 auto;
  height: 4px;
  background: #ddba58;
}

.dark-bg .section-title h2 {
  color: white;
}

.dark-bg .section-title p {

}

.widget-title {
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  padding: 0 20px;
  line-height: 45px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.widget-title i {
  float: right;
  display: inline-block;
  line-height: 45px;
}

.line-title {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  margin: 0 0 20px 0;
}

.line-title h3, .line-title h4, .line-title h5 {
  padding: 0 5px 15px 0;
  line-height: 1;
  margin: 0 0 -2px 0;
  display: inline-block;
  border-bottom: 2px solid #ddba58;
}

/* PAGE INFO
---------------------------------------------------*/
#page-info {
  margin: 20px 0 20px 0;
  padding-bottom: 0px;
  border-bottom: 2px solid #2f4e6f;
}

.page-links {
  list-style: none;
  padding: 0;
  display: inline-block;
}

.page-links.pull-left {
  margin: 0 10px 0 0;
}

.page-links.pull-right {
  margin: 0 5px 0 0;
}

.page-links li {
  display: inline-block;
}

.page-links i {
  text-align: center;
  display: inline-block;
  line-height: 35px;
  width: 35px;
  background: #eee;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.page-links a {
  display: block;
  color: #888;
}

.page-links a:hover i {
  color: white;
}

/* SIDE WIDGETS
---------------------------------------------------*/
.side-widget {
  margin: 0 0 30px 0;
}

/* SIDE POSTS
---------------------------------------------------*/
ul.side-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.side-posts li {
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px dotted #ddd;
}

ul.side-posts li .image {
  width: 25%;
  height: auto;
  float: left;
}

ul.side-posts li .image img {
  padding: 3px;
  border: 1px solid #eee;
}

ul.side-posts li .text {
  width: 70%;
  height: auto;
  float: right;
}

ul.side-posts li .text a {
  display: block;
  color: #333;
  text-transform: capitalize;
  font-weight: 600;
}

ul.side-posts li .text span {
  font-size: 11px;
}

ul.side-posts li:last-child {
  border: none;
}

/* TAGS
---------------------------------------------------*/
ul.tags {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.tags li {
  display: block;
  float: left;
  margin: 0 7px 7px 0;
}

ul.tags li a {
  display: block;
  font-size: 12px;
  line-height: 1;
  border: 1px solid #97a6b7;
  color: #97a6b7;
  padding: 10px 15px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

ul.tags li a:hover {
  background: #f8f9fa;
  color: #2f4e6f;
}

/* SIDE LINKS
---------------------------------------------------*/
ul.side-links {
  margin: 0;
  list-style: none;
  padding: 0;
}

ul.side-links > li {
  border-bottom: 1px solid #eeeeee;
}

ul.side-links > li i {
  margin: 0 10px 0 0;
}

ul.side-links > li > a {
  color: #666666;
  line-height: 40px;
  padding: 0 0 0 20px;
  background: url("../images/arrow1.png") no-repeat 5px center;
}

ul.side-links > li > a:hover {
  color: #ff3366;
}

ul.side-links > li > ul {
  display: none;
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

ul.side-links > li > ul > li > a {
  background: #F7F7F7;
  border-bottom: 1px dotted #CCCCCC;
  color: #666666;
  display: block;
  line-height: 35px;
  padding: 0 20px;
  font-size: 0.9em;
}

ul.side-links > li > ul > li:last-child > a {
  border: medium none;
}

ul.side-links > li > .toggle-children {
  background: #FBFBFB;
  color: #888;
  border: 1px solid #ddd;
  cursor: pointer;
  display: block;
  float: right;
  font-family: Arial;
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  margin: 10px 0 0 0;
  text-align: center;
  width: 20px;
}

ul.side-links > li > .toggle-children:hover {
  background: #eeeeee;
}

ul.side-links > li > .toggle-children:before {
  content: "+";
}

ul.side-links > li > .toggle-children.open:before {
  content: "-";
}

/* PHOTO STREAM
-------------------------------------------------- */
ul.photo-stream {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1;
  margin: 0;
  padding-top: 11px;
}

ul.photo-stream.four-cols > li {
  display: block;
  float: left;
  height: 22%;
  width: 22%;
  margin: 0 4% 4% 0;
}

ul.photo-stream.four-cols > li:nth-child(4n) {
  margin-right: 0;
}

ul.photo-stream.three-cols > li {
  display: block;
  float: left;
  height: 30%;
  width: 30%;
  margin: 0 5% 5% 0;
}

ul.photo-stream.three-cols > li:nth-child(3n) {
  margin-right: 0;
}

ul.photo-stream li img {
  width: 100%;
  height: auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

/* FOOTER
-------------------------------------------------- */
#footer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#top-footer {
  padding: 60px 0;
}

#top-footer a, #bottom-footer {
  color: rgba(255, 255, 255, 0.6);
}

#top-footer h4 {
  font-weight: normal;
  text-transform: uppercase;
  color: #fff;
  font-size: 15px;
}

#top-footer ul.links {
  list-style: none;
  padding: 0;
  margin: 0;
}

#bottom-footer {
  background: rgba(0, 0, 0, 0.15);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#copy-text {
  line-height: 20px;
  font-size: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

#footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer-links > li {
  display: inline-block;
  margin: 0 0 0 20px;
}

#footer-links > li > a {
  line-height: 20px;
  font-size: 11px;
  margin: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

#footer-links > li > a:hover {
  color: white;
}

#footer ul.social-links li {
  margin: 0 8px 0 0;
  opacity: 1;
}

#footer ul.social-links li i {
  line-height: 33px;
  width: 33px;
  background: none;
  border: 1px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

#footer ul.social-links li:hover i {
  background: #fff;
  color: #2f4e6f;
}

#footer ul.tweetList {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1;
}

#footer ul.tweetList a {
  color: white;
}

#footer ul.tweetList p {
  margin: 0;
}

#footer ul.tweetList .timestamp {
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

#footer ul.tweetList li > i {
  display: block;
  float: left;
  width: 15%;
  font-size: 30px;
  height: 100%;
}

#footer ul.tweetList li > p {
  width: 85%;
  display: block;
  float: right;
}

.input-group.newsletter-signup > input.form-control {
  border: none;
}

.newsletter-signup .btn {
  border: none;
  padding: 7px 12px;
}

/* ========================================================== 
   COMMON MODULES
=============================================================*/
/* CONTACT
================================================== */
.contact-info {
  margin: 0 0 20px 0;
}

.contact-info ul {
  margin: 0;
  list-style: none;
  padding: 20px;
  border: 0px solid #ddd;
  background-color: #F7F8F8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
}

.contact-info hr {
  margin: 20px 0;
}

.contact-info li {
  display: block;
  margin: 0 0 10px 0;
}

.contact-info li:last-child {
  margin: 0;
}

.contact-info i {
  border-radius: 5px;
  line-height: 25px;
  width: 25px;
  text-align: center;
  color: #fff;
  display: inline-block;
  margin: 0 10px 0 0;
}

.contact-form {
  margin: 0 auto;
  width: 100%;
}

.contact-form.home-contact {
  margin: 0 auto;
  width: 80%;
}

.contact-form input[type="text"], .contact-form select {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  height: auto;
  margin: 0 0 30px;
  padding: 13px;
}

.contact-form textarea {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  height: 201px;
  margin: 0 0 30px;
  width: 100%;
}

.contact-form .btn {
  padding: 13px 0;
  text-align: center;
  width: 100%;
}

.contact-form .pull-left, .contact-form .pull-right {
  width: 48%;
}

/* SEARCH
---------------------------------------------------*/
.search {
  background: none;
  padding: 0;
  width: 35px;
  height: 35px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

.search.open {
  width: 230px;
}

.search .wrapper {
  position: relative;
  background: none;
  display: block;
}

.search input {
  background: none repeat scroll 0 0 #F7F8F8;
  border: 0px solid #ddd;
  color: #888;
  height: 35px;
  padding: 0 10px 0 35px;
  width: 100%;
  display: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  -o-border-radius: 35px;
  -ms-border-radius: 35px;
  border-radius: 35px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
}

.search.open input {
  display: block;
}

.search .search-btn {
  background: none;
  border: 0;
  font: 0px/0 a;
  height: 35px;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  z-index: 3;
  text-align: center;
  color: #888;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.search .search-btn:after {
  content: "\f002";
  font-family: "FontAwesome";
  font-size: 16px;
  line-height: 35px;
  right: 1px;
  text-align: center;
  z-index: 400;
}

.search .search-btn:hover {
  color: #333;
}

.search .toggle {
  background-color: #eee;
  border: 0;
  height: 35px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 35px;
  z-index: 3;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.search .toggle:before {
  content: "\f002";
  font-family: "FontAwesome";
  font-size: 16px;
  line-height: 35px;
  right: 1px;
  z-index: 400;
}

.search .toggle.open:before {
  content: "\f00d";
}

.search .toggle.open, .search .toggle:hover {
  color: #fff;
  background: #2f4e6f;
}

/* SOCIAL BUTTONS
---------------------------------------------------*/
ul.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.social-links li {
  display: inline-block;
  margin: 0 4px 0 0;
}

ul.social-links a {
  display: block;
}

ul.social-links i {
  font-size: 15px;
  background: #eee;
  line-height: 35px;
  text-align: center;
  width: 35px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -o-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
}

ul.social-links.lg i {
  font-size: 15px;
  background: #eee;
  line-height: 40px;
  text-align: center;
  width: 40px;
  display: block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -o-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
}

ul.social-links i:hover {
  background-image: -webkit-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: -moz-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: -o-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: -ms-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  color: #fff;
}

ul.social-links li i.colored {
  color: white;
}

.social-links .fa-facebook.colored.default, .social-links .fa-facebook:hover {
  background-color: #204385;
}
.social-links .fa-twitter.colored.default, .social-links .fa-twitter:hover {
  background-color: #2aa9e0;
}
.social-links .fa-google-plus.colored.default, .social-links .fa-google-plus:hover {
  background-color: #d34829;
}
.social-links .fa-pinterest.colored.default, .social-links .fa-pinterest:hover {
  background-color: #ca1f25;
}
.social-links .fa-tumblr.colored.default, .social-links .fa-tumblr:hover {
  background-color: #44546d;
}
.social-links .fa-linkedin.colored.default, .social-links .fa-linkedin:hover {
  background-color: #016597;
}
.social-links .fa-rss.colored.default, .social-links .fa-rss:hover {
  background-color: #ef5c29;
}

/* RATINGS
---------------------------------------------------*/
.rating .fa {
  color: #ea7243;
  font-size: 15px;
}

.rating .fa.disabled {
  color: #dddddd;
}

/* ERROR PAGES
-------------------------------------------------- */
.error-info {
  color: #fff;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
}

.error-info .pull-left, .error-info .pull-right {
  width: 50%;
}
.pull-left2, {
  width: 80%;
}

.error-info .pull-left {
  text-align: right;
  padding: 0 30px 0 0;
}

.error-info .pull-right {
  padding: 30px 0 30px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: -1px 0 0 0 rgba(0,0,0,0.1);
  -moz-box-shadow: -1px 0 0 0 rgba(0,0,0,0.1);
  -o-box-shadow: -1px 0 0 0 rgba(0,0,0,0.1);
  -ms-box-shadow: -1px 0 0 0 rgba(0,0,0,0.1);
  box-shadow: -1px 0 0 0 rgba(0,0,0,0.1);
}

.error-info h4 {
  color: #fff;
  text-transform: uppercase;
}

.error-info h1 {
  font-size: 170px;
  display: inline-block;
  text-align: center;
  color: #fff;
  font-weight: 600;
}

.error-info p {
  margin: 0 0 30px 0;
  color: rgba(255, 255, 255, 0.7);
}

.error-info .btn {
  padding: 13px 0;
  width: 48%;
  text-align: center;
}

/* ========================================================== 
   ACCOUNT MODULES
=============================================================*/
/* ACCOUNT FORMS
------------------------------------------------- */
.form-block {
  border: 1px solid #DDDDDD;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-block .col {
  float: left;
  padding: 60px 40px;
  width: 50%;
}
.account-list {
  float: left;
  padding: 60px 40px;
  width: 70%;
}
.account-list2 {
  float: left;
   padding: 60px 4px;
  width: 30%;
}

.form-block .col.pull-right {
  border-left: 1px solid #DDDDDD;
}

.form-block .form-control, .form-block .checkbox {
  margin-bottom: 20px;
}

.form-block h4 {
  margin: 0 0 25px 0;
}

.form-block h4 > .fa {
  color: #ccc;
  margin: 0 10px 0 0;
}

.form-block .btn {
  padding-left: 20px;
  padding-right: 20px;
}

/* ========================================================== 
   BUSINESS MODULES
=============================================================*/
/* SERVICE BOXES
-------------------------------------------------- */
.service-box {
  text-align: center;
  padding: 40px 20px 20px 20px;
  border: 1px solid #ddd;
  margin: 15px 0;
}

.service-box.no-border {
  padding: 0;
  border: none;
}

.service-box h4 {
  margin: 0 0 10px 0;
  text-transform: capitalize;
}

.service-box p {
  margin: 0 0 20px 0;
  font-weight: normal;
}

.service-box .icon {
  display: inline-block;
  line-height: 90px;
  width: 90px;
  font-size: 35px;
  margin: 0 0 25px 0;
  color: #fff;
  text-align: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

/* PRICE PLANS
================================================== */
.price-plan {
  text-align: center;
  margin: 0 0 30px 0;
}

.price-plan .title {
  color: #FFFFFF;
  background: #435f7d;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 9px 15px;
  padding: 20px 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

.price-box {
  background: #FBFBFB;
  padding: 30px 0 20px 0;
}

.price-plan .price {
  text-align: center;
  width: 100px;
  line-height: 100px;
  color: #fff;
  margin: 0 auto;
  font-size: 30px;
  font-weight: bold;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #58718b;
}

.plan .price .description {
  text-transform: uppercase;
}

.price-plan .features {
  background: #FBFBFB;
  margin: 0;
  padding: 0 20px;
  width: 100%;
  list-style: none;
}

.price-plan li {
  border-bottom: 1px solid #DDDDDD;
  font-size: 12px;
  line-height: 45px;
  padding: 0;
  color: #666;
}

.price-plan .footer {
  padding: 30px 0;
  background: #435f7d;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}

.price-plan .btn {
  padding: 10px 15px;
}

.dark-bg .price-plan .title, .dark-bg .price-plan .footer {
  background: #58718b;
}
.dark-bg .price-plan .price {
  background: #637a93;
}

.price-plan.featured .btn {
  background-color: #fff;
  color: #ddba58;
}
.price-plan.featured .title, .price-plan.featured .footer, .price-plan.featured .price {
  background: #ddba58;
}

/* TEAM
-------------------------------------------------- */
.person {
  margin: 15px 0;
}

.person .image {
  margin: 0;
  position: relative;
}

.person .overlay {
  width: 100%;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

.person .links {
  margin-top: 35%;
}

.person .links i {
  font-size: 20px;
  line-height: 40px;
  width: 40px;
  display: block;
  color: #fff;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -o-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
}

.person .links i:hover {
  background: white;
}

.person .links a {
  display: inline-block;
  margin: 0 3px;
}

.person .text {
  text-align: center;
  background: #F7F8F8;
  padding: 20px 0;
}

.person h4 {
  margin: 0 0 5px 0;
  font-weight: normal;
}

.person span {
  text-transform: uppercase;
  font-size: 11px;
}

/* ========================================================== 
   PORTFOLIO MODULES
=============================================================*/
/* PORTFOLIO
-------------------------------------------------- */
ul.portfolio-grid {
  list-style: none;
  padding: 0;
}

.project {
  position: relative;
  margin: 15px 0;
}

.project img {
  width: 100%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.project .overlay {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}

.project:hover > .overlay {
  opacity: 1;
}

.project .overlay i {
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 15px;
  font-size: 30px;
  display: inline-block;
  margin: 50px 0 20px 0;
}

.project .overlay h4 {
  text-transform: capitalize;
  color: #fff;
  margin: 0 0 7px 0;
  line-height: 1;
}

.project .overlay span {
  text-transform: uppercase;
  color: #fff;
  font-size: 10px;
}

/* Filter */
ul.portfolio-filter {
  display: block;
  margin: 0 0 40px 0;
  list-style: none;
  padding: 0;
}

ul.portfolio-filter li {
  display: inline-block;
  line-height: 1em;
  margin: 5px 2px 0 5px;
  color: #333;
}

ul.portfolio-filter li a {
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: inherit;
  display: block;
  line-height: 40px;
  padding: 0 25px;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 13px;
}

ul.portfolio-filter li:hover a {
  background: #f7f7f7;
}

ul.portfolio-filter li.active a {
  background: #ddba58;
  color: #fff;
}

/* ========================================================== 
   BLOG MODULES
=============================================================*/
/* BLOG
-------------------------------------------------- */
.blog-entry {
  margin: 0 0 40px 0;
  padding: 0 0 40px 0;
  border-bottom: 1px solid #eee;
}

.blog-entry img {
  max-width: 100%;
  margin: 0 0 20px 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.blog-entry h4 {
  line-height: 1;
  margin: 0 0 20px 0;
  display: block;
}

.blog-entry h4 a {
  color: #323740;
}

.blog-entry .btn {
  font-size: 12px;
}

.blog-entry .meta {
  padding: 10px 10px;
  margin: 0 0 15px 0;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}

.blog-entry .meta i {
  margin: 0 10px 0 0;
  color: #e4622f;
}

.blog-entry .meta span {
  margin: 0 20px 0 0;
}

.blog-entry .meta span:hover i {
  color: #ddba58;
}
.blog-entry .meta span:hover a {
  color: #2f4e6f;
}

.blog-entry .meta a {
  color: #6d839a;
}

.blog-entry .continue {
  display: inline-block;
  margin: 0;
}

/* BLOG COMMENTS
-------------------------------------------------- */
ol.comments-list {
  margin: 0;
  padding: 0;
}

ol.comments-list li {
  display: block;
  margin: 0 0 40px 0;
  padding: 0 0 40px 0;
  border-bottom: 1px solid #eee;
}

ol.comments-list li:last-child {
  border: none;
}

.avatar {
  float: left;
  width: 9.6%;
}

.avatar img {
  max-width: 100%;
  height: auto;
}

.comment-box {
  float: right;
  width: 85.4%;
}

.comment-box .username {
  font-weight: bold;
  float: left;
}

.comment-box .date {
  float: right;
  color: #ccc;
}

.comment-box .comment {
  width: 100%;
  float: left;
  margin: 20px 0 0 0;
}

/* ========================================================== 
   SHOP MODULES
=============================================================*/
/* PRODUCT GRID
---------------------------------------------------------- */
.product-grid {
  margin: 0;
  list-style: none;
  padding: 0;
  height: auto;
}

.product-grid.home-products {
  padding-bottom: 30px;
}

.product-grid .product {
  margin-bottom: 30px;
	    height: 100%;
}

.product-grid .wrapper:hover {
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.2);
  -o-box-shadow: 0 0 10px rgba(0,0,0,0.2);
  -ms-box-shadow: 0 0 10px rgba(0,0,0,0.2);
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.product-grid .wrapper {
  border: 1px solid #ddd;
  padding: 10px;
  position: relative;
  -webkit-box-shadow: 0 3px 2px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 3px 2px rgba(0,0,0,0.1);
  -o-box-shadow: 0 3px 2px rgba(0,0,0,0.1);
  -ms-box-shadow: 0 3px 2px rgba(0,0,0,0.1);
  box-shadow: 0 3px 2px rgba(0,0,0,0.1);
}

.product-grid .image {
  position: relative;
}

.product-grid .image a.main img {
  width: 100%;
  height: 100%;
}

.product-grid .image ul.additional {
  opacity: 0;
  background: #fff;
  margin: 0;
  list-style: none;
  padding: 0;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -o-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
}

.product-grid .image:hover ul.additional {
  opacity: 1;
}

.product-grid .image ul.additional li {
  width: 50%;
  height: 50%;
  float: left;
  opacity: 0.6;
  border-right: 1px solid #fff;
}

.product-grid .image ul.additional li:hover {
  opacity: 1;
}

.product-grid .title {
  border-bottom: 1px solid #ddd;
  margin: 0 0 8px 0;
  padding: 0 0 0 5px;
}

.product-grid .title a.name {
  color: #58718b;
  font-size: 14px;
  font-family: "Roboto Condensed";
  line-height: 45px;
  font-weight: normal;
}

.product-grid .title a.name:hover {
  color: #2f4e6f;
}

.product-grid .title .description {
  display: none;
}

.product-grid .links {
  height: 25px;
}

.product-grid .links .price {
  float: left;
  color: #ddba58;
  line-height: 25px;
  padding: 0 0 0 5px;
  font-weight: normal;
  font-size: 16px;
  font-family: "Roboto Condensed";
}

.product-grid .links a {
  float: right;
  line-height: 25px;
  text-align: center;
  width: 25px;
  display: inline-block;
  margin: 0 0 0 5px;
  background: #ccc;
  color: #fff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.product-grid .links a.cart {
  background: #ddba58;
  color: #fff;
  border: none;
}

.product-grid .links a.compare {
  background: #58718b;
  color: #fff;
  border: none;
}

.product-grid .links a.wishlist {
  background: #c0c9d3;
  color: #fff;
  border: none;
}

.product-grid .links a:hover {
  background-image: -webkit-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: -moz-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: -o-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: -ms-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
}

.product-grid .links a.cart span {
  display: none;
}

/* PRODUCT GRID (listview)
---------------------------------------------------------- */
.product-grid.listview .links a.cart span {
  display: none;
}

.product-grid.listview .links a {
  line-height: 30px;
  width: 30px;
  float: none;
}

.product-grid.listview .links a.cart {
  width: auto;
  padding: 0 15px;
  line-height: 30px;
  text-transform: uppercase;
  font-size: 11px;
}

.product-grid.listview .links a.cart span {
  display: block;
}

.product-grid.listview .links a.cart i {
  display: none;
}

.product-grid.listview .description {
  display: block;
  margin: 0;
  line-height: 1.5em;
}

.product-grid.listview .image {
  width: 25%;
  float: left;
}

.product-grid.listview .title {
  float: right;
  width: 73%;
  height: auto;
  margin: 10px 0 20px 0;
}

.product-grid.listview .title a.name {
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.product-grid.listview .links {
  float: right;
  height: auto;
  margin-left: 2%;
  width: 73%;
}

.product-grid.listview .price {
  display: block;
  float: none;
  margin-bottom: 15px;
  font-size: 16px;
}

/* Side Products -------------------- */
ul.side-products {
  margin: 0;
  padding: 10px 0 0 0px;
  list-style: none;
}

ul.side-products li {
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px dotted #ccc;
}

ul.side-products li:last-child {
  border: none;
}

ul.side-products .image {
  width: 35%;
  float: left;
}

ul.side-products .image img {
  max-width: 100%;
}

ul.side-products .text {
  width: 61%;
  float: right;
}

ul.side-products .name {
  margin: 6px 0 6px 0;
  display: block;
  font-size: 12px;
}

ul.side-products .price {
  color: #ddba58;
  font-size: 12px;
}

ul.side-products .price-old {
  font-size: 9px;
  font-weight: normal;
  text-decoration: line-through;
  color: #ccc;
}

/* PRODUCTS FILTER
---------------------------------------------------------- */
.products-filter {
  background: #F8F8F8;
  border: 1px solid #ddd;
  padding: 8px 15px;
  margin-bottom: 30px;
  font-size: 12px;
  position: relative;
  overflow: auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

.products-filter .display {
  float: left;
  font-size: 11px;
  font-weight: normal;
  line-height: 31px;
}

.products-filter .display .show-grid, .products-filter .display .show-list {
  display: inline-block;
  cursor: pointer;
  line-height: 22px;
  margin-right: 10px;
}

.products-filter .display .fa {
  cursor: pointer;
  margin-left: 10px;
  font-size: 20px;
  line-height: 22px;
  vertical-align: middle;
}

.products-filter .display .fa:hover {
  color: #ddba58;
}

.products-filter .sort {
  float: right;
  margin-right: 20px;
}

.products-filter .limit {
  float: right;
}

.products-filter select {
  border: 1px solid #ccc;
  padding: 5px 10px;
  margin-left: 10px;
  font-size: 12px;
  color: #666;
  display: inline-block;
}

/* PRODUCT DETAILS
------------------------------------------------- */
#product-details {
  margin-bottom: 60px;
}

.main-image {
  float: right;
  width: 80%;
}

.main-image img {
  width: 100%;
  height: auto;
}

ul.additional-images {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 17%;
  float: left;
}

ul.additional-images li {
  margin-bottom: 20px;
}

ul.additional-images img {
  max-width: 100%;
  height: auto;
}

.product-info .title {
  margin: 0;
}

.product-info .price-box {
  border: 2px solid #eee;
  padding: 15px 10px;
}

.product-info .price-box .price {
  color: #ddba58;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  margin: 0;
  float: left;
}

.product-info .price-box span {
  float: right;
  line-height: 20px;
}

.product-info .review-box {
  padding: 20px 0;
  text-align: right;
}

.product-info .review-box .rating {
  float: left;
  margin-right: 10px;
}

.product-info .review-box .rating .fa {
  color: #ea7243;
  font-size: 15px;
}

.product-info .review-box .rating .fa.disabled {
  color: #dddddd;
}

.product-info .review-box span {
  display: inline-block;
  line-height: 15px;
}

.product-info .attributes-box {
  padding: 20px 0;
}

.product-info .attributes-box strong {
  margin-right: 10px;
}

.product-info .options-box {
  padding: 0;
}

.product-info .options-box select {
  display: block;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  padding: 10px;
  width: 100%;
}

.product-info .buy-box input {
  display: inline-block;
  border: 1px solid #ddd;
  width: 50px;
  text-align: center;
  height: 35px;
}

.product-info .buy-box span {
  display: inline-block;
  line-height: 35px;
  margin-right: 10px;
}

.product-info .buy-box .btn {
  margin-right: 10px;
  padding: 0 20px;
  line-height: 45px;
  font-size: 15px;
  font-family: "Roboto Condensed";
}

.product-nav-tabs > li > a {
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

/* CART
---------------------------------------------------------- */
.cart {
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 0 10px rgba(0,0,0,0.1);
  -o-box-shadow: 0 0 10px rgba(0,0,0,0.1);
  -ms-box-shadow: 0 0 10px rgba(0,0,0,0.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 100%;
  margin-bottom: 40px;
  border: 1px solid #dddddd;
}

.cart-buttons .btn {
  width: 28%;
  padding: 15px 0;
  float: right;
  margin-left: 20px;
}

/* CART CONTENTS
---------------------------------------------------------- */
table.cart-contents {
  width: 100%;
  margin: 0;
}

table.cart-contents thead {
  background: #F9F9F9;
  border-bottom: 1px solid #ddd;
}

table.cart-contents thead h5 {
  margin: 0;
  font-size: 16px;
}

table.cart-contents tbody tr {
  border-bottom: 1px solid #dddddd;
}

table.cart-contents tbody tr:hover {
  background: #fcfcfc;
}

table.cart-contents th, table.cart-contents td {
  padding: 20px;
  border-left: 1px solid #ddd;
}

table.cart-contents th:first-child, table.cart-contents td:first-child {
  border-left: none;
}

table.cart-contents td {
  vertical-align: top;
}

table.cart-contents .image {
  width: 22%;
}

table.cart-contents .image img {
  width: 100%;
  height: auto;
}

table.cart-contents .details .rating {
  margin-bottom: 10px;
}

table.cart-contents .details .title {
  display: block;
  color: #333;
  font-size: 14px;
  font-family: "Roboto Condensed";
  text-transform: capitalize;
  margin: 0 0 10px 0;
}

table.cart-contents .details span {
  display: block;
  margin: 0 0 5px 0;
  line-height: 1;
  font-size: 12px;
}

table.cart-contents .action {
  width: 110px;
}

table.cart-contents .action button {
  float: left;
  border: none;
  text-align: center;
  color: #fff;
  padding: 0;
  width: 33%;
  line-height: 30px;
}

table.cart-contents .qty {
  width: 22%;
}

table.cart-contents .qty input {
  border: 1px solid #ddd;
  height: 30px;
  padding: 0;
  width: 100%;
  text-align: center;
}

table.cart-contents .unit-price, table.cart-contents .total-price {
  width: 14%;
  font-size: 16px;
  color: #666;
  font-weight: normal;
  font-family: "Roboto Condensed";
}

table.cart-contents .total-price {
  color: #ddba58;
}

table.cart-contents .currency {
  margin-right: 3px;
}

table.cart-contents .action button.refresh {
  background: #97a6b7;
}

table.cart-contents .action button.edit {
  background: #6d839a;
}

table.cart-contents .action button.delete {
  background: #ddba58;
}

table.cart-contents .action button:hover {
  background-image: -webkit-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: -moz-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: -o-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: -ms-linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
  background-image: linear-gradient(top,  rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.1) 100%);
}

/* CART SUMMARY
---------------------------------------------------------- */
.cart-summary .terms {
  padding: 0 40px;
  color: #999;
  font-size: 12px;
  width: 72%;
  vertical-align: middle;
}

.cart-summary .terms h5 {
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.cart-summary .terms h5 .fa {
  margin-right: 10px;
  color: #ccc;
  font-size: 20px;
  vertical-align: middle;
}

.cart-summary .totals {
  width: 28%;
  border-left: 1px solid #ddd;
  vertical-align: top;
}

.cart-totals {
  width: 100%;
  height: 100%;
}

.cart-totals tr {
  border-bottom: 1px solid #dddddd;
}

.cart-totals tr:last-child {
  border: none;
}

.cart-totals td {
  border-left: 1px solid #ddd;
  width: 50%;
  padding: 7px 20px;
  color: #888;
}

.cart-totals td:first-child {
  border-left: none;
}

.cart-totals td.cart-total {
  font-family: "Roboto Condensed";
  font-size: 20px;
  color: #333;
  text-transform: uppercase;
  padding: 20px;
}

.cart-totals td.cart-total.price {
  color: #ddba58;
}

/* ========================================================== 
   MISC MODULES
=============================================================*/
/* DEMO STYLES
-------------------------------------------------- */
#page-wrapper.wide {
  max-width: 100% !important;
}

#page-wrapper.wide #header {
  width: 100% !important;
}

.demo-icons {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

.demo-icons li {
  display: block;
  float: left;
  margin: 0 2.6% 2.6% 0;
  text-align: center;
  width: 12%;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -o-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
}

.demo-icons li:nth-child(7n) {
  margin-right: 0;
}

.demo-icons li .wrapper {
  border: 1px solid #DDDDDD;
  padding: 15px 0;
  text-align: center;
}

.demo-icons li i {
  display: inline-block;
  font-size: 32px;
  margin: 0 3px 0 0;
  vertical-align: middle;
  width: 30px;
}

.demo-btns .btn {
  margin: 5px 5px 5px 0;
}

/* STYLE SWITCHER
-------------------------------------------------- */
#style-switcher {
  position: fixed;
  right: 0;
  top: 130px;
  z-index: 20000;
  display: block;
}

#style-switcher .styles {
  float: left;
  padding: 10px 0 10px 10px;
  display: none;
  background: #fff;
  padding: 15px 20px 30px 20px;
  border: 1px solid #ddd;
  -webkit-border-radius: 5px 0 0 5px;
  -moz-border-radius: 5px 0 0 5px;
  -o-border-radius: 5px 0 0 5px;
  -ms-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 0 5px rgba(0,0,0,0.1);
  -o-box-shadow: 0 0 5px rgba(0,0,0,0.1);
  -ms-box-shadow: 0 0 5px rgba(0,0,0,0.1);
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

#style-switcher .ctrl {
  float: left;
  color: #fff;
  height: 40px;
  width: 40px;
  text-align: center;
  margin-top: 20px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  -o-border-radius: 3px 0 0 3px;
  -ms-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}

#style-switcher .ctrl i {
  line-height: 40px;
  font-size: 18px;
  cursor: pointer;
}

#style-switcher .colors {
  margin: 0 0 10px 0;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 135px;
}

#style-switcher .colors li {
  display: block;
  float: left;
  margin: 0 5px 5px 0;
  padding: 10px;
  cursor: pointer;
}

#style-switcher .bgs {
  margin: 0 0 10px 0;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 135px;
}

#style-switcher .bgs li {
  display: block;
  float: left;
  margin: 0 5px 5px 0;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

#style-switcher .colors span {
  display: block;
  height: 10px;
  width: 10px;
}

#style-switcher .colors li:nth-child(4n),
#style-switcher .bgs li:nth-child(4n) {
  margin-right: 0;
}

#style-switcher input[type=text] {
  border: 1px solid #ccc;
  color: #ccc;
  width: 100px;
  position: relative;
  z-index: 9999;
  display: block;
  margin: 0 0 7px 0;
}

#style-switcher h6 {
  margin: 0 0 7px 0;
}

#style-switcher label {
  font-weight: normal;
}

#style-switcher .custom-wrapper {
  padding: 15px 10px;
  border: 1px solid #ddd;
}

#style-switcher .btn {
  width: 100%;
  padding: 4px 0;
  font-size: 11px;
  margin-top: 5px;
}

#tstyles {
  margin-bottom: 20px;
  width: 100px;
  padding: 5px;
}

#style-switcher .inner {
  background: #fff;
  padding: 20px;
}

#style-switcher h5 {
  color: #fff;
  font-weight: normal;
  font-size: 12px;
  padding: 7px 10px;
  margin: 15px 0 15px 0;
  text-transform: uppercase;
  width: 135px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  border-radius: 3px;
}

#style-switcher .info {
  background: #e3f7fc;
  border: 1px solid #8ed9f6;
  color: #1FB5ED;
  padding: 10px;
  width: 80px;
  font-size: 9px;
  line-height: 1.4em;
}

/* ========================================================== 
   VENDOR MODULES
=============================================================*/
/**
 * BxSlider v4.0 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2012
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */
/** RESET AND LAYOUT
===================================*/
.bxslider {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bx-wrapper {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  *zoom: 1;
}

.bx-wrapper img {
  max-width: 100%;
  display: block;
}

.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url(../images/bx_loader.gif) center center no-repeat white;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}

/** THEME
===================================*/
.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -60px;
  width: 100%;
}

/* PAGER */
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: .85em;
  font-family: Arial;
  font-weight: bold;
  color: #666;
  padding-top: 0px;
}

.bx-wrapper .bx-pager .bx-pager-item, .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}

.bx-pager.bx-default-pager a {
  background: #eee;
  text-indent: -9999px;
  display: block;
  width: 15px;
  height: 15px;
  margin: 0 5px;
  outline: 0;
  border-radius: 50%;
}

.bx-pager.bx-default-pager a:hover,
.bx-pager.bx-default-pager a.active {
  background: #ddba58;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.bx-controls-direction {
  position: absolute;
  width: 80px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  top: -50px;
  height: 37px;
}

.bx-wrapper .bx-controls-direction a {
  color: #ddd;
  display: block;
  text-indent: 0;
  z-index: 9999;
  border: 1px solid #ddd;
  border-radius: 50%;
  line-height: 35px;
  width: 35px;
  text-align: center;
  font-size: 18px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.dark-bg .bx-wrapper .bx-controls-direction a {
  color: #fff;
  border: 1px solid #fff;
}

.bx-wrapper .bx-prev {
  float: right;
}

.bx-wrapper .bx-next {
  float: left;
}

.bx-wrapper .bx-prev:before {
  font-family: "FontAwesome";
  content: '\f105';
}

.bx-wrapper .bx-next:before {
  font-family: "FontAwesome";
  content: '\f104';
}

.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}

/* AUTO CONTROLS (START / STOP) */
.bx-wrapper .bx-controls-auto {
  text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url(images/controls.html) -86px -11px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
  background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url(images/controls.html) -86px -44px no-repeat;
  margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
  background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}

/* IMAGE CAPTIONS */
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666666 \9;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}

.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: .85em;
  padding: 10px;
}

div.pp_default .pp_top, div.pp_default .pp_top .pp_middle, div.pp_default .pp_top .pp_left, div.pp_default .pp_top .pp_right, div.pp_default .pp_bottom, div.pp_default .pp_bottom .pp_left, div.pp_default .pp_bottom .pp_middle, div.pp_default .pp_bottom .pp_right {
  height: 13px;
}

div.pp_default .pp_top .pp_left {
  background: url(../images/prettyPhoto/default/sprite.png) -78px -93px no-repeat;
}

div.pp_default .pp_top .pp_middle {
  background: url(../images/prettyPhoto/default/sprite_x.png) top left repeat-x;
}

div.pp_default .pp_top .pp_right {
  background: url(../images/prettyPhoto/default/sprite.png) -112px -93px no-repeat;
}

div.pp_default .pp_content .ppt {
  color: #f8f8f8;
}

div.pp_default .pp_content_container .pp_left {
  background: url(../images/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y;
  padding-left: 13px;
}

div.pp_default .pp_content_container .pp_right {
  background: url(../images/prettyPhoto/default/sprite_y.png) top right repeat-y;
  padding-right: 13px;
}

div.pp_default .pp_next:hover {
  background: url(../images/prettyPhoto/default/sprite_next.png) center right no-repeat;
  cursor: pointer;
}

div.pp_default .pp_previous:hover {
  background: url(../images/prettyPhoto/default/sprite_prev.png) center left no-repeat;
  cursor: pointer;
}

div.pp_default .pp_expand {
  background: url(../images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;
  cursor: pointer;
  width: 28px;
  height: 28px;
}

div.pp_default .pp_expand:hover {
  background: url(../images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;
  cursor: pointer;
}

div.pp_default .pp_contract {
  background: url(../images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;
  cursor: pointer;
  width: 28px;
  height: 28px;
}

div.pp_default .pp_contract:hover {
  background: url(../images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;
  cursor: pointer;
}

div.pp_default .pp_close {
  width: 30px;
  height: 30px;
  background: url(../images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;
  cursor: pointer;
}

div.pp_default .pp_gallery ul li a {
  background: url(../images/prettyPhoto/default/default_thumb.png) center center #f8f8f8;
  border: 1px solid #aaa;
}

div.pp_default .pp_social {
  margin-top: 7px;
}

div.pp_default .pp_gallery a.pp_arrow_previous, div.pp_default .pp_gallery a.pp_arrow_next {
  position: static;
  left: auto;
}

div.pp_default .pp_nav .pp_play, div.pp_default .pp_nav .pp_pause {
  background: url(../images/prettyPhoto/default/sprite.png) -51px 1px no-repeat;
  height: 30px;
  width: 30px;
}

div.pp_default .pp_nav .pp_pause {
  background-position: -51px -29px;
}

div.pp_default a.pp_arrow_previous, div.pp_default a.pp_arrow_next {
  background: url(../images/prettyPhoto/default/sprite.png) -31px -3px no-repeat;
  height: 20px;
  width: 20px;
  margin: 4px 0 0;
}

div.pp_default a.pp_arrow_next {
  left: 52px;
  background-position: -82px -3px;
}

div.pp_default .pp_content_container .pp_details {
  margin-top: 5px;
}

div.pp_default .pp_nav {
  clear: none;
  height: 30px;
  width: 110px;
  position: relative;
}

div.pp_default .pp_nav .currentTextHolder {
  font-family: Georgia;
  font-style: italic;
  color: #999;
  font-size: 11px;
  left: 75px;
  line-height: 25px;
  position: absolute;
  top: 2px;
  margin: 0;
  padding: 0 0 0 10px;
}

div.pp_default .pp_close:hover, div.pp_default .pp_nav .pp_play:hover, div.pp_default .pp_nav .pp_pause:hover, div.pp_default .pp_arrow_next:hover, div.pp_default .pp_arrow_previous:hover {
  opacity: 0.7;
}

div.pp_default .pp_description {
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  margin: 5px 50px 5px 0;
}

div.pp_default .pp_bottom .pp_left {
  background: url(../images/prettyPhoto/default/sprite.png) -78px -127px no-repeat;
}

div.pp_default .pp_bottom .pp_middle {
  background: url(../images/prettyPhoto/default/sprite_x.png) bottom left repeat-x;
}

div.pp_default .pp_bottom .pp_right {
  background: url(../images/prettyPhoto/default/sprite.png) -112px -127px no-repeat;
}

div.pp_default .pp_loaderIcon {
  background: url(../images/prettyPhoto/default/loader.gif) center center no-repeat;
}

div.light_rounded .pp_top .pp_left {
  background: url(../images/prettyPhoto/light_rounded/sprite.png) -88px -53px no-repeat;
}

div.light_rounded .pp_top .pp_right {
  background: url(../images/prettyPhoto/light_rounded/sprite.png) -110px -53px no-repeat;
}

div.light_rounded .pp_next:hover {
  background: url(../images/prettyPhoto/light_rounded/btnNext.png) center right no-repeat;
  cursor: pointer;
}

div.light_rounded .pp_previous:hover {
  background: url(../images/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat;
  cursor: pointer;
}

div.light_rounded .pp_expand {
  background: url(../images/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat;
  cursor: pointer;
}

div.light_rounded .pp_expand:hover {
  background: url(../images/prettyPhoto/light_rounded/sprite.png) -31px -47px no-repeat;
  cursor: pointer;
}

div.light_rounded .pp_contract {
  background: url(../images/prettyPhoto/light_rounded/sprite.png) 0 -26px no-repeat;
  cursor: pointer;
}

div.light_rounded .pp_contract:hover {
  background: url(../images/prettyPhoto/light_rounded/sprite.png) 0 -47px no-repeat;
  cursor: pointer;
}

div.light_rounded .pp_close {
  width: 75px;
  height: 22px;
  background: url(../images/prettyPhoto/light_rounded/sprite.png) -1px -1px no-repeat;
  cursor: pointer;
}

div.light_rounded .pp_nav .pp_play {
  background: url(../images/prettyPhoto/light_rounded/sprite.png) -1px -100px no-repeat;
  height: 15px;
  width: 14px;
}

div.light_rounded .pp_nav .pp_pause {
  background: url(../images/prettyPhoto/light_rounded/sprite.png) -24px -100px no-repeat;
  height: 15px;
  width: 14px;
}

div.light_rounded .pp_arrow_previous {
  background: url(../images/prettyPhoto/light_rounded/sprite.png) 0 -71px no-repeat;
}

div.light_rounded .pp_arrow_next {
  background: url(../images/prettyPhoto/light_rounded/sprite.png) -22px -71px no-repeat;
}

div.light_rounded .pp_bottom .pp_left {
  background: url(../images/prettyPhoto/light_rounded/sprite.png) -88px -80px no-repeat;
}

div.light_rounded .pp_bottom .pp_right {
  background: url(../images/prettyPhoto/light_rounded/sprite.png) -110px -80px no-repeat;
}

div.dark_rounded .pp_top .pp_left {
  background: url(../images/prettyPhoto/dark_rounded/sprite.png) -88px -53px no-repeat;
}

div.dark_rounded .pp_top .pp_right {
  background: url(../images/prettyPhoto/dark_rounded/sprite.png) -110px -53px no-repeat;
}

div.dark_rounded .pp_content_container .pp_left {
  background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y;
}

div.dark_rounded .pp_content_container .pp_right {
  background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y;
}

div.dark_rounded .pp_next:hover {
  background: url(../images/prettyPhoto/dark_rounded/btnNext.png) center right no-repeat;
  cursor: pointer;
}

div.dark_rounded .pp_previous:hover {
  background: url(../images/prettyPhoto/dark_rounded/btnPrevious.png) center left no-repeat;
  cursor: pointer;
}

div.dark_rounded .pp_expand {
  background: url(../images/prettyPhoto/dark_rounded/sprite.png) -31px -26px no-repeat;
  cursor: pointer;
}

div.dark_rounded .pp_expand:hover {
  background: url(../images/prettyPhoto/dark_rounded/sprite.png) -31px -47px no-repeat;
  cursor: pointer;
}

div.dark_rounded .pp_contract {
  background: url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -26px no-repeat;
  cursor: pointer;
}

div.dark_rounded .pp_contract:hover {
  background: url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -47px no-repeat;
  cursor: pointer;
}

div.dark_rounded .pp_close {
  width: 75px;
  height: 22px;
  background: url(../images/prettyPhoto/dark_rounded/sprite.png) -1px -1px no-repeat;
  cursor: pointer;
}

div.dark_rounded .pp_description {
  margin-right: 85px;
  color: #fff;
}

div.dark_rounded .pp_nav .pp_play {
  background: url(../images/prettyPhoto/dark_rounded/sprite.png) -1px -100px no-repeat;
  height: 15px;
  width: 14px;
}

div.dark_rounded .pp_nav .pp_pause {
  background: url(../images/prettyPhoto/dark_rounded/sprite.png) -24px -100px no-repeat;
  height: 15px;
  width: 14px;
}

div.dark_rounded .pp_arrow_previous {
  background: url(../images/prettyPhoto/dark_rounded/sprite.png) 0 -71px no-repeat;
}

div.dark_rounded .pp_arrow_next {
  background: url(../images/prettyPhoto/dark_rounded/sprite.png) -22px -71px no-repeat;
}

div.dark_rounded .pp_bottom .pp_left {
  background: url(../images/prettyPhoto/dark_rounded/sprite.png) -88px -80px no-repeat;
}

div.dark_rounded .pp_bottom .pp_right {
  background: url(../images/prettyPhoto/dark_rounded/sprite.png) -110px -80px no-repeat;
}

div.dark_rounded .pp_loaderIcon {
  background: url(../images/prettyPhoto/dark_rounded/loader.gif) center center no-repeat;
}

div.dark_square .pp_left, div.dark_square .pp_middle, div.dark_square .pp_right, div.dark_square .pp_content {
  background: #000;
}

div.dark_square .pp_description {
  color: #fff;
  margin: 0 85px 0 0;
}

div.dark_square .pp_loaderIcon {
  background: url(../images/prettyPhoto/dark_square/loader.gif) center center no-repeat;
}

div.dark_square .pp_expand {
  background: url(../images/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat;
  cursor: pointer;
}

div.dark_square .pp_expand:hover {
  background: url(../images/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat;
  cursor: pointer;
}

div.dark_square .pp_contract {
  background: url(../images/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat;
  cursor: pointer;
}

div.dark_square .pp_contract:hover {
  background: url(../images/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat;
  cursor: pointer;
}

div.dark_square .pp_close {
  width: 75px;
  height: 22px;
  background: url(../images/prettyPhoto/dark_square/sprite.png) -1px -1px no-repeat;
  cursor: pointer;
}

div.dark_square .pp_nav {
  clear: none;
}

div.dark_square .pp_nav .pp_play {
  background: url(../images/prettyPhoto/dark_square/sprite.png) -1px -100px no-repeat;
  height: 15px;
  width: 14px;
}

div.dark_square .pp_nav .pp_pause {
  background: url(../images/prettyPhoto/dark_square/sprite.png) -24px -100px no-repeat;
  height: 15px;
  width: 14px;
}

div.dark_square .pp_arrow_previous {
  background: url(../images/prettyPhoto/dark_square/sprite.png) 0 -71px no-repeat;
}

div.dark_square .pp_arrow_next {
  background: url(../images/prettyPhoto/dark_square/sprite.png) -22px -71px no-repeat;
}

div.dark_square .pp_next:hover {
  background: url(../images/prettyPhoto/dark_square/btnNext.png) center right no-repeat;
  cursor: pointer;
}

div.dark_square .pp_previous:hover {
  background: url(../images/prettyPhoto/dark_square/btnPrevious.png) center left no-repeat;
  cursor: pointer;
}

div.light_square .pp_expand {
  background: url(../images/prettyPhoto/light_square/sprite.png) -31px -26px no-repeat;
  cursor: pointer;
}

div.light_square .pp_expand:hover {
  background: url(../images/prettyPhoto/light_square/sprite.png) -31px -47px no-repeat;
  cursor: pointer;
}

div.light_square .pp_contract {
  background: url(../images/prettyPhoto/light_square/sprite.png) 0 -26px no-repeat;
  cursor: pointer;
}

div.light_square .pp_contract:hover {
  background: url(../images/prettyPhoto/light_square/sprite.png) 0 -47px no-repeat;
  cursor: pointer;
}

div.light_square .pp_close {
  width: 75px;
  height: 22px;
  background: url(../images/prettyPhoto/light_square/sprite.png) -1px -1px no-repeat;
  cursor: pointer;
}

div.light_square .pp_nav .pp_play {
  background: url(../images/prettyPhoto/light_square/sprite.png) -1px -100px no-repeat;
  height: 15px;
  width: 14px;
}

div.light_square .pp_nav .pp_pause {
  background: url(../images/prettyPhoto/light_square/sprite.png) -24px -100px no-repeat;
  height: 15px;
  width: 14px;
}

div.light_square .pp_arrow_previous {
  background: url(../images/prettyPhoto/light_square/sprite.png) 0 -71px no-repeat;
}

div.light_square .pp_arrow_next {
  background: url(../images/prettyPhoto/light_square/sprite.png) -22px -71px no-repeat;
}

div.light_square .pp_next:hover {
  background: url(../images/prettyPhoto/light_square/btnNext.png) center right no-repeat;
  cursor: pointer;
}

div.light_square .pp_previous:hover {
  background: url(../images/prettyPhoto/light_square/btnPrevious.png) center left no-repeat;
  cursor: pointer;
}

div.facebook .pp_top .pp_left {
  background: url(../images/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat;
}

div.facebook .pp_top .pp_middle {
  background: url(../images/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x;
}

div.facebook .pp_top .pp_right {
  background: url(../images/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat;
}

div.facebook .pp_content_container .pp_left {
  background: url(../images/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y;
}

div.facebook .pp_content_container .pp_right {
  background: url(../images/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y;
}

div.facebook .pp_expand {
  background: url(../images/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;
  cursor: pointer;
}

div.facebook .pp_expand:hover {
  background: url(../images/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;
  cursor: pointer;
}

div.facebook .pp_contract {
  background: url(../images/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;
  cursor: pointer;
}

div.facebook .pp_contract:hover {
  background: url(../images/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;
  cursor: pointer;
}

div.facebook .pp_close {
  width: 22px;
  height: 22px;
  background: url(../images/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat;
  cursor: pointer;
}

div.facebook .pp_description {
  margin: 0 37px 0 0;
}

div.facebook .pp_loaderIcon {
  background: url(../images/prettyPhoto/facebook/loader.gif) center center no-repeat;
}

div.facebook .pp_arrow_previous {
  background: url(../images/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat;
  height: 22px;
  margin-top: 0;
  width: 22px;
}

div.facebook .pp_arrow_previous.disabled {
  background-position: 0 -96px;
  cursor: default;
}

div.facebook .pp_arrow_next {
  background: url(../images/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat;
  height: 22px;
  margin-top: 0;
  width: 22px;
}

div.facebook .pp_arrow_next.disabled {
  background-position: -32px -96px;
  cursor: default;
}

div.facebook .pp_nav {
  margin-top: 0;
}

div.facebook .pp_nav p {
  font-size: 15px;
  padding: 0 3px 0 4px;
}

div.facebook .pp_nav .pp_play {
  background: url(../images/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat;
  height: 22px;
  width: 22px;
}

div.facebook .pp_nav .pp_pause {
  background: url(../images/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat;
  height: 22px;
  width: 22px;
}

div.facebook .pp_next:hover {
  background: url(../images/prettyPhoto/facebook/btnNext.png) center right no-repeat;
  cursor: pointer;
}

div.facebook .pp_previous:hover {
  background: url(../images/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;
  cursor: pointer;
}

div.facebook .pp_bottom .pp_left {
  background: url(../images/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat;
}

div.facebook .pp_bottom .pp_middle {
  background: url(../images/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x;
}

div.facebook .pp_bottom .pp_right {
  background: url(../images/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat;
}

div.pp_pic_holder a:focus {
  outline: none;
}

div.pp_overlay {
  background: #000;
  display: none;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9500;
}

div.pp_pic_holder {
  display: none;
  position: absolute;
  width: 100px;
  z-index: 10000;
}

.pp_content {
  height: 40px;
  min-width: 40px;
}

* html .pp_content {
  width: 40px;
}

.pp_content_container {
  position: relative;
  text-align: left;
  width: 100%;
}

.pp_content_container .pp_left {
  padding-left: 20px;
}

.pp_content_container .pp_right {
  padding-right: 20px;
}

.pp_content_container .pp_details {
  float: left;
  margin: 10px 0 2px;
}

.pp_description {
  display: none;
  margin: 0;
}

.pp_social {
  float: left;
  margin: 0;
}

.pp_social .facebook {
  float: left;
  margin-left: 5px;
  width: 55px;
  overflow: hidden;
}

.pp_social .twitter {
  float: left;
}

.pp_nav {
  clear: right;
  float: left;
  margin: 3px 10px 0 0;
}

.pp_nav p {
  float: left;
  white-space: nowrap;
  margin: 2px 4px;
}

.pp_nav .pp_play, .pp_nav .pp_pause {
  float: left;
  margin-right: 4px;
  text-indent: -10000px;
}

a.pp_arrow_previous, a.pp_arrow_next {
  display: block;
  float: left;
  height: 15px;
  margin-top: 3px;
  overflow: hidden;
  text-indent: -10000px;
  width: 14px;
}

.pp_hoverContainer {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2000;
}

.pp_gallery {
  display: none;
  left: 50%;
  margin-top: -50px;
  position: absolute;
  z-index: 10000;
}

.pp_gallery div {
  float: left;
  overflow: hidden;
  position: relative;
}

.pp_gallery ul {
  float: left;
  height: 35px;
  position: relative;
  white-space: nowrap;
  margin: 0 0 0 5px;
  padding: 0;
}

.pp_gallery ul a {
  border: 1px rgba(0, 0, 0, 0.5) solid;
  display: block;
  float: left;
  height: 33px;
  overflow: hidden;
}

.pp_gallery ul a img {
  border: 0;
}

.pp_gallery li {
  display: block;
  float: left;
  margin: 0 5px 0 0;
  padding: 0;
}

.pp_gallery li.default a {
  background: url(../images/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;
  display: block;
  height: 33px;
  width: 50px;
}

.pp_gallery .pp_arrow_previous, .pp_gallery .pp_arrow_next {
  margin-top: 7px !important;
}

a.pp_next {
  background: url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;
  display: block;
  float: right;
  height: 100%;
  text-indent: -10000px;
  width: 49%;
}

a.pp_previous {
  background: url(../images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;
  display: block;
  float: left;
  height: 100%;
  text-indent: -10000px;
  width: 49%;
}

a.pp_expand, a.pp_contract {
  cursor: pointer;
  display: none;
  height: 20px;
  position: absolute;
  right: 30px;
  text-indent: -10000px;
  top: 10px;
  width: 20px;
  z-index: 20000;
}

a.pp_close {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  line-height: 22px;
  text-indent: -10000px;
}

.pp_loaderIcon {
  display: block;
  height: 24px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 24px;
  margin: -12px 0 0 -12px;
}

#pp_full_res {
  line-height: 1 !important;
}

#pp_full_res .pp_inline {
  text-align: left;
}

#pp_full_res .pp_inline p {
  margin: 0 0 15px;
}

div.ppt {
  color: #fff;
  display: none;
  font-size: 17px;
  z-index: 9999;
  margin: 0 0 5px 15px;
}

div.pp_default .pp_content, div.light_rounded .pp_content {
  background-color: #fff;
}

div.pp_default #pp_full_res .pp_inline, div.light_rounded .pp_content .ppt, div.light_rounded #pp_full_res .pp_inline, div.light_square .pp_content .ppt, div.light_square #pp_full_res .pp_inline, div.facebook .pp_content .ppt, div.facebook #pp_full_res .pp_inline {
  color: #000;
}

div.pp_default .pp_gallery ul li a:hover, div.pp_default .pp_gallery ul li.selected a, .pp_gallery ul a:hover, .pp_gallery li.selected a {
  border-color: #fff;
}

div.pp_default .pp_details, div.light_rounded .pp_details, div.dark_rounded .pp_details, div.dark_square .pp_details, div.light_square .pp_details, div.facebook .pp_details {
  position: relative;
}

div.light_rounded .pp_top .pp_middle, div.light_rounded .pp_content_container .pp_left, div.light_rounded .pp_content_container .pp_right, div.light_rounded .pp_bottom .pp_middle, div.light_square .pp_left, div.light_square .pp_middle, div.light_square .pp_right, div.light_square .pp_content, div.facebook .pp_content {
  background: #fff;
}

div.light_rounded .pp_description, div.light_square .pp_description {
  margin-right: 85px;
}

div.light_rounded .pp_gallery a.pp_arrow_previous, div.light_rounded .pp_gallery a.pp_arrow_next, div.dark_rounded .pp_gallery a.pp_arrow_previous, div.dark_rounded .pp_gallery a.pp_arrow_next, div.dark_square .pp_gallery a.pp_arrow_previous, div.dark_square .pp_gallery a.pp_arrow_next, div.light_square .pp_gallery a.pp_arrow_previous, div.light_square .pp_gallery a.pp_arrow_next {
  margin-top: 12px !important;
}

div.light_rounded .pp_arrow_previous.disabled, div.dark_rounded .pp_arrow_previous.disabled, div.dark_square .pp_arrow_previous.disabled, div.light_square .pp_arrow_previous.disabled {
  background-position: 0 -87px;
  cursor: default;
}

div.light_rounded .pp_arrow_next.disabled, div.dark_rounded .pp_arrow_next.disabled, div.dark_square .pp_arrow_next.disabled, div.light_square .pp_arrow_next.disabled {
  background-position: -22px -87px;
  cursor: default;
}

div.light_rounded .pp_loaderIcon, div.light_square .pp_loaderIcon {
  background: url(../images/prettyPhoto/light_rounded/loader.gif) center center no-repeat;
}

div.dark_rounded .pp_top .pp_middle, div.dark_rounded .pp_content, div.dark_rounded .pp_bottom .pp_middle {
  background: url(../images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat;
}

div.dark_rounded .currentTextHolder, div.dark_square .currentTextHolder {
  color: #c4c4c4;
}

div.dark_rounded #pp_full_res .pp_inline, div.dark_square #pp_full_res .pp_inline {
  color: #fff;
}

.pp_top, .pp_bottom {
  height: 20px;
  position: relative;
}

* html .pp_top, * html .pp_bottom {
  padding: 0 20px;
}

.pp_top .pp_left, .pp_bottom .pp_left {
  height: 20px;
  left: 0;
  position: absolute;
  width: 20px;
}

.pp_top .pp_middle, .pp_bottom .pp_middle {
  height: 20px;
  left: 20px;
  position: absolute;
  right: 20px;
}

* html .pp_top .pp_middle, * html .pp_bottom .pp_middle {
  left: 0;
  position: static;
}

.pp_top .pp_right, .pp_bottom .pp_right {
  height: 20px;
  left: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.pp_fade, .pp_gallery li.default a img {
  display: none;
}

/* ========================================================== 
   SLIDER MODULES
=============================================================*/
/* BXSLIDER THEME
-------------------------------------------------- */
.bx-pager.bx-default-pager a {
  background: #c0c9d3;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.bx-pager.bx-default-pager a:hover, .bx-pager.bx-default-pager a.active {
  background: #ddba58;
}

.dark-bg .bx-pager.bx-default-pager a {
  background: #fff;
}
.dark-bg .bx-pager.bx-default-pager a:hover, .dark-bg .bx-pager.bx-default-pager a.active {
  background: #ddba58;
}

/* INTRO SLIDER
-------------------------------------------------- */
.intro-block {
  height: 470px;
  height: 557px;
}

.intro-slider {
  text-align: center;
}

.intro-slider ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.intro-slider .buttons {
  text-align: center;
  width: 100%;
}

.intro-slider .btn {
  margin: 10px 5px;
  padding: 15px 0;
  width: 200px;
  font-size: 14px;
}

.intro-slider .slide {
  height: 150px;
  padding: 30px;
}

.intro-slider h1 {
  font-family: "Roboto Black";
  font-size: 50px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  -webkit-text-shadow: 0 0 5px rgba(0,0,0,0.1);
  -moz-text-shadow: 0 0 5px rgba(0,0,0,0.1);
  -o-text-shadow: 0 0 5px rgba(0,0,0,0.1);
  -ms-text-shadow: 0 0 5px rgba(0,0,0,0.1);
  text-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.intro-slider .slide p {
  color: rgba(255, 255, 255, 0.8);
  text-transform: capitalize;
  margin: 0;
  font: normal 20px "Roboto Condensed Light";
  -webkit-text-shadow: 0 0 5px rgba(0,0,0,0.1);
  -moz-text-shadow: 0 0 5px rgba(0,0,0,0.1);
  -o-text-shadow: 0 0 5px rgba(0,0,0,0.1);
  -ms-text-shadow: 0 0 5px rgba(0,0,0,0.1);
  text-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.intro-slider .bx-wrapper {
  margin: 100px auto 70px auto;
  margin-top: 187px;
}

.intro-slider .bx-viewport {
  background: rgba(255, 255, 255, 0.1);
}

.intro-slider .bx-wrapper .bx-pager, .intro-slider .bx-wrapper .bx-controls-auto {
  bottom: -55px;
}

/* TESTIMONIAL SLIDER
-------------------------------------------------- */
.testimonial .text {
  width: 75%;
  float: right;
}

.testimonial .text p {
  margin: 0;
  background: #F7F8F8;
  width: 100%;
  border: 0;
  padding: 20px;
  line-height: 1.7em;
  display: block;
  color: #888;
  position: relative;
}

.testimonial .arrow {
  color: #F7F8F8;
  position: absolute;
  display: block;
  width: 16px;
  top: 40%;
  height: 19px;
  left: -16px;
  background: url(../images/quote-arrow-left.png) no-repeat 0 0;
}

.testimonial .client {
  width: 18%;
  float: left;
}

.testimonial .client img {
  width: 100%;
  margin: 10px 0 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.testimonial .text .author {
  font-size: 13px;
  margin: 10px 0 0 0;
}

.testimonial-slider li:nth-child(2n) .text {
  float: left;
}

.testimonial-slider li:nth-child(2n) .testimonial .arrow {
  left: auto;
  right: -16px;
  background: url(../images/quote-arrow-right.png) no-repeat 0 0;
}

.testimonial-slider li:nth-child(2n) .text .author {
  text-align: right;
}

.testimonial-slider li:nth-child(2n) .testimonial .client {
  float: right;
}

.testimonial-slider.dark-bg .arrow {
  opacity: 0.15;
}

.testimonial-slider.dark-bg .testimonial .text p {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 5px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 0 5px rgba(0,0,0,0.1);
  -o-box-shadow: 0 0 5px rgba(0,0,0,0.1);
  -ms-box-shadow: 0 0 5px rgba(0,0,0,0.1);
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.testimonial-slider.dark-bg .testimonial .author {
  color: rgba(255, 255, 255, 0.7);
}

/* Bxslider */
.testimonial-slider .bx-controls-direction {
  top: auto;
  bottom: -50px;
}

/* ========================================================== 
   RESPONSIVE MODULES
=============================================================*/
/* Support Boxed Layout
--------------------------------------------------- */
@media (min-width: 768px) {
  .container {
    max-width: 750px !important;
    width: auto !important;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 970px !important;
    width: auto !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px !important;
    width: auto !important;
  }
}
/* Tablets and up
--------------------------------------------------- */
@media (min-width: 768px) {
  #main-nav.navbar-default .navbar-nav > li:hover > .dropdown-menu {
    display: block;
  }
}
/* Tablets
--------------------------------------------------- */
@media (max-width: 1020px) and (min-width: 768px) {
  /* Header */
  .cart-link .total-price {
    display: none;
  }

  #main-nav.navbar-default .navbar-nav > li > a {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Projects */
  .project .overlay i {
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 15px;
    font-size: 20px;
    display: inline-block;
    margin: 30px 0 20px 0;
  }

  .project .overlay h4 {
    text-transform: capitalize;
    color: #fff;
    margin: 0 0 7px 0;
    line-height: 1;
    font-size: 16px;
  }

  .project .overlay span {
    text-transform: uppercase;
    color: #fff;
    font-size: 10px;
  }

  /* Error Pages */
  .error-info h1 {
    font-size: 150px;
  }

  /* Intro Slider */
  .intro-slider h1 {
    font-size: 47px;
  }

  .intro-slider .slide p {
    font-size: 16px;
  }

  /* Cart */
  table.cart-contents .unit-price, table.cart-contents .total-price {
    font-size: 14px;
  }

  table.cart-contents .qty {
    width: 12%;
  }

  .cart-totals td.cart-total {
    font-size: 14px;
  }

  .cart-summary .terms {
    padding: 0 30px;
    font-size: 11px;
  }

  table.cart-contents .action {
    width: 100px;
  }

  table.cart-contents .action button {
    line-height: 25px;
  }
}
/* All Small Devices
--------------------------------------------------- */
@media (max-width: 767px) {
  /* Shortcodes */
  .margin-b-30-xs {
    margin-bottom: 30px !important;
  }

  .margin-b-15-xs {
    margin-bottom: 15px !important;
  }

  .margin-b-20-xs {
    margin-bottom: 20px !important;
  }

  .margin-b-10-xs {
    margin-bottom: 10px !important;
  }

  .margin-x-auto-xs {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .pad-y-30-xs {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .block-xs {
    display: block !important;
  }

  .inline-block-xs {
    display: inline-block !important;
  }

  .no-float-xs {
    float: none !important;
  }

  .pull-left-xs {
    float: left !important;
  }

  .pull-right-xs {
    float: left !important;
  }

  .align-center-xs {
    text-align: center !important;
  }

  .fullw-xs {
    width: 100% !important;
  }

  .no-border-xs {
    border: none !important;
  }

  .no-pad-xs {
    padding: 0 !important;
  }

  .align-left-xs {
    text-align: left !important;
  }

  .align-center-xs {
    text-align: center !important;
  }

  .align-right-xs {
    text-align: right !important;
  }

  /* Cart */
  table.cart-contents thead h5 {
    margin: 0;
    font-size: 14px;
  }

  table.cart-contents .total-price {
    width: 25%;
    font-size: 12px;
  }

  table.cart-contents .qty {
    width: 15%;
  }

  table.cart-contents .qty input {
    padding: 5px 0;
  }

  table.cart-contents th, table.cart-contents td {
    padding: 15px;
    border-right: 1px solid #ddd;
  }

  table.cart-contents .currency {
    margin-right: 0;
  }

  table.cart-contents .action {
    margin-top: 15px;
  }

  .cart-buttons .btn {
    display: block;
    float: none;
    margin: 0 0 20px 0;
    width: 100%;
  }

  .cart-summary .terms {
    display: none;
  }

  .cart-totals td {
    width: auto;
  }

  .cart-totals td.price {
    width: 40%;
  }

  /*Layout */
  #page-wrapper {
    max-width: 460px;
  }

  #header {
    min-height: 84px;
    position: static;
  }

  #main-nav.navbar-default .navbar-nav > li > a,
  #main-nav.navbar-default .navbar-nav > li.cart-link > a {
    line-height: 1;
    display: block;
    padding: 15px;
    font-size: 13px;
    border-bottom: 1px solid #fff;
    margin: 0;
    text-align: left;
  }

  #main-nav.navbar-default .navbar-nav > li {
    border-bottom: 1px solid #dddddd;
  }

  #main-nav.navbar-default .navbar-nav > li:last-child a,
  #main-nav.navbar-default .navbar-nav > li:last-child {
    border: none;
  }

  .navbar-collapse {
    background: #F7F8F8;
    border: 1px solid #ddd;
    margin: 24px 0 30px 0;
  }

  #main-nav .dropdown-menu {
    border-top: 1px solid #dddddd !important;
  }

  #main-nav .dropdown-menu li a {
    border-left: none;
    border-right: none;
  }

  #main-nav .dropdown-menu li:last-child a {
    border-bottom: none;
  }

  #main-nav .dropdown-menu li.active a {
    background: #fff;
    font-weight: bold;
    border-left: none;
    border-right: none;
  }

  #main-nav.navbar-default .navbar-nav > .open > a,
  #main-nav.navbar-default .navbar-nav > .open > a:hover,
  #main-nav.navbar-default .navbar-nav > .open > a:focus {
    background-color: #eeeeee;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .error-info .pull-right {
    box-shadow: none;
  }

  /* Intro Slider */
  .intro-block {
    height: auto;
  }

  .intro-slider {
    padding: 40px 0;
  }

  .intro-slider .bx-wrapper {
    margin: 0 auto 50px auto;
  }

  .intro-slider .slide {
    padding: 30px 10px;
    height: auto;
  }

  .intro-slider .slide h1 {
    font-size: 30px;
  }

  .intro-slider .slide p {
    font-size: 15px;
    line-height: 1.2em;
  }

  .intro-slider .bx-wrapper .bx-pager,
  .intro-slider .bx-wrapper .bx-controls-auto {
    bottom: -40px;
  }

  /* Testimonial Slider */
  .testimonial-slider li:nth-child(2n) .text {
    float: right;
  }

  .testimonial-slider li:nth-child(2n) .testimonial .arrow {
    left: auto;
    left: -16px;
    background: url(../images/quote-arrow-left.png) no-repeat 0 0;
  }

  .testimonial-slider li:nth-child(2n) .text .author {
    text-align: left;
  }

  .testimonial-slider li:nth-child(2n) .testimonial .client {
    float: left;
  }

  .testimonial-slider .bx-controls-direction {
    margin: 0;
    right: 0;
    left: auto;
  }

  /* Split Buttons */
  .split-buttons {
    width: 100%;
  }

  .split-buttons .btn {
    font-size: 13px;
  }

  /* Project */
  .project .overlay i {
    margin: 100px 0 20px 0;
  }

  /* Contact */
  .contact-form .pull-left,
  .contact-form .pull-right {
    width: 100%;
  }

  /* Account forms */
  .form-block .col.pull-left {
    border-bottom: 1px solid #ddd;
  }

  .form-block .col.pull-right {
    border: none;
  }

  .form-block .col {
    padding: 30px;
    width: 100%;
    float: none;
  }

  /* Footer */
  #copy-text {
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  #footer-links > li {
    margin: 0 7px;
  }
}
/* Smaller Screens
--------------------------------------------------- */
@media (max-width: 400px) {
  .project .overlay i {
    margin: 30px 0 20px 0;
  }
}


