@charset "utf-8";
/* CSS Document */

/* ----------------------------------------------
Website Design & Coding by JPG Design
Website: http://www.jpgdesign.co.za
Email: jp@jpgdesign.co.za
Tel: +27 21 558 9590 | Cell: +27 73 683 7028
Graphic Design, Branding of Promotional Gifts
and Clothing, Website Design
----------------------------------------------*/

/* ----------------------------------------------------------------- Reset ------------------------------------------------------------- */

@viewport{
    zoom: 1.0;
    width: extend-to-zoom;
}

*, html, body, div, span, applet, object, iframe,  
h1, h2, h3, h4, h5, h6, p, blockquote, pre,  
a, abbr, acronym, address, big, cite, code,  
del, dfn, em, font, img, ins, kbd, q, s, samp,  
small, strike, strong, sub, sup, tt, var,  
b, u, i, center,  
dl, dt, dd, ol, ul, li,  
fieldset, form, label, legend,  
table, caption, tbody, tfoot, thead, tr, th, td {  
     margin: 0;  
     padding: 0;  
     border: 0;  
     outline: 0;  
     font-size: 100%;
     vertical-align: baseline baseline;  
     background: transparent;
	 font-family: 'Open Sans', sans-serif;
	 -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
}

body {  
     line-height: 1;  
 }  

ol, ul {  
     list-style: none;  
 }  

blockquote, q {  
     quotes: none;  
 }  

blockquote:before, blockquote:after, q:before, q:after {  
     content: '';  
 }
   
/* remember to define focus styles! */  
:focus {  
     outline: 0;  
}  
   
/* tables still need 'cellspacing="0"' in the markup */  
 table {  
     border-collapse: collapse;  
     border-spacing: 0;  
}

.clr {
	margin: 0px;
	padding: 0px;
	border: 0px;
	clear: both;
}

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

.img-normal-size {
	width: auto;
}

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

.center-it {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
}


.pad20 {
	padding-bottom: 20px;
}

.pad30 {
	padding-bottom: 30px;
}

.pad40 {
	padding-bottom: 40px;
}

.pad50 {
	padding-bottom: 50px;
}

.pad60 {
	padding-bottom: 60px;
}

.pad70 {
	padding-bottom: 70px;
}

.pad80 {
	padding-bottom: 80px;
}

.pad90 {
	padding-bottom: 90px;
}

.pad100 {
	padding-bottom: 100px;
}

.mar110 {
	margin-bottom: 110px !important;
}

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

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

.mar40 {
	margin-bottom: 40px !important;
}

.mar50 {
	margin-bottom: 50px !important;
}

.mar60 {
	margin-bottom: 60px !important;
}

.mar70 {
	margin-bottom: 70px !important;
}

.mar80 {
	margin-bottom: 80px !important;
}

.mar90 {
	margin-bottom: 90px !important;
}

.mar100 {
	margin-bottom: 100px !important;
}

.mar110 {
	margin-bottom: 110px !important;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -.5em;
}
sub {
  bottom: -.25em;
}


.cd-top {
	display: inline-block;
	height: 60px;
	width: 60px;
	position: fixed;
	bottom: 40px;
	right: 40px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	/* image replacement properties */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	background: #CFB53B url(../images/cd-top-arrow.svg) no-repeat center 50%;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity .3s 0s, visibility 0s .3s;
	-moz-transition: opacity .3s 0s, visibility 0s .3s;
	transition: opacity .3s 0s, visibility 0s .3s;
}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
	-webkit-transition: opacity .3s 0s, visibility 0s 0s;
	-moz-transition: opacity .3s 0s, visibility 0s 0s;
	transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
	/* the button becomes visible */
	visibility: visible;
	opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
	opacity: .8;
}
.no-touch .cd-top:hover {
	background-color: #CFB53B;
	opacity: 1;
}

#mediaplayer {
	width:274px;
	height:19px;
	margin: 10px 0px 50px 0px;
	padding: 0px 0px 0px 0px;
}

/*
==============================================
floating
==============================================
*/

.bouncing-container {
	width: 100%;
	margin: 10px 0px 0px 0px;
}

.bouncing {
	animation-name: bouncing;
	-webkit-animation-name: bouncing;
	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@keyframes bouncing {
	0% {
		transform: translateY(0%);	
	}
	50% {
		transform: translateY(30%);	
	}	
	100% {
		transform: translateY(0%);
	}			
}

@-webkit-keyframes bouncing {
	0% {
		-webkit-transform: translateY(0%);	
	}
	50% {
		-webkit-transform: translateY(30%);	
	}	
	100% {
		-webkit-transform: translateY(0%);
	}			
}


.imagedropshadow {
	padding: 5px;
	border: solid 1px #EFEFEF;
}
a:hover img.imagedropshadow {
	border: solid 1px #CCC;
	-moz-box-shadow: 1px 1px 5px #999;
	-webkit-box-shadow: 1px 1px 5px #999;
        box-shadow: 1px 1px 5px #999;
}




/* Image Hover Effects  ---------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------- */

.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  background-color: rgba(0,0,0,0.5);
  -webkit-transition: all 0.4s cubic-bezier(0.88,-0.99, 0, 1.81);
  transition: all 0.4s cubic-bezier(0.88,-0.99, 0, 1.81);
}

.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.88,-0.99, 0, 1.81);
  transition: all 0.4s cubic-bezier(0.88,-0.99, 0, 1.81);
}

.hovereffect h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  margin-top: 30px;
  font-size: 17px;
  background: rgba(0,0,0,0.6);
  -webkit-transform: translatey(-100px);
  -ms-transform: translatey(-100px);
  transform: translatey(-100px);
  -webkit-transition: all 0.4s cubic-bezier(0.88,-0.99, 0, 1.81);
  transition: all 0.4s cubic-bezier(0.88,-0.99, 0, 1.81);
  padding: 10px;
}

.hovereffect h2 span {
	display: block;
	font-size: 12px;
	text-transform: lowercase;
	margin: 5px 0px 0px 0px;
}

.hovereffect a.info {
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin: 100px 0 0;
  padding: 7px 14px;
}

.hovereffect a.info:hover {
  box-shadow: 0 0 5px #fff;
}

.hovereffect:hover img {
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
}

.hovereffect:hover h2,.hovereffect:hover a.info {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-transform: translatey(0);
  -webkit-transform: translatey(0);
  transform: translatey(0);
}

.hovereffect:hover a.info {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}


/* More Hover Effects ----------------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------------- */
/* Add a base style for the button */
.gradient-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  background: #0e2240;
  color: #ffffff;
  text-decoration: none;
  transition: background 2s, color 2s; /* Slow fade transition */
	margin: 16px;
}

/* Style the button on hover with a gradient effect */
.gradient-button:hover {
  background: linear-gradient(90deg, #0e2240, #ff9900); /* Gradient transition from left to right */
  background-size: 200% 100%; /* To create a sliding effect */
  background-position: 100% 0; /* Initial position at the left */
  color: #ffffff;
  transition: background 2s ease, color 2s ease; /* Slow transition with ease-in and ease-out */
}

/* Add a transition effect on hover-out to slide back to the left */
.gradient-button:hover:hover {
  background-position: 0 0;
  transition: background 2s ease, color 2s ease; /* Slow transition with ease-in and ease-out */
}



/* ----------------------------------------------------------------- Typography ------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
	text-align: left;
}

h1 {
	font-size: 30px;
	font-weight: 100;
	text-align: center;
	text-transform: uppercase;
	padding: 34px 0px 34px 0px;
	color: #CFB53B;
}

h1.line{
	border-bottom:1px solid #CFB53B;
	padding-bottom:9px;
	position:relative;
	margin:10px 0px 20px 0px;
}

h1.line.white{
	border-bottom:1px solid #FFF;
	padding-bottom:9px;
	position:relative;
	margin:10px 0px 20px 0px;
}

h1.line>span{
	width:auto;
	border-bottom:3px solid #CFB53B;
	padding-bottom:2px;
}

h1.line.white>span{
	width:auto;
	border-bottom:3px solid #FFF;
	padding-bottom:2px;
}

h2 {
	font-size: 18px;
	color: #ffffff;
	font-weight: 200;
}


h3 {
	font-size: 20px;
	font-weight: 100;
	margin: 0px 0px 30px 0px;
	color: #CFB53B;
}

h3.line {
	border-bottom:1px solid #CFB53B;
	padding-bottom:6px;
	position:relative;
	margin:10px 0px 20px 0px;
}

h3.line>span {
	width:auto;
	border-bottom:3px solid #CFB53B;
	padding-bottom:2px;
}

span.light {
	color: #CCC;
}

h4 {
	font-size: 20px;
	font-weight: 100;
	margin: 0px 0px 30px 0px;
	letter-spacing: 1px;
	line-height: 24px;
}

h4 span {
	display: block;
	font-size: 14px;
	font-style: italic;
	margin-top: 5px;
	color: #999;
}

h4 span.q {
	display: block;
	font-size: 10px;
	font-style: italic;
	margin-top: 0px;
	line-height: 10px;
	color: #999;
}

h5 {
}

h6 {
}

p {
	font-weight: 100;
	color: #595758;
	font-size: 16px;
	line-height: 28px;
	margin: 0px 0px 36px 0px;
}

p.highlight-grey {
	background-color: #efefef;
	border: 1px solid #CCC;
	color: #333;
	padding: 10px;
	margin: 10px 0;
	font-weight: 200;
}

p.contact-large {
	text-align: center;
	font-size: 32px;
	color: #F00;
}

p a:link, p a:visited {
	color: #CFB53B;
	text-decoration: none;
	font-weight: 600;
}

p a:hover, p a:active {
	color: #CFB53B;
	text-decoration: none;
	font-weight: 600;
}

p a:link.styled, p a:visited.styled {
	color: #cfb53b;
	font-weight: 100;
	text-decoration: none;
	padding: 0px 2px;
	-webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

p a:hover.styled, p a:active.styled {
	color: #ffffff;
	font-weight: 100;
	text-decoration: none;
	background: #cfb53b;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

hr {
	border:0;
	margin:30px 0;
	border-top:#ddd 1px solid;
	border-bottom:#fff 1px solid;
}

.right {
	float: right;
}

.left {
	float: left;
}

a[href$='.pdf'] {
    display:inline-block;
    padding-left:20px;
    line-height:18px;
    background: url(../images/icons/pdficon.png) center left no-repeat;
}

a[href$='.xls'], a[href$='.csv'], a[href$='.xlt'], a[href$='.xlw'] {
    display:inline-block;
    padding-left:20px;
    line-height:18px;
    background: url(../images/icons/excelicon.png) center left no-repeat;
}

a[href$='.doc'], a[href$='.rtf'], a[href$='.txt'], a[href$='.wps'] {
    display:inline-block;
    padding-left:20px;
    line-height:18px;
    background: url(../images/icons/wordicon.png) center left no-repeat;
}

a[href$='.zip'], a[href$='.gzip'], a[href$='.rar'] {
    display:inline-block;
    padding-left:20px;
    line-height:18px;
    background: url(../images/icons/zipicon.png) center left no-repeat;
}

/*p a[href^="http://"], p a[href^="https://"] {
	display:inline-block;
    padding-left:20px !important;
    line-height:18px;
    background: url(../images/icons/link.png) center left no-repeat;
}

p a[href^="http://"].styled:hover, p a[href^="https://"].styled:hover {
	display:inline-block;
    padding-left:20px !important;
    line-height:18px;
    background: #cfb53b url(../images/icons/link.png) center left no-repeat;
	color: #ffffff;
	font-weight: 100;
	text-decoration: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}*/

p a[href$='.pdf'] {
    display:inline-block;
    padding-left:20px !important;
    line-height:18px;
    background: url(../images/icons/pdficon.png) center left no-repeat;
}

p a[href$='.pdf'].styled:hover {
    display:inline-block;
    padding-left:20px !important;
    line-height:18px;
    background: #cfb53b url(../images/icons/pdficon.png) center left no-repeat;
	color: #ffffff;
	font-weight: 100;
	text-decoration: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

a[href^="/"], a[href^=".."] {
        /* internal relative link */
}

a[href^="mailto:"] {
        /* email link */
}

.contact-details-container {
	padding: 12px 0px 0px 0px;
}

ul.contact-details li {
	list-style-type: none;
	display: inline;
	margin: 0px 12px 0px 0px;
	padding: 22px 0px 0px 0px;
	color: #FFFFFF;
	font-size: 12px;
}

ul.contact-details li a:link, ul.contact-details li a:visited {
	color: #FFFFFF;
	font-weight: 400;
	text-decoration: none;
}

ul.contact-details li a:hover, ul.contact-details li a:active {
	color: #c9c9c9;
	font-weight: 400;
}

.list-container {
	background: #84D401;
	padding: 10px 10px;
	margin: 0px 10px 40px 10px;
	border-bottom: 8px #74BC01 solid;
	border-top: 8px #74BC01 solid;
	width: 75%;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}

.list-group {
	margin-bottom: 50px;
	padding-left: 0;
}

.list-group-item {
	position: relative;
  	display: block;
  	padding: 10px 15px;
  	margin-bottom: -1px;
  	background-color: #efefef;
  	border: 1px solid #828285;
}

.list-group-item:first-child {
	-webkit-border-top-right-radius: 0px;
	-moz-border-top-right-radius: 0px;
	border-top-right-radius: 0px;
	-webkit-border-top-left-radius: 0px;
	-moz-border-top-left-radius: 0px;
  	border-top-left-radius: 0px;
}

.list-group-item:last-child {
  	margin-bottom: 0;
	-webkit-border-bottom-right-radius: 0px;
	-moz-border-bottom-right-radius: 0px;
	border-bottom-right-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	-moz-border-bottom-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

.list-group-item > .badge {
  	float: right;
}

.list-group-item > .badge + .badge {
  	margin-right: 5px;
}

a.list-group-item {
  	color: #555555;
	text-decoration: none;
}

a.list-group-item .list-group-item-heading {
  	color: #333333;
}

a.list-group-item:hover,
a.list-group-item:focus {
  	text-decoration: none;
  	background-color: #21275f;
	color: #FFFFFF;
}

a.list-group-item.active,
a.list-group-item.active:hover,
a.list-group-item.active:focus {
  	z-index: 2;
  	color: #ffffff;
  	background-color: #f5e3da;
  	border-color: #1d9d74;
}

a.list-group-item.active .list-group-item-heading,
a.list-group-item.active:hover .list-group-item-heading,
a.list-group-item.active:focus .list-group-item-heading {
  	color: inherit;
}

a.list-group-item.active .list-group-item-text,
a.list-group-item.active:hover .list-group-item-text,
a.list-group-item.active:focus .list-group-item-text {
  	color: #9aecd2;
}


/* Social Icons ================================
================================================ */

ul.social-icons li{
	list-style-type: none;
	display: inline;
	margin: 0px 10px 0px 0px;
}

ul.social-icons li a:link, ul.social-icons li a:link, ul.social-icons li a:visited, ul.social-icons li a:visited {
	color: #FFFFFF;
}

ul.social-icons li a:hover, ul.social-icons li a:active, ul.social-icons li a:hover, ul.social-icons li a:active {
	color: #c9c9c9;
}

/* =========== End Social Icons =========================
====================================================== */

.content-container ul {
	padding: 0px 0px 30px 0px;
}

ul.r-arrow li {
	font-size: 16px;
	font-weight: 100;
	color: #9a8894;
	line-height: 24px;
	background: url(../images/bullets/gray-arrow-right.png) no-repeat 0px 6px;
	padding-left: 24px;
	margin: 16px 0 10px 24px;
}

ul li ul.r-dot-s li {
	background: url(../images/bullets/list-bullet-s.png) no-repeat 0px 9px;
	margin: 16px 0 0px 24px;
}

ul.r-dot-s li {
	font-size: 16px;
	font-weight: 100;
	color: #9a8894;
	line-height: 24px;
	background: url(../images/bullets/list-bullet-s.png) no-repeat 0px 9px;
	padding-left: 24px;
	margin: 16px 0 10px 24px;
}

ul.r-dot-s li a:link, ul.r-dot-s li a:visited {
	color: #828285;
	text-decoration: none;
}

ul.r-dot-s li a:hover, ul.r-dot-s li a:active {
	color: #21275f;
	text-decoration: underline;
}

ol {
	list-style-type: lower-alpha;
}

ol.r-arrow li {
	font-size: 16px;
	font-weight: 100;
	color: #9a8894;
	line-height: 18px;
	background: url(../images/bullets/gray-arrow-right.png) no-repeat 0px 3px;
	padding-left: 24px;
	margin: 16px 0 10px 24px;
}

ul.dot li {
	font-size: 16px;
	font-weight: 100;
	color: #9a8894;
	line-height: 28px;
	background: url(../images/bullets/list-bullet.png) no-repeat 0px 9px;
	padding-left: 24px;
	margin: 16px 0 10px 24px;
}

ul.r-arrow-dark li {
	font-size: 16px;
	font-weight: 100;
	color: #9a8894;
	line-height: 28px;
	background: url(../images/bullets/bullet.png) no-repeat 0px 9px;
	padding-left: 24px;
	margin: 16px 0 10px 24px;
}

ul.r-arrow li a:link, ul.r-dot li a:link, ul.r-arrow-dark li a:link, ul.r-arrow li a:visited, ul.r-dot li a:visited, ul.r-arrow-dark li a:visited {
	text-decoration: none;
	color: #333;
}

ul.r-arrow li a:hover, ul.r-dot li a:hover, ul.r-arrow-dark li a:hover, ul.r-arrow li a:active, ul.r-dot li a:active, ul.r-arrow-dark li a:active {
	text-decoration: underline;
	color: #666;
}

blockquote {
	font-size: 24px;
	font-weight: 100;
	padding: 10px;
	width: 90%;
	background-color: #ebebeb;
	border-left: #CFB53B 5px solid;
	border-right: #CFB53B 5px solid;
	margin-left: 50px;
	margin-right: 40px;
	line-height: 34px;
	color: #9a8894;
	margin-bottom: 30px;
}

blockquote p {
	margin: 0px 0px 0px 0px;
}

/* --------------------------------------------------------------- Navigation ----------------------------------------------------------- */

.tinynav { display: none; }

#navi.selected a {
	color: #CFB53B;
	}
	
#navi.selected a:hover {
	color: #FFFFFF;
	}

#navi {
	color: #FFFFFF;
	list-style:none;
	padding-top:0;
	margin-top: 38px;
	text-align:right;
	z-index: 6000;
	text-transform: uppercase !important;
	-webkit-transition: margin .75s;
	-moz-transition: margin .75s;
	-ms-transition: margin .75s;
	-o-transition: margin .75s;
	transition: margin .75s;
}

#navi li{
	position:relative;
	display:inline;
	background-color: transparent;
	/*border: 1px thin #CCC;*/
}

#navi a {
	display:inline-block;
	padding:17px 16px 10px 16px;
	color: #FFF !important;
}

#navi a:hover {
	color: #CFB53B !important;
}

#navi ul {
	position:absolute;
	left:-9999px;
	margin:0;
	padding:0;
	text-align:left;
}

#navi ul li {
	display:block;
	z-index: 999999;
}

#navi li:hover ul {
	left:0;
}

#navi li:hover a {
	text-decoration:none;
	color: #e31e25;
}

#navi li:hover ul a{
	text-decoration:none;
	background:none;
	background: #FFF;
}

#navi li:hover ul a:hover{
	text-decoration:underline;
}

#navi ul a{
	white-space:nowrap;
	display:block;
	border-bottom:1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}

#navi a {
	color:#CFB53B;
	text-decoration:none;
	font-size: 14px;
}

#navi a:hover{
	text-decoration:underline;
}

/* hide sub menu links */
ul.sub-menu {
    display:none;
}

/* ------------------------------------------------------------------ Contact Forms -------------------------------------------------------------- */


.contact-form {
}

.form-element {
	float: left;
	padding: 5px;
	width: auto;=
}

label {
	line-height: 34px;
	width: 170px;
	float: left;
	color: #999;
}

label span {
	color: #CFB53B; 
}

select {
	border: #03F;
}

::-webkit-input-placeholder {
   color: #CCC;
}

:-moz-placeholder { /* Firefox 18- */
   color: #CCC;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #CCC;  
}

:-ms-input-placeholder {  
   color: #CCC;  
}

.form-notice {
	margin: 10px 0px;
}

.form-notice p {
	padding: 10px;
	border: 1px #CFB53B solid;
	background-color: #FFFFFF;
	margin: 0px 0px 0px 0px;
	color: #CFB53B;
	font-size: 12px;
	font-weight: 500;
	line-height: 20px;
}

/* --------------------------------------------------------------- Google Map ----------------------------------------------------------- */

#googlemaps {
	height: 300px;
	border: 1px solid #666;
	margin: 10px;
}

/* ----------------------------------------------------------------- Content ------------------------------------------------------------- */

.colourbar {
	width: 100%;
	height: 10px;
	background: #964094 url(../images/top-strip-bg.png) repeat-x;
}

.top-menu-container {
	background-color: #0e2240;
	height: 45px;
	z-index: 99999999;
}

.header-container {
	height: auto !important;
	z-index: 99999999;
	background-color: #0e2240;
}

.logo {
	width: 100%;
  	-webkit-transition: width .75s;
	-moz-transition: width .75s;
	-ms-transition: width .75s;
	-o-transition: width .75s;
	transition: width .75s;
}

/* About Us Container -----------------------------------------------------------------------
/* ------------------------------------------------------------------------------------*/

.about-us-container {
	width: 100%;
}

.about-us-container p {
	text-align: center;
	font-size: 18px;
	line-height: 28px;
	padding: 0px 100px;
}

.about-us-container-n p {
	text-align: left;
	font-size: 18px;
	line-height: 28px;
	padding: 0px 0px;
}

.trust-contact-container {
	width: 100%;
}

.trust-contact-container h2 {
	font-size: 18px;
	color: #333333;
	font-weight: 200;
}

/* Team Container -----------------------------------------------------------------------
/* ------------------------------------------------------------------------------------*/

.team-container {
	padding: 40px 0px;
}

.member {
	margin: 0px 0px 20px 0px;
}

.team-container-pop {
	width: 90% !important;
	margin: auto;
	padding: 10px;
}

.team-container-pop img {
	max-width: 300px !important;
	float: left;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	box-shadow: inset 0 0 0 16px rgba(255, 255, 255, 0.6), 0 1px 2px rgba(0, 0, 0, 0.3);
	margin: 0px 20px 20px 0px;
}

.team-container-pop h2 {
	text-align: center;
	color: #0e2240;
	font-size: 24px;
	margin: 10px 0 10px 0;
	text-transform: uppercase;
}

.team-container-pop h2 span {
	text-align: center;
	display: block;
	color: #999;
	font-size: 16px;
	margin: 10px 0 30px 0;
	text-transform: uppercase;
}

.flash-container {
	width: 100% !important;
	margin-bottom: 0px !important;
}

.welcome-text-container {
	width: 100% !important;
	margin: auto;
	font-size: 30px;
	font-weight: 100;
	text-align: center;
	text-transform: uppercase;
	padding: 34px 0px 34px 0px;
	color: #6c6c6c;
	background: #f9f9f9;
}

.intro-content {
	padding: 50px 0px 50px 0px;
}

.intro-content p {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	font-size: 18px;
	line-height: 32px;
	text-align: center;
}

.blue-back {
	background: #0e2240 !important;
}

.white-back {
	background: #ffffff !important;
}

.red-back {
	background: #CC2129 !important;
}

.grey-back {
	background: #F9F9F9 !important;
}

.darkgrey-back {
	background: #733C73 !important;
}

.blue {
	color: #0e2240 !important;
}

.white {
	color: #ffffff !important;
}

.red {
	color: #CC2129 !important;
}

.grey {
	color: #F9F9F9 !important;
}

.darkgrey {
	color: #733C73 !important;
}

.flash-container {
}

/*-------------------------------------------------*/
/* Services Container
/*-------------------------------------------------*/

.services-container {
	width: 100% !important;
	padding: 30px 0px 14px 0px;
}

.services-container img {
	opacity: 1.0;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
	margin: 0px 0px 15px 0px;

}

.services-container img:hover {
	opacity: 0.7;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.services-container:hover:after{
    background: #ffffff;
}

.services-container h2 {
	margin: 0px 0 20px 0;
	padding: 12px 0;
	font-size: 16px;
	font-weight: 400;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
	text-transform: uppercase;
	color: #999;
	text-align: center;
}

/*.services-item {
	padding: 5px 0px;
}

.services-item:hover {
	background-color: #F9F9F9;
}*/

.services-container p {
	font-size: 14px;
	color: #9a8894;
	line-height: 26px;
	margin: 10px 0px 10px 0px;
	text-align: center;
}

.services-container p a:link, .services-container p a:visited {
	color: #FFF !important;
	text-transform: uppercase;
	font-weight: 100;
}

.content-container {
	width: 100%;
}

/* Modal Container -----------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------------------------- */

.facebook-container {
	margin: 0px 0px 50px 0px;
}

.client-logo-carousel {
	margin: 0px 0px 50px 0px;
}

.social-container {
	float: right;
	margin: 13px 0px;
}

.social-likes {
	margin: 10px 0px 10px 0px;
}


/* Footer Address -----------------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------- */

.address-container {
	background: #0e2240 url(../images/footer-bg.jpg) center center;
	background-size: cover;
	padding: 50px 0px 10px 0px;
}

.address-container h2 {
	font-size: 18px;
	color: #ffffff;
	font-weight: 200;
}

.line-left {
    width: 50px;
    height: 1px;
    margin: 10px 0 25px 2px;
    background: #CFB53B;
}

.address-container p {
	font-size: 14px !important;
    color: #FFFFFF;
    line-height: 26px;
    margin: 10px 0px 10px 0px;
	letter-spacing: .04em;
}

.address-container p a:link, .address-container p a:visited {
    color: #CFB53B;
	text-decoration: none;
	padding: 0px 2px;
	-webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.address-container p a:hover, .address-container p a:active {
    color: #000000;
	text-decoration: none;
	background: #CFB53B;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.footer-container {
	background-color: #2c2c2c;
	height: 45px;
	color: #626060;
	font-size: 14px;
	padding: 14px 0px 0px 0px;
}

.footer-container a:link, .footer-container a:visited {
	color: #626060;
	font-weight: 100;
	text-decoration: none;
	padding: 0px 2px;
	-webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.footer-container a:hover, .footer-container a:active {
	color: #000000;
	font-weight: 100;
	text-decoration: none;
	background: #CFB53B;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-transition: all 0.6s ease-in-out;
    -moz-transition: all 0.6s ease-in-out;
    -ms-transition: all 0.6s ease-in-out;
    -o-transition: all 0.6s ease-in-out;
    transition: all 0.6s ease-in-out;
}

.copyright-container {
	text-align: left;
	margin: 0px;
	padding: 0px;
}

.menu-container {
	text-align: right;
	margin: 0px;
	padding: 0px;
}

.copyright-container, .menu-container {
	margin: 8px 0px;
}


/* -------------------------- NEWS ------------------------------- */

.news-container {
	background: #EFEFEF;
	padding: 10px;
	border: 1px solid #dddddd;
	margin: 0px 0px 20px 0px;
}

.news-container a:link, .news-container a:visited {
	color: #FFF;
}

.news-container a:hover, .news-container a:active {
	color: #FFF;
}

.news-container:hover {
	background: #FFFFFF;
}

.news-container img {
	max-width: 130px;
	float: left;
	padding: 0px 10px 0px 0px;
}

.news-container p {
	font-size: 14px;
	margin: 0px 0px 10px 0px;
	line-height: 1.5;
}

.date {
	color: #636363;
	font-weight: 600;
	font-size: 12px !important;
}

.heading {
	background-color: #954294;
	color: #FFF;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 16px !important;
	padding: 5px;
}

.content {
	font-weight: 400;

}

/* -------------------------- MEDIA --------------------------- */

.media-container {
	margin: 0px 0px 20px 0px;
	border-bottom: 1px solid #a7a7a7;
}

.media-container img {
	max-width: 99%;
	padding: 0px 0px 10px 0px;
	border: 1px solid #a7a7a7;
}

.media-container img:hover {
	border: 1px solid #66af45;
}

.media-container p {
	font-size: 13px;
	margin: 0px 0px 0px 0px;
	line-height: 1.3;
}

.media-container p.title {
	text-align: center;
	color: #66af45;
	font-weight: 600;
}

.media-container p.title span {
	display: block;
	font-weight: 100;
	margin: 3px 0px 0px 0px;

}

.media-container p.download {
	display: block;
	text-align: center;
	color: #66af45;
	font-weight: 600;
	margin: 10px 0px 6px 0px;
}

.media-container p.download a:link, .media-container p.download a:visited, {
	color: #66af45;
}

.media-container p.download a:hover, .media-container p.download a:active, {
	color: #000;
}



/* ------------------------------------------------------------- Global Classes ---------------------------------------------------------- */

.btn a{
	float: left;
	display: block;
	width: 125px;
	height: 38px;
	background: url(../images/order_button.jpg) no-repeat 0 0;
	margin: 60px 0px 0px 130px;
	border: 0px;
	z-index: 999;
}

.btn a:hover { 
	background-position: 0px -38px;
}

.btn a span {
	display: none;
}

/* -------------------------------------------------------------- Social Media ---------------------------------------------------------- */

#social_side {
	position:relative;
	float:left;
}

#social_side .contents {
	position:absolute;
	float:left;
	top:300px;
	z-index:2000;
}

#social_side a {
	background-repeat: no-repeat;
	display:block;
	width:54px;
	height:66px;
	text-indent:-99999px;
}

#social_side a:hover {
	background-position:right top;
}

#social_side a.facebook {
	background-image: url(../images/social_fb.png);
}

#social_side a.pinterest {
	background-image: url(../images/social_pinterest.png);
}

.blue {
	background-color: #036;
	color: #FFF !important;
	padding: 20px 0px 20px 0px;
}

.white {
	color: #FFF !important;
}

.grey {
	background-color: #ebebeb;
	padding: 30px 0px 20px 0px;
	color: #333 !important;
}

