/*------------------------------------*\
    RESET
\*------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
    v2.0b1 | 201101 
    NOTE:WORK IN PROGRESS
    USE WITH CAUTION AND TEST WITH ABANDON */

html,body,div,span,h1,h2,h3,h4,h5,h6,p,
a,em,img,b,i,ol,ul,li,
fieldset,form,label,
table,tbody,tr,th,td,
article,aside,footer,header,nav{
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    font:inherit;
    vertical-align:baseline;
}
/* HTML5 display-role reset for older browsers */
article,aside,footer,header,nav{
    display:block;
}
body{
    line-height:1;
}
ol,ul{
    list-style:none;
}
a {
    text-decoration: none;
    color: inherit;
}
table{
    border-collapse:collapse;
    border-spacing:0;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*------------------------------------*\
    FONTS
\*------------------------------------*/

@font-face {
    font-family: firesans;
    src: url(fonts/FiraSans-Regular.otf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: firesans;
    src: url(fonts/FiraSans-Bold.otf);
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: firesans;
    src: url(fonts/FiraSans-Italic.otf);
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: firesans;
    src: url(fonts/FiraSans-BoldItalic.otf);
    font-weight: bold;
    font-style: italic;
}

/*------------------------------------*\
    MAIN
\*------------------------------------*/
html {
    height: 100%;
}
body {
    width: 900px;
    margin: 0 auto;
    font-family: firesans, Helvetica, sans-serif;

}


h1 {
    font-weight: bold;
    padding: 10px 0;
    font-size: 35px;
    line-height: 1.1;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    padding: 10px;
}

h3 {
    color: #2F5E8E;
    font-size: 20px;
}

a {
    color: #3786BF;
}

a:hover {
   color: #2F5E8E;
}

b {
   font-weight: bold;
}

p {
   line-height: 1.3; 
}

i {
    font-style: italic;
}

header {
    background: white;   
    padding-bottom: 18px; 
}

nav {
    border-top: 1px solid #2F5E8E;
    border-bottom: 1px solid #2F5E8E;
}

nav ul {
    overflow: hidden;
}

nav li {
   float: left;
   width: 25%;
   text-align: center;
}


nav a {
    display: block;
    padding: 12px 0;
    font-weight: bold;
    letter-spacing: 1px;
    background: #2F5E8E;
    color:#C9D0DE;
}

nav a.selected {
    background: #3786BF;
    color: white;
}

nav a:hover {
    color: white;
}

#main {
    background: white;
    overflow: hidden;
}




aside {
    width: 25%;
    padding: 10px;
    float: left;
    border-right: 2px solid #F1F2F5;
    min-height: 500px;
}

aside div {
    padding: 0 0 15px 0;
}

aside h3 {
   padding: 10px 0 5px 0;
}

aside li {
    font-size: 14px;
    padding: 3px 0;
}

/* main content */

article {
    width: 75%;
    padding: 20px;
    min-height: 500px;
    float: left;
    
}

article li {
    padding: 3px 20px;
}

article ul {
    padding-bottom: 20px;
}


.image {
    float: right;
    text-align: center;
    padding-right: 30px;
}

.image img {
    padding: 3px;
    border: 1px solid #CCC;
    margin-bottom: 5px;
}

/* Schedule */

.hidden {
    display: none
}
table {
   margin: 15px 0 25px 30px;
}

th {
  text-align: left;
  font-weight: bold;
  padding: 6px 6px 10px 0;
}

td {
  padding: 6px;
  height: 43px;
  vertical-align: middle;
}

td:first-child {
    width: 100px;
}

td:nth-child(2){
    width:135px;
}

#schedule tr:nth-child(4n-3), #schedule tr:nth-child(4n-4){
    background: #EAEFF4;
}

#schedule tr:first-child {
    background: white;
}

#schedule .abstract {
     color: #3786BF;
     cursor: pointer;
}

#schedule .abstract:hover {
    color: #2F5E8E;
}

.abstract_body {
   line-height: 1.3;
   padding: 10px 20px 20px 0;
}



/* Travel & Hotel */

#travel {
    margin-left: 30px;
    margin-top: 15px;
}

#travel p {
    line-height: 1.4;
}

#travel b {
    font-size: 18px;
}

.address {
    margin: 10px 0 20px 0;
}

/* Registration */

form table {
    margin-left: 0;
}

form {
    margin-left: 30px;
}

form td {
    padding: 9px;
}

form td:first-child {
    width: 180px;
}

form tr:nth-child(even) {
    background: #EAEFF4;
}

input[type=text] {
    width: 200px;
}

input[type=submit] {
   background: #2F5E8E;
   border: 2px solid #CCC;
   color: white;
   padding: 5px 10px;
   font-size: 14px;
   cursor: pointer;
   margin-top: 10px;
}

input[type=submit]:hover {
    background: #3786BF;
}

textarea {
    width: 300px;
    height: 70px;
}

.main:after {
    content: "";
    display: table;
    clear: both;
}

footer {
    border-top: 1px solid #F1F2F5;  
    height: 150px;
}

footer div {
}

footer img {
    vertical-align: middle;    
    padding: 10px 20px;
}





