/* Smartphones (portrait and landscape) ----------- */
@media screen and (max-width: 1024px) {
    .sidebar-container {
        display:none;
    }
}

/*-----------------------------------------------------------------------------------*/
/*	1.	CSS Reset & Clearfix - http://meyerweb.com/eric/tools/css/reset/
/*-----------------------------------------------------------------------------------*/

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, 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,
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;
}
.floatL {
    float:left;
}
.bold
{
    font-weight:bold;
}
.italic
{
    font-style:italic;
}
/* HTML5 display-role reset for older browsers */
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;
}

input,textarea {
	font: 12px/20px;	
	font:inherit;
	resize:none;
}

* { _noFocusLine: expression(this.hideFocus=true); } /* Removes dotted lines around links */

*, *::before, *::after { box-sizing: border-box; }

/*-----------------------------------------------------------------------------------*/
/*	2.	Document Setup (body, common classes, structure etc)
/*-----------------------------------------------------------------------------------*/

body {
	font: 12px/20px Open Sans, Helvetica, Arial, sans-serif;
	background:#efefef url(/images/bg/bg1.png) repeat scroll 0 0;
	margin:0;
	padding:0;
	color:#686868;
}

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

#wrapper {
	margin-left:auto;
	margin-right:auto;
	width:100%;
	max-width:1020px;
    margin-top: 103px;
	margin-bottom:40px;
	box-shadow: 0px 0px 10px #dedede;
	background:#fff;
    padding-top: 30px;
}

a {
	text-decoration:none;
}

a:focus , a:link, a:active {
	outline:none;
}

a:hover {
	color:#444;
}

p {
	margin-bottom:20px;
}

.clear {
	clear:both;
}

.aligncenter {
	text-align:center;
}

.alignleft {
	text-align:left;
}

.alignright {
	text-align:right;
}
 
#bg {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.bgwidth { 
	width: 100%; 
}

.bgheight { 
	height: 100%; 
}
.center
{
    text-align:center;
}
.space {
    height:30px;
    width:100%;
	clear:both;
}

label {
    color:#7F7F7F;
    display:block;
    font-weight:normal;
}

label.error {
    color: red;
    font-style: italic;
    margin: 5px 0 10px 0;
}

input[type="text"], input[type="password"], input.text, input.title, textarea, select {
    background:#FFFFFF;
    border:1px solid #EBEBEB;
}

input[type="text"]:focus, input[type="password"]:focus, input.text:focus, input.title:focus, textarea:focus, select:focus {
    -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
    border:1px solid #EBEBEB;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
}

input[type="text"], input[type="password"], input.text, input.title, textarea, select {
    font-family:Arial;
    font-size:12px;
    margin:5px 0;
}

input.text, input.title, select {
    padding:4%;
    width:89%;
}

input.title {
    font-size:13px;
}

textarea {
    height:80px;
    padding:2% 2%;
    width:95.5%;
}

form.inline {
}

form.inline p {
    margin-bottom:0;
}



/*-----------------------------------------------------------------------------------*/
/*	3.	Columns
/*-----------------------------------------------------------------------------------*/

.one-half { width: 460px }
.one-third { width: 300px; }
.two-third { width: 620px; }
.one-fourth { width: 220px; }
.three-fourth { width:700px; }
.one-sixth { width: 140px; }
.five-sixth { width: 780px }
.last { width: 660px }

.one-fourth, .one-half, .two-third, .one-third, .three-fourth, .one-sixth, .five-sixth, .last {
	position: relative;
	margin-right:20px;
	float: left;	
}

.percent-one-half { width: 48%; }
.percent-one-third { width: 30.66%; }
.percent-two-third { width: 65.33%; }
.percent-one-fourth { width: 22%; }
.percent-three-fourth { width: 74%; }
.percent-one-fifth { width: 16.8%; }
.percent-two-fifth { width: 37.6%; }
.percent-three-fifth { width: 58.4%; }
.percent-four-fifth { width: 67.2%; }
.percent-one-sixth { width: 13.33%; }
.percent-five-sixth { width: 82.67%; }

.percent-one-half,
.percent-one-third,
.percent-two-third,
.percent-three-fourth,
.percent-one-fourth,
.percent-one-fifth,
.percent-two-fifth,
.percent-three-fifth,
.percent-four-fifth,
.percent-one-sixth,
.percent-five-sixth {
	position: relative;
	margin-right: 4%;
	float: left;
}

.column-right {
	float:right;
}
.column-last {
	margin-right: 0!important;
	clear: right;
}

.last{
    margin: 15px 0 0 0;
    float: right !important;
    background-color: #f7f7f7;
}


/*-----------------------------------------------------------------------------------*/
/*	4.	Typography
/*-----------------------------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	font-weight:normal;
	color:#444;
}

h1 {
	font-size:32px;
	line-height:40px;
	margin-bottom:13px;	
}

h2 {
	font-size:24px;
	line-height:32px;
	margin-bottom:13px;
}

h3 {
	font-size:18px;
	line-height:24px;	
	margin-bottom:20px;	
}

h4 {
	font-size:15px;
	line-height:22px;
	margin-bottom:10px;	
}

h5 {
	font-size:14px;
	line-height:20px;
	margin-bottom:15px;
}

h6 {
	font-size:13px;
	line-height:20px;
	margin-bottom:20px;
	font-weight:600;
}	


/*--- 4.1. Dropcaps ---*/

.dropcap1 {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background: #666666;
    border-radius: 3px;
    color: #fff;
    float: left;
    font-size: 36px;
    margin: 4px 10px 2px 0;
    padding: 12px 6px;
    text-shadow:0 1px 0 #fff;
}

.dropcap2 {
    float: left;
    font-size: 36px;
	line-height:26px;
    padding-right: 10px;
    padding-top: 8px;
}

.dropcap3 {
    float: left;
    font-size: 36px;
	line-height:30px;
    font-style: italic;
    padding-right: 10px;
	padding-top:8px;
}


/*--- 4.2. Hightlighted Text ---*/

.highlight {
    padding: 1px 3px;
}

.highlight.redish {
    background-color: #ffcccf;
    color: #A14A40;
}

.highlight.bluish {
    background-color: #D7E7F5;
    color: #5E6984;
}

.highlight.yellowish {
    background-color: #FFF9CC;
    color: #736B4C;
}

.highlight.greenish {
    background-color: #E2F2CE;
    color: #466840;
}

.highlight.dark {
    background: #333333;
    color:#fff;
}

pre, code {
    background-color: #F5F5F5;
    border-color: #ebebeb;
    border-style: solid;
    border-width: 0px 0px 0px 4px;
    display: block;
    font-family: monospace;
    font-size: 11px;
    padding: 10px;
}

pre, code {
    margin-bottom:10px;
}

blockquote {
    border-left: 2px solid #ebebeb;
    color: #787878;
    font-size: 16px;
    font-style: italic;
    line-height:24px;
    margin: 20px 50px;
    padding: 0 0 5px 15px;
}


/*-----------------------------------------------------------------------------------*/
/*	5.	Header
/*-----------------------------------------------------------------------------------*/

#header {
    border-top: 3px solid #0295DA;
    background-color: #ffffff;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999999;
    -webkit-box-shadow: 1px -13px 45px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 1px -13px 45px 0px rgba(0,0,0,0.75);
	box-shadow: 1px -13px 45px 0px rgba(0,0,0,0.75);

}
#header .header-first-container {
	width:100%;
	max-width:970px;
	margin:0 auto;
	padding:0 15px;
	background-color: #ffffff;
    position: relative;
}
.logo {
	position:relative;
    margin:25px 0 0 0;
}

#navigation {
	float:right;
	padding-top:30px;
}
	
.nav-last-item {
	border-bottom:3px solid #515151;
}

.nav-first-item {
	z-index:1000;
	position:relative;
}

#nav ul#mainnav > li > ul > li.nav-last-item > a, #nav  ul#mainnav > li > ul > li > ul > li.nav-last-item > a {
	border-bottom:0 none;
}

ul#mainnav li ul li a:hover, ul#mainnav li ul li ul li a:hover {
	color:#ffffff;
	margin-bottom:0px;
	border-bottom:1px solid #ebebeb;
}



/*-----------------------------------------------------------------------------------*/
/*	6.	Main Content
/*-----------------------------------------------------------------------------------*/

.services {
	overflow:hidden;
	margin-bottom:0px;
}

.technologies {
	background: #f9f9f9;	
	overflow:hidden;
	margin-top:35px;
	padding:0px 40px 0 50px;
	border-top:1px solid #f1f1f1;
	text-align:center;
	clear:both;
}
.technologies li {
	display:block;
    float:left;
	margin:20px 20px 20px 15px;
	text-align:center;
}
.technologies li img {
	
}
.technologies li a {
	display:inline-block;	
}
.intro {
	position:relative;
	padding:25px 0 0 0;
	text-align:center;	
	background:#f9f9f9;
	margin-bottom:20px;
}

.intro h2 {
	font-size:22px;
	text-transform:uppercase;
	font-weight:600;
}

.intro h5 {
	color:646464;
}

.intro a:hover {
	color:#444;
}

.centered-wrapper {
	width:100%;
	max-width:940px;
	margin:0 auto;
	padding:0 15px;
}

.page-title {
	width:100%;
	max-width:940px;
	margin:0 auto;
	clear:both;
	margin-bottom:30px;
	border-bottom:1px solid #EBEBEB;
}
.page-title h1 {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 20px;
	text-transform: uppercase;
	color: #686868;
}
.page-title h2 {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 20px;
	text-transform: uppercase;
	color: #686868;
}

.search-form {
	float:right;
	position:relative;
	top:-7px;
}

.search-form  input[type="text"] {
	width:180px;
	height:20px;
	line-height:20px;
	position:relative;
	padding:6px 10px;
	color:#686868;
	display:block;
}

.search-form  input[type="submit"] {
	background:url(/images/search.png) scroll 0 0;
	width:16px;
	height:16px;
	border:0 none;
	text-indent:-9999px;
	cursor:pointer;
	position:absolute;
	top:14px;
	right:10px;
	font-size: 0; 
	display:block; 
	line-height: 0;	
}

.page-title .double-separator {
	margin:0;
}

.breadcrumbs {
	font-size:12px;
	padding:10px 0;
	width:100%;
	overflow:hidden;
}

.service-item {
	overflow:hidden;
}

.service-item p {
	margin-bottom:10px;
}

.service-item p.description {
    text-align: justify;
}

.service-item p.description:after {
	/*
     * We don't need IE6 and IE7 inline-block hack support here
     * since they don't support :after anyways (the text-justify
     * properties for them are above)... IE8 and above have native
     * inline-block support so for IE8+, both the text-justify and
     * :after will take effect but it doesn't have any negative
     * effects since this element is invisible
    display: inline-block;
    width: 100%;
    content: '.';
    font-size: 0;
    height: 0;
    line-height: 0;
    visibility: hidden;
     */
}

.img-srv {
	width:16px;
	height:16px;
	opacity:0.6;
	margin:20px;
}

.service-img {
	float:left;
	margin:4px 15px 15px 0;
	height:auto;
}

.service-img-center {
	text-align:center;
	margin:0 0 20px 0;
	width:60px;
	height:auto;
}

h3.service {
	font-size:16px;
	font-weight:600;
    margin: 4px 0 0 0;
    text-transform:uppercase;
}

.separator {
	width:100%;
	height:1px;
	clear:both;
	background:#efefef;
	margin:40px 0;
}

.double-separator {
	width:100%;
	height:1px;
	clear:both;
	border-top:1px solid #efefef;
	border-bottom:1px solid #efefef;
	margin:40px 0;
}

#footer .double-separator {
	margin:50px 0;
}

.bgtitle {
	margin-bottom:20px;
	width:95%;
	background:url(/images/separator.png) repeat-x;
	height:25px;	
}
.bgtitle h2 {
	font-size:13px;
	font-weight:600;
	float:left;
	height:25px;
	line-height:25px;
	background:#fff;
	padding-right:10px;
}

.team-member {
    position:relative;
	padding: 5px;
	background: white;
	border: 1px solid #EFEFEF;
	border-radius: 2px;
	margin-bottom:20px;
}

.team-member a {
	overflow: hidden;
	display: block;
	position: relative;
}

.team-avatar {
 
    width:100%;
	display:block;
}

.team-text h3 {
	font-size:14px;
	font-weight:600;
	text-align:center;
	clear:both;
	padding-top:18px;
	margin-bottom:3px;
}

.team-text h6 {
	text-align:center;
	font-size:12px;
	font-weight:400;
	margin-bottom:15px;
}

.team-text p {
	padding:0 5px;
}	

.team-social {
    border-top:1px solid #efefef;
	text-align:center;
	overflow:hidden;
	clear:both;
}

.team-social a img {
    opacity: .3;
	filter:alpha(opacity=30);
}

.team-social a img:hover{
    opacity: 1;
	filter:alpha(opacity=100);
}

.team-social a {
	padding:5px;
	margin-top:10px;
	display:inline-block;
}

.team-text span {
    color:#787878;
}

.team-text p {
    margin-top:10px;
}

.testimonial-item {
	border:1px solid #efefef;
	padding:20px 15px 0;
	font-style:italic;
	box-shadow:0px 0px 5px #efefef;
}
.testimonial-item p
{
    margin:0 !important;
    text-align: justify;
    min-height: 100px;
    padding-bottom: 15px;
}
.testimonial-pin {
	background:url(/images/testimonial-pin.png) no-repeat scroll 0 0;
	display: block;
	width: 24px;
	height: 16px;
	position: absolute;	
	left:30px;
    bottom: -15px;
}

.testimonial-meta {
	font-style:normal;
	position:absolute;
	width:80%;
	font-weight:600;
	font-size:12px;
	left:14%;
	bottom:-40px;
}

.testimonial-meta h5 {
	float:left;
	margin-right: 5px;
	font-size:12px;
	font-weight:600;
}
.testimonial-meta span {
	color:#444;
}


/*--- 6.1. Nivo Slider ---*/

.slider-wrapper {
	height:395px;
	position:relative;
	clear:both;
}

.nivo {
	position:relative;
}

/* The Nivo Slider styles */
.nivoSlider {
	position:relative;
	width:100%;
	height:auto;
	overflow: hidden;
}

.nivoSlider img {
	position:absolute;
	top:0px;
	left:0px;
}

.nivo-main-image {
	display: block !important;
	position: relative !important; 
	width: 100% !important;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
}

/* The slices and boxes in the Slider */
.nivo-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}

.nivo-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}

.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#000;
	color:#fff;
	width:100%;
	z-index:8;
	padding: 0 0px 10px 15px;
	opacity: 0.7;
	overflow: hidden;
	display: none;
	-moz-opacity: 1;
	filter:alpha(opacity=10);
}
.nivo-caption:hover
{
	opacity:1;
}
.more-btn:hover
{
	color:#ff;
}
.nivo-caption h3 {
	margin:20px 0 5px 0;
	color:#fff;
}	

.nivo-caption p {
	padding:5px 0;
	margin:0;
	font-size:13px;
}

.nivo-caption a {
	display:inline !important;
    color:#ffffff;
}

.nivo-html-caption {
    display:none;
}

/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
	display:block;
	width:25px;
	height:25px;
	background:url(/images/arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
	position:absolute;
	bottom:0;
	z-index: 10;
	cursor:pointer;		
}

a.nivo-nextNav {
	background-position:-25px 0;
	right:0;
	bottom:0;
}

a.nivo-nextNav:hover {
	background-position:-75px 0;
}

a.nivo-prevNav {
	right:25px;
	bottom:0;
}

a.nivo-prevNav:hover {
	background-position:-50px 0;
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	width: 390px;
	position: absolute;
	bottom: 126px;
	z-index: 1444;
	display:block;
}

.nivo-controlNav a {
	cursor:pointer;
	background:#f1f1f1;
	width:130px;
	height:4px;
	text-indent:-9999px;	
	display:block;
	float:left;
}

.nivo-controlNav a:hover {
	background:#575757;
}

.nivo-controlNav a.active {
	background:#575757;
}


/*--- 6.2. Jcarousel ---*/

.jcarousel-container {
	margin-bottom:20px;
}

.jcarousel-direction-rtl {
	direction: rtl;
}

.jcarousel-container-horizontal {
    width: 940px;
	clear:both;
}

.jcarousel-clip {
    overflow: hidden;
}

.jcarousel-clip-horizontal {
    width:  940px;
    height: 200px;
}

.jcarousel-item {
    width: 288px;
    height: 188px;
	display: block;
	position: relative;
	padding:5px;
	background:#fff;
	border:1px solid #ffffff;
	border-radius:2px;	
}

.jcarousel-item a {
	display: block;
	width: 100%;
	height: auto;
	position:relative;
}

a[rel="PrettyPhoto"] {
	overflow:hidden;
	display:block;
	position:relative;
}

.jcarousel-item img {
	width:100%;
	height:auto;
}

.jcarousel-item-horizontal {
	margin-left: 0;
    margin-right: 20px;
	text-align:center;
}

.jcarousel-direction-rtl .jcarousel-item-horizontal {
	margin-left: 10px;
    margin-right: 0;
}

.jcarousel-item-vertical {
    margin-bottom: 10px;
}

.jcarousel-item-placeholder {
    background: #fff;
    color: #444;
}

.jcarousel-next-horizontal {
    position: absolute;
    top: -45px;
    right: -7px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    background: transparent url(/images/next-horizontal.png) no-repeat 0 0;
}

.jcarousel-next-horizontal:hover,
.jcarousel-next-horizontal:focus {
    background-position: -25px 0;
}

.jcarousel-next-horizontal:active {
    background-position: -25px 0;
}

.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:focus,
.jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background-position: -50px 0;
}

.jcarousel-prev-horizontal {
    position: absolute;
    top: -45px;
	right:18px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    background: transparent url(/images/prev-horizontal.png) no-repeat 0 0;
}

.jcarousel-prev-horizontal:hover, 
.jcarousel-prev-horizontal:focus {
    background-position: -25px 0;
}

.jcarousel-prev-horizontal:active {
    background-position: -25px 0;
}

.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:focus,
.jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -50px 0;
}

.homepage-testimonials .jcarousel-container-horizontal, .homepage-testimonials .jcarousel-clip-horizontal {
	width:100%;
	height:auto;
}

.homepage-testimonials .jcarousel-item {
	width: 300px;
	height: auto;
	display: block;
	position: relative;
	padding: 0;
	background: inherit;
	border: 0 none;
	margin-right:0;
	text-align:left;
}

ul#testimonials-carousel .testimonial-item {
	width:260px;
	margin:3px;
	margin-bottom:43px;
	position:relative;
	font-weight:normal;
	display:block;
}

.t-page .testimonial-item {
	width:300px !important;
}

ul#testimonials-carousel .testimonial-meta {
	bottom:-45px;
	position:absolute;
	overflow:visible;
	z-index:1;
}

.homepage-testimonials .jcarousel-next-horizontal {
	right:-3px;
	top:-42px;
}

.homepage-testimonials .jcarousel-prev-horizontal {
	right:22px;
	top:-42px;
}

span.caption  {
	position:relative;
	clear:both;
	font-size:13px;
	background:#fff;
	color:#444;
	line-height:40px;
	width:100%;
	left:0;
}

span.caption a {
	color:#444;
}

a.lightbox {
	position:absolute;
	top:-25px;
	right:25px;
	width:25px;
	height:25px;
	background:url(/images/lightbox.png) no-repeat scroll 0 0;
	text-indent:-9999px;
}

span.item-on-hover {
	display: block;	
	opacity: 0; 
	filter: alpha(opacity=0); 

	position: absolute; 
	width: 100%; 
	height: 100%; 
	background: url(/images/item-on-hover.png) repeat; 
}

.item-on-hover *{
	filter:inherit;
} 

span.hover-link {
	width:35px;
	height:35px;
	top: 50%;
	left: 50%;
	margin-left: -17px;
	margin-top: -17px;	
	position:absolute;
	display:block;
	opacity: 0; 
	filter: alpha(opacity=0); 	
}

span.hover-image {
	background:url(/images/lightbox.png) no-repeat scroll 0 0;
	width:35px;
	height:35px;
	top: 50%;
	left: 50%;
	margin-left: -17px;
	margin-top: -17px;	
	position:absolute;
	display:block;
	opacity: 0; 
	filter: alpha(opacity=0);	
	
}

span.hover-video {
	background:url(/images/video.png) no-repeat scroll 0 0;
	width:35px;
	height:35px;
	top: 50%;
	left: 50%;
	margin-left: -17px;
	margin-top: -17px;	
	position:absolute;
	display:block;
	opacity: 0; 
	filter: alpha(opacity=0);	
}


/*--- 6.3. Sidebar ---*/

#sidebar {
	width:260px;
	float:right;
}

#sidebar h3 {
	font-size:13px;
	text-transform:uppercase;
	font-weight:600;
}

.widget {
	overflow:hidden;
	margin-bottom:60px;
}

.widget a {
	color:#444;
}

.widget ul li {
	font-size:12px;
	background:url(/images/breadcrumb-arrow.png) no-repeat scroll 0 6px;
	padding:5px 0 5px 30px;
	border-bottom:1px solid #efefef;
}

.widget ul li:last-child {
	border-bottom:0 none;
}

.sidebar-post {
	overflow:hidden;
	border-bottom:1px solid #efefef;
	margin-bottom:15px;
	padding-bottom:15px;
	position:relative;
}

.sidebar-post:last-child {
	border-bottom:0 none;	
}

.sidebar-post span {
	float:left;
	margin-left:75px;	
} 

.sidebar-post img {
	position: absolute;
	top: 3px;
	left: 0;
}

.sidebar-post span a {
	color:#686868;
}

.sidebar-post h5 {
	font-size:12px;
	font-weight:400;
	color:#444;
	margin-bottom:5px;
	float:left;
	margin-left:75px;
}


.featured-sidebar {
	width: 213px;
    float: left;
    border: 1px solid #dfdfdf;
}

.featured-sidebar ul {
	border-bottom:1px solid #efefef;
}

.featured-sidebar a{
	color:#686868;
	width:203px;
	height:36px;
	line-height:36px;
	display:block;
	font-weight:600;
	padding-left:10px;
	border-bottom:1px solid #efefef;
}
.featured-sidebar li:hover,.featured-sidebar a:hover
{
    background-color:#FCFCFC;
}
.featured-sidebar ul li.selected {	
	background: url(/images/featured-arrow-grey.png) no-repeat scroll 213px center;
	width: 225px;
}
.featured-sidebar ul li {	
	background-color:#ffffff;
    opacity:1;
}
.featured-sidebar ul li a:hover {
	color:#444;
}

.featured-sidebar ul li.selected a {
	height:36px;
	z-index:1000;
    background-color:#f7f7f7;
    color:#03A9F7 !important;
}

.featured-sidebar ul li:last-child a {
	border-bottom:0 none;
}


/*--- 6.4. Portfolio ---*/

ul#filters {
	float:left;
	clear:both;
	margin-bottom:35px;
}

ul#filters li {
	display:inline;
	margin:0 15px 0 0;
}

ul#filters li a {
	color:#686868;
	padding:3px 10px 4px 10px;
	font-weight:600;
}

.portfolio {
	clear:both;
	overflow:hidden;
	margin-right:-20px;
}

.portfolio li {
	margin-right:20px;
	float:left;
	position:relative;
	margin-bottom:20px;
	overflow:hidden;
	background:#fff;
	padding-bottom:5px;
	text-align:center;
	border-bottom:1px solid #d9d8d7;	
}

.portfolio li:hover {
	background:#f2f2f0;
}

.portfolio h3 {
	position:relative;
	clear:both;
	font-size:13px;
	color:#444;
	line-height:22px;
	margin:15px 0 10px;
	width:100%;
	left:0;	
	font-weight:600;
}
.portfolio h3 a {
	color:#444;
}

#portfolio-wrapper a {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
    background-color: #f7f7f7;
    border-top:1px #cccccc solid;
    border-bottom:1px #cccccc solid;
}

#portfolio-wrapper .four-columns img {
	width:208px;
	height:200px;
	display:block;
}

#portfolio-wrapper .three-columns img {
	width:288px;
	height:266px;
	display:block;
}

#portfolio-wrapper .two-columns img {
	width:448px;
	height:410px;
;	display:block;
}

#portfolio-wrapper .four-columns li {
	width: 205px;
	display: block;
	position: relative;
	padding: 5px;
	background: white;
	border: 1px solid #EFEFEF;
	border-radius: 2px;
    min-height: 335px;
}

#portfolio-wrapper .three-columns li {
	width: 288px;
	display: block;
	position: relative;
	padding: 5px;
	background: white;
	border: 1px solid #EFEFEF;
	border-radius: 2px;
}

#portfolio-wrapper .two-columns li {
	width: 448px;
	display: block;
	position: relative;
	padding: 5px;
	background: white;
	border: 1px solid #EFEFEF;
	border-radius: 2px;
}

.item-details p {
	margin:0;
	padding:10px 0;
	border-bottom:1px solid #efefef;
}

.item-details span {
	color:#444;
}

.portfolio-single {
	margin-bottom:50px;
	overflow:hidden;
}

.previous-post-link a, .next-post-link a {
	width:25px;
	height:25px;
	display:block;
	text-indent:-9999px;
	float:left;
	margin-top:10px;
}


/*--- 6.5. Blog ---*/

#posts {
	float:left;
	position:relative;
	margin-right:40px;
	overflow:hidden;
}

.single-post .post {
	border-bottom:0;
	margin-bottom:0px;
	padding-bottom:0px;
}

h2.post-title a {
	color:#444;
}

.meta a {
	color:#c7c7c7;
}

.post-thumbnail {
	margin-bottom:30px;
	display:inline-block;
	clear:both;
	margin-top:0px;	
	padding:4px;
	border: 1px solid #EFEFEF;	
	border-radius: 2px;		
}

.video-thumbnail {
	margin-bottom:30px;
	display:inline-block;
	clear:both;
	margin-top:0px;	
}

.post-thumbnail a {
	display:block;
	position:relative;
	vertical-align:bottom;	
}

.post-thumbnail img {
	width:200px;
	height:auto;
	background:#fff;			
}

.meta {
	clear:both;
	float:left;
	margin-bottom:20px;
}

.meta span {
	padding-left:23px;
	float:left;
	margin-right:20px;
}

.meta span.post-date {
	background:url(/images/calendar.png) no-repeat scroll 0 3px;
	color:#C7C7C7;
}	

.meta span.post-author {
	background:url(/images/author.png) no-repeat scroll 0 3px;
}	

.meta span.post-comment {
	background:url(/images/comment.png) no-repeat scroll 0 4px;
}	

.meta p {
	margin:0;
	padding:5px 0;
}

.excerpt {
	width:100%;
	clear:both;
}

p.readmore {
	text-align:right;
}

.post {
	margin-bottom:50px;
	padding-bottom:20px;
	border-bottom:1px solid #efefef;
	overflow:hidden;
}

.post-content {
	clear:both;
	padding-top:40px;
}

.right-image {
    float:right;
    margin:5px 0 0 20px;
	padding: 4px;
	border: 1px solid #EFEFEF;
	border-radius: 2px;	
}

.left-image {
    float:left;
    margin:5px 20px 0 0;
	padding: 4px;
	border: 1px solid #EFEFEF;
	border-radius: 2px;	
}

.post-image {
    margin:5px 0 20px;
}

ul.tags {
    padding:0 0 10px;
    position:relative;
	overflow:hidden;
}

ul.tags a {
	color:#c7c7c7;
}

ul.tags li {
    display:inline;
    float:left;
    height:16px;
    line-height:20px;
    margin:30px 20px 0 0;
}

.tag-title {
    background-image:none;
    float:left;
    line-height:18px;
    margin:30px 20px 0 0;
}

.author-bio {
    clear:both;
    margin:30px 0 0;
    overflow:hidden;
    padding:15px 0 15px;
    position:relative;
}

.authorp {
    float:left;
    width:82%;
}

.authorp h2 {
	color:#C7C7C7;
}
.authorp h2 a {
	color:#444;
}

.author-bio p {
	margin-bottom:0;
}	

.author-bio img {
    float:left;
    margin:0 25px 0 0;
	padding: 4px;
	border: 1px solid #EFEFEF;
	border-radius: 3px;	
}


/*--- 6.5.1. Comments ---*/

.commentlist {
    list-style-type: none;
    margin: 30px 0 40px;
}

.comment {
    margin-top: 35px;
    position: relative;
	padding:0;
	display:inline-block;
}

.comment a {
	color:#444;
}

.commentwrap {
	margin: 0 0 0 100px;
	padding: 0 0 10px 0;
	border-bottom: 1px solid #EFEFEF;
}

.avatar {
    left: 0;
    position: absolute;
    top: 0;
}

.avatar img {
	padding: 4px;
	border: 1px solid #EFEFEF;
	border-radius: 3px;
}

.metacomment {
    margin-bottom: 10px;
	padding:0;
}

.metacomment span {
    font-weight:bold;
    margin: 0 5px 0 0;
}

ul.threaded {
    margin-left:75px;
}

#commentform {
	width:640px;
	position:relative;
}

#commentform fieldset {
	clear:both;
}

#commentform input[type="text"] {
	width:174px;
	padding:7px 10px;
	font-size:12px;
	height:20px;
	line-height:20px;
}

textarea#mycomment {
	width:618px;
	padding:10px;
	clear:both;
	overflow:hidden;
	float:left;
	margin-bottom:5px;
}

#commentform input[type="submit"] {
	margin-top:5px;
	border:0 none;
}

.error_message {
	color:#ff3000;
}


/*--- 6.5.2. Pagination ---*/

.pagenav {
    text-align:center;
	vertical-align: middle;
}

.pagenav a {
    background:#fff;
    color:#686868;
    display:inline-block;
    margin:4px;
    padding:5px 12px;
	font-weight:600;	
}

span.current {
    color:#fff;
    display:inline-block;
    margin:4px;
    padding:5px 12px;
}

span.pages {
	display: inline-block;
	margin: 4px;
	padding: 5px 12px;
	font-weight:600;
}


/*--- 6.6. Contact ---*/

.contact-info p {
	margin:0;
	padding:7px 0;
	border-top:1px solid #efefef;
}

.contact-info p:last-child {
	border-bottom:1px solid #efefef;
}

.contact-info span {
	color:#444;
}

.contact-map {
	margin-bottom:30px;
}

.contact-loader {
	float: right;
	padding: 11px 11px 0 0;
}



/*-----------------------------------------------------------------------------------*/
/*	7.	Footer
/*-----------------------------------------------------------------------------------*/

#footer {
	overflow:hidden;
	clear:both;
	width:1020px;
	background:#464646;
	color:#D3D3D3;
	padding-top:20px;
	margin:0 auto;
    position:relative;
	z-index:99999;
}

#topfooter {
	padding:0;
	margin:0;
}

#topfooter h6 {
	margin:0;
	font-size:12px;
	font-weight:400;
}

ul#contact-widget li {
	border-bottom:1px dotted #6b6b6b;
	padding-bottom:10px;
	margin-bottom:10px;
	padding-left:30px;
}

ul#blog-widget li {
	border-bottom:1px dotted #6b6b6b;
	padding-bottom:10px;
	margin-bottom:17px;	
	position:relative;
	overflow:hidden;
}
ul#blog-widget li i.fa {
	position:absolute;
	top: 5px;
    left: 10px;
}

ul#blog-widget li a.right_footer_link {
	position:absolute;
	top:0px;
	left: 150px;
}

ul#blog-widget li h6{
	float:left;
	padding-left:75px;
}

ul#blog-widget li span{
	float:left;
	clear:both;
	padding-left:45px;
	width:100%;
}

ul#contact-widget li:last-child {
	border-bottom:0 none;
}

ul#blog-widget li:last-child {
	border-bottom:0 none;
}

li.address {
	background:url(/images/address.png) no-repeat scroll 0 2px;
}

li.phone {
	background:url(/images/phone.png) no-repeat scroll 0 2px;
}

li.email {
	background:url(/images/email.png) no-repeat scroll 0 2px;
}

#footer a {
	color:#fff;
}

#footer h3 {
	font-size:14px;
	font-weight:600;
	color:#fff;
}

#bottomfooter {
	padding:23px 0 17px;
	position:relative;
	overflow:hidden;
	clear:both;
	background:#3c3c3c;
}

#bottomfooter p {
	float:left;
	margin:0;
}

.totop {
	background:url(/images/top.png) no-repeat scroll 0 0;
	width:37px;
	height:42px;
	position:absolute;
	bottom:-10px;
	left:50%;
	margin-left:-18px;
	text-indent:-9999px;
}


/*--- 7.3. Social Icons ---*/

#social {
	float:right;
	margin-right:-5px;
}

#social a {
	display:block;
    float:left;
    margin:0 0px 0 25px;
}


/*-----------------------------------------------------------------------------------*/
/*	8.	Elements
/*-----------------------------------------------------------------------------------*/


/*--- 8.1. Slides ---*/

.portfolio-single .percent-three-fourth {
	min-height:30px;
}

.slides_container {
	width:685px;
	display:none;
}

.slides_container div.slide {
	width:685px;
	display:block;
}

#slides {
	margin-bottom:70px;
	padding:4px;
	border:1px solid #efefef;
	border-radius:3px;
}

#slides .next, #slides .prev {
	position:absolute;
	top:40%;
	width:25px;
	height:25px;
	display:block;
	z-index:101;
}

#slides .next {
	right:5px;	
}

#slides .prev {
	left:5px;	
}

.slide img {
	width:100%;
	height:auto;
	overflow:visible;
	vertical-align:bottom;
}

.slide a {
	display:block;
	margin:0;
	padding:0;
}

#slides .next img,#slides .prev img {
	height:auto;
	width:auto;
}

.pagination {
	position:absolute;
	text-align:center;
	z-index:1000;
	width:100%;
	bottom:45px;
}

.pagination li {
	display:inline;
	margin-left:1px;
	list-style:none;
	text-align:center;
}

.pagination li a {
	display:inline-block;
	width:13px;
	height:0;
	padding-top:12px;
	background-image:url(/images/pagination.png);
	background-position:0 0;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -14px;
}

#slides .caption {
	z-index:500;
	position:absolute;
	bottom:-35px;
	left:0;
	height:30px;
	padding:5px 20px 0 20px;
	background:rgba(0,0,0,.5);
	width:540px;
	font-size:1.3em;
	line-height:1.33;
	text-shadow:none;
}

/*--- 8.2. Buttons ---*/

.button {
    cursor:pointer;
    display:inline-block;
    font-size: 12px;
    font-weight:600;
    line-height:16px;
    margin:0 10px 20px 0;
    padding: 7px 11px 7px;
	position:relative;	
}

.white {
    background:#eaeaea;
    color: #686868;
}

.white:hover {
    color: #686868;
	background:#d2d2d2;
}

.yellow {
    background:#ffb141;
	border:0 none;
    color: #fff;
}

.yellow:hover {
    color: #fff;
	background:#fd9602;
}

.blue {
    background:#01A6F4;
	border:0 none;
    color: #fff;
}

.blue:hover {
    color: #fff;
	background:#0194DA;
}

.orange {
    background:#fe7e17;
	border:0 none;
    color: #fff;
}

.orange:hover {
    color: #fff;
	background:#f77309;
}

.black {
    background:#787878;
    color: #ffffff;
}

.black:hover {
    color: #ffffff;
	background:#444;
}

.green {
    background:#9dd30b;
    color: #fff;
}

.green:hover {
    color: #fff;
	background:#8dbd0a;
}

.bleumarin {
    background:#30b4c5;
    color: #fff;
}

.bleumarin:hover {
    background:#2b9fae;
	color:#fff;
}

.rose {
    background:#ee5051;
    color: #fff;
}

.rose:hover {
    color: #fff;
	background:#d64849;
}


/*--- 8.4. Toggles ---*/

#toggle-view {
    list-style:none;    
    font-size:12px;
    margin:0;
    padding:0;
    width:100%;
	margin-bottom:20px;
}

#toggle-view li {
	margin-bottom:1px;
    border-bottom: 1px solid #EFEFEF;
	position:relative;
}

#toggle-view li:hover {

}

#toggle-view h3 {
	margin:0;
	font-size:13px;
	cursor:pointer;
    padding: 12px 10px 12px 40px;
	color:#686868;
	font-weight:400;
}

#toggle-view h3:hover, #toggle-view h3:active {
	color:#444;
}

#toggle-view span {
	position:absolute;
	left:0; top:14px;
    cursor: pointer;
}

#toggle-view .panel {
	display:none;
	background:#fff;
	overflow:hidden;
    background: #f7f7f7;
    padding: 10px 15px 20px 20px;
}

#toggle-view .panel p:last-child {
	margin-bottom:0;
}

/* ------------ job description content ------------ */

#toggle-view .panel li {
	margin-bottom: 0px;
    border-bottom: 0px solid #EFEFEF;
    position: relative;
}

#toggle-view .panel strong {
	font-weight:bold;
}

#toggle-view .panel ul {
	list-style-type: circle;
    margin: 0 0 15px 10px;
}

#toggle-view .panel p {
	text-align: left;
	text-justify:left;
	margin-bottom:10px;
}
	

/*--- 8.6. Tables ---*/

.pricing-column {
	text-align:center;
	width:453px;
	float:left;
	position:relative;
    padding-bottom: 33px;
    min-height: 270px;
}

.first-column .package-value,  .first-column .package-features, .first-column .signup {
	border-left:1px solid #dbdbdb;
}

.package-value, .package-features {
	border-right:1px solid #dbdbdb;
}

.package-title {
	background:#686868;
	color:#fff;
	font-size:16px;
	height:40px;
	line-height:40px;
	border-bottom:3px solid #545454;
	border-right:1px solid #545454;
}

.featured-column {
	top:-10px;
	z-index:1;
}

.featured-column .package-title {
	height:40px;
	line-height:38px;
	position:relative;
	font-weight:600;
	box-shadow:0px -1px 10px #000;
	z-index:-1;	
}

.featured-column .column-shadow {
	height:10px;
	background:#686868;
	position:relative;
	z-index:10;
	box-shadow:0px -1px 2px #dadada;
}

.pricing-table .featured-column .signup {
	padding:25px 0;
}

.pricing-column .signup {
	border-bottom:1px solid #dbdbdb;
	border-right:1px solid #dbdbdb;
	padding:20px 0;
}

.pricing-column .signup .button {
	margin:0;
}

.package-value {
	background:#f9f9f9;
	height:55px;
	line-height:55px;
	border-bottom:1px solid #dbdbdb;
}

ul.package-features li {
    padding: 15px;
	border-bottom:1px solid #dbdbdb;
	background:#fff;
    text-align: justify;
    min-height: 140px;
}

ul.package-features li.alt {
	background:#f9f9f9;
}

.package-currency {
	font-size:16px;
	position:relative;
	top:-20px;
}

.package-price {
	font-size:48px;
	font-weight:600;
}

.package-time {
	font-size:16px;
}

.pricing-table, .normal-table {
    width:100%;
}

.normal-table td {
    border:1px solid #efefef;
    padding:10px 20px;
    text-align:center;
}
.normal-table tr.alt  {
    background:#fbfbfb;
}

.normal-table tr.first-column {
    background:#666666;
    color: #efefef;
}

/*--- 8.7. Info Boxes ---*/

.box-error, .box-alert, .box-notice, .box-success, .box-info {
    border: 1px solid #efefef;
    margin-bottom: 10px;
    padding: 10px;
}

.box-error, .box-alert {
    background:#fce2e3;
    border-color: #fac2c4;
    color: #e54034;
}

.box-notice {
    background:#fdf4bd;
    border-color: #fed223;
    color: #504621;
}

.box-info {
    background:#d4ebf6;
    border-color: #91c8e2;
    color: #20568f;
}

.box-success {
    background:#e5eec0;
    border-color: #c4d67e;
    color: #264509;
}


/*--- 8.8. Lists ---*/

ul.star-list li { 
	background:url(/images/list-star-small.png) no-repeat scroll center left; 
}

ul.radio-list li { 
	background:url(/images/list-ui-radio-button.png) no-repeat scroll center left; 
}

ul.arrow-list li { 
	background:url(/images/list-arrow-small.png) no-repeat scroll center left; 
}

ul.tick-list li { 
	background:url(/images/list-okay.png) no-repeat scroll center left; 
}

ul.customlist li {
	padding-left: 20px;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: local('Open Sans Light'), local('OpenSans-Light'), url(../fonts/DXI1ORHCpsQm3Vp6mXoaTXhCUOGz7vYGh680lGh-uXM.woff) format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'), url(../fonts/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../fonts/MTP_ySUJH_bn48VBG8sNSnhCUOGz7vYGh680lGh-uXM.woff) format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(../fonts/k3k702ZOKiLJc3WVjuplzHhCUOGz7vYGh680lGh-uXM.woff) format('woff');
}
ul.dots
{
    margin:12px 0 12px 0;
    padding:0 0 0 40px;
    list-style-type:circle;
}
aside
{
    position:relative;
}
ul.dots li
{
}
.content-image img
{
    width:700px;
}
.content-image
{
    margin: 0 0 15px 0;
}
.sidebar-fixed
{
    position:fixed;
    top:0px;
    margin: 130px 0 0 0;
}
.bold
{
    font-weight:bold !important;
}
.underline
{
    text-decoration:underline !important;
}
.request-a-quote
{
    float:left;
    width:200px;
    margin:15px 0 0 0;
    border:1px #DFDFDF solid;
}
.sidebar-container
{
    width:215px;
}
.content-column{
    text-align:justify;
}
.technology-cycle
{
    margin:20px 0 0 0;
}
.technology-cycle img
{
    display:none;
    width:200px;
}
.content-image img
{
    height:200px;
    width:700px;
}
.ajax_overlay {}
.ajax_loader {background: url("/images/spinner_squares_circle.gif") no-repeat center center transparent;width:100%;height:100%;}

* {
    margin: 0;
}
html, body {
    height: 100%;
}
.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -57px;
}
.footer, .push {
    height: 57px;
}
a {
	color:#0295DA;
}

.intro a {
	color:#0295DA;
}

.team-text h6  {
	color:#0295DA;
}

.testimonial-meta h5 {
	color:#0295DA;
}

span.caption a:hover {
	color:#0295DA;
}

.widget a:hover {
	color:#0295DA;
}

.featured-sidebar ul li.selected a {
	color:#0295DA;
}

ul.tags a:hover {
	color:#0295DA;
}

.authorp h2 a:hover {
	color:#0295DA;
}

.comment a:hover {
	color:#0295DA;
}

#toggle-view li.activated h3 {
	color:#0295DA;
}


ul#filters li a:hover {
	color:#fff;
	background:#0295DA;
}

ul#filters li.selected a {
	color:#fff;
	background:#0295DA;	
}

.portfolio h3 a:hover {
	color:#0295DA;
}

h2.post-title a:hover, .meta a:hover {
	color:#0295DA;
}

.pagenav a:hover {
    background:#0295DA;
    color:#fff;
}

span.current {
    background:#0295DA; 
}

#footer a:hover {
	color:#0295DA;
}

.featured-column .package-title {
	border-bottom:3px solid #0295DA;	
}

ul#mainnav li a:hover, ul#mainnav li a:active, ul#mainnav li a.current {
	border-bottom:5px solid #0295DA;
}
ul#mainnav li a.current {
    color:#000000;
}
ul#mainnav li a.current:hover, ul#mainnav li:hover a.current {
    color:#FFFFFF;
}

.sfHover a
{
    border:0px !important;
}

.nav-first-item {
	border-top:1px solid #0295DA;
}

a.service-more {
	float:right;
	background:url(./color-schemes/blue/btn-arrow.png) no-repeat 95% 5px;
	display:inline-block;
	padding-right:20px;			
}

a.service-more:hover {
	background:url(./color-schemes/blue/btn-arrow-on.png) no-repeat 95% 5px;
	color:#444;
}

.more-btn {
	display:block;
	background:url(./color-schemes/blue/btn-arrow.png) no-repeat scroll center right;
	padding-right:15px;
	float:right;	
}

.more-btn:hover {
	background:url(./color-schemes/blue/btn-arrow-on.png) no-repeat center right;
	color:#444;	
}


.toggle-plus {
	background:url(./color-schemes/blue/plus.png) no-repeat scroll right center;
	width:21px;
	height:21px;
}

.toggle-minus {
	background:url(./color-schemes/blue/minus.png) no-repeat scroll right center;
	width:21px;
	height:21px;
}

.previous-post-link a {
	background:url(./color-schemes/blue/arrow-prev-hover.png) no-repeat scroll 0 0;	
}

.previous-post-link a:hover {
	background:url(./color-schemes/blue/arrow-prev.png) no-repeat scroll 0 0;	
}	

.next-post-link a {
	background:url(./color-schemes/blue/arrow-next-hover.png) no-repeat scroll 0 0;
	margin-left:1px;
}

.next-post-link a:hover {
	background:url(./color-schemes/blue/arrow-next.png) no-repeat scroll 0 0;	
}	
/*!
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.0.3');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.3333333333333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.2857142857142858em;text-align:center}.fa-ul{padding-left:0;margin-left:2.142857142857143em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;top:.14285714285714285em;text-align:center}.fa-li.fa-lg{left:-1.8571428571428572em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);-ms-transform:scale(-1,1);-o-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);-webkit-transform:scale(1,-1);-moz-transform:scale(1,-1);-ms-transform:scale(1,-1);-o-transform:scale(1,-1);transform:scale(1,-1)}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-asc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-desc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-reply-all:before{content:"\f122"}.fa-mail-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}
 

/*
prettyphoto.css
*/

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 -101px 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{position:absolute; top:1px; right:30px;}
.pp_social .facebook{float:left;margin-left:5px;width:55px;overflow:hidden}
.pp_social .twitter{float:left}
.pp_nav{clear:right;float:left;margin:0px 15px 0 0}
.pp_nav p{float:left;white-space:nowrap;margin:0px 6px}
.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}

/*
responsive.css
*/

/*
* Responsive layout for Line - 7th of September 2012
*/

.select-menu {
	color:#999;
}

.select-menu {
	display:none;
}

/* Table of Contents
==================================================

    #Mobile - 240px
    #Mobile - 320px	
    #Mobile - 480px	
	#Tablet - 768px	
	*/


/* #Mobile (consolidated)
================================================== */

@media only screen and (max-width: 767px) {

	.one-half, .one-third, .two-third, .one-fourth, .three-fourth, .one-sixth, .five-sixth {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
	}

	.percent-one-half, .percent-one-third, .percent-two-third, .percent-one-fourth,
	.percent-three-fourth, .percent-one-fifth, .percent-two-fifth, .percent-three-fifth,
	.percent-four-fifth, .percent-one-sixth, .percent-five-sixth {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
		margin-bottom: 20px;
	}

	#posts img {
		width: 100%;
		height: auto;
	}

	.homepage-services {
		width: 100%;
	}

	html #wrapper {
		width: 100%;
		margin: 0 auto;
		margin-top: 140px;
		padding-top: 0;
		box-shadow: none;
		border-top: 0 !important;
	}

	html #header {
		width: 100%;
		margin-bottom: 0 !important;
		top: 44px;
		box-shadow: none;
	}

	html #footer {
		width: 100%;
		margin: -25px 0 0 0;
	}

	#header .one-fourth {
		width: 100%;
	}

	.centered-wrapper {
		width: 100%;
		padding: 0 15px;
	}

	.logo {
		text-align: center;
		height: auto !important;
		margin-top: 0 !important;
		padding: 20px 0;
	}

	.logo img {
		display: inherit;
		margin: 0 auto;
	}

	#navigation {
		padding: 20px 0 !important;
		height: auto !important;
		float: none;
	}

	#navigation ul#menu, .quick-links, .navigation-container, .nivo-caption, .nivo-controlNav,
	.sidebar-scroll-footer-background, .nivo {
		display: none !important;
	}

	.clients-section, .technologies-section {
		display: none;
	}

	.copyright-notice {
		display: none;
	}

	.search-form {
		display: none;
	}

	.framework-item {
		flex-direction: column;
		align-items: center;
	}

	.framework-logo {
		margin-right: 0;
		margin-bottom: 15px;
	}

	.framework-description {
		width: auto !important;
		margin: 0 10px !important;
	}

	.select-menu {
		display: block;
		clear: both;
		margin: 5px auto;
		padding: 5px 10px;
		width: 80%;
		max-width: 360px;
	}

	.slider-wrapper {
		height: auto;
	}

	.intro {
		padding: 20px 0 0 0 !important;
	}

	.cbp-qtrotator blockquote p {
		font-size: 12px !important;
		margin: 0 10px !important;
	}

	.cbp-qtrotator .cbp-qtcontent {
		padding: 0 0 10px 0 !important;
	}

	.cbp-qtrotator blockquote footer {
		font-size: 12px !important;
		font-weight: bold;
		margin: 5px 0 0 0 !important;
	}

	.service-item p.description {
		text-align: justify;
	}

	h3.service {
		margin-bottom: 10px;
	}

	.service-item {
		margin-bottom: 25px;
		border-bottom: 1px solid #efefef;
	}

	#topfooter h3 {
		margin-bottom: 10px;
	}

	#topfooter .one-fourth,
	#topfooter .one-third {
		margin-bottom: 30px;
	}

	#flickr .flickr-item {
		margin: 0 3px 4px 0;
	}

	#bottomfooter p {
		float: none;
		text-align: center;
	}

	ul#social {
		float: none;
		text-align: center;
		margin: 30px 0 10px;
	}

	ul#social li {
		display: inline-block;
	}

	#bottomfooter {
		margin-top: 10px;
	}

	.jcarousel-container-horizontal {
		width: 100%;
		clear: both;
		margin-left: 0;
	}

	.jcarousel-clip-horizontal {
		width: 100%;
		height: auto;
	}

	.jcarousel-item {
		width: 100%;
		max-width: 288px;
		height: auto;
		display: block;
		position: relative;
		padding: 5px;
		background: white;
		border: 1px solid #EFEFEF;
		border-radius: 2px;
	}

	.jcarousel-item img {
		width: 100%;
	}

	span.caption {
		line-height: 34px;
	}

	.featured-sidebar {
		width: 100%;
		margin-bottom: 30px;
		text-align: center;
	}

	.featured-sidebar ul li {
		background: none !important;
		width: 100%;
	}

	.featured-sidebar ul li a {
		width: 100% !important;
	}

	.page-title {
		width: 100%;
		margin-bottom: 0 !important;
	}

	.page-title h2 {
		margin-bottom: 0;
		text-align: center;
	}

	.pricing-column {
		width: 100%;
		margin-bottom: 20px;
	}

	.package-value, .package-features, .signup {
		border-left: 1px solid #DBDBDB;
	}

	.normal-table {
		overflow: hidden;
		width: 100%;
		display: block;
	}

	.t-page .testimonial-item {
		width: 100% !important;
	}

	ul#testimonials-carousel .testimonial-item {
		width: 100%;
	}

	li.table-6, li.table-5, li.table-4, li.table-3, li.table-2 {
		width: 100%;
		float: left;
	}

	.column-body ul li {
		border-right: 1px solid #efefef;
	}

	.column .column-header {
		border-left: 0 none;
		border-top: 1px solid #EFEFEF;
	}

	.column {
		margin-top: 20px;
	}

	.pricing-table .last-column .column-header, .pricing-table .last-column .column-body ul {
		border-right: 0 none;
	}

	.pricing-table .no-border {
		display: none;
	}

	.team-details {
		float: none;
		margin-right: 0;
		width: auto;
		text-align: center;
	}

	.team-avatar {
		float: none;
		width: auto;
		text-align: center;
	}

	.team-twitter, .team-facebook, .team-linkedin {
		float: none;
	}

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

	h1 {
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 13px;
	}

	h2 {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 20px;
	}

	h3 {
		font-size: 16px;
		line-height: 22px;
	}

	h4 {
		font-size: 12px;
		line-height: 20px;
	}

	.space {
		height: 30px;
	}

	.toggle-view h3 {
		padding: 7px 20px 7px 10px;
	}

	blockquote {
		font-size: 14px;
		font-style: italic;
		line-height: 24px;
		margin: 10px 20px;
		padding: 0 0 5px 10px;
	}

	ul.tabs li a {
		padding: 0 10px;
	}

	ul#filters {
		overflow: hidden;
		float: none;
		clear: both;
		text-align: left;
		margin-top: 10px;
	}

	ul#filters li {
		display: inline;
		margin: 0 10px 5px 0;
		float: left;
	}

	#portfolio-wrapper .four-columns li, #portfolio-wrapper .three-columns li, #portfolio-wrapper .two-columns li {
		width: 100%;
	}

	#portfolio-wrapper .four-columns img, #portfolio-wrapper .three-columns img, #portfolio-wrapper .two-columns img {
		width: 100%;
		height: auto;
	}

	#posts .pagenav {
		margin-bottom: 50px;
	}

	.slides_container {
		width: 100%;
	}

	.slides_container div.slide {
		width: 100%;
	}

	#slides .caption {
		display: none;
	}

	#slides {
		margin-bottom: 20px;
	}

	.slide iframe, .slide embed {
		width: 100%;
		height: auto;
	}

	#slides .next, #slides .prev {
		top: 35%;
	}

	.slides_container div.slide img {
		width: 100%;
		height: auto;
	}

	.pagination {
		bottom: 20px;
	}

	.single-portfolio-nav {
		overflow: hidden;
		margin-bottom: 30px;
	}

	body.single-portfolio #crumbs {
		display: none;
	}

	#posts {
		width: 100%;
		margin-right: 0;
	}

	.post-thumbnail img {
		width: 100%;
		height: auto;
	}

	.video-thumbnail iframe, .video-thumbnail embed {
		width: 100%;
		height: auto;
	}

	.widget {
		margin-bottom: 0;
		margin-top: 30px;
	}

	.meta {
		clear: both;
		width: 100%;
		margin-right: 0;
		border-bottom: 1px solid #efefef;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}

	.meta p {
		float: left;
		margin-right: 20px;
	}

	.excerpt {
		clear: both;
		width: 100%;
		float: none;
	}

	#sidebar {
		width: 100%;
	}

	.post-content img, .post img {
		width: 100%;
		height: auto;
		margin-bottom: 10px;
	}

	.author-bio {
		padding: 15px;
	}

	.authorp {
		width: 100%;
	}

	.authorp h2 {
		font-size: 14px;
	}

	.author-bio img {
		margin: 0 15px 0 0;
	}

	.commentwrap {
		margin: 0 0 0 80px;
	}

	#commentform {
		width: 100%;
	}

	#commentform input[type="text"], #commentform textarea, .contactform input[type="text"] {
		width: 100%;
		padding: 5px 10px;
		font-size: 12px;
	}

	.contactform input[type="submit"] {
		width: 100%;
	}

	#posts .avatar img {
		width: 60px;
		height: 60px;
	}

	.contact-map iframe {
		width: 100%;
	}

	#posts .author-bio img {
		width: 60px;
		height: 60px;
	}

	.contact-info {
		margin-bottom: 30px;
	}

	.single-post .widget {
		margin-top: 40px;
		margin-bottom: 0;
	}

	.separator, .double-separator {
		width: 100%;
		height: 1px;
		clear: both;
		margin: 30px 0;
	}

	#footer .double-separator {
		margin: 40px 0;
	}

	#crumbs {
		height: auto;
	}

	.sidebar-post h5 {
		width: 100%;
	}

}



/* #Tablet - 768px
================================================== */

@media only screen and (min-width: 768px) and (max-width: 1023px) {

	.one-half { width: 48%; }
	.one-third { width: 30.66%; }
	.two-third { width: 65.33%; }
	.one-fourth { width: 48%; }
	.three-fourth { width: 48%; }
	.one-fifth { width: 16.8%; }
	.two-fifth { width: 37.6%; }
	.three-fifth { width: 58.4%; }
	.four-fifth { width: 67.2%; }
	.one-sixth { width: 13.33%; }
	.five-sixth { width: 82.67%; }

	.one-half,
	.one-third,
	.two-third,
	.three-fourth,
	.one-fourth,
	.one-fifth,
	.two-fifth,
	.three-fifth,
	.four-fifth,
	.one-sixth,
	.five-sixth {
		position: relative;
		margin-right: 4%;
		float: left;
		min-height:1px;
	}

	.percent-one-half { width: 48%; }
	.percent-one-third { width: 30.66%; }
	.percent-two-third { width: 65.33%; }
	.percent-one-fourth { width: 22%; }
	.percent-three-fourth { width: 74%; }
	.percent-one-fifth { width: 16.8%; }
	.percent-two-fifth { width: 37.6%; }
	.percent-three-fifth { width: 58.4%; }
	.percent-four-fifth { width: 67.2%; }
	.percent-one-sixth { width: 13.33%; }
	.percent-five-sixth { width: 82.67%; }

	.percent-one-half,
	.percent-one-third,
	.percent-two-third,
	.percent-three-fourth,
	.percent-one-fourth,
	.percent-one-fifth,
	.percent-two-fifth,
	.percent-three-fifth,
	.percent-four-fifth,
	.percent-one-sixth,
	.percent-five-sixth {
		position: relative;
		margin-right: 4%;
		float: left;
		min-height:1px;
	}

	.page-template-template-features-php .one-fourth, .page-template-template-features-php .three-fourth  {
		width:100%;
		clear:both;
		margin:0;
	}
	
	.homepage-services {
		width:100%;
	}

	html #wrapper {
		width:100%;
		max-width:768px;
		margin:0 auto;
	}

	html #header {
		width:100%;
		height: 110px;
	}

	html #footer {
		width:100%;
	}

	.centered-wrapper {
		width:100%;
		max-width:748px;
		padding:0 15px;
	}	

	.logo {
		float:left;
	}

	.logo img {

	}

	#navigation {
		float: right;
		margin-bottom:30px;
		overflow:hidden;
	}

	ul#mainnav,.sidebar-main-container {
		display:none;
	}
    
    .content-column,.content-image img {
        width:100% !important;
    }
	
	.services .one-third {
		width:100%;
		clear:both;
		margin-right:0;
	}
	.select-menu {
		display:block;
		clear:both;
		float:right;
		margin:5px 0;
		padding:5px 10px;
		width:50%;
	}	

	.nivo {
		
	}
	
	.nivo img {
	
	}
	
	.nivo-caption {
        
	}
	
	.nivo-controlNav,.sidebar-scroll-footer-background {
		display:none;
	}
	
	.slider-wrapper {
		height:auto;
	}
	
	.intro {
		padding: 20px 0px 0 0px;
	}

	h3.service {
		margin-bottom:10px;
	}

	.service-item {
		margin-bottom:35px;
		border-bottom:1px solid #efefef;
		padding-bottom:10px;
	}

	#topfooter h3 {
		margin-bottom:10px;
	}

	#topfooter .one-fourth, .page-template-template-features-php #topfooter .one-fourth {
		margin-bottom:30px;
		margin-left:10px;
		margin-right:0;
		overflow:hidden;
		height:170px;
		width:48%;
		clear:none;
		float:left;
	}

	#flickr .flickr-item {
		margin: 0 3px 4px 0;
	}

	#bottomfooter p {
		float: left;
	}

	ul#social {
		float: right;
	}

	ul#social li {
		display: inline-block;
	}

	.jcarousel-container-horizontal {
		width: 100%;
		clear: both;
		margin-left: 0;
	}

	.jcarousel-clip-horizontal {
		width: 100%;
		height: auto;
	}
	
	.jcarousel-item {
		width:224px;
		height:153px;
	}
	
	.jcarousel-item img {
		width:100%;
		height:auto;
	}
	
	.page-title {
		width: 100%;
		padding: 0;
	}
	
	.pricing-column {
		width:187px;
	}
	
	.featured-page .one-fourth {
		width:170px;
	}
	
	.featured-sidebar {
		width:165px;
	}
	
	.featured-sidebar li {
		width:165px;
	}
	
	.featured-sidebar li a {
		width:145px;
	}	
	
	.featured-sidebar ul li.selected {
		width:180px;
		background: url(/images/featured-arrow.png) no-repeat scroll 165px center;		
	}	
	
	.featured-sidebar ul li.selected a {
		width:145px;
	}	
	
	.featured-page .three-fourth {
		width:74%;
		float:left;
	}
	
	.page-title .two-third , #header .one-third{
		margin-right:4%;
	}
	
	.t-page .testimonial-item {
		width:228px !important;
	}
	
	ul#testimonials-carousel .testimonial-item {
		width:228px;
	}	

	.homepage-testimonials .testimonial-item {
		width:190px !important;
	}
	
	ul#filters {
		overflow:hidden;
		float: none;
		clear: both;
		text-align: left;
		margin-top: 10px;
	}

	ul#filters li {
		display: inline;
		margin: 0 10px 5px 0;
		float: left;
	}

	#portfolio-wrapper .four-columns li, #portfolio-wrapper .three-columns li, #portfolio-wrapper .two-columns li  {
		width: 48%;
	}

	#portfolio-wrapper .four-columns img, #portfolio-wrapper .three-columns img, #portfolio-wrapper .two-columns img {
		width: 100%;
		height: auto;
	}
	.portfolio-single .percent-three-fourth, .portfolio-single .percent-one-fourth {
		width: 100%;
		margin: 0;
		margin-bottom: 20px;
		clear: both;
	}

	ul.tabs li a {
		padding: 0 15px;
	}

	.slides_container {
		width:100%;
	}

	.slides_container div.slide {
		width:100%;
	}
	
	#slides {
		margin-bottom:30px;
	}
	
	#slides .next, #slides .prev {
		top:45%;
	}	
	
	#slides .caption {
		display:none;
	}
	
	.slide iframe, .slide embed {
		width:100%;
		height:400px;
	}
	
	.single-portfolio-nav {
		overflow:hidden;
		margin-bottom:30px;
	}
	
	.slides_container div.slide img {
		width:100%;
		height:auto;
	}

	#posts {
		width:100%;
		margin-right:0;
	}

	.post-thumbnail img {
		width:100%;
		height:auto;
	}
	
	.video-thumbnail {
		width:100%;
	}
	
	#flickr {
		width:100%;
	}
	
	.video-thumbnail iframe, .video-thumbnail embed {
		width:100%;
	}

	.meta {
		clear:both;
		width:100%;
		margin-right:0;
		border-bottom:1px solid #efefef;
		padding-bottom:10px;
		margin-bottom:10px;
	}

	.meta p {
		float:left;
		margin-right:20px;
	}

	.excerpt {
		clear:both;
		width:100%;
		float:none;
	}

	#sidebar {
		width:100%;
	}

	.sidebar-post h5 {
		width: 300px;
	}

	.post-content img {
		height:auto;
	}

	.author-bio {
		padding:15px;
	}

	.authorp {
		width:100%;
	}

	.authorp h2 {
		font-size:18px;
	}

	.author-bio img {
		margin: 0 15px 0 0;
	}

	#commentform {
		width:100%;
	}

	#commentform input[type="text"] {
		width: 100%;
		padding: 7px 15px;
		font-size: 12px;
	}

	#commentform textarea {
		width:100%;
	}
	
	.contactform input[type="text"] {
		width: 139px;
		padding: 7px 15px;
		font-size: 12px;
	}

	.widget {
		margin-top:40px;
		margin-bottom:0px;
	}

	.contact-map iframe {
		width:100%;
	}

	.post img {
		height:auto;
	}

	#posts .author-bio img {
		width:60px;
		height:60px;
	}

	#posts .pagenav {
		margin-bottom:50px;
	}

}
.required
{
    color:#ff0000;
}
#success_message
{
    text-align: center;
    font-size: 19px;
    display: none;
    height: auto;
    line-height: 9;
    line-height: 15;
}
.featured-page .one-fourth {
    z-index: 999;
}

/* ------------ dropdown ------------------ */
ul#menu, ul.submenu{
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 9999999;
}
ul#menu li{
    float: left;
}
/* hide the submenu */
li ul.submenu {
    -webkit-box-shadow: 0px 2px 22px 0px rgba(50, 50, 50, 0.42);
    -moz-box-shadow:    0px 2px 22px 0px rgba(50, 50, 50, 0.42);
    box-shadow:         0px 2px 22px 0px rgba(50, 50, 50, 0.42);
    display: none;
}
ul#menu li a.mainoption {
    padding:15px 15px 0 15px;
    height: 50px;
    line-height: 34px;
}
ul#menu li a
{
    border-bottom:5px #ffffff solid;
}
ul#menu li a.current
{
    border-bottom:5px #0295DA solid;
    font-weight:bold;
}
ul#menu li a{
    display: block;
    text-decoration: none;
    color:#000000;
    background-color:#ffffff;
    float:none;
}
/* show the submenu */
ul#menu li:hover ul.submenu{
    display: block;
    position: absolute;
    z-index:9999999;
    float:left;
}
ul#menu li:hover li,  ul#menu li:hover a {
    float: none;
    background-color:#0295DA;
    color:#FFFFFF;
}
ul#menu li:hover li a:hover {
    background: brown;
}
ul#menu li ul.submenu li{
}
ul#menu li ul.submenu a{
    background-color:#FFFFFF;
    padding:7px 15px 7px 15px;
    font-size:12px;
    color:#000000;
}
ul#menu li:hover a.mainoption{
    border-bottom:5px #0295DA solid !important;
}
ul#menu li ul.submenu a:hover{
    background-color:#0295DA;
    color:#FFFFFF;
}

/*
jQuery validate.css
*/

/**
 * @author GeekTantra
 * @date 20 September 2009
 */
input, select {
    background: #ffffff;
    color: #222;
}

input:focus, select:focus {
    outline: none;
}

.InputGroup {
    display: inline-block;
    padding: 3px 4px;
    border: 1px solid #FFF;
}

.ErrorField {
    color: #D00;
    background: #FFFFFE;
}

span.ValidationErrors {
    display: inline-block;
    font-size: 11px;
    color: #D00;
    padding-bottom: 10px;
}

/*
Testimonials scroller 
*/

.cbp-qtrotator {
	position: relative;
	width: 100%;
    border-bottom:1px #EBEBEB solid;
}

.cbp-qtrotator .cbp-qtcontent {
	position: absolute;
	top: 0;
    padding: 0 0 25px 0;
	z-index: 0;
	opacity: 0;
	width: 100%;
}

.no-js .cbp-qtrotator .cbp-qtcontent {
	border-bottom: none;
}

.cbp-qtrotator .cbp-qtcontent.cbp-qtcurrent,
.no-js .cbp-qtrotator .cbp-qtcontent {
	position: relative; 
	z-index: 100;
	pointer-events: auto;
	opacity: 1;
}

.cbp-qtrotator .cbp-qtcontent:before,
.cbp-qtrotator .cbp-qtcontent:after {
	content: " ";
	display: table;
}

.cbp-qtrotator .cbp-qtcontent:after {
	clear: both;
}

.cbp-qtprogress {
	position: absolute;
	background: #47a3da;
	height: 1px;
	width: 0%;
	bottom: -1px;
    left:0px;
	z-index: 1000;
}

.cbp-qtrotator blockquote {
	margin: 0;
	padding: 0;
    border-left:0px !important;
}

.cbp-qtrotator blockquote p {
	color: #636363;
    text-align: justify;
	font-weight: 300;
    font-size: 14px;
	margin: 0 45px;
}

.cbp-qtrotator blockquote footer {
	font-size: 18px;
    margin:15px 0 0 0;
}

.cbp-qtrotator blockquote footer:before {
	content: '― ';
}

.cbp-qtrotator .cbp-qtcontent img {
	float: right;
}

/*
Sidr
*/
.sidr{display:none;position:absolute;position:fixed;top:0;height:100%;z-index:999999;width:260px;overflow-x:none;overflow-y:auto;font-family:"lucida grande",tahoma,verdana,arial,sans-serif;font-size:15px;background:#333;color:#fff;-webkit-box-shadow:inset 0 0 5px 5px #222;-moz-box-shadow:inset 0 0 5px 5px #222;box-shadow:inset 0 0 5px 5px #222}.sidr .sidr-inner{padding:0 0 15px}.sidr .sidr-inner>p{margin-left:15px;margin-right:15px}.sidr.right{left:auto;right:-260px}.sidr.left{left:-260px;right:auto}.sidr h1,.sidr h2,.sidr h3,.sidr h4,.sidr h5,.sidr h6{font-size:11px;font-weight:normal;padding:0 15px;margin:0 0 5px;color:#fff;line-height:24px;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4d4d4d), color-stop(100%, #1a1a1a));background-image:-webkit-linear-gradient(#4d4d4d,#1a1a1a);background-image:-moz-linear-gradient(#4d4d4d,#1a1a1a);background-image:-o-linear-gradient(#4d4d4d,#1a1a1a);background-image:linear-gradient(#4d4d4d,#1a1a1a);-webkit-box-shadow:0 5px 5px 3px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 5px 3px rgba(0,0,0,0.2);box-shadow:0 5px 5px 3px rgba(0,0,0,0.2)}.sidr p{font-size:13px;margin:0 0 12px}.sidr p a{color:rgba(255,255,255,0.9)}.sidr>p{margin-left:15px;margin-right:15px}.sidr ul{display:block;margin:0 0 15px;padding:0;border-top:1px solid #1a1a1a;border-bottom:1px solid #4d4d4d}.sidr ul li{display:block;margin:0;line-height:48px;border-top:1px solid #4d4d4d;border-bottom:1px solid #1a1a1a}.sidr ul li:hover,.sidr ul li.active,.sidr ul li.sidr-class-active{border-top:none;line-height:49px}.sidr ul li:hover>a,.sidr ul li:hover>span,.sidr ul li.active>a,.sidr ul li.active>span,.sidr ul li.sidr-class-active>a,.sidr ul li.sidr-class-active>span{-webkit-box-shadow:inset 0 0 15px 3px #222;-moz-box-shadow:inset 0 0 15px 3px #222;box-shadow:inset 0 0 15px 3px #222}.sidr ul li a,.sidr ul li span{padding:0 15px;display:block;text-decoration:none;color:#fff}.sidr ul li ul{border-bottom:none;margin:0}.sidr ul li ul li{line-height:40px;font-size:13px}.sidr ul li ul li:last-child{border-bottom:none}.sidr ul li ul li:hover,.sidr ul li ul li.active,.sidr ul li ul li.sidr-class-active{border-top:none;line-height:41px}.sidr ul li ul li:hover>a,.sidr ul li ul li:hover>span,.sidr ul li ul li.active>a,.sidr ul li ul li.active>span,.sidr ul li ul li.sidr-class-active>a,.sidr ul li ul li.sidr-class-active>span{-webkit-box-shadow:inset 0 0 15px 3px #222;-moz-box-shadow:inset 0 0 15px 3px #222;box-shadow:inset 0 0 15px 3px #222}.sidr ul li ul li a,.sidr ul li ul li span{color:rgba(255,255,255,0.8);padding-left:30px}.sidr form{margin:0 15px}.sidr label{font-size:13px}.sidr input[type="text"],.sidr input[type="password"],.sidr input[type="date"],.sidr input[type="datetime"],.sidr input[type="email"],.sidr input[type="number"],.sidr input[type="search"],.sidr input[type="tel"],.sidr input[type="time"],.sidr input[type="url"],.sidr textarea,.sidr select{width:100%;font-size:13px;padding:5px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0 0 10px;-webkit-border-radius:2px;-moz-border-radius:2px;-ms-border-radius:2px;-o-border-radius:2px;border-radius:2px;border:none;background:rgba(0,0,0,0.1);color:rgba(255,255,255,0.6);display:block;clear:both}.sidr input[type=checkbox]{width:auto;display:inline;clear:none}.sidr input[type=button],.sidr input[type=submit]{color:#333;background:#fff}.sidr input[type=button]:hover,.sidr input[type=submit]:hover{background:rgba(255,255,255,0.9)}

/* Override Sidr push behavior - use overlay instead */
body.sidr-open {
    left: 0 !important;
    position: static !important;
    width: auto !important;
    overflow-x: hidden;
}
html.sidr-open {
    overflow-x: hidden;
}

#mobile-menu-activator {
    background: #ffffff;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0px;
    display: none;
    border-bottom: 1px solid #e5e5e5;
}
#mobile-menu-activator .centered-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    padding: 0 12px;
}
.mobile-menu-actions {
    display: flex;
    align-items: center;
    gap: 2px;
}
@media only screen and (max-width: 767px){
    #mobile-menu-activator {
        display: block;
    }
}
/*
top bar contact us
*/

.top-bar-contact-us
{
    display:none;
    width: 170px;
    position: absolute;
    top: -5px;
    right: 0px;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    padding: 0 0 0px 0;
    -webkit-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    -moz-border-radius-bottomleft: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color:#0295DA;
    z-index:999;
}
 .top-bar-contact-us .phone-number-top {
    float:left;
    width: 125px;
    margin:0 0 0 20px;
 }
 .top-bar-contact-us .phone-number-top .icon {
    margin:5px 0 0 8px;
    float:left;
 }
 .top-bar-contact-us .phone-number-top .text {
    margin:4px 0 0 8px;
 }
 .top-bar-contact-us .skype-top {
    float:left;
    width: 70px;
    margin:0 0 0 10px;
 }
.top-bar-contact-us .skype-top .icon {
    float:left;
    margin:6px 0 0 0;
}
.top-bar-contact-us .skype-top .text {
    margin:4px 0 0 5px;
    float:left;
}
.top-bar-contact-us .email-top .icon {
    float:left;
    margin:7px 0 0 0;
}
.top-bar-contact-us .email-top .text {
    margin:5px 0 0 5px;
    float:left;
}
.top-bar-contact-us .text a {
    color:#ffffff;
}

@media only screen and (min-width: 768px){
    
    .top-bar-contact-us {
        display:block !important;
    }
}
#sidr-right,#sidr-left {
	display:none;
}
#mobile-menu-left {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #333;
    border-radius: 10px;
    transition: background 0.2s;
}
#mobile-menu-left:hover {
    background: rgba(0,0,0,0.05);
}
#mobile-menu-left svg {
    display: block;
    pointer-events: none;
}
.top-header-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #0295DA;
    border-radius: 10px;
    transition: background 0.2s;
}
.top-header-link:hover {
    background: rgba(2,149,218,0.08);
    color: #0275aa;
}
.top-header-link svg {
    display: block;
    pointer-events: none;
}
.logo a {
    display:block;
}
.about-us-text {
    text-align: justify;
}
.social-links {
    float:right;
}
.header-about-us-text {
    margin:20px 0 20px 0;
}

/* Modern Framework Styles */
.frameworks-list {
    margin-top: 20px;
}

.framework-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #0095DA;
}

.framework-logo {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.framework-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.framework-description {
    flex: 1;
}

.framework-description p {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Technology Badges */
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 100px;
    background: transparent;
    color: #374151;
    border: 1px solid #e5e7eb;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tech-badge:hover {
    border-color: #0095DA;
    color: #0095DA;
    background: rgba(0, 149, 218, 0.04);
}

/* Tippy.js Custom Theme */
.tippy-box[data-theme~='codebox'] {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    padding: 4px 6px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.tippy-box[data-theme~='codebox'] .tippy-arrow {
    color: #1a1a2e;
}

.tippy-box[data-theme~='codebox'] .tippy-content {
    padding: 8px 12px;
}