/*
    Use this stylesheet to modify the layout of your
 conference.
*/



/* ----------- Styles for the conference header ----------- */

/*
    The wrapper of the whole conference page.
*/
.conf {
    width: 950px;
    border: none;
    margin: auto;
	background: #ffffff;
}

/*
    Wraps around the upper part of the conference header.
*/
.confTitleBox {
	position: sticky;
    color: white;
    min-height: 90px;
    background: #ffffff;
}

.confTitleBox img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	border: 0;
	width: 500px;
	height: 210px;
}

/*
    Sets the width of the upper part of the conference header.
    Is set to 950px and centered by default.
*/
.confTitle {
    width: 950px;
    margin: 0 auto;
}

/*
    The box containing the logo. By the default the logo is placed
    on the left of the conference title.
*/
.confLogoBox {
	margin: auto;
    float: middle;
    padding: 0px;
}

/*
    The style for the title text.
*/
.conference-title-link {
    font-size:0pt;
    padding: 0px 0;
    color: white;
}

/*
    Wrapper around the bottom part of the conference header
*/
.confSubTitleBox {
    background: #f5faff;
    border-bottom: 1px solid #d5e4f1;
    border-top: 1px solid #d5e4f1;
    padding: 0.5rem 0;
}

/*
    The content of the lower part of the header. Is by default
    centered and has a fixed width.
*/
.confSubTitleContent {
    width: 950px;
    margin: 0 auto;
    font-size: 11pt;
    color: #24425a;
}
/*
    Style for links in the lower part of the header
*/
.confSubTitle a {
    font-size: 11pt;
}

/*
    Styles for the date and place information.
*/
.datePlace {
    font-size: 12pt;
}


/* ----------- Styles for the menu ----------- */


/* Styles for all menu Items */

/*
    Wrapper around the menu
*/
.conf_leftMenu {
    float:left;
    width:200px;
}

/*
    Styles for the menu box
*/
#outer {
    border: 1px solid #ccc;
    background: #f6f6f6;
}

/*
    The menu item
*/
#outer li a {
    font-family:verdana,arial,sans-serif;
    font-size: 10pt;
}

/*
    The menu item when doing mouseover
*/
#outer li a:hover {
    background: #e0e0e0;
}

/*
    A non selected menu item
*/
.menuConfTitle {
    text-align: left;
}

.menuConfTitle a {
    color: #275C86;
    padding: 7px 12px;
}


/*
    Support box
*/

.support_box {
    background: #f6f6f6;
    border: 1px solid #ccc;
}

.support_box > h3 {
    color: #f3f3f3;
    background: #1a64a0;
}


/* ----------- Styles for the page content ----------- */

/*
    Wrapper around the content
*/
.confBodyBox {
    margin-left: 230px;
	background-color: #ffffff;

}