/* CSS RESET */

	input[type="checkbox"],html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td { margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent; }
	body { line-height:1; }
	ol,ul { list-style:none; }
	blockquote,q { quotes:none; }
	blockquote:before,blockquote:after,q:before,q:after { content:'';content:none; }
	:focus { outline:0; }
	ins { text-decoration:none; }
	del { text-decoration:line-through; }
	table { border-collapse:collapse;border-spacing:0; }

/* END CSS RESET */

/*

LOGGEDIN

logo    91
tabs    370
search  230
upload  26
user    273

LOGGEDOUT

logo    91
tabs    370
search  256
upload  0
user    273

*/

/* GENERAL */

body {
	background-color: #fff;
	color: #1E1E1E;
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	line-height: 18px;
	margin-top: 70px;
	font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	font-smooth: always;
}

a, a:link, a:visited, a:active {
	color: #0093cc;
	text-decoration: none;
	font-stretch: normal;
	font-style: normal;
	font-variant: normal;
	font-weight: 600;	
	font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	-webkit-user-select: none;
}

a:hover, a.Selected {
	color: #1E1E1E;
}

/* INPUT BOXES */

input, textarea {
	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
}

label {
	font-size: 18px;
	margin-bottom: 8px;
	display: block;
	/*color: #0093CC;*/
}

input {
	width: 95%;
	max-width: 620px;
	padding: 5px;
}

input[type=submit] {
	width: initial;
}

/* HEADER */

#Header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	border-bottom: 1px solid #d9d9d9;
	background: #fff;
}

#HeaderInner {
	margin: 0 auto;
	width: 100%;
	max-width: 990px;
	position: relative;
	display: block;

}

#HeaderLogo {
	display: block;
	width: 91px;
	height: 52px;
	overflow: hidden;
	float: left;
	text-align: left;
}

#HeaderLogo a {
	color: #1E1E1E;
	display: inline-block;
	font-size: 14px;
	height: 22px;
	letter-spacing: 0.5px;
	line-height: normal;
	padding-top: 16px;
	padding-bottom: 14px;
	font-weight: bold;
}

#HeaderLogo a:hover {
	color: #0093cc;
}

#HeaderTabs {
	display: block;
	width: 370px;
	height: 52px;
	overflow: hidden;
	float: left;
	text-align: center;	
}

#HeaderTabs ul {
	display: block;
}

#HeaderTabs li {
	display: inline-block;
	text-align: center;		
}

#HeaderTabs li a {
	display: inline-block;
	font-size: 14px;
	height: 22px;
	letter-spacing: 0.5px;
	line-height: normal;
	padding-top: 16px;
	padding-bottom: 14px;
	padding-right: 3px;
	padding-left: 3px;
}

#HeaderTabs li a.ActiveLink, #HeaderUser li a.ActiveLink, #SortByContainer a.Selected {
	color: black;
}

.HeaderTabsIcon {
	display: none;
}

#SideLogo {
	/*position: absolute;
	bottom: 0px;
	right: 3px;
	z-index: 1000;*/
	width: 35px;
	float: left;
}

#SideLogo img {
	width: 30px;
	height: 30px;

}

/* search */
#HeaderSearch {
	float: left;
	/*height: 40px;*/
	width: 230px;	
	padding-top: 12px;
	margin-left: auto;
	margin-right: auto;
}

.Wide#HeaderSearch {
	width: 256px;
}

#HeaderSearch form {
	margin-left: auto;
	margin-right: auto;
	width: 205px;
}

#txtSearch {
	border: 1px solid #E3E3E3;
	border-right: none;
	padding: 0;
	outline: none;
	float: left;
	width: 168px;
	height: 26px;
	padding-left: 7px;
	font-size: 13px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	margin-bottom: 2px;
}

.txtSearchDefault {
	color: #000;
}

#btnSearch {
	/* border: 1px solid #E3E3E3; */
	border: 1px solid white;
	border-left: none;
	background-color: white;
	float: left;
	background-image: url("/static/sys/img/search.png");
	background-position: center; 
	background-repeat: no-repeat;
	width: 28px;
	height: 28px;
	cursor: pointer;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;	
}

#btnSearch img {
	padding-top: 5px;
}

div#AdvancedSearchContainer {
	/*overflow: hidden;*/
	float: none;
	clear: left;
	padding-top: 2px;
	/*width: 400px;*/
	/*position: absolute;
	left: 480px;
	top: 69px; */
}

div#AdvancedSearchCenter {
	float: left;
	height: 20px;
	/*width: 200px;
	padding-left: 5px;
	text-align: center;*/
	font-size: 12px;
	margin-top: -3px;
	white-space: nowrap;
}

#AdvancedSearchCenter input {
	vertical-align: text-top;
	margin-top: 3px;
	width: initial;
}

#AdvancedSearchCenter label {
	margin-left: 5px;
	margin-right: 10px;
	display: initial;
	font-size: 12px;
}

/* upload */

#HeaderUpload {
	float: left;
	padding-top: 12px;
	height: 40px;
	width: 26px;
}

#HeaderUpload #btnUpload {
	/* border: 1px solid #E3E3E3; */
	background-color: white;
	float: left;
	padding-top: 4px;
	/* border-radius: 3px; */
	text-align: center;
	height: 22px;
	width: 100%;
}

div#AddContentContainer {
	border: 1px solid #E3E3E3;
	border-radius: 3px;
	display: none;
	margin-top: 5px;
	margin-left: -1px;
	background-color: #ffffff;
	padding-top: 10px;
	height: 130px;
	width: 95px;
	text-align: left;
	padding-left: 10px;
	padding-right: 10px;
}

#AddContentContainer a {
	color: #0093cc;
	line-height: 18px;
	display: block;
	width: 90px;
}

/* user */
#HeaderUser {
	float: left;
	height: 52px;
	width: 273px;
	text-align: right;
}

#HeaderUser ul {
	padding-top: 16px;
	height: 36px;
	display: block;
}

#HeaderUser li {
	display: inline-block;
	vertical-align: top;
}

#HeaderUser li a {
	font-size: 13px;
	letter-spacing: 0.5px;
	line-height: normal;
	padding-right: 3px;
	padding-left: 3px;
}

#HeaderUser img { 
	border-radius: 2px; 
	padding-top: 1px;
	margin-right: 4px;
	  display: inline-block;
}	
		
#HeaderUser ul a { 
	font-size: 14px; 
	vertical-align: top; 
	line-height: 22px; 
}

#HeaderUser ul:nth-child(1) a { 
	padding-right: 1px;
}

#HeaderUser .Wide li:nth-child(2):before, #HeaderUser .Wide li:nth-child(3):before {
	color: #aaa;
	content: '\00B7';
	font-size: 22px;
	vertical-align: top;
	padding-right: 1px;
	line-height: 22px; 	
 }
 
/* pm */

#PmNewImage, #PmNoNewImage {
	padding-top: 1px;
	height: 20px;
	float: right;
	padding-right: 2px;	
}

#NotificationsNewImage, #NotificationsNoNewImage {
	padding-top: 4px;
	height: 20px;
	float: right;
	padding-right: 2px;	
}

/* help tool tips */

.HelpToolTip, .HelpBox {
	position: absolute;
	display: none;
	background-color: #EBEBEB;
	line-height: 15px;
	padding: 7px;
	z-index: 5000;
	border-radius: 5px;
	-moz-border-radius: 5px;
	margin-bottom: 20px;
}

.HelpToolTipClose {
	display: block;
	float: right;
}

li#MobileLogout {
	display: none;
}

#MobileLogout a {
	font-weight: 600;
}

/* FOOTER */

#Footer {
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
}

#FooterInner {
	padding-top: 10px;
	padding-bottom: 10px;
	border-top: 1px solid #d9d9d9;
	margin: 0 auto;
	width: 100%;
	max-width: 990px;
	position: relative;
	display: block;
}

.FooterPageLinks ul {
	margin-top: 4px;
	display: block;
	text-align: center;
}

.FooterPageLinks li {
	display: inline-block;
	text-align: center;	
	line-height: 22px; 		
}

.FooterPageLinks a {
	font-weight: normal;
}

.FooterPageLinks li:after {
	color: #aaa;
	content: '\00B7';
	font-size: 20px;
	vertical-align: top;
	padding-left: 10px;
	padding-right: 10px;
	line-height: 22px; 	
 }
 
.FooterPageLinks li:last-child:after {
	display: none;
}
#FooterPageLinksTitle {
	padding-right: 10px;
}

/* COOKIES */

#CookieConsent {
	margin-top: 7px;
	display: block;
	text-align: center;
	padding: 5px;
}
#CookieConsent .LinkButton {
	margin-left: 10px;
}

