@charset "utf-8";
/* CSS Document */
@font-face {
    font-family: 'pt_sansregular';
    src: url('fonts/pts55f-webfont.eot');
    src: url('fonts/pts55f-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/pts55f-webfont.woff2') format('woff2'),
         url('fonts/pts55f-webfont.woff') format('woff'),
         url('fonts/pts55f-webfont.ttf') format('truetype'),
         url('fonts/pts55f-webfont.svg#pt_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'pt_sansbold';
    src: url('fonts/pts75f-webfont.eot');
    src: url('fonts/pts75f-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/pts75f-webfont.woff2') format('woff2'),
         url('fonts/pts75f-webfont.woff') format('woff'),
         url('fonts/pts75f-webfont.ttf') format('truetype'),
         url('fonts/pts75f-webfont.svg#pt_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'merriweatheritalic';
    src: url('fonts/merriweather-italic-webfont.eot');
    src: url('fonts/merriweather-italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/merriweather-italic-webfont.woff2') format('woff2'),
         url('fonts/merriweather-italic-webfont.woff') format('woff'),
         url('fonts/merriweather-italic-webfont.ttf') format('truetype'),
         url('fonts/merriweather-italic-webfont.svg#merriweatheritalic') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
	font-family:'Merriweather-Regular';
	src: url('fonts/Merriweather-Regular_gdi.eot');
	src: url('fonts/Merriweather-Regular_gdi.eot?#iefix') format('embedded-opentype'),
		url('fonts/Merriweather-Regular_gdi.woff') format('woff'),
		url('fonts/Merriweather-Regular_gdi.ttf') format('truetype'),
		url('fonts/Merriweather-Regular_gdi.svg#Merriweather-Regular') format('svg');
	font-weight: 400;
	font-style: normal;
	font-stretch: normal;
	unicode-range: U+000D-25CA;
}
*{margin:0 auto;padding:0;}
body{background:#f5f5f5;font-family: 'pt_sansregular';}
a{text-decoration:none;}
img{border:none;}
h1,h2,h3,h4,h5,h6{font-weight:normal;font-family: 'pt_sansbold';}
.clear{clear:both;}
.main{
	width:100%;
	float:left;
}
.header{
	width:100%;
	height:115px;
	background:#FFF url(../newsite2015/images/header_bg.jpg) bottom repeat-x;
}
.header_wrapper, .jaagore_container_wrapper{
	max-width:1300px;
	padding:0 10px;
}
.logo{
	width:94px;
	float:left;
	display:block;
	margin-top:7px;
}
.logo img{
	width:100%;
}
.menu-btn{
	width:35px;
	height:35px;
	color: #999;
	text-align: center;
	cursor: pointer;
	float:right;
	display:none;
	margin-top:10px;
	font-size:30px;
	line-height:33px;
}
.menu-btn:hover{
	color: #090;
}




.pushy{
    position: fixed;
    width: 80%;
    height: 100%;
    top: 0;
	right:0px;
    z-index: 9999;
    background: #333332;
    font-size: 0.9em;
    font-weight: bold;
    -webkit-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7);
    -moz-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7);
    box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7);
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}

.pushy a{
    display: block;
    color: #b3b3b1;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-decoration: none;
}

.pushy a:hover{
    background: #1baf5d;
    color: #FFF;
}

/* Menu Movement */

.pushy-left{
    -webkit-transform: translate3d(100%,0,0);
    -moz-transform: translate3d(100%,0,0);
    -ms-transform: translate3d(100%,0,0);
    -o-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0);
}

.pushy-open{
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}

.container-push, .push-push{
    -webkit-transform: translate3d(-80%,0,0);
    -moz-transform: translate3d(-80%,0,0);
    -ms-transform: translate3d(-80%,0,0);
    -o-transform: translate3d(-80%,0,0);
    transform: translate3d(-80%,0,0);
}

/* Menu Transitions */

.pushy, #container, .push{
    -webkit-transition: -webkit-transform .2s cubic-bezier(.16, .68, .43, .99);
    -moz-transition: -moz-transform .2s cubic-bezier(.16, .68, .43, .99);
    -o-transition: -o-transform .2s cubic-bezier(.16, .68, .43, .99);
    transition: transform .2s cubic-bezier(.16, .68, .43, .99);
}

/* Site Overlay */

.site-overlay{
    display: none;
}

.pushy-active .site-overlay{
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    background-color: rgba(0,0,0,0.5);
    -webkit-animation: fade 500ms; 
    -moz-animation: fade 500ms; 
    -ms-animation: fade 500ms;
    -o-animation: fade 500ms;
    animation: fade 500ms;
}

@keyframes fade{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@-moz-keyframes fade{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@-webkit-keyframes fade{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

@-ms-keyframes fade{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}​

@-o-keyframes fade{
    0%   { opacity: 0; }
    100% { opacity: 1; }
}



.header_right{
	float:right;
}
.search_part{
	margin-top:20px;
	float:right;
}
.search{
	width:124px;
	height:33px;
	float:left;
	border:1px solid #e6e6e6;
	overflow:hidden;
	border-radius:5px;
	margin-right:5px;
}
.search input[type="text"]{
	width:90px;
	height:33px;
	float:left;
	border:none;
	outline:none;
	padding:0 5px;
}
.search input[type="submit"]{
	width:24px;
	height:33px;
	border:none;
	cursor:pointer;
	float:left;
	background:url(../newsite2015/images/search_icon.png) no-repeat center;
}
.sign_up, .sign_in{
	width:75px;
	height:35px;
	border-radius:5px;
	color:#666;
	text-align:center;
	line-height:32px;
	display:block;
	float:left;
	font-size:15px;
}
.sign_up:hover, .sign_in:hover{
	background:#1baf5d;
	color:#FFF;
}
.nav{
	float:right;
	margin-top:15px;
}
.nav ul{
	list-style:none;
}
.nav ul li{
	position:relative;
	width:auto;
	margin-left:35px;
	display:block;
	float:left;
}
.nav ul li:hover > a{
	border-bottom:2px solid #1baf5d;
}
.nav ul li > a{
	display:block;
	font-family: 'pt_sansbold';
	color:#666;
	font-size:15px;
	padding-bottom:5px;
	float:left;
	line-height:16px;
}
.nav a:hover{
	border-bottom:2px solid #1baf5d;
}
.sub_nav{
	width:140px;
	height:auto;
	position:absolute;
	right:0;
	top:45px;
	height:auto;
	background:#FFF;
	z-index:1;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	opacity:0;
	visibility:hidden;
	box-shadow:0 0 5px 0px #999;
	border:1px solid #CCC;
	padding:0 10px 10px;
}
.nav ul li:hover .sub_nav{
	opacity:1;
	top:35px;
	visibility:visible;
}
.nav .sub_nav a{
	width:100%;
	float:left;
	display:block;
	float:left;
	color:#333;
	border-bottom:2px solid #FFF;
	margin-top:8px;
	font-size:14px;
}
.nav .sub_nav a:hover{
	border-bottom:2px solid #1baf5d;
}
.footer{
	width:100%;
	margin-top:4%;
}
.footer_wrapper{
	max-width:1300px;
	padding:0 10px 20px;
}
.footer_wrapper h2{
	width:100%;
	float:left;
	font-size:24px;
	line-height:20px;
	color:#000;
	margin-bottom: 10px;
}
.footer_links{
	width:180px;
	float:left;
	margin-top:20px;
	margin-right:2%;
}
.footer_links h3{
	display:block;
	color:#000;
	font-size:14px;
	line-height:14px;
	padding-bottom:5px;
}
.footer_links a{
	display:block;
	color:#000;
	font-size:14px;
	line-height:14px;
	margin-top:10px;
}
.footer_links a:hover{
	color:#28955f;
	text-decoration:underline;
}
.bread_crumbs{
	width:100%;
	margin-top:15px;
}
.bread_crumbs a, .bread_crumbs span{
	display:block;
	float:left;
	font-size:14px;
	color:#999;
	margin-right:5px;
	float:left;
}

.product_show{
	width:100%;
	float:left;
	margin-top:40px;
}
.product_show ul{
	list-style:none;
}
.product_show ul li{
	display:block;
	float:left;
	margin-right:2.6%;
	width:23%;
	position:relative;
}
.product_show ul li img{
	width:100%;
	display:block;
}
.product_show .pro_last{
	margin-right:0px;
}
.product_show_txt{
	width:100%;
	height:100%;
	position:absolute;
	left:0px;
	top:0px;
	text-align:center;
}
.product_show_txt_inner{
	display:table;
	width:100%;
	height:100%;
}
.product_show_txt_inner_cell{
	display:table-cell;
	vertical-align:middle;
	padding:0 10px;
	color:#FFF;
}
.product_show_txt_inner_cell h2{
	font-size:24px;
	line-height:18px;
	text-transform:uppercase;
}
.product_show_txt_inner_cell p{
	font-size:17px;
	line-height:20px;
	margin-top:10px;
}
.product_banner{
	max-width:1300px;
	padding:0 10px;
	height: auto;
    margin-top: 10px;
}
.product_banner img{
	width:100%;
}