/* Fonts */
	@font-face {
  font-family: "HelveticaNeueThCn";
  src: url('/css/fonts/HelveticaNeueLTCom-ThCn.ttf') format('truetype'), url('//css/fonts/HelveticaNeueLTCom-ThCn.woff') format('woff');
}

@font-face {
  font-family: "HelveticaNeueLtCn";
  src: url('/css/fonts/HelveticaNeueLTCom-LtCn.ttf') format('truetype'), url('//css/fonts/HelveticaNeueLTCom-LtCn.woff') format('woff');
}

@font-face {
  font-family: "HelveticaNeueLtCnO";
  src: url('/css/fonts/HelveticaNeueLTCom-LtCnO.ttf') format('truetype'), url('//css/fonts/HelveticaNeueLTCom-LtCnO.woff') format('woff');
}

@font-face {
  font-family: "HelveticaNeueMdCn";
  src: url('/css/fonts/HelveticaNeueLTCom-MdCn.ttf') format('truetype'), url('//css/fonts/HelveticaNeueLTCom-MdCn.woff') format('woff');
}

@font-face {
  font-family: "HelveticaNeueBdCn";
  src: url('/css/fonts/HelveticaNeueLTCom-BdCn.ttf') format('truetype'), url('//css/fonts/HelveticaNeueLTCom-BdCn.woff') format('woff');
}


/* Main Styles */

	::selection {
		background-color: #ececec;
	}
	html, body {
		background: #fff;
		width:100%;
		height:100%;
		padding:0;
		margin-left:0;
		margin-right:0;
		font-family: "HelveticaNeueLtCn", "HelveticaNeueW01-67MdCn 692710", Helvetica, sans-serif;
		-webkit-font-smoothing: antialiased;
                font-size:14px;
	}

	body{
		overflow-x: hidden; 
	}

            
	img {
	    -moz-user-select: none; 
	    -webkit-user-select: none;
	    -ms-user-select: none; 
	    user-select: none; 
	    -webkit-user-drag: none;
	    user-drag: none;
	}

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

	h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6{
		font-family: HelveticaNeueLtCn, 'HelveticaNeueW01-47LtCn 692686', Helvetica, sans-serif;
		font-weight:100;
	}

	p{
		margin:0 0 5px;
	}

	.clear{
		clear:both;
	}

	ol, ul{
		list-style:none;
		padding:0;
	}

	b.caret{
		margin:-3px 0 auto 5px;
	}

	.btn{
		outline:none;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}

	.btn:focus{
		outline:none;
	}

	.btn:active{
		outline:none;
	}

/* Font Classes */	

	.condensed{
/*		font-family: 'Open Sans Condensed', sans-serif;*/
	}

	.condiment{
/*		font-family: 'Condiment', cursive;*/
	}

	.playball{
/*		font-family: 'Playball', cursive;*/
	}
        
        .align-center{
            text-align:center;
            }
            .align-left{
                text-align: left;
            }
/* Page Animated item Styles */

	.animated{
		visibility:hidden;
	}

	.visible{
		visibility:visible;
	}

/* Background Animation */

	@-webkit-keyframes BackgroundAnimation {
	    from {background-position: 0px 0px;}
	    to {background-position: 9600px 0px;}
	}

	@-moz-keyframes  BackgroundAnimation {
	    from {background-position: 0px 0px;}
	    to {background-position: 9600px 0px;}
	}

	@-ms-keyframes  BackgroundAnimation {
	    from {background-position: 0px 0px;}
	    to {background-position: 9600px 0px;}
	}
        
            @keyframes animatedBackground {
	from { background-position: 0 0; }
	to { background-position: 0 100%; }
        }
        @-webkit-keyframes animatedBackground {
	from { background-position: 0 0; }
	to { background-position: 0 100%; }
        }
        @-moz-keyframes animatedBackground {
	from { background-position: 0 0; }
	to { background-position: 0 100%; }
        }
        @-ms-keyframes animatedBackground {
	from { background-position: 0 0; }
	to { background-position: 0 100%; }
        }

/* Page Loading */

	#pageloader {
		width: 100%;
		height: 100%;
		position: fixed;
		top:0;
		background-color: white;
		z-index: 9999;
	}

	.loader-item {
	  position: absolute;
	  width: 40px;
	  height:40px;
	  margin: -20px 0 0 -20px;
	  top:50%;
	  left:50%;
	  text-align:center;
	  background:white;
	  border-left:3px solid;
	  border-right:3px solid;
	  border-top:3px solid;
	  border-bottom:3px solid transparent !important;
	  border-radius: 200px;
	}

	.loader-item h2{
		color:#ccc;
		margin:0 auto;
		font-size:20px;
	}

/* Oxygen First Styles */

/* Containers */

	.container {
		width: 100%;
		height: auto;
		padding:0;
		margin:0;
	}

	.inner{
		width:100%;
		height: auto;
		max-width: 1024px;
		position: relative;
		margin: 0 auto;
		padding: 75px 0;
		text-align: center;
	}
        .projectgram{
            width:90%;
            
        }
                
	.inner:after{
		clear: both;
	}

	.fullwidth{
		width:100%;
		max-width: 100%;
	}

	.transparent{
		background: transparent !important;
	}

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

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

/* Positions */

	.relative{
		position: relative;
	}

	.absolute{
		position: absolute;
	}

	.fixed{
		position:fixed;
	}

/* Patterns */

	.pattern-white:after{
		background: url(../images/pattern-white.png) repeat;
		content:'';
		width: 100%;
		height: 100%;
		top:0;
		left:0;
		position: absolute;
	}

	.pattern-black:after{
		background: url(../images/pattern-black.png) repeat;
		content:'';
		width: 100%;
		height: 100%;
		top:0;
		left:0;
		position: absolute;
	}

	.pattern-grid:after{
		background: url(../images/pattern-grid.png) repeat;
		content:'';
		width: 100%;
		height: 100%;
		top:0;
		left:0;
		position: absolute;
		opacity: 0.05;
	}

	.transparent{
		background:transparent !important;
	}

/* Fonts */

	.header{
		width:100%;
		height: auto;
		font-size:25px;
		font-weight: 400;
		text-align: center;
		margin:0 auto;
	}

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

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

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

	.dark{
		color: #505050;
	}

	.h-desc{
		font-size:15px;
		font-weight: 100;
		
		margin:20px auto;
		max-width: 900px;
		line-height: 20px;
	}

	.extrabold{
		font-weight: 800;
	}

	.bold{
		font-family:HelveticaNeueLtCn,Helvetica,sans-serif;
	}

	.semibold{
/*		font-weight: 600;*/
	}

	.normal{
/*		font-weight: 400;*/
	}

	.light{
/*		font-weight: 100;*/
                         font-family:HelveticaNeueLtCn,Helvetica,sans-serif;
	}

	.italic{
		font-style: italic;
	}

	.uppercase{
		text-transform: uppercase;
	}

/* Colors */

	.white{
		color:white;
	}

	.gray1{
		color:#a8a7a7;
	}

	.gray2{
		color:#8c8c8c;
	}

	.colored{
		color: #3498db;
	}

	.colored-bg{
		background-color: #3498db;
	}

	.gray-border{
		border-color:#eeeeee;
	}

	.colored-border{
		border-color: #3498db;
	}

	.colored-border-left{
		border-left-color: #3498db;
	}

	.colored-border-right{
		border-right-color: #3498db;
	}

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

	.gray-bg{
		background-color:#f5f5f5 !important;
	}

	.black-bg{
		background-color:black !important;
	}

/* Home Section */

	#home{
		position: relative;
		width: 100%;
		height: auto;
                                margin-top:75px;
                                z-index:1;
	}

	.home{
		
		
	}

	.home:after{
		clear: both;
	}

/* Home Section Pattern Version */

	.home-pattern-style{
		background:url(../images/pattern.png) repeat fixed;
		position: relative;
	}

/* Home Section Animated Version */

	.home-animated{
		background-image:url(../images/animate.jpg);
		background-size: cover;
		background-position: 50% 50%;
		background-attachment: fixed !important;
		background-repeat: repeat;
		-webkit-animation: BackgroundAnimation 300s linear infinite;
		-moz-animation: BackgroundAnimation 300s linear infinite;
   		 -ms-animation: BackgroundAnimation 300s linear infinite;
	}

	.hometexts-1{
		font-size:95px;
		height:auto;
		color:white;
		line-height: 95px;
	}

	.hometexts-1 .slide-text-1{
		margin-bottom:0;
		width:auto;
		padding:0;
	}

	.home-button{
		display:inline-block;
		background:rgba(0, 0, 0, 0.3);
		border:1px solid rgba(0,0,0, 0.3);
		padding:9px 22px;
		margin:0 5px;
		font-size:12px;
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		transition: all 0.5s;
		color:#dadada;
	}

	.home-button:hover{
		border:1px solid rgba(255,255,255, 0.8);
		background:rgba(255,255,255, 0.8);
		color:black;
	}

/* Details */

	.home-details{
		width:90%;
		margin:0 auto;
		height: auto;
		max-width: 1024px;
		top:50%;
		position: relative;
		text-align:center;
		z-index: 10;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.slide-text{
		margin:3px auto 0;
               
	}

	.slide-text li:last-child{
		clear: both;
	}
                .banner-inside-text{
                    display:block;
                    font-size:20px;
                }
                .slide-text img{
                    display:block;
                    margin:0px auto;
                    padding:50px 0;
                    height:80%;
                }
	.hometext{
		width:100%;
		height: 560px;
		color:#333;
		
	}

/* Fixed Text */

	.fixed-text{
		font-size: 60px;
		color:#a8a8a8;
		margin:0;
	}

/* Cetagories */
	
	.home-categories .h-item:last-child{
		background:none;
	}

	.h-item{
		color:#b8b7b7;
		padding:5px 20px 5px 13px;
		width: auto;
		font-size: 13px;
		background:url(../images/li-item.png) right center no-repeat;
		display: inline-block;
	}

	.home-arrow{
		display: block;
		color:#b8b7b7;
		width:150px;
		margin:10px auto;
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		transition: all 0.5s;
	}

	.home-arrow span{
		display: block;
		margin:5px auto;
	}

	.home-arrow:hover{
		color:white;
	}

/* Home Parallax Slider Version  */

	#home .v2{
		width:100%;
		height: 100%;
		top:0;
		z-index: 4;
		text-align: center;
	}

	#home .v2 .typographic{
		height: auto;
		width:100%;
		max-width:600px;
		margin:0 auto;
		position: relative;
		top:50%;
		padding:0 25px;
		border-left:2px solid #d6d6d6;
		border-right:2px solid #d6d6d6;
		color:#d6d6d6;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}

/* Typographic Text Options  */

	#home .v2 .typographic h1{
		text-shadow:2px 2px 2px rgba(0, 0, 0, 0.15);
		line-height:0.8;
		font-size:70%;
		margin:10px 0;
	}

	#home .v2 .typographic h2{
		text-shadow:2px 2px 2px rgba(0, 0, 0, 0.15);
		line-height: 1.05;
		font-size:80%;
		margin:10px 0;
	}

/* Home V5  */

	#home .v5{
		width:100%;
		height: 100%;
		top:0;
		z-index: 4;
		text-align: center;
	}

	#home .v5 .typographic{
		height: auto;
		width:100%;
		max-width:970px;
		margin:0 auto;
		position: relative;
		top:50%;
		padding:0 25px;
		color:#dfdfdf;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	#home .v5 .typographic .hometexts-5{
		height: 115px;
	}

	#home .v5 .typographic .hometexts-5 ul li{
		font-size:55px;
	}

	#home .v5 .typographic .hometexts-5 .flex-direction-nav li{
		width:44px;
		height: 37px;
		position: relative;
		display: inline-block;
		opacity: 1;
	}

	#home .v5 .typographic .hometexts-5 .flex-direction-nav li a{
		width:44px;
		height: 37px;
		position: absolute;
		display: block;
		opacity:1;
		top:5px;
		background-image: url(../images/v5-arrows.png);
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		transition: all 0.2s;
	}

	#home .v5 .typographic .hometexts-5 .flex-direction-nav li a.flex-prev{
		left:0;
		background-position: left top;
	}

	#home .v5 .typographic .hometexts-5 .flex-direction-nav li a.flex-prev:hover{
		background-position: left bottom;
	}

	#home .v5 .typographic .hometexts-5 .flex-direction-nav li a.flex-next{
		left:5px;
		background-position: right top;
	}

	#home .v5 .typographic .hometexts-5 .flex-direction-nav li a.flex-next:hover{
		background-position: right bottom;
	}

/* V5 Typographic Text Options  */

	#home .v5 .typographic h1{
		text-shadow:2px 2px 2px rgba(0, 0, 0, 0.15);
		line-height:0.75;
		font-size:70%;
		margin:10px 0;
	}

	#home .v5 .typographic h2{
		text-shadow:2px 2px 2px rgba(0, 0, 0, 0.15);
		line-height: 0.85;
		font-size:90%;
		margin:10px 0;
	}

/* TextSlider & Background Slider Version */

	.home-details-tb{
		width:100%;
		margin:0 auto;
		height: auto;
		top:50%;
		text-align:center;
		z-index: 10;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.home-details-tb .home-details-inner{
		max-width: 90%;
		margin:0 auto;
	}

/* Background Slider Images  */

	#slides .slides-container div{
		background-position:center center;
		background-attachment: fixed;
	}

	#slides .slides-container .image1{
		background-image:url(../images/slide1.jpg);
	}

	#slides .slides-container .image2{
		background-image:url(../images/slide2.jpg);
	}
	#slides .slides-container .image3{
		background-image:url(../images/slide3.jpg);
	}

/* Alternative Images  */

	#slides .slides-container .image4{
		background-image:url(../images/slide4.html);
	}
	#slides .slides-container .image5{
		background-image:url(../images/slide5.html);
	}
	#slides .slides-container .image6{
		background-image:url(../images/slide6.html);
	}

	.v2 .home-arrow{
		margin:0 auto;
		left:50%;
		bottom:12%;
		position: absolute;
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		transform: translateX(-50%);
	}

	.v2 .home-arrow:hover{
		color:white;
	}

/* Super Slides Navigation */

	.slides-navigation {
		margin: 0 auto;
		position: absolute;
		z-index: 3;
		top: 45%;
		width: 100%;
		z-index: 20;
	}
	.slides-navigation a{
		position: absolute;
		display: block;
		width:36px;
		height:81px;
		background:url(../images/slider-arrows.png);
		opacity:0;
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		transition: all 0.5s;
	}

	.slides-navigation a.prev {
		left: 2%;
		background-position:left;
	}
	.slides-navigation a.next {
		right: 2%;
		background-position:right;
	}

	#home:hover .slides-navigation a{
		opacity:0.3;
	}

	.slides-navigation a:hover{
		opacity:1 !important;
	}

/* Home Fixed Video Version */

	#fixed_video{
		min-width: 100%;
		min-height: 100%;
		top:0;
		left:0;
		position: fixed;
		background-color:black;
		z-index: -1 !important;
	}


/* Navigation */
	
	#navigation{
		position: fixed;
		width: 100%;
		height: 75px;
		box-shadow: 0px 1px 4px rgba(0,0,0, 0.1);
		z-index: 1031;
		-webkit-transition: all 0.5s;
		-moz-transition: all 0.5s;
		transition: all 0.5s;
	}

	.not-visible-nav{
		top:-77px;
	}

	.visible-nav{
		top:0;
	}

	.white-nav{
		background:rgba(255, 255, 255, 0.97);
	}

	.dark-nav{
		background:rgba(0, 0, 0, 0.97) !important;
	}

	.soft-nav{
		background:rgba(255, 255, 255, 0.05);
	}

	.nav-inner{
		width:100%;
		max-width: 1024px;
		height: 100%;
		margin:0 auto;
	}

	.nav-inner:after{
		clear: both;
	}

/* Logo Style */

	.site-logo{
		float: left;
		position: relative;
		top: 50%;
                                padding-left:10px;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.site-logo a.logo{
		display: block;
	}

	.site-logo a.logo img{
		height: auto;
		max-height: 50px;
		-webkit-transition: all 1s;
		-moz-transition: all 1s;
		transition: all 1s;
	}

/* Nav Menu */

	#navigation .mini-nav-button{
		display: none;
		width: 40px;
		height: 40px;
		text-align: center;
		font-size:25px;
		position: absolute;
		right:15px;
		top:50%;
		cursor: pointer;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.nav-menu{
		float: right;
                margin-right:35%;
		height: 100%;
	}

	.nav-menu ul.nav{
		height: 100%;
	}

	.nav li{
		display: inline-block;
		height: 100%;
	}

	.nav li a{
		display: block;
		height: 100%;
		border-top:2px solid transparent;
		line-height: 54px;
		color: #555555;
		font-size:15px;
                font-family: HelveticaNeueLtCn, 'HelveticaNeueW01-47LtCn 692686', Helvetica, sans-serif;
		padding:10px 15px;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

/* Nav Menu Rollovers */

	.nav li:hover{
		background:transparent;
	}

	.nav li a:hover{
		background: transparent !important;
		border-top:2px solid #3498db;
		color:#3498db;
	}

	.nav li.active a{
		background: transparent;
		border-top:2px solid #3498db;
		color:#3498db;
	}

	.nav li a:focus{
		background: transparent !important;
		border-top:2px solid #3498db;
		color:#3498db;
	}

	.dark-nav .nav li a{
		color:white;
	}

	.dark-nav .nav li a:hover{
		background: transparent !important;
		border-top:2px solid #3498db;
		color:#3498db;
	}
	
	.dark-nav .nav li a:active{
		background: transparent !important;
		border-top:2px solid #3498db;
		color:#3498db;
	}

/* DropDown Menu */

	ul.nav ul.dropdown-menu{
		padding:0;
		margin:0;
		border-top:2px solid gray;
		border-radius: 0;
		background:rgba(255, 255, 255, 0.97) !important;
		box-shadow: 0px 1px 4px rgba(0,0,0, 0.1);
	}

	ul.nav ul.dropdown-menu li{
		width: 100%;
		height: auto;
		
	}

	ul.nav ul.dropdown-menu li a{
		height: auto;
		padding: 10px;
		margin:0;
		display: block;
		width: 100%;
		color:#555555;
		line-height: 25px;
		font-weight: 600;
		border-top:2px solid transparent;
	}

	ul.dropdown-menu li a:hover{
		border-top:2px solid transparent;
	}

	.dark-nav ul.dropdown-menu{
		background:rgba(0, 0, 0, 0.97) !important;
		border-color:rgba(0, 0, 0, 0.97) !important;
	}

	.dark-nav ul.dropdown-menu li a{
		color:white;
	}

	.dark-nav ul.dropdown-menu li a:hover{
		border-top:2px solid transparent ;
	}

/* About */
#about {
    border-top:1px solid #ccc;
}
#about a{
    cursor:default;
}
	#about .inner .boxes{
		overflow: hidden;
	}

	#about .inner .boxes:after{
		clear: both;
	}

	.about-box{
		text-align: center;
		margin-top:50px;
                                margin-bottom: 0;
		cursor: default;
	}
        
/* About Icon Styles */

	.about-icon{
		display:block;
		width:92px;
		height: 92px;
		position: relative;
		background: #fff;
		border-radius:12px;
		z-index: 3;
		margin:1px auto;
                cursor:pointer;
	}
            
      
	.about-icon:before{
		width:93px;
		height: 93px;
		content:'';
		z-index: 1;
		position: absolute;
		top:-1px;
		left:-1px;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

	

	.about-icon i{
		font-size:34px;
		color:#464646;
		z-index: 4;
		position: relative;
		line-height: 95px;
/*		-webkit-transition: all 0.1s;
		-moz-transition: all 0.1s;
		transition: all 0.1s;*/
                                width:72px;
                                height:80px;
	}

              .about-icon i.fa-graphic{

                background: url(../images/aboutus_icons.png) no-repeat;
            }
              .about-icon:hover  i.fa-graphic, .about-icon  i.fa-graphic.hovered{

                background: url(../images/aboutus_icons.png) no-repeat 0 -80px;
            }
            
               .about-icon i.fa-product{

                background: url(../images/aboutus_icons.png) no-repeat -72px 0;
            }
              .about-icon:hover  i.fa-product, .about-icon  i.fa-product.hovered{

                background: url(../images/aboutus_icons.png) no-repeat -72px -80px;
            }
            
               .about-icon i.fa-fashion{

                background: url(../images/aboutus_icons.png) no-repeat  -144px 0;;
            }
              .about-icon:hover  i.fa-fashion,    .about-icon  i.fa-fashion.hovered{

                background: url(../images/aboutus_icons.png) no-repeat -144px -80px;
            }
            
               .about-icon i.fa-media{

                background: url(../images/aboutus_icons.png) no-repeat  -216px 0;;
            }
              .about-icon:hover  i.fa-media,.about-icon  i.fa-media.hovered{

                background: url(../images/aboutus_icons.png) no-repeat -216px -80px;
            }
            
               .about-icon i.fa-computer{

                background: url(../images/aboutus_icons.png) no-repeat  -288px 0;;
            }
              .about-icon:hover  i.fa-computer, .about-icon  i.fa-computer.hovered{

                background: url(../images/aboutus_icons.png) no-repeat -288px -80px;
            }

/* About Box Hover Styles */

	

	.about-box .about-head{
		margin:30px auto 10px;
		font-size:16px;
	}

	.about-box .about-text{
		font-size:13px;
	}


/* Services */

	#services{
                                border-top:1px solid #ccc;
/*		background:url(../images/i1.jpg) center center fixed;*/
		padding: 0;
		overflow: hidden;
	}

/* Service Boxes */

	.service-box{
		text-align: center;
		margin:50px auto 0;
		cursor: context-menu;
	}

	.service-box .service-icon{
		display:block;
		width:70px;
		height: 70px;
		position: relative;
		background: transparent;
		border-radius:12px;
		border:1px solid #cbcbcb;
		z-index: 3;
		margin:0 auto;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

	.service-box .service-icon i{
		font-size:26px;
		color:white;
		z-index: 4;
		position: relative;
		line-height: 70px;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

	.service-box:hover .service-icon{
		background:white;
	}

	.service-box:hover .service-icon i{
		color:#323332;
	}

	.service-box .service-header{
		margin-top:30px;
		font-size:18px;
	}

/* Tooltip Styles */

	.tooltip{
		z-index: 999 !important;
	}

	.tooltip-inner{
		padding:15px;
		background:#494949;
		color:white;
		font-size:13px;
		font-style: italic;
		border-radius: 12px;
		min-width: 170px;
	}

	.tooltip.top{
		margin-top:-20px;

	}

	.tooltip.bottom{
		margin-top:20px;

	}

	.tooltip.left{
		margin-right:20px;

	}

	.tooltip.right{
		margin-left:20px;
	}

	.tooltip.top .tooltip-arrow{
		border-top-color:#494949 !important;
	}

	.tooltip.bottom .tooltip-arrow{
		border-bottom-color:#494949 !important;
	}

	.tooltip.left .tooltip-arrow{
		border-left-color:#494949 !important;
	}

	.tooltip.right .tooltip-arrow{
		border-right-color:#494949 !important;
	}

/* Features */
	.f-box{
		text-align:center;
		cursor: default;
		margin:60px auto 0;
	}

	.f-icon i{
		font-size: 35px;
		color:#616161;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

	.f-box .feature-head{
		margin:15px auto 10px;
		font-size:18px;
	}

	.f-box .feature-text{
		font-size:13px;
	}

	.f-box:hover .f-icon i{
		color:#3498db;
	}


/* Testimonials */	

	.testimonials{
		background: url(../images/i2.jpg) center center fixed;
		padding: 140px 0 70px;
		text-align: center;
		overflow: hidden;
		position: relative;
	}

	.t-slides{
		max-width: 970px;
		margin:0 auto;
		max-height: 500px;
		overflow: hidden;
	}

	.t-slides li.monial{
		position: absolute;
		height: auto;
	}

	.t-slides li.monial:last-child:after{
		clear: both;
	}

	.monial h1{
		font-size: 30px;
	}

	.monial p{
		margin:30px auto;
		font-size:13px;
		color: #cdcdcd;
	}

/* Testimonial Controls */	

	.testimonials .flex-direction-nav{
		width:52px;
		height: 30px;
		margin:0 auto;
		position: relative;
		opacity: 1;
	}

	.testimonials .flex-direction-nav li{
		display: block;
		position: relative;
		float:left;
		width:26px;
		height: 26px;
	}

	.testimonials .flex-direction-nav li a{
		opacity: 1;
		width:26px;
		height: 26px;
		background:url(../images/testimonial-controls.png);
	}

	.testimonials .flex-direction-nav a:before{
		display: none;
	}

	.testimonials .flex-direction-nav li a.flex-prev{
		background-position: left top;
		left:-5px;
	}

	.testimonials .flex-direction-nav li a.flex-next{
		background-position: right top;
		right:-5px;
	}

	.testimonials .flex-direction-nav li a.flex-prev:hover{
		background-position: left bottom;
	}

	.testimonials .flex-direction-nav li a.flex-next:hover{
		background-position: right bottom;
	}

/* Text Area */

	#blockquote{
		background:#0f0f0f;
		padding:55px 0;
	}

	#blockquote p.blockquote{
		font-size:28px;
	}

/* project */

	#project{
                    border-top:1px solid #ccc;
/*		background:url(../images/i3.jpg) top fixed;*/
	}


/* Timeline */

	

/* Years */

	#project ul.timeline li.time{
		width: 75px;
		height: 100%;
		position: relative;
		clear: both;
		border-radius: 5px;
		background: white;
		text-align: center;
		color:#aaa9a9;
		
		
		font-size: 20px;
		margin:5px auto;
		cursor: default;
                
                                display:none;
	}

	#project ul.timeline li.today{
		background: #3c3c3c;
		color:white;
		margin:40px auto;
	}



	#project ul.timeline li.note{
		width:100%;
/*		min-height: 100px;*/
		
		background:white;
		border:0px solid #ececec;
                
		margin:0px 0;
		
		position: relative;
		text-align:left;
		padding:0px;
		
		cursor:pointer;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
                                height:30px;
                                overflow:hidden;;
	}


	li.note p,
	li.note span,
	li.note span:after{
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}
	

	li.note div.project-date{
		font-size:10px;
		color:#fff;              
                                padding:0 3px; 
                                display:none;
                                height:0;             
	}

	li.note div.project-head{
		font-size:14px;
                                line-height:30px;
                                position:absolute;
                                height:30px;
		color:#ccc;     
		margin:1px auto;
                                padding:0 0 0 5px;
                                left:50%;
                                text-align:left;
                               display:none;
	}

	li.note div.project-desc{
		font-size:13px;
		color:#bebebe;
                                padding:0 5px 0 0;
                                line-height:30px;
                                position:absolute;
                                height:30px;
                                left:0%;
                                width:50%;
                                text-align:right;
                               
                                
	}
        
                li.note div.project-date,
                li.note div.project-head,
                li.note div.project-desc{                
              
                          z-index:10;
                }
                
                li.note{
                    position:relative;
                }
                
                li.note div.leftbar {
                                position:absolute;
                                height:30px;
                                opacity:0.8;
                }

                li.note div.rightbar {
                                position:absolute;
                                height:30px;
                                opacity:0.9;
                }




/* project Rollovers */

	#project ul.timeline li.note:hover,
	#project ul.timeline li.note:hover:after{
/*		background:#3498db;*/
	}

	#project ul.timeline li.note:hover p.project-head
                {
                    background-color:#d90000;
	}

	#project ul.timeline li.note:hover span.note-arrow,
	#project ul.timeline li.note:hover span.note-arrow:after{
                        border-color:#fff;
                        background-color:#d90000;
	}


	a.timeline-image img:hover{
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
	}

/* Flex Slider Direction */

	.project ul.flex-direction-nav{
		display: block;
		opacity: 1;
	}

	.project ul.flex-direction-nav li a{
		opacity: 1;
		width:31px;
		height: 52px;
		top:50%;
		background:#1d1d1d center center no-repeat;
		opacity: 0.8;
		margin-top:-26px;
	}

	.project ul.flex-direction-nav li a.flex-prev{
		left:0;
		background-image:url(../images/arrow-left.png);
	}

	.project ul.flex-direction-nav li a.flex-next{
		background-image:url(../images/arrow-right.png);
		right:0;
		left:auto;
	}

	.project ul.flex-direction-nav li a:hover{
		opacity: 1;
	}

/* Flex Slider Control */

	ol.flex-control-nav{
		bottom:15px;
		position: absolute;
		z-index: 2;
	}

/* Project Header and Description styles */

	.project-header{
		text-align: left;
		font-size:25px;
		margin:0 0 10px;
		padding:30px 0 0;
	}

	.project-desc{
		text-align: left;
		font-size:13px;
	}

	.project-detail{
		text-align: left;
		padding:10px 0;
		border-bottom:1px solid #ebebeb;
		font-size:13px;
		margin:0;
	}


/* Logo Area */

	.video-button span.logo-icon-m{
		display: block;
		width:auto;
		height: 98px;
	}

	.video-button span.logo-icon-m img{
		height: 100%;
	}

/* Text on Vide */

	.video-button p.video-text{
		font-size:40px;
		border-left:2px solid white;
		border-right:2px solid white;
		padding:0 17px;
		margin:15px auto 0;
		line-height: 30px;
	}

/* Video Button Rollover */

	.video-button:hover{
		background:rgba(0, 0, 0, 0.2);
	}



/* Active Table */

	.prices .tables .active .price-table-top .price-circle p.price,
	.prices .tables .active .price-table-top .price-circle p.timely{
		color:#3498db;
	}

	.prices .tables .active .table-inner a.price-buy-now,
	.prices .tables .active a.price-table-img{
		background:#3498db;
	}

/* Table Rollovers */

	.table-inner a.price-buy-now:hover{
		background:#3498db;
		color:white;
	}

	.pricing-table:hover .price-table-top .price-circle p.price,
	.pricing-table:hover .price-table-top .price-circle p.timely{
		color:#3498db;
	}

/* Google Map */

	#map{
		position: relative;
		overflow: hidden;
		-webkit-transition: all 0.7s;
		-moz-transition: all 0.7s;
		transition: all 0.7s;
	}

/* Open and Close Styles */

	.close-map{
		height: 42px;
                              
	}

	.open-map{
		height: 480px;
                            
	}

/* Open and Close Button Styles */

	#map .google-map-big-button{
		width:100%;
		display: block;
		height: auto;
		text-align: center;
		background: #efefef;
		font-size: 16px;
		position: relative;;
		z-index: 2;
		cursor: pointer;
		-webkit-transition: all 0.7s;
		-moz-transition: all 0.7s;
		transition: all 0.7s;
	}

	.close-map-button{
		padding:10px;
		opacity: 1;
	}
      
	.open-map-button{
		padding:10px;
		opacity: 0.75;
	}
        
                  
  

	#map .google-map-big-button:hover{
		background:#D90000;
		color:white;
	}

/* Google Map Div */

	#map #google-map{
		height: 500px;
		display: block;
		position: absolute;
		top:0;
		width: 100%;
		z-index: 1;
		-webkit-transition: all 0.7s;
		-moz-transition: all 0.7s;
		transition: all 0.7s;
	}
        
                #map   .open-map-button {
		width:100px;
                                margin-left:auto;;
                                background:#d90000;
                                color:#fff;
           
	}
                #map .close-map-button{
                    width:100%;
                  margin-left:auto;;
                }
	.close-map #google-map{
		opacity: 0;
	}

	.open-map #google-map{
		opacity: 1;
	}

/* Contact */

	#contact{
/*		background:url(../images/i5.jpg) center fixed;*/
		padding:0px 0 10px;
                                border-top:1px solid #ccc;
	}

	.contact-text{
		margin:45px auto;
	}

/* Contact Form */

	#contact .contact-form{
		width:90%;
		max-width: 830px;
		margin: 0 auto;
	}

	.mail-message-area{
		width:100%;
		padding:0 15px;
	}

	.mail-message{
		width: 100%;
		background:rgba(255,255,255, 0.8) !important;
		-webkit-transition: all 0.7s;
		-moz-transition: all 0.7s;
		transition: all 0.7s;
		margin:0 auto;
		border-radius: 0;
	}

	.not-visible-message{
		height:0px;
		opacity: 0;
	}

	.visible-message{
		height:auto;
		opacity: 1;
		margin:25px auto 0;
	}

/* Input Styles */

	.form{
		width: 100%;
		padding: 15px;
		background:transparent;
		border:1px solid rgba(155, 155, 155, 0.15);
		margin-bottom:25px;
		color:#727272 !important;
		font-size:13px;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
		transition: all 0.4s;
	}

	.form:hover{
		border:1px solid rgba(155, 155, 155, 0.3);
	}

	.form:focus{
		color: white;
		outline: none;
		border:1px solid rgba(155, 155, 155, 0.6);
	}

	.textarea{
		height: 200px;
		max-height: 200px;
		max-width: 100%;
	}

/* Send Button Styles */

	.form-btn{
		width:100%;
		display: block;
		height: auto;
		padding:15px;
		color:#727272;
		background:rgba(83, 83, 83, 0.15);
		border:1px solid rgba(155, 155, 155, 0.15);
		outline: none;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

	.form-btn:hover{
		background:#3498db;
		color: white;
		border:1px solid #3498db;
	}

	.form-btn:active{
		opacity: 0.9;
	}

/* Place Holder Colors */

	::-webkit-input-placeholder { /* WebKit browsers */
		color:    #727272;
	}
	:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
		color:    #727272;
	}
	::-moz-placeholder { /* Mozilla Firefox 19+ */
		color:    #727272;
	}
	:-ms-input-placeholder { /* Internet Explorer 10+ */
		color:    #727272;
	}

/* Site Socials and Address */
#site-socials{
    border-top:1px solid #ccc;
}
	#site-socials .socials{
		width:100%;
		padding: 15px 10px;
		background:url(../images/bottom-strip.png) center bottom no-repeat;
	}

	#site-socials .socials a.social{
		font-size:18px;
		color:#595959;
		margin:15px auto;
		width:40px;
		height: 40px;
		display: inline-block;
		line-height: 40px;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

	#site-socials .socials a.social:hover{
		background:#131313;
		color:white;
	}

/* Adress */

	#site-socials .address{
		width: 100%;
		height: auto;
		margin:25px auto 0;
	}

/* Back to Top Button */

	#site-socials .top-button,#contact .top-button{
		margin:30px auto -1px;
		display: inline-block;
		width:40px;
		height: 40px;
		background:#fff;
		color:#ccc;
                border:1px solid #ccc;
                border-bottom:1px solid #fff;
		font-size: 20px;
		line-height: 40px;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

	#site-socials .top-button:hover{
		color:#3498db;
	}

/* Footer */

	.footer{
               
		padding:45px;
		text-align: center;
		background: #fff;
                        border-top:1px solid #ccc;
	}

	.footer h2.company-name{
		margin-top:0;
		padding-top:0;
		font-size:35px;
	}

	.footer span.copyright{
		margin-bottom:0;
		padding-bottom:0;
		color:#8b8b8b;
		font-size:14px;
	}

	.footer span.copyright a:hover{
		color:#3498db;
	}

/* Multiple Page Header */

	section.page_header{
		background: url(../images/soft_circles.jpg) center repeat;
		margin-top:70px;
		border-top:1px solid #e7e7e7;
		border-bottom:1px solid #e7e7e7;
		padding:50px 0;
		position: relative;
	}

	.page_header_inner{
		width:100%;
		max-width:1024px;
		margin:0 auto;
		color:#696868;
	}

	.page_header_inner h1{
		font-size:40px;
		margin:0;
	}

	.page_header_inner p{
		font-size:14px;
		color:#696868;
		margin:0;
	}

/* Blog */

	#blog .blog{
		margin:0 auto;
		padding:0;
	}

	#blog .blog .posts .post{
		border-bottom:1px solid #e9e9e9;
		margin:60px auto;
	}

	#blog .blog .posts .post ul.post-slides{
		width:100%;
		margin:0 auto;
		position: relative;
	}

	#blog .blog .posts .post ul.post-slides li.post-slide,
	#blog .blog .posts .post ul.post-slides li.post-slide img{
		width:100%;
		height: auto;
	}

	#blog .blog .posts .post ul.post-slides:after{
		left:-7px;
		top:-7px;
		bottom:-7px;
		right:-7px;
		background:transparent;
		border:1px solid #e7e7e7;
		content: '';
		position: absolute;
	
	}

	.post .post-inner{
		width:100%;
		margin:25px auto 10px;
	}

/* Flex Slider Direction */

	.post ul.flex-direction-nav{
		display: block;
		opacity: 1;
	}

	.post ul.flex-direction-nav li a{
		opacity: 1;
		width:31px;
		height: 52px;
		top:50%;
		background:#1d1d1d center center no-repeat;
		opacity: 0.8;
		margin-top:-26px;
	}

	.post ul.flex-direction-nav li a.flex-prev{
		left:0;
		background-image:url(../images/arrow-left.png);
	}

	.post ul.flex-direction-nav li a.flex-next{
		background-image:url(../images/arrow-right.png);
		right:0;
		left:auto;
	}

	.post ul.flex-direction-nav li a:hover{
		opacity: 1;
	}

/* Post Dates */

	.post-dates{
		width:64px;
		height: auto;
		float: left;
		margin:0;
		text-align:left;
	}

/* Post Date */

	.post-dates .date{
		display: block;
		width:64px;
		height:auto;
		padding:10px 7px;
		text-align: center;
		background: #353639;
		border-radius: 5px;
	}

	.post-dates .date h1{
		font-size:36px;
		line-height: 33px;
		margin:0;
		padding:0;
	}

	.post-dates .date p{
		font-size:11px;
		margin:0;
		padding:0;
	}

/* Post Category */

	.post-dates .category{
		display: block;
		width:64px;
		height:auto;
		padding:15px 7px;
		text-align: center;
		background: white;
		border-radius: 5px;
		border:1px solid #dfdfdf;
		margin:10px 0;
		color:#353639;
		font-size:25px;
	}

/* Post Details */

	.post-details{
		float:left;
		width:94%;
		text-align: left;
		padding:5px 0px 5px 15px;
	}

	.blog-s .post-details{
		width:91%;
	}

	.post-details .post-header{
		font-size:30px;
		color:#696868;
		margin:0;
	}

	.post-details .tags{
		font-size: 13px;
		margin:8px 0;
	}

	.post-details .tags a{
		color:#434343;
	}

	.post-details .tags i{
		margin:0 7px;
		color:#5d5d5d;
	}

	.post-details p.post-read{
		color:#464646;
		font-size:13px;
		font-weight: 100;
		line-height: 24px;
		margin-bottom:12px;
	}

	.post-details a.more-button{
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

	.post-details a.more-button:hover{
		color:black;
	}

/* Sidebar */

	#blog .blog .sidebar{
		margin:60px auto;
	}

	.sidebar .sidebar-segment{
		width:100%;
		padding-left:15px;
		margin:50px 0;
	}

	.sidebar .sidebar-segment:first-child{
		margin-top:-7px;
	}

	.sidebar-header{
		font-size:23px;
	}

/* Search */

	.sidebar .sidebar-segment .search{
		width:100%;
		padding:12px;
		border:1px solid #d8d8d8;
		outline:none;
		position: relative;
		border-radius: 5px;
		color:#808080;
		font-weight: 100;
		font-size:13px;
		margin:0 auto;
	}

	.search-button{
		width:15%;
		height: 100%;
		position: absolute;
		right: 0;
		top:0;
		color:#eaeaea;
		border:none;
		outline:none;
		padding:3px 7px;
		text-align:center;
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
		font-size:12px;
	}

/* Sidebar Categories */

	.sidebar ul.sidebar-categories{
		width:100%;
		padding:10px 0;
	}

	.sidebar ul.sidebar-categories li{
		width:100%;
		border-bottom:1px solid #e7e7e7;
		margin-left:5px;
	}

	.sidebar ul.sidebar-categories li a{
		color:#616060;
		padding:14px 0 14px 10px;
		display: block;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

	.sidebar ul.sidebar-categories li a i{
		margin-right: 10px;
	}

	.sidebar ul.sidebar-categories li a:hover{
		color:white;
		background:#444444;
	}

/* Sidebar Tags */

	.tags a.tag{
		display: inline-block;
		padding:6px;
		background:transparent;
		border:1px solid #c0c0c0;
		color:#929292;
		margin:2px 2px 2px 0;
		font-size:12px;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

	.tags a.tag:hover{
		background:#404040;
		color:white;
		border:1px solid #404040;
	}




.tp-caption.banner_client {
position:absolute;
color:#333;
text-shadow:none;
font-weight:300;
font-size:20px;
line-height:26px;
/*font-family:"Open Sans", sans-serif;*/
margin:0px;
border-width:0px;
border-style:none;
white-space:nowrap;
}

.tp-caption.banner_project_name {
position:absolute;
color:#000;
text-shadow:none;
font-weight:300;
font-size:30px;
line-height:20px;.
/*font-family:"Open Sans", sans-serif;*/
margin:0px;
border-width:0px;
border-style:none;
white-space:nowrap;
}

.tp-caption.banner_body {
position:absolute;
color:#000;
text-shadow:none;
font-weight:300;
font-size:14px;
line-height:20px;
/*font-family:"Open Sans", sans-serif;*/
margin:0px;
border-width:0px;
border-style:none;
width:400px;
height:auto;
text-align: right;
}

h1.header{
    margin-bottom:40px;
}
a {
color: #000;
text-decoration: none;
}

a:hover{
    color:#D90000
}

#contact .address{
    margin-bottom:50px;
    
}

body .tp-rightarrow, body .tp-leftarrow{
    
    display:none !important;
}
#indicator{
    height:20px;
    margin:30px 0 20px 0;
    position: relative;
    white-space: nowrap;
    width:100%;
   
}
#indicator .ind-label{
    color:#ccc;
  display:block;
  position:absolute;
 
  line-height: 34px;
  height:20px;
   vertical-align:top;

}

.handle{
       position:absolute;
}
#art-handle{
    left:10%;
    top:2px;
}
#tech-handle{
    right:10%;
    top:2px;
}
.label-art{

text-align: left;
 left:0;
 top:-20px;
}

.label-tech{
  
    text-align:right;
 top:-20px;
    right:0;
}

#indicator .tech-slider{
  width:100%;
  margin:10px 0;
    display:inline-block;
}
#indicator .handle{
	
  width: 16px;
height: 16px;
border: 1px solid #999;
background:#fff;
cursor: pointer;
text-indent: -9999px;

-webkit-border-radius: 20px;
-moz-border-radius: 28px;
-o-border-radius: 28px;
border-radius: 20px;
float:left; 

}