/**
 * Slide Library CSS
 * NN - Market Access Slide Library 
 * @author: Brian Jerome | Wedgewood Communications
 * @version: 2.3.15
 */

/*
 * TABLE OF CONTENTS
 *
 * Base
 * Header
 * Footer
 * Nav
 * Main
 * Slides
 * Buttons
 * Tables
 * Forms & Fields
 * Icons
 */

/*************************************************
* Base
************************************************/
html {
	font-family: Verdana, sans-serif !important; 
	-ms-text-size-adjust: 100%; 
	-webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    padding: 0;
	overflow-x: hidden; 
	color: #58595b;
}
.body {
	min-width: 1024px;
	background-color: #ffffff;
	font-family: Verdana, sans-serif !important;
	color: #58595b; /* .dark-gray */
	font-size: 12px;
	line-height: 16px;
}


/* font colors */
.blue 		{ color: #009fda !important; }
.dark-gray 	{ color: #58595b !important; }
.light-gray { color: #cccccc !important; }
.error 		{ color: #ed1c24 !important; }

.bold 	{ font-weight: bold; 	}
.normal { font-weight: normal; 	}
.italic	{ font-style: italic;	}

a {
	text-decoration: none;
	-moz-text-decoration-color: #58595b;
	-moz-text-decoration-line: none;
	-moz-text-decoration-style: none;
}
a:-webkit-any-link {
	color: #58595b;
	text-decoration: none;
	cursor: pointer;
}

.x-spacer {
	display: inline-block;
	margin: 0px 15px;
}

.y-spacer {
	margin: 15px 0px;
	font-size: 0px;
	height: 1px;
}

.x-spacer-10 {
	display: inline-block;
	margin: 0px 5%;
}
/* 12 Column Grid layout - 12 is max */
.twelve.columns { width: 100%; 	}
.eleven.columns { width: 91.5%; }
.ten.columns 	{ width: 82.5%; }
.nine.columns 	{ width: 75%; 	}
.eight.columns 	{ width: 66%; 	}
.seven.columns 	{ width: 58.5%; }
.six.columns 	{ width: 47%; 	}
.four.columns 	{ width: 33%; 	}
.three.columns 	{ width: 24.5%; }

.column, .columns {
	display: inline-block;
	vertical-align: top;
	text-align: center;
}

.left {	text-align: left; }
.fl-left { float: left; }
.right { text-align: right; }
.fl-right {	float: right; }

.va-bottom { vertical-align: bottom; }
.va-middle { vertical-align: middle; }
.va-top { vertical-align: top; }

.hide_desktop, .hidden { display: none; }

.blurred {
	-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	-o-filter: blur(2px);
	filter: blur(2px);
}

.body > .content {
	min-height: 608px;
	margin-top: 80px;
}
.body > .content > div {
	margin-bottom: 40px;
}

/*************************************************
* Header
************************************************/
header {
	background-color: #f7f7f6;
	border: 1px solid #b7b2ad;
	height: 81px;
	position: fixed;
	width: 100%;
	z-index: 1;
	top: 0px;
	min-width: 1024px;
}

header div {
	display: inline-block;
}

.logo {
	padding: 0px;
	margin: 0px;
	border-right: 1px solid #b7b2ad;
	vertical-align: middle;
	width: 90px;
	height: 80px;
	cursor: pointer;
}
.logo img {
	width: 90px;
	height: auto;
	padding: 15px 10px;
}

.logo-big img {
	height: 110px;
	width: auto;
	padding: 10px;
}

.title {
	padding: 25px;
	padding-right: 0px;
	font-size: 18px;
	font-weight: bold;
	line-height: 20px;
	/*text-shadow: 1px 1px 0 #FFFFFF;*/
	color: #fff;
}


/*************************************************
* Footer
************************************************/
.body > .footer {
	display: table;
	border-top: 1px solid #b7b2ad;
	position: fixed;
	bottom: 0px;
	width: 100%;
	background: #ffffff;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlZmVlZWIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #ffffff 0%, #efeeeb 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efeeeb));
	background: -webkit-linear-gradient(top, #ffffff 0%,#efeeeb 100%);
	background: -o-linear-gradient(top, #ffffff 0%,#efeeeb 100%);
	background: -ms-linear-gradient(top, #ffffff 0%,#efeeeb 100%);
	background: linear-gradient(to bottom, #ffffff 0%,#efeeeb 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efeeeb',GradientType=0 );
	min-width: 1024px;
	font-size: 11px;
	height: 30px;
}
.body > .footer .content {
	display: table-cell;
	border-right: 1px solid #b7b2ad;
	vertical-align: middle;
	padding-left: 20px;
}

.body > .footer #to-top {
	display: table-cell;
	text-align: center;
	letter-spacing: 0.5em;
	width: 90px;
	vertical-align: middle;
	padding-left: 20px;
	cursor: pointer;
}
.body > .footer #to-top > i {
	display: inline-block;
}



/*************************************************
* Nav
************************************************/
.nav {
	height: 80px;
	vertical-align: top;
	float: right;
	cursor: pointer;
	z-index: 2;
}

.nav > .nav-item {
	height: 80px;
	min-width: 100px;
	border-left: 1px solid #b7b2ad;
	text-align: center;
	vertical-align: top;

}

.nav > .nav-item .content {
	padding-top:30px;
	padding-left: 20px;
	padding-right: 20px;
	height: 64px;
	letter-spacing: 1px;
	text-shadow: 1px 1px 0 #FFFFFF;
}

.nav > .nav-item.no-touch:hover .content,
.nav > .nav-item.active .content {
	color: #009fda;
}
.nav-item.no-touch:hover > .nav-item--child,
.nav-item.active > .nav-item--child {
	max-height: 470px;
}

.nav > .nav-item i.nn-home {
	font-size: 24px;
}

.nav-item--child {
	display: block;
	position: relative;
	top: 16px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	max-height: 0px;
	overflow: hidden;
	z-index: 1;
}

.nav-item--child > .item {
	border-left: 1px solid #b7b2ad;
	border-right: 1px solid #b7b2ad;
	display: block;
	border-top: 1px solid #b7b2ad;
	font-size: 11px;
	padding: 15px 0px;
	letter-spacing: 2px;
	margin: 0 auto;
	width: 80%;
	background-color: #fbfaf8;
}
.nav-item--child > .item:first-child {
	border-top: none;
}
.nav-item--child > .item:last-child {
	border-bottom: 1px solid #b7b2ad;
}
.nav-item--child > .item:active,
.nav-item--child > .item.active {
	background-color: #009fda;
	color: #fbfaf8 !important;
	font-weight: bold;
}
.nav-item--child > .item:hover {
	color: #009fda;
}

.nav-item#home:hover:after, .nav-item.active#home:after  {
	content: url(/content/images/shadows/home-shadow.png);
	position: relative;
	float: left;
	top: 80px;
	width: 0;
	text-align: center;
}
.nav-item#p_i:hover:before, .nav-item.active#p_i:before  {
	content: url(/content/images/shadows/pi-shadow.png);
	position: relative;
	float: left;
	top: 80px;
	width: 0;
	text-align: center;
	z-index: 2;
}
.nav-item#help:hover:after, .nav-item.active#help:after  {
	content: url(/content/images/shadows/help-shadow.png);
	position: relative;
	float: left;
	top: 80px;
	width: 0;
	text-align: center;
}
.nav-item#log_out:hover:after, .nav-item.active#log_out:after  {
	content: url(/content/images/shadows/logout-shadow.png);
	position: absolute;
	float: left;
	top: 80px;
	right: 98px;
	width: 0;
	text-align: center;
}


/*************************************************
* Main
************************************************/
.heading {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 20px;
}

.heading div, .heading span {
	margin-top: 5px;
	font-size: 90%;
}

.spinner {
	position: absolute;
	left: 50%;
	margin-left: -70px;
	top: 50%;
	margin-top: -70px;
	background-color: rgba(255,255,255,1);
	border: 1px solid rgba(100,100,100,0.5);
	border-radius: 100%;
}

window {
	display: block;
	border: 1px solid #b7b2ad;
	position: relative;
	margin: 0px 15px 25px;
	vertical-align: top;
}

window .title {
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #b7b2ad;
	padding: 11px 0px;
	background-color: #e8e6e3;
}

window .title > div i, window .title > i {
	position: relative;
	top: 2px;
}

window > .content {
	text-align: left;
	background-color: #fbfaf8;
	padding: 10px;
	min-height: 100px;
}

window > .footer {
	border-top: 1px solid #b7b2ad;
	background-color: #e8e6e3;
	min-height: 15px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.modal {
	display: none;
	background-color: rgba(0,0,0,0.32);
	z-index: 9998;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

panel {
	border: 1px solid #b7b2ad;
	width: 300px;
	display: inline-block;
	margin: 0px 15px 25px;
	vertical-align: top;
	background: #e8e6e3;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZkZmRmZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlZGVjZTkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #fdfdfd 0%, #edece9 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fdfdfd), color-stop(100%,#edece9));
	background: -webkit-linear-gradient(top, #fdfdfd 0%,#edece9 100%);
	background: -o-linear-gradient(top, #fdfdfd 0%,#edece9 100%);
	background: -ms-linear-gradient(top, #fdfdfd 0%,#edece9 100%);
	background: linear-gradient(to bottom, #fdfdfd 0%,#edece9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfdfd', endColorstr='#edece9',GradientType=0 );

	-webkit-box-shadow: 0px 5px 5px 0px rgba(100,100,100,0.1);
	-moz-box-shadow: 0px 5px 5px 0px rgba(100,100,100,0.1);
	box-shadow: 0px 5px 5px 0px rgba(100,100,100,0.1);
}

panel.popup {
	border: 1px solid #b7b2ad;
	min-width: 400px;
	min-height: 100px;
	display: block;
	margin: 100px auto;
	z-index: 9999;
	-webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.32);
	-moz-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.32);
	box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.32);
	background: #ffffff;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlZmVlZWIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #ffffff 0%, #efeeeb 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efeeeb));
	background: -webkit-linear-gradient(top, #ffffff 0%,#efeeeb 100%);
	background: -o-linear-gradient(top, #ffffff 0%,#efeeeb 100%);
	background: -ms-linear-gradient(top, #ffffff 0%,#efeeeb 100%);
	background: linear-gradient(to bottom, #ffffff 0%,#efeeeb 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efeeeb',GradientType=0 );
}

panel.popup.wide { min-width: 500px; }
panel.popup.preview { min-width: 740px; }
panel.popup.help { min-width: 610px; }

panel .title {
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #b7b2ad;
	padding: 11px 0px;
}
panel.popup .title {
	padding: 16px;
	color: #58595b;
	background-color: #e8e6e3;
}

panel .title i {
	height: auto;
	width: 40px;
	margin: auto;
	padding-bottom: 10px;
}

panel .content {
	text-align: left;
}
panel.popup > .content {
	font-size: 14px;
	color: #58595b;
	padding: 20px;
}

panel.popup.preview .slide-preview {
	margin: 30px 10px;
	border: 1px solid #b7b2ad;
	width: 718px;
	height: 404px;
}
panel.popup.preview .speaker-notes {
	margin: 30px 10px;
	height: 404px;
	width: 718px;
	border: 1px solid #b7b2ad;
	background-color: #fdfdfd;
}
panel.popup.preview .speaker-notes > .content {
	max-height: 362px;
	overflow-y: scroll;
	padding: 20px;
}
panel.popup.preview .slide-number {
	margin-bottom: 20px;
	margin-left: 10px;
	font-weight: bold;
	display: inline-block;
	font-size: 14px;
}
panel.popup.preview .slide-nav {
	margin-bottom: 20px;
	margin-right: 10px;
	font-size: 14px;
	display: table;
	float: right;
	position: relative;
	top: -12px;
	right: 2px;
}

panel.popup .details {
	/*border-top: 1px solid #b7b2ad;*/
}

panel.popup .details > .title {
	padding: 14px;
	color: #58595b;
	background-color: #e8e6e3;
	border-top: 1px solid #b7b2ad;
	border-left: 1px solid #b7b2ad;
	border-right: 1px solid #b7b2ad;
	background-color: #fbfaf8;
	text-shadow: none;
	font-size: 11px;
	text-align: left;
	cursor: pointer;
}
panel.popup .details > .title div.dropdown_arrow {
	float: right;
	position: relative;
	top: 2px;
	right: 10px;
}
panel.popup .details > .title div.dropdown_arrow > i {
	font-size: 28px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transform-origin: 75% 25%;
	-webkit-transform-origin: 75% 25%;
	-moz-transform-origin: 75% 25%;
	-o-transform-origin: 75% 25%;
}
panel.popup .details.active > .title div.dropdown_arrow > i {
	transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	color: #009fda;
}

panel.popup .details > .content {
	max-height: 0px;
	overflow: hidden;
	border-bottom: 1px solid #b7b2ad;
	border-left: 1px solid #b7b2ad;
	border-right: 1px solid #b7b2ad;
	font-size: 11px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
}
panel.popup .details.active > .content {
	background-color: #ffffff;
	height: 175px;
	max-height: 175px;
}

panel.popup .details > .content i {
	display: block;
	vertical-align: middle;
	height: auto;
	width: 0px;
	margin: auto;
	font-size: 14px;
	float: left;
	position: relative;
	top: -1px;
}

panel.popup .details > .content .title {
	border-bottom: none;
	padding: 14px;
	color: #58595b;
	background-color: #fbfaf8;
	text-shadow: none;
	font-size: 11px;
	height: 48px;
}
panel.popup .details.active > .content tr:first-child {
	position: absolute;
	z-index: 1;
}
panel.popup .details > .content tr:nth-child(2){
	display: none;
}
panel.popup .details.active > .content tr:nth-child(2){
	display: table-row;
}

panel.popup .details > .content .divider-title {
	background-color: #b7b2ad;
	width: 6px;
	position: relative;
}
panel.popup .details.active > .content .divider-title {
	position: absolute;
	margin-top: -24px;
}

panel.popup .details > .content table.items {
	border: none;
}
panel.popup .details > .content table.items{
	height: 175px;
	max-height: 175px;
	overflow-y: auto;
	display: block;
	width: 456px;
	/*overflow-y: auto;*/

}


/* SCROLLBAR FIXES*/

panel.popup .details > .content table.items::-webkit-scrollbar {
    -webkit-appearance: none;
}

panel.popup .details > .content table.items::-webkit-scrollbar:vertical {
    width: 11px;
}

panel.popup .details > .content table.items::-webkit-scrollbar:horizontal {
    height: 11px;
}

panel.popup .details > .content table.items::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white; /* should match background, can't be transparent */
    background-color: rgba(0, 0, 0, .5);
}

panel.popup .details > .content table.items tr {
	min-height: 32px;
}

panel.popup .details > .content table.items td.leftTitle {
	width: 222px;
}
panel.popup .details > .content.scroll table.items td.leftTitle {
	width: 218px;
}
panel.popup .details > .content.scroll table.items td.rightTitle {
	width: 222px;
}
panel.popup .details > .content table.items td.rightTitle {
	width: 227px;
}

panel.popup .details > .content table.items tr:last-child td {
	border-bottom: none;
}
panel.popup .details > .content table.items td, 
panel.popup .details > .content table.items_header td {
	padding: 0px;
	border: none;
	text-align: left;
	border-bottom: 1px solid #b7b2ad;

}

panel.popup .details > .content table.items td.leftColumn {
	padding: 10px 5px 10px 10px;
	width: 202px;
}
panel.popup .details > .content table.items td.leftColumn.no-icon {
	width: 222px;
}
panel.popup .details > .content.scroll table.items td.leftColumn {
	width: 206px;
}

panel.popup .details > .content table.items td.td-icon {
	width: 20px;
}
panel.popup .details > .content table.items td.divider {
	background-color: #b7b2ad;
	width: 6px;
}
panel.popup .details > .content table.items td.rightColumn {
	padding: 10px 25px 10px 10px;
	width: 228px;
}

panel.popup .details > .key-icons {
	margin-top: 14px;
	opacity: 0;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
}
panel.popup .details.active > .key-icons {
	opacity: 1;
} 

panel.popup.help .help-videos {
	position: relative;
	left: 360px;
	margin-top: -73px;
}
panel.popup.help .help-videos-list {
	list-style: none;
	padding-left: 0px;
	padding-top: 1em;
}
panel.popup.help .help-videos-list li {
	line-height: 1.8;
}
panel.popup.help .help-videos-list li > a {
	color: #13b5ea;
}


.slide-nav > div {
	display: table-cell;
	vertical-align: middle;
	padding: 5px 15px 0px 15px;
} 
.slide-nav .prev-arrow {
	padding: 4px 8px 0px 6px;
}
.slide-nav .next-arrow {
	padding: 4px 7px 0px 7px;
}

.slide-nav .prev-arrow.inactive,
.slide-nav .next-arrow.inactive {
	color: #cccccc;
}
.slide-nav .prev-arrow.active,
.slide-nav .next-arrow.active {
	color: #009fda;
	cursor: pointer;
}

.slide-nav input {
	font-size: 24px;
	border: 1px solid #b7b2ad;
	background-color: #fbfaf8;
	font-family: 'novo-nordisk';
}

.slide-nav .current-slide {
	border: 1px solid #b7b2ad;
	background-color: #fbfaf8;
	color: #009fda;
	font-weight: bold;
}
.slide-nav .total-slides {
	font-weight: bold;
	padding: 5px 15px 0px 0px;
}

.popup-buttons {
	margin: 60px 0px;
	text-align: center;
}
.popup-buttons > div, .popup-buttons > a {
	width: 105px;
	display: inline-block;
	margin: 0px 20px;
}
panel.popup.wide > .content > .popup-buttons > div,
panel.popup.wide > .content > .popup-buttons > a {
	margin: 0px 8px;
}

panel .content > a.option {
	color: #009fda;
	display: block;
	padding-bottom: 16px;
	padding-left: 10%;
}
panel .content > a.option:first-child{
	padding-top: 22px;
}
panel .content > a.option:last-child {
	padding-bottom: 22px;
}
panel .content i {
	display: inline-block;
	vertical-align: middle;
	height: auto;
	width: 18px;
	margin: auto;
	padding-right: 15px;
}

/* CATEGORIES MENU */

#categories {
	width: 240px;
	border: 1px solid #b7b2ad;
	margin-top: 20px;
	height: 100%;
	background-color: #e8e6e3;
	margin-right: 20px;
	margin-left: 20px;
	display: inline-block;
	position: relative;
	padding-bottom: 20px;
}

#categories.shift-left {
	left: -241px;
	width: 0px;
	position: absolute;
}

#categories .title {
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	border-bottom: 1px solid #b7b2ad;
	padding: 12px;
	z-index: 3;
	background-color: #e8e6e3;
}

#categories .content {
}

#categories .content > .item {
	background-color: #fbfaf8;
	border-bottom: 1px solid #b7b2ad;
	display: table;
	min-height: 44px;
	max-height: 44px;
	width: 100%;
	cursor: pointer;
}

#categories .content:last-of-type{
	padding-top: 25px;
}
#categories .content .item.top{
    border-top: 1px solid #b7b2ad;
}

#categories .item > div {
	display: table-cell;
	vertical-align: middle;
	font-weight: bold;
	padding-top: 14px;
	float: left;
}
#categories .item.parent {
	display: block;
	overflow: hidden;
	max-height: 44px;
}
#categories .item.parent.active {
	max-height: inherit;
}
#categories .item.parent > div.item {
	border-top: 1px solid #b7b2ad;
	padding-top: 0px;
	width: 100%;
	/*transition: max-height 0.5s;*/
	/*-webkit-transition: max-height 0.5s;*/
	/*-moz-transition: max-height 0.5s;*/
	/*-o-transition: max-height 0.5s;*/
	max-height: 0;
	overflow: hidden;
}
#categories .item.parent.active > div.item {
	max-height: 100%;
	
}
#categories .item > div.dropdown_text {
	min-width: 140px;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	text-transform: uppercase;
	padding-left: 4px;
	font-size: 11px;
}
#categories .item.active > div.dropdown_text {
	color: #009fda;
}
#categories .item.active > .dropdown_icon {
	color: #009fda;
}
#categories .item > div.dropdown_icon {
	width: 36px;
	height: 44px;
	text-align: center;
	border-right: 1px solid #b7b2ad;
}
#categories .item > div.dropdown_arrow {
	background-color: #f4f3f1;
	border-left: 1px solid #b7b2ad;
	text-align: center;
	float: right;
	width: 34px;
	height: 44px;
	padding-top: 14px;
}
#categories .item > div.dropdown_arrow > i {
	/*transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;*/
	font-size: 24px;
	position: relative;

}
#categories .item.active > div.dropdown_arrow > i {
	transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	transform-origin: 50% 35%;
	-webkit-transform-origin: 50% 35%;
	-moz-transform-origin: 50% 35%;
	-o-transform-origin: 50% 35%;
	color: #009fda;
}

#categories .item > .item--child {
	padding-top: 0px;
	width: 100%;
	/*transition: max-height 0.5s;*/
	/*-webkit-transition: max-height 0.5s;*/
	/*-moz-transition: max-height 0.5s;*/
	/*-o-transition: max-height 0.5s;*/
	max-height: 0;
	overflow: hidden;
}
#categories .item.active > .item--child {
	max-height: 100%;
}

#categories .item > .item--child .module-text {
	padding-right: 12px
}

#categories .item > .item--child > .item {
	position: relative;
	padding: 12px 0px;
	border-top: 1px solid #b7b2ad;
	min-height: 0px;
	background-color: #ffffff;
}
#categories .item > .item--child > .item:hover {
	color: #009fda;
}
#categories .item > .item--child > .item:active,
#categories .item > .item--child > .item.active {
	color: #ffffff;
	background-color: #009fda;
}
#categories .item > .item--child > .item:active:after,
#categories .item > .item--child > .item.active:after {
	font-family: "novo-nordisk";
	content: "o";
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-50%);
}
#categories .item > .item--child > .item div {
	font-size: 11px;
	font-weight: normal;
	padding-top: 0px;
	float: none;
}
#categories .item > .item--child > .item div > .additional_slides:before {
	content: "";
	background-image: url(../../images/icons/additional_slides.png);
	padding-left: 20px;
	padding-right: 20px;
	height: 12px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: 50%;
}
#categories .item > .item--child > .item:hover div > .additional_slides:before {
	background-image: url(../../images/icons/additional_slides_blue.png);
}
#categories .item > .item--child > .item:active div > .additional_slides:before,
#categories .item > .item--child > .item.active div > .additional_slides:before {
	background-image: url(../../images/icons/additional_slides_white.png);
}

#main_content {
	margin-top: 20px;
	width: 75%;
	width: calc(100% - 282px);	
	min-width: 500px;
	/*transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;*/
}

#main_content.shift-left {
	width: 99%;
	margin-left:20px;
}

/* LATEST PROJECTS */

#latest_projects {
	margin: 0px 0px 20px 0px;
	text-align: left;
	padding-bottom: 20px;
	background-color: #e8e6e3;

}
#latest_projects .title {
	padding: 12px;
	text-align: left;
}
#latest_projects .content {
	padding: 0px;
	min-height: 50px;
}
#latest_projects .title div > i {
	/*font-size: 20px;*/
	color: #c4c4c4;
}

.project-item {
	border-bottom: 1px solid #b7b2ad;
	width: 100%;
	cursor: pointer;
}
.project-item .content {
	display: table;
	width: 100%;
	min-height: 50px;
}
.project-item .content > div {
	height: 100%;
}
.project-number {
	display: table-cell;
	font-weight: bold;
	padding-left: 12px;
	padding-top: 12px;
	vertical-align: top;
	width: 12px;
}
.project-description {
	display: table-cell;
	padding-left: 6px;
	padding-top: 12px;
	vertical-align: top;
	font-weight: bold;
	color: #009fda;
}
.project-date {
	max-width: 95%;
	font-style: italic;
	font-weight: normal;
	color: #58595b;
}
.project-options {
	display: table-cell;
	border-left: 1px solid #b7b2ad;
	vertical-align: middle;
	min-height: 50px;
	padding: 0px;
	height: 100%;
	text-align: center;
	width: 50px;
	cursor: pointer;
}

.project-options.open {
	width: 46px;
}
.project-options.open,
.project-options.preview {
	background-color: #ffffff;
	font-weight: bold;
}
.project-options.preview,
.project-options.delete {
	font-size: 20px;
}
.project-options.delete {
	background-color: #f4f3f1;
}

/* ALERTS */

#alerts {
	margin: 0px 0px 20px 20px;
	/*min-height: 570px;*/
	background-color: #e8e6e3;
}
#alerts .title {
	padding: 12px;
	text-align: left;
}
#alerts .title div {
	font-size: 12px;
}
#alerts .title div > i {
	font-size: 20px;
}
#alerts .title div > i.active {
	color: #009fda;
}
#alerts > .content {
	padding: 0px;
	margin-bottom: 30px;
}

#alerts > .footer {
	padding: 6px 0px;
	text-align: right;
}

.alert-item {
	border-bottom: 1px solid #b7b2ad;
	width: 100%;
	min-height: 85px;
}
.alert-item .content {
	display: table;
	min-height: 85px;

}



.alert-item .content > div {
	display: table-cell;
}
.alert-date {
	display: inline-block;
	font-weight: bold;
	padding: 12px 6px 6px 12px;
	width: 100%;
}
.alert-item.open .alert-date {
	color: #009fda;
	max-height: 85px;
}

.alert-date > span.alert-description {
	font-weight: normal;
	display: block;
	display: -webkit-box;
	height: 50px;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}


.alert-date > span.expanded {
	display: block;
	height: auto;
}

.alert-options {
	border-left: 1px solid #b7b2ad;
	vertical-align: middle;
	min-height: 85px;
	padding: 0px;
	height: 100%;
	text-align: center;
	
	cursor: pointer;
	background-color: #f4f3f1;
	font-size: 18px;
}
.alert-options .delete {
	display: table;
	width: 50px;
	height: 100%;	
}
.alert-options .delete i {
	vertical-align: middle;
	display: table-cell;
}

/*
.alert-item.open .alert-options .delete i:before {
	color: #009fda;
	content: "l";
}
*/

.page_span a {
	display: inline-block;
}

.page_number {
	margin: 0px 6px;
}
/* transform arrow right to be arrow left */
.page_number:first-child {
	position: relative;
	top: -3px;
	transform: rotate(-180deg);
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
}
.page_number:last-child {
	margin: 0px 12px 0px 6px;
}
.page_number:hover,
.page_number:active {
	color: #009fda;
}
.page_number.active {
	font-weight: bold;
}

.page_span .disabled{
	visibility: hidden;
}
.toolbar {
	height: 48px;
	display: table;
	/*min-width: 1024px;*/
}

.toolbar#editing-options {
	margin-bottom: 0px;
	padding-top: 10px;
}


.toolbar > div {
	display: table-cell;
}
.toolbar > .left-side {
	padding: 10px 0px 0px 20px;
	float: left;
}
.toolbar > .right-side {
	padding: 10px 0px 0px 0px;
	float: right
}

.toolbar > .right-side > div > div,
.toolbar > .right-side > div > label {
	display: table-cell;
}
.toolbar > .right-side > div {
	margin-right: 30px;
	float: right;
}

.toolbar input[type='checkbox'] {
	vertical-align: top;
	opacity: 0;
	float: left;
	width: 30px;
	height: 30px;
	min-width: 30px;
	min-height: 30px;
	cursor: pointer;
	margin: 0;
	top: 10px;
	position: relative;
	margin-right: 10px;
	z-index: 1;
}



.toolbar input[type='checkbox'] + .check-box-label {
	vertical-align: middle;
	padding-right: 30px;
	font-size: 10px;
	text-align: left;
	margin-bottom: 0px;
	font-weight: normal;
	width: 70px;
	float: left;
	position: relative;
	top: -20px;
}
.toolbar input[type='checkbox'] + .check-box-label:before {
	content: "";
	font-family: "novo-nordisk";
	text-align: center;
	padding: 5px;
	border: 1px solid #b7b2ad;
	background: #fbfaf8;
	font-weight: bold;
	font-size: 18px;
	margin: 0px;
	position: relative;
	float: left;
	width: 30px;
	top: 30px;
	left: -40px;
	height: 30px;
}

.toolbar input[type='checkbox']:checked + .check-box-label:before {
	content: "b";
}

.check-box {
	width: 30px;
	height: 30px;
	min-width: 30px;
	min-height: 30px;
	cursor: pointer;
}
/*
.check-box > .content {
	font-family: "novo-nordisk";
	text-align: center;
	padding: 5px;
	border: 1px solid #b7b2ad;
	background: #fbfaf8;
	font-weight: bold;
	font-size: 18px;
}*/
/*.check-box > .content:before {
	content: "";
	padding: 1px;
}
.check-box:active > .content:before,
.check-box.active > .content:before {
	content: "b";
	padding: 0px;
}*/

/*.check-box-label {
	vertical-align: middle;
	padding-right: 30px;
	padding-left: 10px;
	padding-top: 2px;
	font-size: 10px;
	text-align: left;
}*/

#slides-options, #presentation-options {
	display: none;
	float: right;
}
#slides-options.active,
#presentation-options.active {
	display: table-cell;
	transition: max-height 0.5s;
	-webkit-transition: max-height 0.5s;
	-moz-transition: max-height 0.5s;
	-o-transition: max-height 0.5s;
}

#slides-options.active > div,
#presentation-options.active > div {
	display: inline-block;
}
#presentation-options.active > div {
	margin-left: 20px;
}
#presentation-options.active > div:first-child {
	margin-right: 27px;
	margin-left: 0px;
}

/*************************************************
* Slides
************************************************/
.slide {
	display: inline-block;
	width: 224px;
	border: 1px solid #b7b2ad;
	height: 165px;
	vertical-align: top;
	margin: 1px 20px 25px 0px;
}
.slide.selected {
	-webkit-box-shadow: 0px 0px 2px 0px #009fda;
	-moz-box-shadow:    0px 0px 2px 0px #009fda;
	box-shadow:         0px 0px 2px 0px #009fda;
	border: 1px solid #009fda;
}

.slide.added {
	border: 1px solid #b7b2ad;
	box-shadow: none;
}

.slide .content {
	height: 124px;
	text-align: left;
	background-color: #ffffff;
	cursor: pointer;
}

.slide .footer {
	height: 39px;
	background: #efeeeb;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZkZmRmZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlZGVjZTkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #ffffff 0%, #efeeeb 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#efeeeb));
	background: -webkit-linear-gradient(top, #ffffff 0%,#efeeeb 100%);
	background: -o-linear-gradient(top, #ffffff 0%,#efeeeb 100%);
	background: -ms-linear-gradient(top, #ffffff 0%,#efeeeb 100%);
	background: linear-gradient(to bottom, #ffffff 0%,#efeeeb 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#efeeeb',GradientType=0 );
	display: table;
	border-top: 1px solid #b7b2ad;
	width: 100%;
}

.slide .footer div {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	text-shadow: 1px 1px 0 #FFFFFF;
}

.slide-preview-icon {
	border-right: 1px solid #b7b2ad;
	background-color: #f4f3f1;
	font-size: 27px;
	width: 42px;
	height: 34px;
	padding-top: 7px;
	cursor: pointer;
}
.slide-preview-icon.active {
	color: #ffffff;
	background-color: #009fda;
}

.slide-title {
	width: 170px;
	text-align: left !important;
	padding-left: 10px;
	font-size: 14px;
}

/*
.slide-title:after {
	font-family: "novo-nordisk";
	content: "i";
	color: #b3b3b3;
	position: relative;
	float: right;
	right: 6px;
	font-size: 22px;
	top: 2px;
}
*/

.slide.linked .slide-title:after {
	color: #009fda;
}

.slide.no-link .slide-title:after {
	content: "";
}

.slide-title .mail-icon {
	float: right;
	margin-right: 6px;
	position: relative;
}
.slide.no-mail .mail-icon:after {
	content: "";
	float: right;
	border-radius: 100%;
	background-color: #da0000;
    height: 8px;
    width: 8px;
    position: absolute;
    right: -3px;
    top: 0px;
}

.slide-option {
	border-left: 1px solid #b7b2ad;
	background-color: #f4f3f1;
	font-size: 26px;
	width: 38px;
	height: 33px;
	padding-top: 5px;
	cursor: pointer;
}
.slide.locked .slide-option {
	cursor: default;
	color: #9c9c9c !important;
	background-color: #f4f3f1 !important;
}

.slide.selected .slide-option,
.slide-option.active,
.slide-option:active {
	color: #ffffff;
	background-color: #009fda;
	text-shadow: 0px 0px 0px !important;
}

.slide.added .slide-option {
	background-color: #7C7C7C;
	color: #ffffff;
	text-shadow: 0px 0px 0px !important;
}


/*************************************************
* Buttons
************************************************/
.button, .button-active, .button-gray {
	display: block;
	padding: 14px 12px;
	font-size: 12px;
	border: 1px solid #b7b2ad;
	background: #fdfdfd;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZkZmRmZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlZGVjZTkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #fdfdfd 0%, #edece9 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fdfdfd), color-stop(100%,#edece9));
	background: -webkit-linear-gradient(top, #fdfdfd 0%,#edece9 100%);
	background: -o-linear-gradient(top, #fdfdfd 0%,#edece9 100%);
	background: -ms-linear-gradient(top, #fdfdfd 0%,#edece9 100%);
	background: linear-gradient(to bottom, #fdfdfd 0%,#edece9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfdfd', endColorstr='#edece9',GradientType=0 );
	cursor: pointer;
	text-align: center;
}
.button .content, input[type="submit"].button {
	color: #009fda;
	font-weight: bold;
	text-align: center !important;
	padding: 0px;
}

.button.dark-gray .content, input[type="submit"].button.dark-gray {
	color: #58595b;
}

.button:active, .button-active:active, .button-gray:active {
	-webkit-box-shadow: inset 0px 0px 3px 0px rgba(100,100,100,0.5);
	-moz-box-shadow: inset 0px 0px 3px 0px rgba(100,100,100,0.5);
	box-shadow: inset 0px 0px 3px 0px rgba(100,100,100,0.5);
	background: #009fda;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzMwYmZmNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwNjlmZDkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #30bff5 0%, #069fd9 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#30bff5), color-stop(100%,#069fd9));
	background: -webkit-linear-gradient(top, #30bff5 0%,#069fd9 100%);
	background: -o-linear-gradient(top, #30bff5 0%,#069fd9 100%);
	background: -ms-linear-gradient(top, #30bff5 0%,#069fd9 100%);
	background: linear-gradient(to bottom, #30bff5 0%,#069fd9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#30bff5', endColorstr='#069fd9',GradientType=0 );
}
.button:active .content, .button-active:active .content, .button-gray:active .content, 
input[type="submit"].button-active:active, input[type="submit"].button:active, input[type="submit"].button-gray:active, .button:active .content i, .button-active:active .content i, .button-gray:active .content i {
	color: #ffffff;
	text-shadow: none !important;
}

.button.pressed.left, .button-active.pressed.left, .button-gray.pressed.left {
	/*background: #fbfaf8;*/
	-webkit-box-shadow: inset -7px 0px 3px -5px rgba(100,100,100,0.5);
	-moz-box-shadow: inset -7px 0px 3px -5px rgba(100,100,100,0.5);
	box-shadow: inset -7px 0px 3px -5px rgba(100,100,100,0.5);
}
.button.pressed.right, .button-active.pressed.right, .button-gray.pressed.right {
	/*background: #fbfaf8;*/
	-webkit-box-shadow: inset 7px 0px 3px -5px rgba(100,100,100,0.5);
	-moz-box-shadow: inset 7px 0px 3px -5px rgba(100,100,100,0.5);
	box-shadow: inset 7px 0px 3px -5px rgba(100,100,100,0.5);
}
.button.pressed.middle, .button-active.pressed.middle, .button-gray.pressed.middle {
	/*background: #fbfaf8;*/
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(100,100,100,0.5);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(100,100,100,0.5);
	box-shadow: inset 0px 0px 10px 0px rgba(100,100,100,0.5);
}

.button-active {
	background: #009fda;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzMwYmZmNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwNjlmZDkiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top, #30bff5 0%, #069fd9 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#30bff5), color-stop(100%,#069fd9));
	background: -webkit-linear-gradient(top, #30bff5 0%,#069fd9 100%);
	background: -o-linear-gradient(top, #30bff5 0%,#069fd9 100%);
	background: -ms-linear-gradient(top, #30bff5 0%,#069fd9 100%);
	background: linear-gradient(to bottom, #30bff5 0%,#069fd9 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#30bff5', endColorstr='#069fd9',GradientType=0 );
}
.button-active .content, input[type="submit"].button-active {
	color: #ffffff;
	font-weight: bold;
	text-align: center !important;
}

.button-gray .content, input[type="submit"].button-gray {
	color: #58595b;
	font-weight: bold;
	text-align: center !important;
}

.button.x-large, .button-active.x-large, .button-gray.x-large {
	width: 333px;
}

.button.large, .button-active.large, .button-gray.large {
	width: 165px;
}

.button.small, .button-active.small, .button-gray.small {
	width: 115px;
}

.button-next .content:after {
	vertical-align: middle;
	padding-left: 11px;
	content: " " url("../images/icons/arrow_next.png");
}
.button-prev .content:before {
	vertical-align: middle;
	padding-right: 11px;
	content: " " url("../images/icons/arrow_prev.png");
}

.button[disabled="disabled"],
.button-gray[disabled="disabled"],
.button-active[disabled="disabled"] {
	font-weight: bold;
	color: #cccccc;
	background: #fdfdfd;
	box-shadow: none;
}
.button[disabled="disabled"] .content,
.button-gray[disabled="disabled"] .content,
.button-active[disabled="disabled"] .content {
	color: #cccccc;
}

.button-active[disabled="disabled"] .content > i {
	color: #9c9c9c;
}

[class*="button"] .content > i {
	display: inline-block;
	position: relative;
	top: 8px;
	float: right;
	padding-left: 4px;
	line-height: 0px;
	font-size: 20px;
	color: #9c9c9c;
}
.button-active .content > i {
	color: #ffffff;
}

.toolbar .segment-wrapper, .popup .segment-wrapper {
	display: table;
	float: left;
	margin-right: 24px;
}
.popup .segment-wrapper {
	text-shadow: none;
}
[class*="segmented"] {
	margin-left: 0px;
	margin-right: 0px;
	display: table-cell;
	min-width: 110px;
	border-left: none;
}
	[class*="segmented"]:first-child {
		/*border: 1px solid #b7b2ad;*/
	}
.segmented.button-gray {
	background: #fbfaf8;
}
.segmented.button-gray > .content {
	color: #cccccc;	
}


div.input-wrapper.next:after {
	vertical-align: middle;
	position: relative;
	right: 70px;
	content: " " url("../images/icons/arrow_next.png");
	z-index: 1;
}
div.input-wrapper.prev:before {
	vertical-align: middle;
	position: relative;
	left: 60px;
	content: " " url("../images/icons/arrow_prev.png");
	z-index: 1;
}

div.input-wrapper > input[type="submit"] {
	position: relative;
	display: inline;
	height: 42px;
	width: 191px;
	border-radius: 0px;
}
div.input-wrapper.prev > input[type="submit"] {
	left: -10px;
	position: relative;
}

.popup-buttons > div.input-wrapper > input[type="submit"] {
	width: 105px;
	position: relative;
	top: 0px;
	padding: 14px 12px;
	height: 46px;
}
/*************************************************
* Tables
************************************************/
table {
	border: 1px solid #b7b2ad;
	vertical-align: top;
	border-spacing: 0px;
	border-color: #b7b2ad;
	width: 100%;
}

th, td {
	background-color: #ffffff;
	padding: 20px;
	margin: 0px;
	border-right: 1px solid #b7b2ad;
	border-bottom: 1px solid #b7b2ad;
	text-align: center;
}
th:last-child, td:last-child {
	border-right: none;
}
tr:last-child > th, tr:last-child > td {
	border-bottom: none;
}

/*************************************************
* Forms & Fields
************************************************/
form {
	padding: 10px;	
}

form .error {
	font-style: italic;
	position: relative;
	top: -10px;
	left: 26px;
}
form .y-spacer {
	width: 100%;
	height: 40px;
}

.error.email{
	top: 5px;
	left: 102px;
}
/*form .button, form .button-active, form .button-gray {
	margin-top: 14px;
	padding: 9px 12px;
}*/

/*
input[type="text"], input[type="password"], input[type="email"], input[name="email"] {
	display: block;
	background-color: #fbfaf8;
	box-shadow: none;
	padding: 10px;
	border: 1px solid #b7b2ad;
	-webkit-appearance: none;
	border-radius: 0;
	-moz-appearance: none;
	-ms-appearance: none;
}
	*/

input.full {
	width: 100%;
}

input.long {
	width: 75%;
}
input.short {
	width: 50%;
}

form table {
	border: none;
	vertical-align: top;
	border-spacing: 0px;
	width: 100%;
}

form th, td {
	padding: 10px;
}


form .file-options {
	width: 100%;
}

form .file-options > div {
	display: inline-block;
	width: 125px;
}

form .file-options > div:first-child {
	margin-right: 120px;
	margin-left: 30px;
}

form .option-title {
	color: #009fda;
	margin-bottom: 5px;
	letter-spacing: 2px;
}

form .radio-wrapper {
	border: 1px solid #b7b2ad;
	margin: 5px 0px;
	height: 50px;
}
form .radio-wrapper.inline {
	display: inline-block;
	border: none;
}

form .radio-wrapper label {
	padding: 19px 0px;
	background-color: #ffffff;
	border-right: 1px solid #b7b2ad;
	display: inline-block;
	text-align: center;
	width: 80px;
	margin: 0px;
	font-size: 10px;
	line-height: 10px;
}
form .radio-wrapper label.normal {
    font-size: 14px;
    font-weight: normal;
    background-color: transparent;
    border-right: none;
    width: 50px;
}


form .radio-wrapper input {
	background-color: #f4f3f1;
	display: inline-block;
	margin: 0px;
	margin-left: 12px;
}
form .radio-wrapper input[type="radio"]:checked {
	background-color: #009fda;
}
form.email-form .description {
	margin-bottom: 1rem;
}
form.email-form .options {
	display: table;
	width: 90%;
}
form.email-form .options .option {
	display: table-row;
}
form.email-form .options .option-label, form.email-form .options .option-field {
	display: table-cell;
	position: relative;
	vertical-align: middle;
}
form.email-form .option-field.select:after {
	content: url(../images/icons/arrow_down.png);
	position: absolute;
	top: 10px;
	right: 10px;
}

form.email-form input[type="text"], form.email-form select {
	background-color: #ffffff;
    vertical-align: middle;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px;
}

/*************************************************
* Icons
************************************************/
i { display: block; }
i.active { color: #009fda; }
.nn-home:before {
  	content: url(../../images/icons/home.png);
}
.nav-item.active#home .nn-home:before {
	content: url(../../images/icons/home_blue.png);
}
.nn-folder:before {
  	content: url(../../images/icons/folder.png);
}
.nn-categories:before {
  	content: url(../../images/icons/categories.png);
}
.nn-bell:before {
	content: url(../../images/icons/bell.png);
}

/*************************************************
* slide Preview stuff
************************************************/
.slide-wrapper {
	margin: 0 auto;
	width: 716px;
	height: 402px;
}

.highlight-wrapper {
	position: absolute;
	z-index: 1;
	height: 1px;
}

.highlight-wrapper .highlight {
	position: relative;
	float: left;
	border: 1px solid #b7b2ad;
	background-color: #ffffff;
	padding: 0px;
}

.slide-wrapper img {
	border: 1px solid;
	position: absolute;
	float: left;
	display: block;
}
/*************************************************
* Additional Resources
************************************************/
.resource{
			border-bottom: 1px solid #b7b2ad;
			width: 100%;
            padding-left: 25px;
            padding-top: 10px;
			padding-bottom: 10px;
    		margin-left: 25px;
		}
.resource .thumbnail{
			border: 1px solid #cccccc;
			margin-left: 50px;
			display: inline-block;
			border-radius: 0px;
		}
		.resource .title{
			padding:0;
			color: #009fda;
			font-size: 12px;
		}

		.resource .description{
			display: inline-block;
			vertical-align: top;
			padding-left: 20px;
			width: 40%;
		}

		.resource .description_body{
			
		}

		.resource .size, .resource .download{
			display: inline-block;
			padding-left: 50px;
		}

		.resource .download a{
			cursor:pointer;
		}