@charset "UTF-8";
/* CSS Document */

/* Set-up */

header, section, footer, aside, nav, article, figure, hgroup {
	display: block;
}

html {
	background-color: #FFF;
/*	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: moz-none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-focus-ring-color: rgba(0, 0, 0, 0);
	-webkit-text-size-adjust: none;*/
}
::-webkit-scrollbar  
{  
    width: 6px;  
    height: 6px;  
    background-color: #F5F5F5;  
}  
  
/*定义滚动条轨道 内阴影+圆角*/  
::-webkit-scrollbar-track  
{  
/*    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);  */
    background-color: #fff;  
}  
  
/*定义滑块 内阴影+圆角*/  
::-webkit-scrollbar-thumb  
{  
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);  
    background-color: #999;  
}  

body {
	font-family:"黑体", tahoma; font-family:Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #141414;
	line-height: 1.6;
	margin: 0;
}

h1, h2, h3, h4, h5, h6 {
	letter-spacing: 1px;
	font-weight: normal;
	text-transform: uppercase;
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
}

li {
	list-style-type: none;
}

p {
	margin: 0;
}

a:link, a:visited {
	color: #141414; border:none;
	text-decoration: none;
	transition: color .5s;
	-moz-transition: color .5s;
	-webkit-transition: color .5s;
}

a:active, a:hover {
	color: #f08300;
	text-decoration: none;
}

img,a img {
	border: none;
}

form {
	margin-bottom: 0;
}

.clear {
	clear: both;
}

.hidden {
	display: none;
}

.bold {
	font-weight: bold;
}

/* Animation */

.animate-fade-in-1 {
	animation: fadein 1s;
    -moz-animation: fadein 1s;
    -webkit-animation: fadein 1s;
}

.animate-fade-in-2 {
	animation: fadein 2s;
    -moz-animation: fadein 2s;
    -webkit-animation: fadein 2s;
}

.animate-fade-out-1 {
	animation: fadeout 1s;
    -moz-animation: fadeout 1s;
    -webkit-animation: fadeout 1s;
}

.animate-fade-out-2 {
	animation: fadeout 2s;
    -moz-animation: fadeout 2s;
    -webkit-animation: fadeout 2s;
}

.animate-left-1 {
	transition: left 1s;
	-moz-transition: left 1s;
	-webkit-transition: left 1s;
}

.animate-right-1 {
	transition: right 1s;
	-moz-transition: right 1s;
	-webkit-transition: right 1s;
}

.animate-width-5 {
	transition: width 5s;
	-moz-transition: width 5s;
	-webkit-transition: width 5s;
}

.animate-width-05 {
	transition: width .5s;
	-moz-transition: width .5s;
	-webkit-transition: width .5s;
}

.animate-margin-top-05 {
	transition: margin-top .5s;
	-moz-transition: margin-top .5s;
	-webkit-transition: margin-top .5s;
}

.animate-margin-left-05 {
	transition: margin-left .5s;
	-moz-transition: margin-left .5s;
	-webkit-transition: margin-left .5s;
}

.animate-top-1 {
	transition: top 1s;
	-moz-transition: top 1s;
	-webkit-transition: top 1s;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@-moz-keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Template */

/* Header */

header {
	position: fixed; z-index:99;
	width: 100%;
	height: 55px;
	background-color: #332c2b;
	transition: background-color .5s;
	-moz-transition: background-color .5s;
	-webkit-transition: background-color .5s;
	top: 0;
}

#header-border-top {
/*	background-color: #969696;
	position: fixed;
	width: 100%;
	height: 3px;
	top: 0;*/
}

a#header-logo {
	position: absolute;
	top: 0px;
	left: 50%;
	margin-left: -70px;
}
@media (max-width: 768px) {
a#header-logo { pointer-events: none;}
}
a#header-logo img {
	height: 55px;
	width: auto;
}


.foot-logo {
	position: fixed;
	width: 100%;
	height: 55px;
	background-color: #332c2b;
	transition: background-color .5s;
	-moz-transition: background-color .5s;
	-webkit-transition: background-color .5s;
	bottom: 0;
}
.foot-logo img { height:55px; float:right; margin-right:6% }
@media (max-width: 768px) {
.foot-logo img { margin-right:0 }
}

.left-logo {
	position: fixed;
	left:0px;
	top:0px
}
.left-logo img {  }



#header-menu:link, #header-menu:visited, a#header-contact:link, a#header-contact:visited, a#header-shop:link, a#header-shop:visited {
	position: absolute;
	line-height: 1;
	top: 20px;
	left: 15px;
}

#header-menu img { height:24px;}

.menu-text{
	position: absolute;
	line-height: 1;
	font-size: 12px;
	top: 20px;
	left: 15px;
}	
.menu-text a { margin-right:3px; padding:1px 5px }
.menu-text .cur { background:#b8b8b8; color:#fff }

.nav_box { right:15px; top:0px; line-height: 1; position:absolute}
.nav_box a { margin:0px 8px; height:55px; line-height:55px; font-size:14px; color:#c5cbd0; position:relative; display:block; float:left }
.nav_box a { margin:0px 8px;font-size:14px; color:#c5cbd0 }
.nav_box a.current { color:#fff }
.nav_box a span { font-family:Arial, Helvetica, sans-serif  }
@media (max-width: 960px) {
.menu-text,.nav_box { display:none }
}
/*-------- 下拉菜单 --------------*/
.dropMenu { position:absolute; top: 56px !important; z-index:100; width:110px; visibility: hidden; background-color: rgba(255,255,255,.9); background:#eee }
.dropMenu li { height:26px; line-height:26px; font-size:13px; padding:1px 10px; overflow:hidden  }
#dropmenu3 { text-align: center; width:90px }
.dropMenu a { display: block; color:#555;}
.dropMenu a:hover {	color:#000; }


a#header-contact:link, a#header-contact:visited  {
left: auto;
right: 15px;
}

a#header-contact img {
	height: 24px;
	display: none;
}

#menu-lang {
	display: none;
}

span#menu-icon {
	width: 20px;
	height: 9px;
	border-bottom: 3px solid #666666;
	border-top: 3px solid #666666;
	display: none;
}

span#menu-icon span {
	width: 20px;
	height: 3px;
	margin-top: 3px;
	background-color: #666666;
	display: block;
}

/* Nav */

nav {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #000;
	background-color: rgba(0, 0, 0, 0.75);
	display: none;
	top: 0;
	left: 0;
}

#nav-wrapper {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

#nav-wrapper a {
	letter-spacing: 1px;
	line-height: 1;
	font-size: 24px;
	font-weight: 300;
	color: #FFF;
	display: inline-block;
	padding: 50px;
}

#nav-wrapper span {
	width: 1px;
	height: 240px;
	display: inline-block;
	background-color: #FFF;
	vertical-align: middle;
}

/* Contact */

#contact-container {
	position: fixed; z-index:100;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	display: none;
	top: 0;
	left: 0;
	overflow: hidden;
}

a#contact-logo {
	position: fixed;
	top: 18px;
	left: 50%;
	margin-left: -70px;
}

a#contact-logo img {
	height: 28px;
	width:  auto;
}

a#contact-close {
	position: fixed;
	top: 15px;
	right: 18px;
}

a#contact-close img {
	height: 24px;
	width: 24px;
}

#contact-wrapper {
	width: 960px;
	position: absolute;
	left: 50%;
	top: 10%;
	margin-left: -480px;
	height: 240px;
}

a#monolith-credit {
    line-height: 1;
    right: 15px;
    position: fixed;
    bottom: 15px;
    color: #FFF;
    font-size: 11px;
}

.contact-column {
	height: 240px;
	float: left;
	display: table;
	border-right: 1px solid #FFF;
}

#contact-column-3 {
	border: none;
}

.contact-column-text {
	display: table-cell;
}

.contact-column-text h4 {
	padding: 50px;
	text-align: left;
	color: #FFF;
	line-height: 1;
	padding-bottom: 0;
}

.contact-column-text p {
	padding: 20px;
	text-align: left;
	color: #FFF; font-size:16px
}
.contact-column-text a {
	color: #c5cbd0;
}
.contact-column-text a.current {
	color: #fff;
}
.contact-column-text a span { font-family:Arial, Helvetica, sans-serif}
.contact-column-text ul li { line-height:40px; padding-left:80px }

.contact-column-text a img {
	height: 12px;
	vertical-align: -1px;
	margin-right: 5px;
}

#careers-container, #contact-more-container {
	position: absolute;
	width: 100%;
	height: 100%;
	right: -100%;
	-webkit-box-shadow: -5px 0px 5px 1px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: -5px 0px 5px 1px rgba(0, 0, 0, 0.15);
	box-shadow: -5px 0px 5px 1px rgba(0, 0, 0, 0.15);
	top: 0;
}

#careers-menu-wrapper, #contact-more-map-wrapper {
	position: absolute;
	width: 50%;
	height: 100%;
	background-color: #666666;
	display: table;
}

#contact-more-map-wrapper iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 0;
}

#careers-menu {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

#careers-menu p {
	color: #FFF;
	text-align: left;
	display: inline-block;
}

#careers-menu p span {
	letter-spacing: 1px;
	font-family: 'Gotham A', 'Gotham B', Helvetica, Arial, Sans-Serif;
	font-size: 11px;
	padding-bottom: 25px;
	display: inline-block;
}

#careers-menu a {
	color: #FFF;
	text-transform: uppercase;
}

#career-wrapper, #contact-more-text-container {
	position: absolute;
	width: 50%;
	height: 100%;
	background-color: #FFF;
	margin-left: 50%;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	overflow-x: hidden;
}

#contact-more-text-wrapper {
	display: table;
	position: absolute;
	width: 100%;
	height: 100%;
}

a#careers-close, a#contact-more-close {
	position: fixed;
	top: 15px;
	right: 15px;
	display: none;
}

a#careers-close img, a#contact-more-close img {
	height: 16px;
	width: 16px;
}

#career-wrapper p, #contact-more-text-container p {
	padding: 50px;
	display: none;
	text-align: left;
	display: inline-block;
}

#career-wrapper p span, #contact-more-text-container p span {
	letter-spacing: 1px;
	font-family: 'Gotham A', 'Gotham B', Helvetica, Arial, Sans-Serif;
	text-transform: uppercase;
	font-size: 11px;
}

#contact-more-text {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

/* Sub-nav */

#sub-nav {
	position: fixed;
	width: 100%;
	height: 40px;
	top:50px;
	text-align: center;
	background-color: #fff; 
}
#sub-nav a.current { color:#f08300 !important }

@media (max-width: 960px) {
#sub-nav { border-bottom:1px solid #ddd; height:auto; padding-bottom:15px}
}


#sub-nav a:link, #sub-nav a:visited {
	line-height: 1;
	font-size: 12px;
	margin-top: 15px;
	display: inline-block;
	margin-left: 1%;
	margin-right: 1%;
	color: #666666;
	letter-spacing: 1px;
	line-height: 1;
	text-transform: uppercase;
}

#sub-nav a:active, #sub-nav a:hover {
	color: #f08300;
}

#sub-nav a#sub-nav-mobile {
	display: none;
	color: #f08300;
}

#sub-nav a#sub-nav-mobile img {
	height: 8px;
	margin-left: 5px;
}

.wrapper { width:90%; margin:80px auto 30px auto; line-height:1.8 }
.dede_pages { padding:10px; text-align:center; font-size:13px; }
.dede_pages li { display:inline-block; margin:0px 5px; }
.dede_pages li.active { color:#999 }

