@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300,700);
body {
  background: #e5e5e5;
  color: #555;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #666;
  font-weight: 300;
}
a {
  color: #52b6ec;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
.btn {
  font-weight: 300;
  border: 0;
}
.btn.btn-primary {
  background-color: #52b6ec;
}
.btn.btn-primary:hover,
.btn.btn-primary.active {
  background-color: #1586c3;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
a:hover,
a:focus {
  color: #80c9f1;
  text-decoration: none;
  outline: none;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 99999;
}
#main-slider {
  /* background-image: url(../images/slider-bg-fan.jpg); */
  background-attachment: fixed;
  background-size: 1140px;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 140px 0;
  color: #fff;
}
#main-slider .item {
  -moz-transition: opacity ease-in-out 500ms;
  -o-transition: opacity ease-in-out 500ms;
  -webkit-transition: opacity ease-in-out 500ms;
  transition: opacity ease-in-out 500ms;
  left: 0 !important;
  opacity: 0;
  top: 0;
  position: absolute;
  width: 100%;
  top: -15px;
  height: 700px;
  display: block !important;
  z-index: 1;
  text-align: center;
}
#main-slider .item:first-child {
  top: auto;
  position: relative;
}
#main-slider .item.active {
  opacity: 1;
  -moz-transition: opacity ease-in-out 500ms;
  -o-transition: opacity ease-in-out 500ms;
  -webkit-transition: opacity ease-in-out 500ms;
  transition: opacity ease-in-out 500ms;
  z-index: 2;
}
#main-slider .item.active h1 {
  -webkit-animation: scaleUp 400ms;
  -moz-animation: scaleUp 400ms;
  -o-animation: scaleUp 400ms;
  -ms-animation: scaleUp 400ms;
  animation: scaleUp 400ms;
}
#main-slider .prev,
#main-slider .next {
  position: absolute;
  top: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  display: inline-block;
  margin-top: -230px;
  font-size: 24px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 4px;
  z-index: 5;
}
#main-slider .prev:hover,
#main-slider .next:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#main-slider .prev {
  left: 10px;
}
#main-slider .next {
  right: 10px;
}
#main-slider h1 {
  font-size: 68px;
  text-shadow: 0 3px rgba(0, 0, 0, 0.1);
  color: #fff;
}
#contact .box {
  background-color: #222;
  color: #999;
}
#contact .box h1,
#contact .box h2,
#contact .box h3 {
  color: #fff;
}
#contact .box a {
  color: #666;
}
#contact .box a:hover {
  color: #52b6ec;
}
#contact .box input[type="text"],
#contact .box input[type="email"],
#contact .box textarea {
  background-color: #111;
  border: 0;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
}
#contact .box input[type="text"]:focus,
#contact .box input[type="email"]:focus,
#contact .box textarea:focus {
  background-color: #000;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.box {
  padding: 50px 30px;
  background: #fff;
  border-bottom: 1px solid #e9e9e9;
  position: relative;
}
.box.first {
  margin-top: -480px;
  border-radius: 5px 5px 0 0;
}
.box.last {
  border-radius: 0 0 5px 5px;
}
.box h2 {
  padding: 10px 30px;
  display: inline-block;
  border-radius: 4px;
  position: relative;
  margin-bottom: 30px;
  font-size: 48px;
}

/* for what's new */
#news .box {
  background: #f3f3f3;
}
.news-items,
.news-filter {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-items {
  margin-right: -20px;
}
.news-filter {
  margin-bottom: 50px;
  text-align: center;
}
.news-filter > li {
  display: inline-block;
}
.news-items > li {
  float: left;
  padding: 0;
  margin: 0;
}
.news-items.col-2 > li {
  width: 50%;
}
.news-items.col-3 > li {
  width: 33%;
}
.news-items.col-4 > li {
  width: 25%;
}
.news-items.col-5 > li {
  width: 20%;
}
.news-items.col-6 > li {
  width: 16%;
}
.news-item .item-inner {
  margin: 0 20px 20px 0;
  text-align: center;
  background: #fff;
  padding: 10px;
  border-bottom: 1px solid #e1e1e1;
}
.news-item img {
  width: 100%;
}
.news-item .news-image {
  position: relative;
}
.news-item h5 {
  margin: 0;
  padding: 10px 0 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  vertical-align: middle;
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}
.news-item .overlay .preview {
  position: relative;
  top: 50%;
  display: inline-block;
  margin-top: -20px;
}
.news-item:hover .overlay {
  opacity: 1;
}
/* end of for what's new */

/* for call for special sessions */
#ss .box {
  background: #f3f3f3;
}
.ss-items,
.ss-filter {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ss-items {
  margin-right: -20px;
}
.ss-filter {
  margin-bottom: 50px;
  text-align: center;
}
.ss-filter > li {
  display: inline-block;
}
.ss-items > li {
  float: left;
  padding: 0;
  margin: 0;
}
.ss-items.col-2 > li {
  width: 50%;
}
.ss-items.col-3 > li {
  width: 33%;
}
.ss-items.col-4 > li {
  width: 25%;
}
.ss-items.col-5 > li {
  width: 20%;
}
.ss-items.col-6 > li {
  width: 16%;
}
.ss-item .item-inner {
  margin: 0 20px 20px 0;
  text-align: center;
  background: #fff;
  padding: 10px;
  border-bottom: 1px solid #e1e1e1;
}
.ss-item img {
  width: 100%;
}
.ss-item .ss-image {
  position: relative;
}
.ss-item h5 {
  margin: 0;
  padding: 10px 0 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ss-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  vertical-align: middle;
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}
.ss-item .overlay .preview {
  position: relative;
  top: 50%;
  display: inline-block;
  margin-top: -20px;
}
.ss-item:hover .overlay {
  opacity: 1;
}
/* end of for call for special sessions */

/* for call for invitation letter */
#invitation-letter .box {
  background: #f3f3f3;
}
.invitation-letter-items,
.invitation-letter-filter {
  list-style: none;
  padding: 0;
  margin: 0;
}
.invitation-letter-items {
  margin-right: -20px;
}
.invitation-letter-filter {
  margin-bottom: 50px;
  text-align: center;
}
.invitation-letter-filter > li {
  display: inline-block;
}
.invitation-letter-items > li {
  float: left;
  padding: 0;
  margin: 0;
}
.invitation-letter-items.col-2 > li {
  width: 50%;
}
.invitation-letter-items.col-3 > li {
  width: 33%;
}
.invitation-letter-items.col-4 > li {
  width: 25%;
}
.invitation-letter-items.col-5 > li {
  width: 20%;
}
.invitation-letter-items.col-6 > li {
  width: 16%;
}
.invitation-letter-item .item-inner {
  margin: 0 20px 20px 0;
  text-align: center;
  background: #fff;
  padding: 10px;
  border-bottom: 1px solid #e1e1e1;
}
.invitation-letter-item img {
  width: 100%;
}
.invitation-letter-item .invitation-letter-image {
  position: relative;
}
.invitation-letter-item h5 {
  margin: 0;
  padding: 10px 0 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.invitation-letter-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  vertical-align: middle;
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}
.invitation-letter-item .overlay .preview {
  position: relative;
  top: 50%;
  display: inline-block;
  margin-top: -20px;
}
.invitation-letter-item:hover .overlay {
  opacity: 1;
}
/* end of for call for invitation letter */

/* for call for events */
#events .box {
  background: #f3f3f3;
}
.events-items,
.events-filter {
  list-style: none;
  padding: 0;
  margin: 0;
}
.events-items {
  margin-right: -20px;
}
.events-filter {
  margin-bottom: 50px;
  text-align: center;
}
.events-filter > li {
  display: inline-block;
}
.events-items > li {
  float: left;
  padding: 0;
  margin: 0;
}
.events-items.col-2 > li {
  width: 50%;
}
.events-items.col-3 > li {
  width: 33%;
}
.events-items.col-4 > li {
  width: 25%;
}
.events-items.col-5 > li {
  width: 20%;
}
.events-items.col-6 > li {
  width: 16%;
}
.events-item .item-inner {
  margin: 0 20px 20px 0;
  text-align: center;
  background: #fff;
  padding: 10px;
  border-bottom: 1px solid #e1e1e1;
}
.events-item img {
  width: 100%;
}
.events-item .events-image {
  position: relative;
}
.events-item h5 {
  margin: 0;
  padding: 10px 0 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.events-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  vertical-align: middle;
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}
.events-item .overlay .preview {
  position: relative;
  top: 50%;
  display: inline-block;
  margin-top: -20px;
}
.events-item:hover .overlay {
  opacity: 1;
}
/* end of for call for events */

/* for call for submission-guidelines */
#submission-guidelines .box {
  background: #f3f3f3;
}
.submission-guidelines-items,
.submission-guidelines-filter {
  list-style: none;
  padding: 0;
  margin: 0;
}
.submission-guidelines-items {
  margin-right: -20px;
}
.submission-guidelines-filter {
  margin-bottom: 50px;
  text-align: center;
}
.submission-guidelines-filter > li {
  display: inline-block;
}
.submission-guidelines-items > li {
  float: left;
  padding: 0;
  margin: 0;
}
.submission-guidelines-items.col-2 > li {
  width: 50%;
}
.submission-guidelines-items.col-3 > li {
  width: 33%;
}
.submission-guidelines-items.col-4 > li {
  width: 25%;
}
.submission-guidelines-items.col-5 > li {
  width: 20%;
}
.submission-guidelines-items.col-6 > li {
  width: 16%;
}
.submission-guidelines-item .item-inner {
  margin: 0 20px 20px 0;
  text-align: center;
  background: #fff;
  padding: 10px;
  border-bottom: 1px solid #e1e1e1;
}
.submission-guidelines-item img {
  width: 100%;
}
.submission-guidelines-item .submission-guidelines-image {
  position: relative;
}
.submission-guidelines-item h5 {
  margin: 0;
  padding: 10px 0 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.submission-guidelines-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  vertical-align: middle;
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}
.submission-guidelines-item .overlay .preview {
  position: relative;
  top: 50%;
  display: inline-block;
  margin-top: -20px;
}
.submission-guidelines-item:hover .overlay {
  opacity: 1;
}
#submission-guidelines .subbox {
  background: #fff;
  list-style: none;
  margin: 0 0 20px;
  text-align: center;
  padding: 0;
  border-bottom: 1px solid #e1e1e1;
}
#submission-guidelines .subbox li {
  padding: 10px 0;
  margin: 0 15px;
  border-bottom: 1px dashed #eee;
}
#submission-guidelines .subbox li.subbox-name {
  padding: 15px 0;
  font-size: 18px;
  font-weight: 700;
}
#submission-guidelines .subbox li.subbox-price {
  color: #666;
  padding: 15px 0;
  font-size: 48px;
}
#submission-guidelines .subbox li.subbox-action {
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 0;
}
#submission-guidelines .subbox.featured {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
#submission-guidelines .subbox.featured .subbox-price {
  color: #fff;
  background-color: #52b6ec;
  border-bottom-color: #52b6ec;
  margin: 0;
}
/* end of for call for submission-guidelines */

/* for call for awards */
#awards .box {
  background: #f3f3f3;
}
.awards-items,
.awards-filter {
  list-style: none;
  padding: 0;
  margin: 0;
}
.awards-items {
  margin-right: -20px;
}
.awards-filter {
  margin-bottom: 50px;
  text-align: center;
}
.awards-filter > li {
  display: inline-block;
}
.awards-items > li {
  float: left;
  padding: 0;
  margin: 0;
}
.awards-items.col-2 > li {
  width: 50%;
}
.awards-items.col-3 > li {
  width: 33%;
}
.awards-items.col-4 > li {
  width: 25%;
}
.awards-items.col-5 > li {
  width: 20%;
}
.awards-items.col-6 > li {
  width: 16%;
}
.awards-item .item-inner {
  margin: 0 20px 20px 0;
  text-align: center;
  background: #fff;
  padding: 10px;
  border-bottom: 1px solid #e1e1e1;
}
.awards-item img {
  width: 100%;
}
.awards-item .awards-image {
  position: relative;
}
.awards-item h5 {
  margin: 0;
  padding: 10px 0 0 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.awards-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
  vertical-align: middle;
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  -o-transition: opacity 300ms;
  transition: opacity 300ms;
}
.awards-item .overlay .preview {
  position: relative;
  top: 50%;
  display: inline-block;
  margin-top: -20px;
}
.awards-item:hover .overlay {
  opacity: 1;
}
/* end of for call for awards */

/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

/* for committee */
#committee .box {
  background-color: #f9f9f9;
}
#committee .subbox {
  background: #fff;
  list-style: none;
  margin: 0 0 20px;
  text-align: center;
  padding: 0;
  border-bottom: 1px solid #e1e1e1;
}
#committee .subbox li {
  padding: 10px 0;
  margin: 0 15px;
  border-bottom: 1px dashed #eee;
}
#committee .subbox li.subbox-name {
  padding: 15px 0;
  font-size: 18px;
  font-weight: 700;
}
#committee .subbox li.subbox-price {
  color: #666;
  padding: 15px 0;
  font-size: 48px;
}
#committee .subbox li.subbox-action {
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 0;
}
#committee .subbox.featured {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
#committee .subbox.featured .subbox-price {
  color: #fff;
  background-color: #52b6ec;
  border-bottom-color: #52b6ec;
  margin: 0;
}
/* end of for committee */

/* for venue */
#venue .box {
  background-color: #f9f9f9;
}
#venue .subbox {
  background: #fff;
  list-style: none;
  margin: 0 0 20px;
  text-align: center;
  padding: 0;
  border-bottom: 1px solid #e1e1e1;
}
#venue .subbox li {
  padding: 10px 0;
  margin: 0 15px;
  border-bottom: 1px dashed #eee;
}
#venue .subbox li.subbox-name {
  padding: 15px 0;
  font-size: 18px;
  font-weight: 700;
}
#venue .subbox li.subbox-price {
  color: #666;
  padding: 15px 0;
  font-size: 48px;
}
#venue .subbox li.subbox-action {
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 0;
}
#venue .subbox.featured {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
#venue .subbox.featured .subbox-price {
  color: #fff;
  background-color: #52b6ec;
  border-bottom-color: #52b6ec;
  margin: 0;
}
/* end of for venue */

/* for regist */
#regist .box {
  background-color: #f9f9f9;
}
#regist .subbox {
  background: #fff;
  list-style: none;
  margin: 0 0 20px;
  text-align: center;
  padding: 0;
  border-bottom: 1px solid #e1e1e1;
}
#regist .subbox li {
  padding: 10px 0;
  margin: 0 15px;
  border-bottom: 1px dashed #eee;
}
#regist .subbox li.subbox-name {
  padding: 15px 0;
  font-size: 18px;
  font-weight: 700;
}
#regist .subbox li.subbox-price {
  color: #666;
  padding: 15px 0;
  font-size: 48px;
}
#regist .subbox li.subbox-action {
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 0;
}
#regist .subbox.featured {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
#regist .subbox.featured .subbox-price {
  color: #fff;
  background-color: #52b6ec;
  border-bottom-color: #52b6ec;
  margin: 0;
}
/* end of for regist */

/* for c4p */
#c4p .box {
  background-color: #f9f9f9;
}
#c4p .subbox {
  background: #fff;
  list-style: none;
  margin: 0 0 20px;
  text-align: center;
  padding: 0;
  border-bottom: 1px solid #e1e1e1;
}
#c4p .subbox li {
  padding: 10px 0;
  margin: 0 15px;
  border-bottom: 1px dashed #eee;
}
#c4p .subbox li.subbox-name {
  padding: 15px 0;
  font-size: 18px;
  font-weight: 700;
}
#c4p .subbox li.subbox-price {
  color: #666;
  padding: 15px 0;
  font-size: 48px;
}
#c4p .subbox li.subbox-action {
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 0;
}
#c4p .subbox.featured {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
#c4p .subbox.featured .subbox-price {
  color: #fff;
  background-color: #52b6ec;
  border-bottom-color: #52b6ec;
  margin: 0;
}
/* end of for c4p */

/* for submission */
#submission .box {
  background-color: #f9f9f9;
}
#submission .subbox {
  background: #fff;
  list-style: none;
  margin: 0 0 20px;
  text-align: center;
  padding: 0;
  border-bottom: 1px solid #e1e1e1;
}
#submission .subbox li {
  padding: 10px 0;
  margin: 0 15px;
  border-bottom: 1px dashed #eee;
}
#submission .subbox li.subbox-name {
  padding: 15px 0;
  font-size: 18px;
  font-weight: 700;
}
#submission .subbox li.subbox-price {
  color: #666;
  padding: 15px 0;
  font-size: 48px;
}
#submission .subbox li.subbox-action {
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 0;
}
#submission .subbox.featured {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
#submission .subbox.featured .subbox-price {
  color: #fff;
  background-color: #52b6ec;
  border-bottom-color: #52b6ec;
  margin: 0;
}
/* end of for submission */

/* for awards */
#awards .box {
  background-color: #f9f9f9;
}
#awards .subbox {
  background: #fff;
  list-style: none;
  margin: 0 0 20px;
  text-align: center;
  padding: 0;
  border-bottom: 1px solid #e1e1e1;
}
#awards .subbox li {
  padding: 10px 0;
  margin: 0 15px;
  border-bottom: 1px dashed #eee;
}
#awards .subbox li.subbox-name {
  padding: 15px 0;
  font-size: 18px;
  font-weight: 700;
}
#awards .subbox li.subbox-price {
  color: #666;
  padding: 15px 0;
  font-size: 48px;
}
#awards .subbox li.subbox-action {
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 0;
}
#awards .subbox.featured {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
#awards .subbox.featured .subbox-price {
  color: #fff;
  background-color: #52b6ec;
  border-bottom-color: #52b6ec;
  margin: 0;
}
/* end of for submission */

.center {
  text-align: center;
}
#team-scroller .designation {
  margin-top: 10px;
  display: block;
}
.member {
  margin: 0 50px;
  text-align: center;
}
.carousel.scale .left-arrow,
.carousel.scale .right-arrow {
  top: 30%;
  position: absolute;
}
.carousel.scale .left-arrow {
  left: -10px;
}
.carousel.scale .right-arrow {
  right: -10px;
}
.carousel.scale .active .row > div:nth-child(1) {
  -webkit-animation: scaleUp 200ms linear 0 both;
  -moz-animation: scaleUp 200ms linear 0 both;
  -ms-animation: scaleUp 200ms linear 0 both;
  -o-animation: scaleUp 200ms linear 0 both;
  animation: scaleUp 200ms linear 0 both;
}
.carousel.scale .active .row > div:nth-child(2) {
  -webkit-animation: scaleUp 200ms linear 100ms both;
  -moz-animation: scaleUp 200ms linear 100ms both;
  -ms-animation: scaleUp 200ms linear 100ms both;
  -o-animation: scaleUp 200ms linear 100ms both;
  animation: scaleUp 200ms linear 100ms both;
}
.carousel.scale .active .row > div:nth-child(3) {
  -webkit-animation: scaleUp 200ms linear 200ms both;
  -moz-animation: scaleUp 200ms linear 200ms both;
  -ms-animation: scaleUp 200ms linear 200ms both;
  -o-animation: scaleUp 200ms linear 200ms both;
  animation: scaleUp 200ms linear 200ms both;
}
.carousel.scale .active .row > div:nth-child(4) {
  -webkit-animation: scaleUp 200ms linear 400ms both;
  -moz-animation: scaleUp 200ms linear 400ms both;
  -ms-animation: scaleUp 200ms linear 400ms both;
  -o-animation: scaleUp 200ms linear 400ms both;
  animation: scaleUp 200ms linear 400ms both;
}
.icon-social {
  border: 0;
  color: #fff;
  border-radius: 100%;
  display: inline-block !important;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  padding: 0;
}
.icon-social.icon-facebook {
  background: #4f7dd4;
}
.icon-social.icon-facebook:hover {
  background: #789bde;
}
.icon-social.icon-twitter {
  background: #5bceff;
}
.icon-social.icon-twitter:hover {
  background: #8eddff;
}
.icon-social.icon-linkedin {
  background: #21a6d8;
}
.icon-social.icon-linkedin:hover {
  background: #49b9e3;
}
.icon-social.icon-google-plus {
  background: #dc422b;
}
.icon-social.icon-google-plus:hover {
  background: #e36957;
}
.icon-social.icon-pinterest {
  background: #cb2027;
}
.icon-social.icon-pinterest:hover {
  background: #e03e44;
}
.icon-social.icon-youtube {
  background: #ce332d;
}
.icon-social.icon-youtube:hover {
  background: #da5954;
}
.icon-social:hover {
  color: #fff;
}
.navbar-default {
  background: #fff;
  border-radius: 0 0 5px 5px;
  border: 0;
  padding: 0;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.2);
  /* overflow: hidden; */
}
.navbar-default .first a {
  border-radius: 0 0 0 5px;
}
.navbar-default .navbar-brand {
  margin-right: 10px;
  margin-left: 10px;
  width: 130px;
  height: 50px;
  background: url(../images/banner.png) no-repeat 0 60%;
}
.navbar-default .navbar-nav > li {
  margin-left: 1px;
}
.navbar-default .navbar-nav > li > a {
  padding: 15px 15px;
  font-size: 16px;
  line-height: 18px;
  color: #666;
}
.navbar-default .navbar-nav > li > a > i {
  display: inline-block;
}
.navbar-default .navbar-nav > li.active > a,
.navbar-default .navbar-nav > li.active:focus > a,
.navbar-default .navbar-nav > li.active:hover > a,
.navbar-default .navbar-nav > li:hover > a,
.navbar-default .navbar-nav > li:focus > a,
.navbar-default .navbar-nav > li.active > a:focus,
.navbar-default .navbar-nav > li.active:focus > a:focus,
.navbar-default .navbar-nav > li.active:hover > a:focus,
.navbar-default .navbar-nav > li:hover > a:focus,
.navbar-default .navbar-nav > li:focus > a:focus {
  background-color: #52b6ec;
  color: #fff;
}
.icon-lg {
  font-size: 48px;
  height: 108px;
  width: 108px;
  line-height: 108px;
  color: #fff;
  margin: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
  display: inline-block !important;
  border-radius: 100%;
}
.icon-md {
  font-size: 24px;
  height: 68px;
  width: 68px;
  line-height: 68px;
  color: #fff;
  margin-right: 10px;
  background-color: rgba(0, 0, 0, 0.4);
  text-align: center;
  display: inline-block;
  border-radius: 100%;
  margin-bottom: 10px;
}
.icon-color1 {
  background-color: #e74c3c;
}
.icon-color2 {
  background-color: #2ecc71;
}
.icon-color3 {
  background-color: #3498db;
}
.icon-color4 {
  background-color: #8e44ad;
}
.icon-color5 {
  background-color: #1abc9c;
}
.icon-color6 {
  background-color: #2c3e50;
}
.gap {
  margin-bottom: 50px;
}
.big-gap {
  margin-bottom: 100px;
}
#footer {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #666;
}
#footer a {
  color: #666;
}
#footer a:hover {
  color: #52b6ec;
}
ul.social {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
ul.social > li {
  margin: 0 0 20px;
}
ul.social > li > a {
  display: block;
  font-size: 18px;
}
ul.social > li > a i {
  margin-right: 10px;
}
textarea#message {
  padding: 10px 15px;
  height: 220px;
}
@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-moz-keyframes scaleUp {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1);
  }
}
@-webkit-keyframes scaleUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@-ms-keyframes scaleUp {
  0% {
    opacity: 0;
    -ms-transform: scale(0.3);
  }
  100% {
    opacity: 1;
    -ms-transform: scale(1);
  }
}
@-o-keyframes scaleUp {
  0% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
  100% {
    opacity: 1;
    -o-transform: scale(1);
  }
}
.ggmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

p.resizeimage img { width: 100%; }

#table{
width: 100%;
border-collapse: collapse;
font-size: 110%
}
#table td,
#table th{
padding: 5px;
border: 1px solid #ccc;
}
#table th{
font-weight: bold;
}
#table thead th{
background:#e6e6e6;
}
<!--[if !IE]><!-->
@media only screen and (max-width:800px){
#table{
display: block;
}
#table thead{
display: none;
}
#table tbody{
display: block;
}
#table tbody tr{
display: block;
margin-bottom: 1.5em;
}
#table tbody th,
#table tbody td{
display: list-item;
border: none;
}
#table tbody th{
margin-bottom: 5px;
list-style-type: none;
color: #fff;
background: #52b6ec;
}
#table tbody td{
margin-left: 20px;
padding: 0;
}
#table tbody td:nth-of-type(1):before { content: "[Regular (NLS members)] "; }
#table tbody td:nth-of-type(2):before { content: "[Regular (Non-members)] "; }
#table tbody td:nth-of-type(3):before { content: "[Students] "; }
#table tfoot{
display: block;
}
#table tfoot tr{
display: block;
margin-bottom: 1.5em;
}
#table tfoot th,
#table tfoot td{
display: list-item;
border: none;
}
#table tfoot th{
margin-bottom: 5px;
list-style-type: none;
color: #fff;
background: #52b6ec;
}
#table tfoot td{
margin-left: 20px;
padding: 0;
}
}
<!--<![endif]-->