/*
* Skeleton V1.1
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 8/17/2011
*/


/* Table of Contents
==================================================
    #Base 960 Grid
    #Tablet (Portrait)
    #Mobile (Portrait)
    #Mobile (Landscape)
    #Clearing */



/* #Base 960 Grid
================================================== */

.container					                { position: relative; width: 960px; margin: 0 auto; padding: 0;}
.column, .columns                           { float: left; display: inline; margin-left: 10px; margin-right: 10px; }
.row                                        { margin-bottom: 20px; }

/* Nested Column Classes */
.column.alpha, .columns.alpha               { margin-left: 0; }
.column.omega, .columns.omega               { margin-right: 0; }

/* Base Grid */	
.container .one.column						{ width: 60px;  }
.container .two.columns 					{ width: 140px; }
.container .three.columns 					{ width: 220px; }
.container .four.columns 					{ width: 300px; }
.container .five.columns 					{ width: 380px; }
.container .six.columns 					{ width: 460px; }
.container .seven.columns 					{ width: 540px; }
.container .eight.columns 					{ width: 620px; }
.container .nine.columns 					{ width: 700px; }
.container .ten.columns 					{ width: 780px; }
.container .eleven.columns 					{ width: 860px; }
.container .twelve.columns 					{ width: 940px; }

/* Offsets */

.container .offset-by-one                	{ padding-left: 80px;  }
.container .offset-by-two                	{ padding-left: 160px; }
.container .offset-by-three              	{ padding-left: 240px; }
.container .offset-by-four               	{ padding-left: 320px; }
.container .offset-by-five               	{ padding-left: 400px; }
.container .offset-by-six                	{ padding-left: 480px; }
.container .offset-by-seven              	{ padding-left: 560px; }
.container .offset-by-eight              	{ padding-left: 640px; }
.container .offset-by-nine               	{ padding-left: 720px; }
.container .offset-by-ten                	{ padding-left: 800px; }
.container .offset-by-eleven             	{ padding-left: 880px; }

/* Column Layouts */
.one_half, .one_third, .two_third, 
.three_fourth, .one_fourth, .one_fifth, 
.two_fifth, .three_fifth, .four_fifth, 
.one_sixth, .five_sixth						{margin-right: 2%; margin-left:2%; position:relative; float:left;}

.one_half									{ width:48%; }
.one_third									{ width:30.6666%;}
.one_fourth									{ width:22%; }
.one_fifth									{ width: 16.8%;}
.one_sixth 									{ width: 13.3333%;}

.two_third									{ width: 65.3332%;}
.two_fourth 								{ width: 48%;}
.two_fifth 									{ width: 37.6%;}
.two_sixth 									{ width: 30.6666%;}

.three_fourth								{ width:74%;}
.three_fifth 								{ width: 58.4%;}
.three_sixth 								{ width: 47.9998%;}

.four_fifth 								{ width: 79.2%;}
.four_sixth 								{ width: 65.3332%;}

.five_sixth 								{ width: 95%;}
.firstcols									{ margin-left:0px !important; }
.last, .lastcols							{ margin-right:0px !important; clear:right; }



/* #Tablet (Portrait)
================================================== */

/* Note: Design for a width of 768px */

@media only screen and (min-width: 768px) and (max-width: 959px) {
	.container                				{ width: 768px; }
	
   
	.container .column,
	.container .columns                     { margin-left: 10px; margin-right: 10px;  }
	
	.column.alpha, .columns.alpha           { margin-left: 0; margin-right: 10px; }
	.column.omega, .columns.omega           { margin-right: 0; margin-left: 10px; }

	.container .one.column					{ width: 44px;  }
	.container .two.columns 				{ width: 108px; }
	.container .three.columns 				{ width: 172px; }
	.container .four.columns 				{ width: 236px; }
	.container .five.columns 				{ width: 300px; }
	.container .six.columns 				{ width: 364px; }
	.container .seven.columns 				{ width: 428px; }
	.container .eight.columns 				{ width: 492px; }
	.container .nine.columns 				{ width: 556px; }
	.container .ten.columns 				{ width: 620px; }
	.container .eleven.columns 				{ width: 684px; }
	.container .twelve.columns 				{ width: 748px; }

	/* Offsets */
	.container .offset-by-one                { padding-left: 64px; }
	.container .offset-by-two                { padding-left: 128px; }
	.container .offset-by-three              { padding-left: 192px; }
	.container .offset-by-four               { padding-left: 256px; }
	.container .offset-by-five               { padding-left: 320px; }
	.container .offset-by-six                { padding-left: 384px; }
	.container .offset-by-seven              { padding-left: 448px; }
	.container .offset-by-eight              { padding-left: 512px; }
	.container .offset-by-nine               { padding-left: 576px; }
	.container .offset-by-ten                { padding-left: 640px; }
	.container .offset-by-eleven             { padding-left: 704px; }
}


/*  #Mobile (Portrait)
================================================== */

/* Note: Design for a width of 320px */

@media only screen and (max-width: 767px) {
	.container { width: 300px; }
	.columns, .column { margin: 0; }
	
	.container .one.column,
	.container .two.columns,
	.container .three.columns,
	.container .four.columns,
	.container .five.columns,
	.container .six.columns,
	.container .seven.columns,
	.container .eight.columns,
	.container .nine.columns,
	.container .ten.columns,
	.container .eleven.columns,
	.container .twelve.columns { width: 300px;  margin-bottom:10px;}

	/* Offsets */
	
	.container .offset-by-one,
	.container .offset-by-two,
	.container .offset-by-three,
	.container .offset-by-four,
	.container .offset-by-five,
	.container .offset-by-six,
	.container .offset-by-seven,
	.container .offset-by-eight,
	.container .offset-by-nine,
	.container .offset-by-ten,
	.container .offset-by-eleven { padding-left:0px; }
	
	/* Column Layouts */
	.one_half, .one_third, .two_third, 
	.three_fourth, .one_fourth, .one_fifth, 
	.two_fifth, .three_fifth, .four_fifth, 
	.one_sixth, .five_sixth						{margin-right: 0; margin-left:0; position:relative; float:left;  margin-bottom:20px }
	
	.one_half,
	.one_third,
	.one_fourth,
	.one_fifth,
	.one_sixth,
	.two_third,
	.two_fourth,
	.two_fifth,
	.two_sixth,
	.three_fourth,
	.three_fifth,
	.three_sixth,
	.four_fifth,
	.four_sixth { width: 96%;}
	.firstcols									{ margin-left:0px !important; clear:left }
	.last, .lastcols							{ margin-right:0px !important; clear:left; }

}


/* #Mobile (Landscape)
================================================== */

/* Note: Design for a width of 480px */

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.container { width: 420px; }
	.columns, .column { margin: 0; }
	
	.container .one.column,
	.container .two.columns,
	.container .three.columns,
	.container .four.columns,
	.container .five.columns,
	.container .six.columns,
	.container .seven.columns,
	.container .eight.columns,
	.container .nine.columns,
	.container .ten.columns,
	.container .eleven.columns,
	.container .twelve.columns { width: 420px; }
}


/* #Clearing
================================================== */

/* Self Clearing Goodness */
.container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

/* Use clearfix class on parent to clear nested columns,
or wrap each row of columns in a <div class="row"> */
.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0; }
.row:after,
.clearfix:after {
  clear: both; }
.row,
.clearfix {
  zoom: 1; }

/* You can also use a <br class="clear" /> to clear columns */
.clear, .clr {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}


/* 

SmartGroup - CSS File

*/

/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
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, img, ins, kbd, q, s, samp, small, strike, 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, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block; }
body {
	line-height: 1; }
ol, ul {
	list-style: none; }
blockquote, q {
	quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none; }
table {
	border-collapse: collapse;
	border-spacing: 0; }

/*============================================ GLOBAL  =================================================*/
body {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	margin:0 auto;
	padding:0;
	line-height:20px;
}
* {
	margin:0;
	padding:0;
}
*:focus {
	outline:none; /* removes ugly dotted border but may make template more unsuable, up to you
					 if you want to keep it! */
}
form{margin:0; padding:0;}
hr {
	border-width:0;
	height:1px;
	line-height:0;
	margin:30px 0px 30px 0px;
	page-break-after:always;
	text-align:center;
	width:100%;
	clear:both;
}

/*** END OF GLOBAL  ***/


/*============================================ DEFAULT ELEMENT STYLES  =================================================*/
/* heading */
h1, h2 {margin-bottom:20px;}
h3, h4, h5{margin-bottom:18px;}
h1	{font-size:24px;}
h2	{font-size:22px;}
h3	{font-size:18px;}
h4	{font-size:18px;}
h5	{font-size:14px;}
h6	{font-size:13px;}
h1, h2, h3, h4, h5, h6{
	font-weight: 400;
	line-height:normal;
	font-family: 'Trebuchet MS', sans-serif, arial;
	font-style: italic;
}
.titleRegular{font-weight:400}
.titleSemibold{font-weight:600}
.titleBold{font-weight:700}
.titleUppercase{text-transform:uppercase}
.titleRegularItalic{font-style:italic}
.titleSection{margin-bottom:30px;}
.pagetitle{color: #002445; font-family: 'Trebuchet MS', sans-serif, arial; font-weight:300; font-size:40px; line-height:55px; margin-bottom:0px; text-transform:uppercase; }
.pagetitle em  { color:#002445; text-transform: none; font-style: italic; font-size: 38px; line-height: 50px; padding-left: 20px; font-weight: 600; }
.pagetitle span  { color:#002445; text-transform: uppercase; font-style: italic; font-size: 38px; line-height: 50px; padding-left: 20px; font-weight: 400; }
.pagedesc em  { padding-left: 20px; }

/* links */
a, a:visited {text-decoration:none;}
a:hover{text-decoration:none;}
a img{border:none}


/* float align */
.alignleft,
img.alignleft {
	display: inline;
	float: left;
	margin-right: 20px;
	margin-top: 3px;
}
.alignright,
img.alignright {
	display: inline;
	float: right;
	margin-left: 20px;
	margin-top: 5px;
}
.aligncenter,
img.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.alignnone,
img.alignnone {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin:0px;
}


img.alignleft, 
img.alignright, 
img.aligncenter
{
	margin-bottom: 12px;
}

/* lists, blockquotes and paragraphs */
p, ul, ol, blockquote {
	margin-bottom:20px;
}
ul {
	list-style: disc;
	margin: 0 0 18px 1.5em;
}
/*ul li{ padding-bottom:10px;}*/
ol {
	list-style: decimal;
	margin: 0 0 18px 2.2em;
}
ol ol {
	list-style: upper-alpha;
}
ol ol ol {
	list-style: lower-roman;
}
ol ol ol ol {
	list-style: lower-alpha;
}
ul ul,
ol ol,
ul ol,
ol ul {
	margin-bottom: 0;
}
	
blockquote {
    background-image: url("../images/quote.png"), url("../images/pattern.png");
    background-position: 28px 25px, 0 0;
    background-repeat: no-repeat, repeat;
	background-color:#f5f5f5;
    clear: both;
    margin: 0 0 20px 0;
    padding: 33px 41px 38px 61px;
	font-family:Arial, Helvetica, sans-serif;
}

blockquote{background-image: url("../images/quote.png"); background-repeat: no-repeat; background-position: 28px 25px;}/* IE-8 ONLY  */

blockquote span{background-image: url("../images/quote2.png"); background-position:right; background-repeat:no-repeat; padding:0px 30px 15px 0px;}	
	
blockquote.left, blockquote.right  {
	float:right;
	margin:0 0 0 20px;
	width:43%;
	}
	
blockquote.left{
	float:left;
	margin-left:0px;
	margin-right:20px;}

blockquote p{margin-bottom:0px;}

/* code */
code {
	font-family:Verdana, Arial;
	letter-spacing:1px;
	margin:25px 0 25px 0px;
	display:block;
	font-size:0.9em;
	padding:15px 10px;
}

.border { border: black solid 1px; }
ul.inline{ margin: 0; padding: 0; }
ul.inline li { display: inline-block; }

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

.client-text { padding: 10px 20px 0 20px; }

/*** END OF DEFAULT ELEMENT STYLES ***/

/*** MASONRY ***/

/* Box-sizing reset: //w3bits.com/?p=3225 */
html {
	box-sizing: border-box;
  }
  
  *,
  *:before,
  *:after {
	box-sizing: inherit;
  }

.masonry { /* Masonry container */
	column-count: 3;
	column-gap: 1em;
  }
  
  .item { /* Masonry bricks or child elements */
	background-color: #F2F7FA;
	display: inline-block;
	margin: 0 0 1em;
	width: 100%;
  }

/*** MASONRY ***/


/*============================================ CONTAINER  =================================================*/
#bodychild{
	width:1000px;
	margin:0 auto;
	padding:0;
}
#outercontainer{
	width:100%;
}

#outerheader, #outerslider, #outerbeforecontent, #outermain,  #outerfootersidebar, #outerfooter{width:100%; margin:0 auto}


/*** END CONTAINER ***/

/*** HEADER ***/
#top{margin-bottom:27px;}
#logo{float:left; height:auto; margin: 22px 0 0 0;}
#logo h1{margin:0; font-size:28px; line-height:28px;}
#logo .circle{
	display: block;
	line-height:normal;
	width:34px;
	height:34px;
	-moz-border-radius:34px;
	-webkit-border-radius:34px;
	-khtml-border-radius:34px;
	border-radius:34px;
	text-align: center;
	margin:0 10px 0 0;
	float:left;
}
#logo img{display:block; text-align:center}
#logo span{line-height:32px;}


/* TOP MENU */
#navigation{position:relative; z-index:200; padding:0px;}

#nav-wrap {
	margin: 24px 0 0 0;
	}
/* Nav address & numbers */
#navContact01 {
	width: 300px;
	float: right;
	}
#navContact01 ul#address li {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-style: italic;
	color:#b8c1d8;
	list-style-image: url(../images/iconHeaderAddress.png);
	
	}
#navContact01 ul#address li p {
	line-height: 21px;
	margin-bottom: 0px;
	}
#navContact02 {
	width: 170px;
	float: right;
	}
#navContact02 ul#numbers {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-style: italic;
	color:#b8c1d8;
	float: right;
	}
#navContact02 ul#numbers li {
	padding-bottom: 5px;
	}
#navContact02 ul#numbers li p {
	margin-bottom: 0px;
	}
#navContact02 ul#numbers li.phone {
	list-style-image: url(../images/iconHeaderPhone.png)
	}
#navContact02 ul#numbers li.fax {
	list-style-image: url(../images/iconHeaderFax.png)
	}
/* Nav Menu */
#topnav{
	margin:0;
	padding:0;
	list-style-type:none;
	overflow:visible;
	position:relative;
	float:right;
	font-size:13px;
	font-family:'Trebuchet MS', sans-serif, arial;
	font-style: italic;
}
.sf-menu a {
	text-decoration:none;
	display:		block;
	position:		relative;
	padding: 		0 16px !important;
	text-decoration:none;
	font-weight:normal;
	text-transform:uppercase;
}
.sf-menu > li:first-child{border-left:0 !important;}
.sf-menu > li:last-child > a{padding-right:0 !important;}

/* Drop down menu */
.sf-menu ul a:hover {}
.sf-menu li li {
	text-align:left;
	line-height:20px;
	margin:0;
}
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
}
.sf-menu {
	line-height:100%;
	position:absolute;
	right:0;
	bottom:0;
	float:left;
}
.sf-menu ul {
	position:		absolute;
	top:			-999em;
	width:			12em; /* left offset of submenus need to match (see below) */
}
.sf-menu ul li {
	width:			100%;
}
.sf-menu li:hover {
	visibility:		inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
	float:			left;
	position:		relative;
	margin:0;
}

.sf-menu li li{margin:0px 0px;}


.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
	left:			-2px;
	top:			2.0em; /* match top ul list item height */
	z-index:		99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
	left:			12em; /* match ul width */
	top:			-1px;
	margin-left:	0px;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
	top:			-999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
	left:			12em; /* match ul width */
	top:			-1px;
}
.sf-menu ul li a{
	padding:8px 20px!important;
	text-transform:capitalize;
}

.sf-menu ul li a:hover{}
.sf-menu li ul {
	padding:0px;
}
.sf-menu a.sf-with-ul {
	padding-right: 	0px;
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			10px;
	top:			1.05em; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
}

	
/* dropdown mobile */
.tinynav { display: none }


/*============================================ SLIDER   =================================================*/
#slidercontainer{}
#slider{position:relative;}

.line-op{ 
	height:5px;
	z-index:100;
	position:absolute;
	width: 100%; 
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
	filter: alpha(opacity=40);
	-moz-opacity:0.4;
	-khtml-opacity: 0.4;
	opacity: 0.4;
	top:0px;
}


/*============================================ AFTER HEADER  =================================================*/
#outerafterheader{padding:0 0 0px 0;}
#afterheader{
	height: 155px;
	position:relative;
	}
#afterheader-narrow { height: 140px; position:relative; }

#pagetitle-container{ float:right; text-align:right; margin-right:30px; margin-top:35px;} 
#pagetitle-container-left{ float:left; text-align:left; margin-left:30px; margin-top:30px}
.pattern1{ background:url(../images/smallHdr_02.jpg) no-repeat;}
.pattern2{ background:url(../images/smallHdr_01.jpg) no-repeat;}
.pattern3{ background:url(../images/smallHdr_03.jpg) no-repeat;}
.pattern4{ background:url(../images/smallHdr_04.jpg) no-repeat;}
.pattern5 { background: url(../images/budgeting/strategic-budgeting-advice-header.jpg) no-repeat #F3F6F8; }
.pattern6 { background: url(../images/property/investment-property-header.jpg) no-repeat #F3F6F8 right; }
.pattern7 { background: url(../images/clients/our-clients-header.jpg) no-repeat #F3F6F8; }
.stripes {
    background-color: white;
    background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #B1CBE0), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, #B1CBE0), color-stop(.75, #B1CBE0), color-stop(.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(-45deg, #B1CBE0 25%, transparent 25%, transparent 50%, #B1CBE0 50%, #B1CBE0 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(-45deg, #B1CBE0 25%, transparent 25%, transparent 50%, #B1CBE0 50%, #B1CBE0 75%, transparent 75%, transparent);
    background-image: -ms-linear-gradient(-45deg, #B1CBE0 25%, transparent 25%, transparent 50%, #B1CBE0 50%, #B1CBE0 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(-45deg, #B1CBE0 25%, transparent 25%, transparent 50%, #B1CBE0 50%, #B1CBE0 75%, transparent 75%, transparent);
	background-image: linear-gradient(-45deg, #B1CBE0 25%, transparent 25%, transparent 50%, #B1CBE0 50%, #B1CBE0 75%, transparent 75%, transparent);
	-webkit-background-size: 40px 40px;
    -moz-background-size: 40px 40px;
    background-size: 40px 40px;
}
#pagetitle-container-left .bg-white { background: white; width: 880px; height: 80px; }

.bg-orange { background-color: #fdb813; }
.bg-blue { background-color: #EAF3FA; }

/*============================================ CONTENT  =================================================*/
#outermain{padding:31px 0 60px 0;}
#outermain.homepage{padding:25px 0 60px 0;}
#maincontent{}
#content{float:left;}
#content.positionright{float:right;}
#content.positionleft{ float:left;}
/*.padcontent{padding-right:1.4%;}*/
.padcontent{padding-right:10px;}
#content.positionright .padcontent{padding-right:0; padding-left:10px;}
.pad-widget { padding: 28px 30px; margin-bottom: 20px; }

.pad-20 {padding: 20px;}
.pad-40 {padding: 40px;}
.pt10  {padding-top: 10px;}
.pl10  {padding-left: 10px;}
.pl15  {padding-left: 15px;}
.pl20  {padding-left: 20px;}
.pb2  {padding-bottom: 2px;}
.pb20  { padding-bottom: 20px; }

.mt10  {margin-top: 10px;}
.mt30  {margin-top: 30px;}
.ml-10 { margin-left: -10px; }
.mb0 { margin-bottom: 0px; }
.mr10  { margin-right: 10px; }

.indentleft{overflow:hidden;}
.margin_top{ padding-top:5px;}
.margin_bottomoff{margin-bottom:0 !important;}
.margin_bottom_small{margin-bottom:5px;}
.margin_bottom_middle{margin-bottom:12px;}
.margin_bottom_large{margin-bottom:16px;}
.margin_bottom_extralarge{margin-bottom:25px;}
.center{text-align:center;}
.nomargin{margin-right:0}
.displayblock{display:block;}
.v-line{ border-left:1px solid #efefef; padding-left:18px; margin-left:10px;}
.text-large { font-size:  1.2em; }
.widget-cta { font-size:  1.4em; }
.widget-cta a, .widget-cta a:visited { text-decoration: underline; color: #676767; }

.highlight-content{clear:both; padding:26px 0 8px 0; text-align:center; margin:0 0 10px 0;}
.highlight-content h1{margin:0 0 5px 0; font-size:24px; font-weight:400;}
.highlight-content h3{font-size:16px; font-weight:700; text-transform:uppercase; margin-bottom:0}

.box{ padding:20px 15px 28px 15px;}
.box-pattern{ background:url(../images/pattern.png); padding:20px 22px 30px 22px;}


/*=== List ===*/
.row-list{list-style-type:none; padding:0; margin:0}
.row-list li{padding:0; margin:0 0 30px 0}

.row-list2{list-style-type:none; padding:0; margin:0}
.row-list2 li{padding:0 0 24px 0; margin:0 0 24px 0; border-bottom:solid 1px #efefef;}

.listSquareSmall{list-style-type:square; padding:0; list-style-position:inside; margin:0 0 20px 0; }
.listSquareSmall li{padding:2px 0; margin:0 0 0 0; font-size:10px; vertical-align:top}
.listSquareSmall li span{ font-size:12px; padding:0 0 0 5px}


.ln{list-style-type:none; padding:0; margin:0;}
.ln h6{margin-bottom:8px;}
.ln li{padding:0; clear:both; margin-bottom:20px;}

.listNolist{list-style-type:none; padding:0; margin:0;}
.listNolist li{}


/* list in contact area */
.noList{list-style-type:none; padding:0; margin:0;}
.noList li{clear:both}
.txtleft{float:left}
.txtright{float:right}



/*=== Circle ===*/
.circle{
	display: block;
	line-height:normal;
	width:47px;
	height:47px;
	-moz-border-radius:31px;
	-webkit-border-radius:31px;
	-khtml-border-radius:31px;
	border-radius:31px;
	text-align: center;
	margin:12px 15px 0 0;
	font-family: 'Oswald', sans-serif, arial;
	font-weight:700;
	font-size:14px;
	float:left;
}
.circle img{ padding-top:15px; padding-left:2px;}
.circle span{display:block; line-height:normal; text-transform:uppercase;}
.circle .line1{padding:10px 0 0 0;}
.white-space { color: white;
	line-height:normal;
	width:80px;
	height:80px;
	text-align: center;
	margin:12px 20px 0 0;
	float:left;}


/*=== Images ===*/
img.scale-with-grid {
	max-width: 100%;
	height: auto;
}

img.client-img {
	width: 40%;
	padding-top: 20px;
}

.frame680{
	-moz-background-clip: padding;     /* Firefox 3.6 */
	-webkit-background-clip: padding;  /* Safari 4? Chrome 6? */
	background-clip: padding-box;      /* Firefox 4, Safari 5, Opera 10, IE 9 */
	position:absolute;
	border: 5px solid rgba(255, 255, 255, 0.5);
	width:98.6%;
	height:95.77%;
}

.frame67{
	-moz-background-clip: padding;     /* Firefox 3.6 */
	-webkit-background-clip: padding;  /* Safari 4? Chrome 6? */
	background-clip: padding-box;      /* Firefox 4, Safari 5, Opera 10, IE 9 */
	position:absolute;
	border: 6px solid rgba(255, 255, 255, 0.5);
	width:83%;
	height:76%;
}

.frame67:hover{border:0;}

.frame220{
	-moz-background-clip: padding;     /* Firefox 3.6 */
	-webkit-background-clip: padding;  /* Safari 4? Chrome 6? */
	background-clip: padding-box;      /* Firefox 4, Safari 5, Opera 10, IE 9 */
	position:absolute;
	display:block;
	border: 6px solid rgba(255, 255, 255, 0.5);
	width:94.6%;
	height:88.5%;
}

.frame300{
	-moz-background-clip: padding;     /* Firefox 3.6 */
	-webkit-background-clip: padding;  /* Safari 4? Chrome 6? */
	background-clip: padding-box;      /* Firefox 4, Safari 5, Opera 10, IE 9 */
	position:absolute;
	display:block;
	border: 6px solid rgba(255, 255, 255, 0.5);
	width:96%;
	height:90.5%;
}

.frame460{
	-moz-background-clip: padding;     /* Firefox 3.6 */
	-webkit-background-clip: padding;  /* Safari 4? Chrome 6? */
	background-clip: padding-box;      /* Firefox 4, Safari 5, Opera 10, IE 9 */
	position:absolute;
	display:block;
	border: 6px solid rgba(255, 255, 255, 0.5);
	width:97.4%;
	height:92.5%;
}

/*=== Form & Button ===*/
form{margin:0; padding:0;}

input[type="text"],
textarea, input[type="password"], select{
	font-size:12px;
	padding:7px 5px;
	font-size:11px;
	font-family:Arial;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
}

textarea{width:90%;}

textarea:focus{outline:0;}

.button, .button:visited, input[type="submit"], button{
	padding:7px 12px 8px 12px;
	cursor:pointer;
	font-size:12px;
	line-height:14px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
	font-weight:bold;
}

.button:hover, input[type="submit"]:hover, button:hover{text-decoration:none;}

.button.medium, input[type="submit"].medium, button.medium{font-size:14px; padding:8px 14px 8px 14px;}
.button.large, input[type="submit"].large, button.large{font-size:14px; padding:10px 16px 10px 16px;}

.submit-centre { text-align: center; padding-bottom: 10px; }

#callUsToday {
	width: 100%;
	float: left;
	margin: 30px 0 0 85px;
	}

/*=== Separator ===*/
.separator {
	display:block;
	height:12px;
	margin-bottom:20px;
	padding:0 0;
	text-align:center;
	width:100%;
	clear:both;
}
.separator.small{margin-bottom:0;}
.separator.line{margin-bottom:32px;}


/*=== Dropcaps ===*/
.dropcap1{
	display:block;
	float:left;
	font-size:32px;
	line-height:34px;
	margin:4px 8px 0 0;
	font-family: 'Oswald', sans-serif, arial;
}
.dropcap2{
	display: block;
	float:left;
	font-family: 'Oswald', sans-serif, arial;
	border-radius: 55px 55px 55px 55px;
    display: block;
    float: left;
    font-size: 26px;
    line-height: 47px;
    margin: 6px 8px 0 0;
    text-align: center;
    width: 47px;	
}
.dropcap3{
	display:block;
	float:left;
	font-size:26px;
	line-height:40px;
	width:47px;
	height:40px;
	text-align: center;
	margin:6px 8px 0 0;
	padding:5px 0;
	font-family: 'Oswald', sans-serif, arial;
}

/*== Highlight ==*/
.highlight1{padding:2px 5px;}	
.highlight2{padding:2px 5px;}

/*=== Pullquotes ===*/
.pullquote-right, .pullquote-left{
	padding:0px 10px 0px 30px;
	background-image:url(../images/quote.png);
	background-repeat:no-repeat;
	background-position:0px 0px;
	float:right;
	font-style:italic;
	font-size:12px;
	letter-spacing:0px;
	line-height:22px;
	margin:0px 2px 20px 20px;
	width:50%;
	}
.pullquote-left{float:left;margin-left:2px;margin-right:20px;}

/*==== Alert Box ====*/
.notification{
	padding:10px;
	margin-bottom:20px;
}

/*== Pricing Box ==*/
ul.list-box{margin:0; padding:0; list-style-type:none; list-style-position:outside;}
ul.list-box li{ margin-top:15px;}
ul.list-box > li{
	float:left;
	width:232px;
	text-align:center;
	padding:0;
	margin:0;
	position:relative;
	z-index:2;
 }
ul.list-box li.noborder{}
ul.list-box li.current{
	z-index:4; 
	margin-top:-25px;
	border-radius:3px;
}
ul.list-box .title-box{
	font-size:14px;
	font-weight:400;
	text-align:center;
	margin:0; 
	padding:10px 20px;
}
ul.list-box li:first-child{
	-webkit-border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	border-top-left-radius: 3px;
}
ul.list-box li.last{
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	border-top-right-radius: 3px;
}
ul.list-box li.last{margin-right:0;}
ul.list-box .price-text{
	margin:0; 
	text-align:center;
	padding:28px 20px 18px 20px;
	vertical-align:top;
	font-size:14px;
}
ul.list-box .price{font-size:26px; font-family: 'Oswald', sans-serif, arial; font-weight:700;}
ul.list-box .price-text img{margin:-10px 0 0 0;}
.list-box-container{
	padding:0 0 26px 0;
	margin-top:0;
}
ul.list-box li.current .list-box-container{
	padding:0 0 42px 0;
}
.list-box-content{ margin:0px 0px; }
.list-box-content ul{margin:5px 0 25px 0;  padding:0 15px; list-style-type:none;}
.list-box-content ul li{margin:0;
	padding:6px 0; 
	list-style-type:none; 
	text-align:center;
}
.list-box-content .button{font-size:13px; font-weight:700;}
.list-box-content ul li:first-child{}

/*==== Tabs ====*/
.tabcontainer{margin:0;}
ul.tabs {
	margin: 0;
	margin-bottom:0px;
	padding: 0 0 1px 0;
	list-style: none;
	height: 35px;
	width: 100%;
	
}

ul.tabs li {
	float: left;
	margin: 0 0;
	padding: 0 15px;
	line-height:25px;
	height:35px;
	overflow: hidden;
	position: relative;
	font-size:14px;
}

ul.tabs li a {
	text-decoration: none;
	display: block;
	padding: 5px 0px;
	outline: none;
	font-family:'Oswald', sans-serif, arial;
}

.tab-content {padding: 20px 0 25px 0; }
	
ul.tabs li:hover{}
#tab-body{padding:0 20px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}

/*==== jQuery Toggles ====*/
#toggle{border: 0px }
h2.trigger {
	padding: 0px 0px;
	margin: 0 0 0 0;
	font-size:14px;
	font-weight: normal;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

h2.trigger span {
	text-decoration: none;
	display: block;
	height:39px;
	background: url(../images/arrow-left.png) no-repeat right;
	padding:0px 0px 0px 20px;
	cursor:pointer;
	line-height:40px;
}

h2.active span{ background:url(../images/arrow-down.png) no-repeat right;}

h2.active {}

.toggle_container {
	margin: 0 0 0 0;
	padding: 0px 0px;
	overflow: hidden;
	clear: both;
}
.toggle_container .block {padding: 20px;}
.toggle_container .block p {padding: 0px; margin: 0px;}

/* Accordion */
h2.accordion-title{ font-family:Arial, Helvetica, sans-serif; font-weight:normal; font-size:12px; margin:0; clear:both; padding:0px 0 5px 0px; line-height:25px;}
h2.accordion-title.active{}
ul.ts-accordion{ 
	list-style: none; 
	margin-left: 0px;
	border-bottom-left-radius:5px;
	border-bottom-right-radius:5px;
	overflow:hidden
}
ul.ts-accordion li{ list-style: none; margin:0; padding:0 }

div.accordion-content{ padding:0px 0px 0px 35px; clear:both;}
h2.accordion-title span.accordion-icon{ width: 22px; height: 23px; float:left; background:url(../images/accordion-icon.png) no-repeat; margin-right: 13px; cursor: pointer; display: block; }
h2.accordion-title.active span.accordion-icon{background-position:0 -23px;}
div.accordion-title p{ margin-bottom: 0px; }



/*==== Tables ====*/
table {border-collapse:separate;border-spacing:0;width:100%; margin-bottom:18px;}
table,td,th { text-align:left; }
th{padding:10px;}
td{padding:10px;}
tfoot td{border:0px;}
th,tr:hover{}
table {
	text-align: left;
	margin: 0 -1px 24px 0;
	width: 100%;
}
tr th,
thead th {
	font-size: 14px;
	line-height: 18px;
	padding: 9px 24px;
	font-family:'Oswald', sans-serif, arial;
}
tr td {
	padding: 6px 24px;
}
tr.odd td {}



/*============================================ SIDEBAR  =================================================*/
#sidebar{float:left; }
#sidebar.positionleft{float:left;}
#sidebar.positionright{float:right;}


.widget-title {
    margin-bottom: 25px;
    padding-bottom: 10px;
    position: relative;
    z-index: 10;
}
.widget-title .title-bg{ 
	font-size:14px;
	padding:0;
	font-family:'Trebuchet MS', sans-serif, arial;
	font-weight:700;
	text-transform:uppercase;
	position:absolute;
	padding:0 10px 0 0;
}

#sidebar ul{
	list-style-type: square;
	list-style-position: outside;
	margin: 0;
	padding: 0;
}
#sidebar li.vision {
	font-size: 9px;
	list-style-type: square;
	list-style-position: inside;
	}
#sidebar li.vision p {
	font-size: 12px;
	}
#sidebar ul li{
	list-style-type:none;
	margin:0;
	padding:0;
}
#sidebar .widget-container{margin-bottom:40px; }
#sidebar .widget-container:first-child{padding:0; border:0}

#sidebar li li{
	list-style-type:square;
	margin:0 0 4px 0;
	padding:0 0 3px 0;
}
#sidebar li li a{}
#sidebar li li a:hover, #sidebar li li a.active{text-decoration:none;}

#sidebar .textwidget p{ margin-bottom:0px;}

/* Tag */
.tags a{padding:2px 6px; margin:0 7px 10px 0 !important; display:inline-block}
.tags a:hover{}

/* Recent post widget */
.rp-widget li{padding-bottom:10px; margin-bottom:0px ; clear:left}
.rp-widget li.last{margin:0 !important; padding:0 !important;}
.rp-widget img{padding:4px;}
.rp-widget li h3{font-size:13px; margin:0 0 0 40px;}
.rp-widget li .smalldate{font-size:11px; display:block; font-style:italic; overflow:hidden; padding:0 0 0 0px;}


.gallery-pic a{margin:0 6px 6px 0; display:block; float:left;}
.gallery-pic, .gallery-pic a{ position:relative}



/*============================================ FOOTER SIDEBAR  =================================================*/
#outerfootersidebar{padding:36px 0 0 0;}
#footersidebar ul{list-style-type:none; margin:0; padding:0;}
#footersidebar li.widget-container{list-style-type:none; margin:0 0 30px 0; padding:0 6px 0 0; }
#footersidebar .widget-title{
	font-size:14px;
	line-height:16px;
	font-family: 'Trebuchet MS', sans-serif, arial;
	font-weight:700;
	text-transform:uppercase;
	margin:0 0 25px 0;
	padding:0px;
	border:0px;
}
#footersidebar .widget-title:before {border:0px;}
#footersidebar li li{padding:0 0 5px 0; margin:0 0 5px 0; }
#footersidebar li a{ 
	padding:0px; 
	margin:0px;
	}
#footersidebar li a:hover{ text-decoration:none;}


/* Recent post widget */
#footersidebar  .rp-widget li img{ float:left; margin-right:15px;}
#footersidebar  .rp-widget li{ padding-bottom:15px!important; margin-bottom:15px!important}
#footersidebar  .rp-widget li:last-child{ border:0px;}
#footersidebar  .rp-widget li h3{ margin-bottom:0px;}


.sn{list-style-type:none; margin:0 0 0 0; padding:0;} 
.sn li{list-style-type:none; margin:0; padding:0 5px 0 0!important; display:inline; background:transparent; border:0px!important;} 
.sn span{height:32px; width:32px; display:inline; display:inline-block}
.icon-img{background-position:0 0;}
.icon-img:hover{background-position:0 -32px !important;}

.icon {width: 80px; }

/*============================================ FOOTER  =================================================*/
#footercontainer{position:relative; padding:28px 0px;}
#footer{ padding-left:20px;}
#footer{font-size:12px;}
#footer a, #footer a:visited{}
#footer a:hover{text-decoration:underline;}
#toTop {
	position:absolute; /* this is the magic */
	top:28px;
	right:20px;
	cursor:pointer;
	display:none;
	font-size:12px;
	background:url(../images/icons/top.png) no-repeat;
	width:16px; height:16px;
}

#footcol1, #footcol3{ width:170px;} 
#footcol2{ margin-left:20px;}



/* 

SmartGroup - CSS File

USE THIS STYLE SHEET FOR INNER PAGE

*/



/* Page Navi*/
.wp-pagenavi {padding:20px 0 0 0; font-size:12px; margin:10px 0 0 0; clear:both}
.wp-pagenavi .pages{padding-right:10px;}
.wp-pagenavi a, .wp-pagenavi a:visited{padding:7px 11px; margin:0 4px; font-size:11px;}
.wp-pagenavi .current{padding:7px 11px; margin:0 4px; font-size:11px;}



/* BLOG */
.post{margin-bottom:38px; padding:0 0 0px 0; clear:both;}
.post.singlepage{
	/*padding-bottom:25px; border-bottom:1px solid #efefef;*/}
.postimg{ position:relative; margin-bottom:20px;}
.postimg img{display:block;}
.posttitle{margin:0 0 2px 0}
.posttitle, .posttitle a{font-size:20px; font-weight:700; line-height:24px; text-transform:uppercase}
.posttitle a:hover{text-decoration:none;}

.entry-text{overflow:hidden;}
.entry-content {margin:0; padding:12px 0 5px 0;}

.entry-date{float:left; overflow:hidden; text-align:center; margin:5px 30px 0 0 }
.postmonth{ padding:5px 15px 5px 15px; font-size:13px; font-family: 'Oswald', sans-serif, arial; font-weight:400; text-transform:uppercase }
.postdate{font-size:22px; 	font-family: 'Oswald', sans-serif, arial; font-weight:700; padding:8px 0 13px 0;}
.year{ font-size:14px; display:block; padding-top:5px;}

.entry-utility{padding-top:10px; margin-top:15px;}


#comment h2{font-family:'OpenSansBold', Arial;}
.commentlist{
	list-style-type:none;
	padding:0;
	margin:0;
}
.commentlist ol{
	list-style-type:none;
	padding:30px 0 0 65px;
	margin:0;
	
}

.commentlist li{
	position:relative;
	padding:0 0 30px 0;
}
.commentlist li li{
	position:relative;
	padding:0;
	padding-left:48px;
}
.com-line{width:26px; position:absolute; left:0px; top:23px;}
.commentlist li li .avatar-img{ left:70px;}
.avatar-img{
	position:absolute;
	top:20px;
	left:20px;
	background:url(../images/shadow-mini.gif) no-repeat center bottom;
	padding-bottom:6px;
}
.avatar{display:block}
.fn{font-size:12px; font-weight:bold; text-transform:uppercase}

.tdate, .reply{ font-size:12px;}
.reply a, .reply a:visited{}
.reply a:hover{text-decoration:underline;}
.fn a, .fn a:visited{font-weight:bold;}

.comment-body{margin:0 0 0 0px; padding:18px; padding-left:100px;}
.comment-body p{ margin-bottom:5px; margin-top:10px;}
.comment-body .more{ padding:0px 0px;}
#commentform {margin-bottom:20px}
#commentform label{display:block}
#commentform .text-input{
	margin-bottom:8px;
	padding:8px 5px;
	vertical-align:middle;
}
#commentform .textarea{
	margin-bottom:20px;
	padding:8px 5px;
	vertical-align:top;
}

.addthis_toolbox{padding:20px 0 0 0;}

/* PORTFOLIO */
.ts-display-portfolio{padding-bottom:20px}
.ts-display-portfolio li{position:relative;}
.ts-display-pf-img{position:relative;}
.ts-display-clear{clear:both; height:1px !important; line-height:1px !important; float:none!important}
.ts-display-pf-text{padding:15px 0 15px 0;}
.ts-display-pf-text h2{font-family: 'Oswald', sans-serif, arial; font-size:16px; font-weight:700; margin-bottom:10px; text-transform:uppercase}


.ts-display-pf-img{
	overflow:hidden;	
}
.ts-display-pf-img a.image{
	display:block;
	position:relative;
	overflow:hidden;
}
.ts-display-pf-img a .rollover{
	background:url(../images/hover-zoom.png);
	background-color:#000;
	background-repeat:no-repeat;
	background-position:center;
	display:block;
    position:absolute;
	z-index:10;
	display:none;
	cursor:pointer;
}
.ts-display-pf-img a .rollover.gotolink{
	background:url(../images/hover-link.png);
	background-color:#000;
	background-repeat:no-repeat;
	background-position:center;
}
.ts-display-pf-img a .rollover.gotopost{
	background:url(../images/hover-doc.png);
	background-color:#000;
	background-repeat:no-repeat;
	background-position:center;
}

/*======= Portfolio Navigation =======*/
#filter{
	list-style-type:none;
	padding:0px 0px;
	margin:0 0 30px 0;
	float:left;
	padding:0;
	position:relative;
	overflow:visible;
	display:block;
	width:100%;
}
#filter li{list-style-type:none; padding:0 20px 0px 0px; line-height:40px; float:left; font-family: 'Oswald', sans-serif, arial; font-weight:700; font-size:12px;}
#filter li:first-child{border-left:0;}
#filter li:last-child{border-right:0;}

#filter li a, #filter li a:visited{ padding:10px 0px; text-transform:uppercase;}
#filter li a:hover, #filter li.selected-1 a{}


/*======= Portfolio 2 Item =======*/
.ts-display-pf-col-2{list-style-type:none; padding:0; margin:0; overflow:hidden; clear:both}
.ts-display-pf-col-2 li{
	list-style-type:none; 
	padding:0; 
	margin:0 20px 40px 0; 
	width:460px; 
	float:left;
}
.ts-display-pf-col-2 .ts-display-pf-img img{display:block; max-width:100%;}

.ts-display-pf-col-2 li.nomargin{margin-right:0;}

.ts-display-pf-col-2 .ts-display-pf-img{
	width:460px; 
	height:100%;
}

.ts-display-pf-col-2 .ts-display-pf-img a.image{
	width:460px; 
	height:100%;
	display:block;
	position:relative;

}
.ts-display-pf-col-2 .ts-display-pf-img a .rollover{
	width:460px; 
	height:100%;
}


/*======= Portfolio 3 Item =======*/
.ts-display-pf-col-3{list-style-type:none; padding:0; margin:0; overflow:hidden; clear:both}
.ts-display-pf-col-3 li{
	list-style-type:none; 
	padding:0; 
	margin:0 20px 40px 0; 
	width:300px; 
	float:left;
}
.ts-display-pf-col-3 .ts-display-pf-img img{display:block; max-width:100%;}

.ts-display-pf-col-3 li.nomargin{margin-right:0;}

.ts-display-pf-col-3 .ts-display-pf-img{
	width:300px; 
	height:100%;
}

.ts-display-pf-col-3 .ts-display-pf-img a.image{
	width:300px; 
	height:100%;
	display:block;
	position:relative;

}
.ts-display-pf-col-3 .ts-display-pf-img a .rollover{
	width:300px; 
	height:100%;
}


/*======= Portfolio 4 Item =======*/
.ts-display-pf-col-4{list-style-type:none; padding:0; margin:0; overflow:hidden; clear:both}
.ts-display-pf-col-4 li{
	list-style-type:none; 
	padding:0; 
	margin:0 20px 40px 0; 
	width:220px; 
	float:left;
}
.ts-display-pf-col-4 .ts-display-pf-img img{display:block; max-width:100%;}

.ts-display-pf-col-4 li.nomargin{margin-right:0;}

.ts-display-pf-col-4 .ts-display-pf-img{
	width:220px; 
	height:100%;
}

.ts-display-pf-col-4 .ts-display-pf-img a.image{
	width:220px; 
	height:100%;
	display:block;
	position:relative;

}
.ts-display-pf-col-4 .ts-display-pf-img a .rollover{
	width:220px; 
	height:100%;
}

.image-grid:after {
	content: "";
	display: block;
	height: 0;
	overflow: hidden;
	clear: both;
	margin:0;
	padding:0;
	list-style-type:none;
}




/* CONTACT */
form{margin:0; padding:0;}
fieldset{border:0px;}
#contactform{margin:5px; position:relative; background: white; }
#contactform label{display:block; width:100%; float:left; padding-bottom:5px;padding-top:5px; font-weight:bold}
span.required{ color:#888;}
span.error{color:red;text-align:left; font-size:11px; padding-bottom:15px; display:block;}
#contactform input.text-input{
	margin-bottom:15px;
	vertical-align:middle;
	width:85%;
	float:left;
	font-style:italic;
	padding:8px;
}
#contactform textarea{ width:90%; float:left; font-style:italic} 
#message{ margin-left:0px; font-weight:bold; color:#ff0000}
#message h2	{}
#message p{margin:6px 0px; }
.note{ color:#d45454;}
#contactform .button{
	cursor:pointer;
	margin-top:20px;
	clear:both;
	font-size:13px;
	font-weight:bold;
 }



/* 

SmartGroup - CSS File

USE THIS STYLE SHEET FOR FIXED STYLE

*/
#bodychild{
	width:1000px;
	margin:0 auto;
	padding:0;
}


/* 

SmartGroup - CSS File

CHANGE COLOR STYLE

*/

/*============================================== DEFAULT COLOR ==============================================*/
/* link color */
a, a:visited, .colortext, .colortext a, .colortext a:visited{color:#2d6191}

/* dropcap */
.dropcap1{text-shadow:1px 1px 0 #ededed; color:#2d6191}
.dropcap2, .circle{background:#fdb813; color:#fff;}		
.dropcap3{	background:#2d6191; color:#fff;}

/* highlight */
.highlight { color: #000071; }
.highlight1{background:#2d6191; color:#fff;}

/* accordion */
h2.accordion-title{ color:#2d6191;}

/* blog */
.posttitle a:hover{color:#2d6191}
.postmonth {
    background:#2d6191;
}
.entry-utility a, .entry-utility a:visited{color:#2d6191;}

.wp-pagenavi .current, .wp-pagenavi a:hover{color:#fff; border:solid 1px #2d6191; background:#2d6191}

/* portfolio */
#filter li a:hover, #filter li.selected-1 a{color:#2d6191; border-bottom:3px solid #dedede;}

/* sidebar */
#sidebar li li a{ color:#2d6191;}
#sidebar .rp-widget li h3 a{color:#2d6191;}


body {
	color:#676767;
	background-color:#e1e1e1;
/*	background-image:url(../images/bg/bg_body2.png);
	background-repeat:repeat;
*/
}
#bodychild {border-top: 7px solid #f5f5f5; background:#fff}

/*============================================== GENERAL SECTION ==============================================*/
a:hover, a.colortext:hover, .colortext a:hover{color:#333}
#logo h1 a, #logo h1 a:visited{color:#333;}

/* Heading & text */
h1, h2, h3, h4, h5, h6{color:#000071; }

/*============================================== HEADER AND MENU SECTION ==============================================*/
.sf-menu a, .sf-menu a:visited{color:#002455;}/* 1st level */
.sf-menu a:hover, .sf-menu li.current > a{color:#b8c1d8;}/* 1st level */

.sf-menu > li{border-left:solid 1px #e5e5e5; }

/* dropdown */
.sf-menu li li, .sf-menu li li:hover, .sf-menu li li.sfHover{background:#002455; text-transform:capitalize}
.sf-menu li li a, .sf-menu li li a:visited, .sf-menu li li a:hover, sf-menu li.current li a{color:#fff;}
.sf-menu li li:hover{
	background:#002455;
	-moz-box-shadow: inset 0 1px 5px 0px #616161;
	-webkit-box-shadow: inset 0 1px 5px 0px #616161;
	box-shadow: inset 0 1px 5px 0px #616161;
}
.sf-menu ul{border-top:solid 2px #595959;}
.sf-with-ul{}
.sf-menu li li {border-bottom:solid 1px #888888;}
.sf-menu li li:last-child{ border-bottom:0}

.tinynav{background:#fff; border:1px solid #e4e4e4;}


/*============================================== SLIDER SECTION ==============================================*/
.line-op{ background:#fff;}
.flex-caption h1{color:#333}
.flex-caption .slidetext{ color:#333;}
.flex-control-nav a {background:#333; border:solid 1px #f2f2f2;}
.flex-control-nav li a:hover{background:#595959}
.flex-control-nav li a.active{background:#595959}

.ls-layer .slidetext{color:#333;}



/*============================================== AFTER HEADER SECTION ==============================================*/


/*============================================== CONTENT SECTION ==============================================*/
.highlight-content{border:solid 1px #efefef; border-width:1px 0}
.highlight-content h1{color:#002455;}

/* Form */
input[type="text"],
textarea, input[type="password"], select{
	border:solid 1px #e4e4e4;
	color:#888;
}
label{ color:#333;}
span.required{ color:#f00;}

/* Horizontal Line */
hr {
	color:#efefef;
	background-color:#efefef;
}

.separator.line{border-bottom:solid 1px #efefef;}

/* List */
.ln h6 a, .ln h6 a:visited{color:#333;}

.box, .box-pattern{ background-color:#f5f5f5;}


/* Button */
.button, .button:visited, input[type="submit"]{
	background: #f78f1e; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdb813', endColorstr='#f78f1e'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#fdb813), to(#f78f1e)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #fdb813,  #f78f1e); /* for firefox 3.6+ */
	border:solid 1px #222;
	border:solid 1px #f78f1e;
	color:#fff;
}
.button:hover, input[type="submit"]:hover{
	background: #ff7949; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcc339', endColorstr='#fdb813'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#fcc339), to(#fdb813)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #fcc339,  #fdb813); /* for firefox 3.6+ */
	border:solid 1px #222;
	border:solid 1px #f78f1e;
	color:#fff;
}




/* Dropcaps */	
.dropcap1{text-shadow:1px 1px 0 #ededed;}
.dropcap2, .circle{color:#fff;}		
.dropcap3{color:#fff;}

/* Highlight */
.highlight1{color:#fff;}	
.highlight2{background:#efefef;  border:solid 1px #f7f7f7}
.highlight3{border-bottom:dotted 1px #000}

/* Code */
code {
	border-left:4px solid #e9e9e9;
}

/* Alert Box */
.notification.error{
	background:#ffeded;
	border:solid 1px #fbc4c4;
	color:#de5959;	
}
.notification.success{
	background:#eff9e6;
	border:solid 1px #b3dc82;
	color:#5f9025;	
}
.notification.warning{
	background:#fbfae4;
	border:solid 1px #ded58a;
	color:#8f872e;	
}
.notification.notice{
	background:#eaf7fe;
	border:solid 1px #b6d7e8;
	color:#5091b2;	
}
		
/* Tabs */
ul.tabs li {
	background: #f7f7f7; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f7f7f7'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f7f7f7)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #ffffff,  #f7f7f7); /* for firefox 3.6+ */
	color:#676767;
	border:1px solid #e9e9e9;
	border-width:1px 1px 1px 0px;
}
ul.tabs li:first-child{border-left:solid 1px #e9e9e9;
-webkit-border-top-left-radius: 3px;
-webkit-border-bottom-left-radius: 3px;
-moz-border-radius-topleft: 3px;
-moz-border-radius-bottomleft: 3px;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
}
ul.tabs li:last-child{
-webkit-border-top-right-radius: 3px;
-webkit-border-bottom-right-radius: 3px;
-moz-border-radius-topright: 3px;
-moz-border-radius-bottomright: 3px;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;	
}
ul.tabs li a {color:#676767;}
ul.tabs li.active{
	background: #ffffff; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#ffffff'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#f7f7f7), to(#ffffff)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #f7f7f7,  #ffffff); /* for firefox 3.6+ */
	color:#676767;
}
html ul.tabs li.active a{ color:#333; }
#tab-body{border:solid 1px #e9e9e9;}

/* jQuery Toggles */
h2.trigger{
	border:1px solid #e9e9e9;
	border-top:0px;
	background: #f7f7f7; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f7f7f7'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f7f7f7)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #ffffff,  #f7f7f7); /* for firefox 3.6+ */
	color:#676767;
}
h2.trigger:first-child{ border-top:1px solid #e9e9e9; }
h2.trigger span {color:#676767}
h2.active span{color:#333}
h2.trigger span:hover {color:#333} 
.toggle_container {border:1px solid #e9e9e9; border-width:0px 1px 1px 1px;}


/* Tables */
th{
	background: #f7f7f7; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f7f7f7'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f7f7f7)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #ffffff,  #f7f7f7); /* for firefox 3.6+ */
	color:#676767;
	border-bottom: 1px solid #e9e9e9;
	border-right: 1px solid #e9e9e9;
}
thead th{border-right: 1px solid #e9e9e9!important;}
table {border: 1px solid #e9e9e9;border-bottom:0; border-right:0px;}
tr td {border-bottom: 1px solid #e9e9e9; border-right: 1px solid #e9e9e9;}
tr.odd td {background: #F2F7FC;}



/* Pricing Box */
ul.list-box > li{
	border:solid 1px #e9e9e9;
	border-width:1px 0 1px 1px;
 }
ul.list-box li.current{border-right:solid 1px #e9e9e9;}
ul.list-box li.last{border-width:1px 1px 1px 0px;}
ul.list-box .title-box{
	color:#676767;
	background: #f7f7f7; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f7f7f7'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f7f7f7)); /* for webkit browsers */
	background: -moz-linear-gradient(top,  #ffffff,  #f7f7f7); /* for firefox 3.6+ */
	border-bottom: 1px solid #e9e9e9;
}
ul.list-box .price-text{
	color:#676767;
	border-bottom:solid 1px #e9e9e9;
}
ul.list-box .price-text .price{color:#333;}
.list-box-content ul li{
	border-bottom:1px solid #e9e9e9;
}




/* Accordion */
h2.accordion-title{}
h2.accordion-title.active{ color:#333;}


/*============================================== BLOG SECTION ==============================================*/

.posttitle a, .posttitle a:visited{color:#333;}
.posttitle a:hover{}

.entry-date {
    background:#fff;
    color: #333;
}
.postmonth {
    color: #FFFFFF;
}

.entry-utility{ color:#aaa; border-top:1px solid #efefef;}
.entry-utility a, .entry-utility a:visited{}
.entry-utility a:hover{color:#333;}

.commentlist li li{	border-left:1px solid #f2f2f2;}
.com-line{border-top:1px solid #f2f2f2;}
.tdate, .reply a, .reply a:visited{color:#969696; }
.comment-body{ background:#f8f8f8;}

.wp-pagenavi{ color:#333; border-top:1px solid #f2f2f2;}
.wp-pagenavi a, .wp-pagenavi a:visited{color:#676767; border:solid 1px #f5f5f5; background:#f5f5f5}
.wp-pagenavi .current, .wp-pagenavi a:hover{color:#fff;}

/*============================================== PORTFOLIO SECTION ==============================================*/
#filter{border:1px solid #efefef; border-width:1px 0px 1px 0px;}
#filter li a, #filter li a:visited{ color:#333;}
#filter li a:hover, #filter li.selected-1 a{border-bottom:3px solid #dedede;}

.ts-display-pf-text{border-bottom:solid 1px #efefef;}
.ts-display-pf-text h2 a, .ts-display-pf-text h2 a:visited{color:#333;}
.ts-display-pf-text h2 a:hover{color:#646464;}


/*============================================== SIDEBAR SECTION ==============================================*/
#sidebar li li a{}
#sidebar li li a:hover, #sidebar li li a.current{color:#676767;}

.widget-title {border-bottom:double 3px #efefef;}
/*.widget-title:before { border-bottom: 1px solid #efefef;}*/

.widget-title .title-bg{ background:#fff;}


#sidebar .smalldate a, #sidebar .smalldate a:visited{color:#dc3c00;}
#sidebar .smalldate a:hover{text-decoration:underline;}
#sidebar .rp-widget li h3 a{}
#sidebar .rp-widget li h3 a:hover{color:#fc775d}
#sidebar .rp-widget .smalldate{color:#afafaf;}
#sidebar .rp-widget li img{border:solid 1px #efefef;}


/* Tag */
.tags a{border:solid 1px #f0f0f0; color:#888;}
.tags a:hover{background:#f8f8f8; color:#888}



/*============================================== FOOTER SIDEBAR SECTION ==============================================*/
#outerfootersidebar{
	background: #ccc; /* for non-css3 browsers */
	border-top:7px solid #ccc; }
#footersidebar{}
#footersidebar .widget-title{color:#fff;}
#footersidebar li a, #footersidebar li a:visited{color:#fff}
#footersidebar li a:hover{color:#809DB8;}

#footersidebar li.textwidget{ border-bottom:1px dotted #fff;}

#footersidebar li li, #footersidebar  .rp-widget li{ border-bottom:dotted 1px #fff;}

#footersidebar  .rp-widget li img{background:none;}
#footersidebar  .rp-widget li .smalldate{ color:#999;}


/*============================================== FOOTER SECTION ==============================================*/
#outerfooter{ background:#ccc; border-top: 1px solid #fff;}
#footercontainer{ background:#ccc;}
#footer{color:#fff;}
#footer a, #footer a:visited{color:#fff;}
#toTop{color:#001947}