﻿@charset "utf-8";
@import url("reset.css");
@import url("bootstrap.css");
@import url(https://fonts.googleapis.com/css?family=Roboto);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);
@import url(https://fonts.googleapis.com/css?family=Asap);
p, h1, h2, h3, a {
	line-height: 150%;
}
a {
	color:#707070;

	text-decoration:underline
}
a:hover {
	color: #f42714;
}
input, textarea, select {
	font-family: 'Roboto', Arial, sans-serif, "微軟正黑體";
	font-size: 15px;
	padding: 3px;
	color: #222;
	line-height: 160%;
	/*避免select長度不一*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
input:focus {
	outline: none;
}
.red {
	color: #F00;
}
.gray {
	color:#777;
}
.italic {
	font-style:italic;
}
.align_r {
	text-align: right;
}
.align_c {
	text-align: center;
}
.clear {
	clear: both;
	height: 0;
	line-height: 0;
}
.refresh {
	display: inline-block;
	width:20px;
	height: 20px;
	text-indent: -9999px;
	background-image: url(../images/refresh.svg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.bold {
	font-weight: bold;
}
.btn {
	padding: 7px 15px;
	font-size: 19px;
	-webkit-appearance: none;/*取消手機預設樣式*/
}
.btnStyle {
	
	background: #f42714;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	border: 0;
}
.btnStyle:hover {
	background: #707070;
	color: #FFF;
}
ol.number{
	margin-left: 20px;
	list-style: decimal;
}
ol.disc{
	margin-left: 20px;
	list-style: disc;
}



ul.number {
	margin-left: 20px;
	list-style: decimal;
}

.nowrap {
	width: auto;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.textStyle {
	border: 1px solid #ddd;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	padding: 8px;
}
.textStyle:focus {
	border: 1px solid #A6C1CE;
	background: #F6FBFE;
}
.maxText {
	width: 100%;
}
.largeText {
	width: 600px;
}
.smallText {
	width: 70px;
}
.midText {
	width: 380px;
}
::-webkit-input-placeholder {
/* WebKit browsers */
 	color:#999;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
 color:#999;
}
.alert {
	border: 1px solid #F2C0B5;
	background: #FFF1F0;
	padding: 10px 15px;
	color: #D85030;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.nowrap {
	width: auto;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.divider {
	width: auto;
	height: 10px;
}

/*---------------------- title img ------------------------*/


/********************* round btn *********************/
#roundBtn{
	z-index: 9;
    height: 56px;
    float: right;
    position: relative;
    right: -5%;
}
#roundBtn li {
	width: auto;
    float: right;
    display: inline-block;
    background: #6b6b6b;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    text-indent: -9999px;
    margin: 10px 5px;
}
#roundBtn li:hover {
	background: #60c1bd;
}
#roundBtn li a {
	display: block;
	width: 36px;
	height: 36px;
}
#roundBtn li a.CH {
	background: url(../images/iconCH.png) no-repeat center center;
}
#roundBtn li a.EN {
	background: url(../images/iconEN.png) no-repeat center center;
}
#roundBtn li a.JP {
	background: url(../images/iconJP.png) no-repeat center center;
}
#roundBtn
ul#roundBtn li a.FB {
	background: url(../images/iconFb.png) no-repeat center center;
}
ul#roundBtn li a.Mail {
	background: url(../images/iconMail.png) no-repeat center center;
}
ul#roundBtn li a.Home {
	background: url(../images/iconHome.png) no-repeat center center;
}
/*---------------------- toTop ------------------------*/

#toTop {
	position: fixed;
	right: 30px;
	bottom: 120px;
	width: 40px;
	height: 40px;
	background: url(../images/icon_top.png) no-repeat rgba(0,0,0,0.5) center center;
	cursor: pointer;
	display: none;
	z-index: 99999;
	text-indent: -9999px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}
#toTop:hover {
	background: url(../images/icon_top.png) no-repeat #f42714 center center;
}

/*-------------------footer-------------------------*/
footer {
	width:100%;
	background: #4c4948;
	padding: 20px 0;
	color: #B7B7B7;
	font-size: 17px;
	text-align: center;
	
}
footer a{ color:#E4E4E4}




/*---Hamburger---*/

#hamburger {
	
  width: 48px;
  height: 44px;
  position: relative;
  right: 14px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#hamburger span {
  display: block;
  position: absolute;
  height: 5px;
  left:4px;
  width: 84%;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;

}

#hamburger span:nth-child(1) {
  top: 8px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#hamburger span:nth-child(2) {
  top: 19px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#hamburger span:nth-child(3) {
  top: 30px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 6px;
  left: 11px;
}

#hamburger.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 34px;
  left: 10px;
}

article.nopadding {
	padding: 0;
	border:#FB0004 1px solid
}
/*-------------table Display--------------------*/
.tableDisplay {
	border-bottom: 0px solid #CCC;
	border-collapse: collapse;
}
.tableDisplay th {
	border-top: 1px dashed #CCC;
	background: #eee;
	padding: 7px;
	text-align:center
}
.tableDisplay th.black {
	background: #FFF8CC;
	font-size: 19px;
	font-weight: bold;
}
.tableDisplay th.blue {
	background: #E8FAFF;
	font-size: 19px;
	font-weight: bold;
}
.tableDisplay th.pink {
	background: #FFE8E8;
	font-size: 19px;
	font-weight: bold;
}
.allborder {
	border: 1px solid #CCC;
}
.tableDisplay td {
	border-top: 1px  dashed #CCC;
	padding: 7px;
}
.tableDisplay .room{ background:#007ebd; text-align:center; color:#fff; padding:3px 0px}

/*-----------------------for PC-----------------------*/
@media screen and (min-width:801px) {
/*-----------------------body-----------------------*/
html, body {
	margin: 0;
	padding: 0;
	color: #222;
	line-height: 160%;
	font-size: 16px;
	font-family: 'Roboto', Arial, sans-serif, "微軟正黑體";
	min-width: 980px;
}
a:target{
    position: relative;
    top: -80px; /*偏移值*/
    display: block;
    height: 0;
    overflow: hidden;
}

/*nav*/
#nav{
	position: fixed;
	top: 0;
	/*left:39%;*/
	display:none;
	width: 100%;
	height: 60px;
	background:rgba(255,255,255,0.8);
	/*box-shadow:0 3px 3px rgba(51,51,51,0.1) ;*/
	
	-webkit-transition:height 0.3s;
	-moz-transition:height 0.3s;
	-o-transition:height 0.3s;
	-ms-transition:height 0.3s;
}

#nav li {
	float: left;


	
	}
#nav li a {
	 display: block;
    line-height: 30px;
    color: black;
    text-decoration: none;
    font-size: 18px;
	color:#000;
	-webkit-transition:line-height 0.3s;
	-moz-transition:line-height 0.3s;
	-o-transition:line-height 0.3s;
	-ms-transition:line-height 0.3s;
	padding:15px 30px
}
#nav li a:hover{
	background:  #f42714;
	color:#FFFFFF;
}
#nav .current {
	background:  #f42714;
	color:#FFFFFF;
}
#nav li.reg a{ background:#f42714; color:#FFFFFF}
#nav li.admin a{ display:none}
/*
.adjust-height{
	height:50px !important
}

.adjust-lineheight{
	line-height: 20px !important;
}
*/
#menuWrapper {
	width: 100%;
	z-index:1;


}
#wrapper{ width:1280px;margin: 0 auto;  }
#LeftWrapper{ width:100%; float:left; }
#LeftWrapperFull{ width:100%; }
#RightWrapper{ width:250px; float:right; margin-top:30px;}
#RightWrapper li{padding:10px; background:#808080; color:#FFFFFF; font-size:130%; margin-bottom:10px}
#RightWrapper li a{ color:#FFFFFF}
#RightWrapper li:hover{ color:#FFFFFF; background:#9A9A9A}
#RightWrapper li.greenD{ background:#106636;}
#RightWrapper li.greenD:hover{background:#2d985c;}
#RightWrapper li.greenL{ background:#21b3ca;}
#RightWrapper li.greenL:hover{ background:#1d9b93;}
#RightWrapper li.greenB{ background:#1d9b93;}
#RightWrapper li.greenB:hover{ background:#42c7bf;}
#RightWrapper li.Blue{ background:#21b3ca;}
#RightWrapper li.Blue:hover{background:#77bcc7;}
#RightWrapper li.Yellow{background:#f2b036;}	
#RightWrapper li.Yellow:hover{background:#fac76a;}



#logos li{ width:120px; float:left;margin-right:3px; padding:0px; text-align:center;}
#logos li img{ width:100%; }
/*--------------sticky-------------------*/
#sidebar.sticky {
	float: none;
	position: fixed;
	top: 0;
	z-index: 6;
	left: auto;
	width: 250px;
	
}
/*----------------- Article -------------------------*/
article {
	width: 90%;
	margin: 0 auto;
	padding: 20px 0;
	border: 0px solid #f00;

}

.slogan{ font-size: 50px;
	font-weight: normal;
	text-align:center ;
	padding-bottom: 10px;
	color:#000000; 
	font-family: 'Asap', sans-serif;}
article h1 {
	font-size: 40px;
	font-weight: normal;
	text-align:center;
	border-bottom: 2px solid #f42714;
	padding-bottom: 10px;
	color:#000000;
	
}
article h1 span {
	color: #f42714;
}
article h2 {
	font-size: 25px;
	font-weight: normal;

	
}
article h3 {
	color: #2851a1;
	font-size: 22px;
	font-weight: normal;
}
article h4 {
	color: #f42714;
	font-size: 20px;
	font-weight: normal;
}

#profileList li{ padding:10px 0px; }
#profileList li h5{ color:#2ca339; font-size:110%; margin:10px 0px; padding:0px; }
.left {
	width: 48%;
	float: left;
}
.right {
	width: 48%;
	float: right;
}
.googleMapIndex {
	width: 100%;
	height: 360px;
	vertical-align: bottom;
}
/*----------------- index intro -------------------------*/
#banner {
	background-image: url(../images/banner/main.jpg);
	background-repeat: no-repeat;
	max-width: 1280px;
	margin:20px auto 0px auto;
	height:550px;

}
#intro{}
#introRight {
	width: 51%;
	float: right;
	color: #fff;
	font-size: 15px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	padding-top:15%;
}
#introRight h1 {
    width: 94%;
	height: 0;
	margin: 0 auto;
	padding-top:42%;
	padding-bottom:8%;
	background-image: url(../images/logo.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center center;
	text-indent: -9999px;
	border: 0;
}
#introRight h2 {
	font-size: 23px;
	font-weight: normal;
}
#introRight p {
	font-size: 17px;
	line-height:28px;
}
/*----------------- index visit -------------------------*/
div#visit {
	min-width: 980px;
}
/*----------------- index exhibit -------------------------*/
div#exhibit {
	background: #EEE;
	min-width: 980px;
}
#exhibit .left {
	width: 98%;
	float: left;
}
.list {
}
.list li {
	margin-bottom: 36px;
}
.list li:last-child {
	margin-bottom: 0;
}
.list li span {
	display: inline-block;
	border-radius: 5px;
	padding: 5px 10px;
	margin-bottom: 5px;
	background: #534B4B;
	color: #fff;
	float:left;
	margin-right:12px
}
/*-----------------Exhibitor 有LOGO----------------*/
div#exhibitor {

}


/*----------------- index contact -------------------------*/

div#contact {
	
	
}
div#contact .right{ width:50%;} 
.NoShowInPC {
	display: none;
}
/*-------------table Display--------------------*/
.tableDisplay {
	width:100%;
	border-collapse: collapse;
}
.tableDisplay th {

	/*padding: 3px 8px 3px 3px;*/
	text-align:center !important
}
/*-------------calendar--------------------*/
#calendar {
}
#calendar li {
	padding: 20px 0;
	background: #ededed;
	width: 80%;
	margin: 0 auto;
	display: block;
	vertical-align: middle;
	font-size: 15px;
	text-indent: 40px;
}
#calendar li span {
	font-size: 25px;
	margin-right: 15px;
	color: #2851a1
}
.navbar-header h1 a { display:none}
.navbar-header h2 a { display:none}
.navbar-header h3 a { display:none}

/*-----------------------css table----------------------*/
.css-table {
	display: table;
	border-top: 1px solid #CCC;
}
.css-table .thead {
	display: table-header-group;
}
.css-table .tbody {
	display: table-row-group;
}
.css-table .tr {
	display: table-row;
}
.css-table .th, .css-table .td {
	display: table-cell;
	padding: 10px;
	border-bottom: 1px solid #CCC;
	vertical-align: middle;
}
.css-table .th {
	background: #eee;
}
.css-table .center {
	text-align: center;
}
.logoList{ display:block; width:1250px; margin:0 auto;}
.logoList li{ float:left; margin:3px; height:120px; color:#f42714 }
.logoList li img{ width:230px;}
.logoList h2{ width:auto; display:table-cell; float:left; font-size:110%; line-height:120px; }
}
/*------------------for mobile------------------------*/
@media screen and (max-width:800px) {
/*-----------------------body-----------------------*/

html {
	width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: none;
}
body {
	color: #222;
	line-height: 160%;
	font-size: 18px;
	font-family: 'Roboto', Arial, sans-serif, "微軟正黑體";
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	width: 100%;
	min-height: 100%;
}

.btn {
	-webkit-appearance: none;/*取消手機預設樣式*/
}
.alignCenterMobile {
	text-align: center
}
input, textarea, select {
	font-size: 18px;
}
.picForMobile {
	width: 100%;
	height: auto;
}
.logo{
	margin-top:10%;
	width:100%
}
/*------------------menu------------------------*/
#menuWrapper {
	width: 100%;
	
}
#wrapper{ width:98%; margin: 0px auto  0 auto;  }
#LeftWrapper{ width:100%; }
#LeftWrapperFull{ width:100%; float:left; }
#RightWrapper{ width:100%; margin-top:20px; }
#RightWrapper li{padding:10px; background:#808080; color:#FFFFFF; font-size:120%; margin-bottom:5px; text-align:center}
#RightWrapper { display:none}
#RightWrapper li d a{ color:#FFFFFF}
#RightWrapper li:hover{ color:#FFFFFF; background:#9A9A9A}
#RightWrapper li.greenD{ background:#106636;}
#RightWrapper li.greenD:hover{background:#2d985c;}
#RightWrapper li.greenL{ background:#f42714;}
#RightWrapper li.greenB{ background:#1d9b93;}
#RightWrapper li.Blue{ background:#21b3ca;}
#RightWrapper li.Yellow{background:#f2b036;}	
#RightWrapper li.Yellow:hover{background:#fac76a;}



#logos li{ width:120px; float:left;margin-right:3px; padding:0px}
#logos li img{ width:100%;}

/*------------------menu------------------------*/

.navbar-header{
	    
		position: relative;
		background:rgba(0, 0, 0, 0.8);
	
}

.navbar-header h1 a {
	position: absolute;
	top: 0;
	left: 20px;
	z-index: 999;
	display: block;
	width:250px;
	height: 60px;
	line-height: 60px;
	text-indent: 185px;
	color: #fff;
	font-weight: normal;
	font-size: 22px;
	text-decoration: none;
	font-family: Oswald;
	background: url(../images/titleM.svg) no-repeat center center;
	background-position: left center;
	background-size:auto 75% ;
	background-repeat: no-repeat;
	

	
}



.navbar-header h2 a {
	position: absolute;
	top: 13px;
	right:80px;
	z-index: 9999;
	display: block;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    text-indent:-9999px ;
	width: 36px;
	height: 36px;
	background: url(../images/iconEN.png) no-repeat center center #AFAFAF;
	}
.navbar-header h3 a {
	position: absolute;
	top: 13px;
	right:120px;
	z-index: 9999;
	display: block;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    text-indent:-9999px ;
	width: 36px;
	height: 36px;
	background: url(../images/iconMail.png) no-repeat center center #AFAFAF;
	}

.nav{
	text-align:center;
	/*background-color:rgba(76,73,72,0.9);*/
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	color:#ffffff;

	
}

.navbar-nav li:hover {
  /*background-color:rgba(238,176,51,1)*/
  color:#f42714
}

.nav li:hover a{
	color:#f42714;
}
.navbar-nav > li{ width:100%; float:left; padding:10px 0px;background-color:rgba(0,0,0,0.7); }
.navbar-nav > li > a {
	color:#fff;
	padding:10px 0px;
	text-decoration:none

}

.gray {
	color: #666;
}
#menu {
	width: 70%;
	background: #666;
	position: absolute;
	top: 80px;
	right: 0;
	display: none;
}
#menu li {
	border-bottom: 1px solid #555;
}
#menu li:last-child {
	border-bottom: none;
}
#menu li a {
	color: #fff;
	display: block;
	text-decoration: none;
	padding: 10px 0 10px 20px;
}
#menu li a:hover {
	color: #fff;
	background-color: #5A255D;
}
/*----------------- Article -------------------------*/
article {
	padding:20px 20px;
	
}
.slogan{ font-size: 28px;
	font-weight: bold;
	text-align:center ;
	padding-bottom: 10px;
	color:#000000;
	font-family: 'Asap', sans-serif;}
article h1 {
	font-size:31px;
	font-weight: normal;
	text-align: center;
	border-bottom: 2px solid #f42714;
	padding-bottom: 10px;
	line-height: 130%;
}
article h1 span {
	color: #f42714; font-size:25px;
	line-height: 130%;
}
article h2 {
	font-size: 25px;
	font-weight: normal;

	
}
article h3 {
	color: #2851a1;
	font-size: 22px;
	font-weight: normal;

}
article h4 {
	color: #f42714;
	font-size: 20px;
	font-weight: normal;
}
#profileList li{ padding:10px 0px; }
#profileList li h5{ color:#2ca339; font-size:110%; margin:10px 0px; padding:0px; }
.right { margin-top:25px;
}
.googleMapIndex {
	width: 100%;
	height: 300px;
	vertical-align: bottom;
}
/*----------------- index intro -------------------------*/
#banner {
	background-image: url(../images/banner/mainM.jpg);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	color:#FFFFFF;
	padding:5% 0% 0% 0%;
	margin-top:0px;
	height:230px
}

article #introRight h1 {
	width:96%;
	height: 88%;
	margin: 1em auto 0 auto;
	padding-bottom:14%;
	padding-top:24%;
	background-image: url(../images/logo.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center center;
	text-indent: -9999px;
	border: 0;
}
#introRight h2 {
	font-size: 20px;
	font-weight: normal;
}
#introRight p {
	font-size:15px;
	line-height:25px;
}
/*----------------table-------------------*/
.table-1 td, .table-1 th{
	padding:8px
}
.table-1 tr{
	border-bottom:1px solid #cecece
}
.table-1 th{
	border-top:1px solid #cecece
}

/*-----------------Exhibitor---------------*/
#exhibitor {
	background-color:#EEE;
}
#exhibitor li {
	display: block;
	overflow: auto;
	padding: 10px 0;
	border-bottom: 1px solid #DDD;
}
#exhibitor li h3 {
	font-size: 18px;
}
#exhibitor li div.exhiLeft {
	width: 120px;
	height: 90px;
	float: left;
	border: 1px solid #ddd;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background: #fff;
}
#exhibitor li div.exhiRight {
	width: auto;
	margin-left: 135px;
}
#exhibitor li div h3 {
	line-height:26px;
	vertical-align: text-top;
	margin-top:0px;
}
#exhibitor li p {
	width: auto;
	
}

/*----------------- index exhibit -------------------------*/
div#exhibit {
	background: #EEE;
}
.list {
}
.list li {
	margin-bottom: 20px;
}
.list li:last-child {
	margin-bottom: 0;
}
.list li span {
	display: inline-block;
	border-radius: 5px;
	padding: 5px 10px;
	margin-bottom: 5px;
	background: #534B4B;
	color: #fff;
}


	
/*-------------------titlt img--------------------*/
#title {
	width:300px;
	left:10px;
	background: url(../images/titleM.svg) no-repeat center center;
	top: 0px;
	z-index:9999;
	display:none
}

#En {
	right:60px;
    top:10px;
	width: 40px;
	height: 40px;
	background: url(../images/en.svg) no-repeat center center #4c4948;
	background-size:cover;
	cursor: pointer;
	z-index:9999;
	text-indent: -9999px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}
#En:hover {background: url(../images/en.svg) no-repeat center center #efb134;}
/*------------------toTop------------------------*/

#toTop {
	right: 10px;
	bottom: 150px;
	font-size: 13px;
}
.NoShowInMobile{
	display:none
}

.imgMobile{ width:100%;}

/*-------------calendar--------------------*/
#calendar {
}
#calendar li {
	padding: 10px;
	background: #ededed;
	width: 100%;
	margin: 0 auto;
	display: block;
	vertical-align: middle;
	font-size: 100%;
}
#calendar li span {
	font-size: 150%;
	margin-right: 15px;
	color: #2851a1
}
#calendar img {
	width: 100px;
	height: 50px
}
#roundBtn{
	z-index: 9;
    height: 56px;
    float: right;
    position: relative;
    right: -15%;
}
#roundBtn{ display:none}
/*---------------moble contact bg ---------------*/
div#contact {

}
.maxText {
	width: 100%;
}
.largeText {
	width: 100%;
}
.smallText {
	width: 100px;
}
.midText {
	width: 100%;
}
/*--------------- css table -----------------*/
.css-table {
}
.css-table .thead {
	display: none;
}
.css-table .tr {
	border: 1px solid #ddd;
	margin-bottom: 5px;
	padding: 10px;
	border-radius: 3px;
	display: block;
}
.css-table .th {
	border: currentColor;
	width: 100%;
	display: inline-block;
}
.css-table .td {
	border: currentColor;
	width: 100%;
	display: inline-block;
}
.css-table .tdHeader {
	color: #e66520;
	font-size: 18px;
}
.logoList{  width:100%;}
.logoList li{  margin:5px 3px; text-align:center;color:#f42714; width:48%; float:left}
.logoList li img{ width:100%}
.logoList h2{ clear:both; width:100%; font-size:110%; text-align:center;  padding-top:10px;}
} 
