/*------------------------------------------------------------------

  [Structure]
   
  Project:     CAS Campus V5
  Version:     1.0
  Last change: 03/05/12
  Assigned to: Thomas Gehrig
  
  Primary use: 
  
  
  Table of contents
  -----------------
  
  +Dropdown-Menu/-Button
  +Header Controls
    +Term-Menu, +Global Search
    +Header-Menu [offen]
  +Page Title
  +Navigation
    +Breadcrumb-Navigation
    +Module-Navigation
    +Main-Navigation
    +Subpage-Navigation
  +Toolbar
  +Information Design Elements     
    +Table
    +List (without table)
  +Infobox, +Formbox
  +Controls
    +Buttons
    +Links
  +Calendar
  +HelpC
  
    
-------------------------------------------------------------------*/

/* +Content font style  
-------------------------------------------------------------------*/
.content ul,.content ol {
	list-style-position: outside;
	padding-left: 1.7em;
}

.content ol {
	list-style-type: decimal;
}

.content ul {
	list-style-type: circle;
}

.content p,.content ol,.content ul {
	margin: 0 0 0.9em;
}

.content li {
	margin: 0.25em 0;
}

ul.enum {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.enum li {
	margin: 0;
}

/* +Notification 
-------------------------------------------------------------------*/
.notification-container {
	width: 400px;
	position: absolute;
	z-index: 9999;
	top: 55px;
	right: 10px;
}

.notification {
	border: solid 1px #bbb;
	overflow: hidden;
	border-radius: 4px;
	-webkit-box-shadow: 2px 3px 3px rgba(68, 68, 68, .2);
	-moz-box-shadow: 2px 3px 3px rgba(68, 68, 68, .2);
	box-shadow: 2px 3px 3px rgba(68, 68, 68, .2);
	background: #fff;
	margin: 0;
}

.notification-inner {
	position: relative;
	padding: 6px 8px;
}

.notification .exit-button {
	position: absolute;
	top: 8px;
	right: 8px;
	text-indent: -80000px;
	background-repeat: no-repeat;
	background: url(../images/v5-icon-sprite.png) no-repeat -32px -198px;
	font-size: 0.75em;
	height: 16px;
	width: 16px;
	z-index: 999;
	cursor: pointer;
	color: #333;
	text-decoration: none;
}

.notification .status-icon {
	float: left;
	margin: 2px 8px 2px 0;
	height: 16px;
	width: 16px;
	background-repeat: no-repeat;
	background: url(../images/v5-icon-sprite.png) no-repeat -32px -162px;
}

.notification .message-text {
	overflow: hidden;
	color: #333;
	margin: 0 25px 0 0;
}

.notification .message-text p {
	margin: 0;
	padding: 2px 0;
	font-size: 12px;
	line-height: 16px;
}

.notification.error-note {
	border-color: #f37159;
	background: #fccac1;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.error-note .message-text {
	color: #ce1e0c;
}

.error-note .notification-inner {
	padding: 3px 8px;
}

.error-note .exit-button {
	top: 5px;
}

.notification.warning-note {
	border-color: #ffff00;
	background: #fcfac1;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.warning-note .message-text {
	color: #333;
}

.warning-note .notification-inner {
	padding: 3px 8px;
}

.warning-note .exit-button {
	top: 5px;
}

.global-error-container .notification {
	margin-top: 3px;
}

/* +Dropdown-Menu/-Button
-------------------------------------------------------------------*/

/* Dropdown-Menu/-Button [level 1] */
.menu-item { /* list element */
	float: left;
	position: relative;
	cursor: pointer;
}

.menu-item:hover>.menu-submenu, /* submenu [level 1] */ .submenu-item:hover>.submenu-subsubmenu
	{ /* submenu in submenu [level > 1] */
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
}

/* TODO: Klasse löschen "menu-item-separator-vertical" */
.menu-item-separator-vertical {
	float: left;
}

/* TODO: Größe anpassen */
.menu-frame .sep-vertical {
	width: 2px;
	height: 20px;
}

.menu-item button { /* reset primary-button styles */
	border: 0;
	background: transparent;
	color: #888888;
	/*width: 100%;*/
	/* TODO: verursacht im IE 7 Toolbar Probleme (Buttons nehmen 100% Breite an) */
	text-align: left;
	margin: 0;
	padding: 0 1em;
}

.submenu-item>a,.submenu-item .menu-button,.submenu-item .link,.submenu button,.submenu .label
	{
	padding: 0 1em;
	line-height: 2.5em;
	white-space: nowrap; /* avoid line break in submenu */
}

.submenu button {
	height: 2.5em; /* Legacy Firefox bug: line-height has no effect */
}

.submenu button .label {
	padding: 0;
}

/* Dropdown Submenu [level 1] */
.menu-submenu,.submenu-subsubmenu {
	position: absolute;
	left: 0;
	visibility: hidden;
	opacity: 0;
	z-index: 99999;
	border: 1px solid #bbb;
	min-width: 100px;
	background: #fff;
	-moz-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
	box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
}

.menu-submenu {
	-webkit-transition: visibility 0s
		cubic-bezier(0.500, 0.005, 0.800, 1.000) 0.4s, opacity .4s
		cubic-bezier(0.500, 0.005, 0.800, 1.000);
	-moz-transition: visibility 0s cubic-bezier(0.500, 0.005, 0.800, 1.000)
		0.4s, opacity .4s cubic-bezier(0.500, 0.005, 0.800, 1.000);
	-o-transition: visibility 0s cubic-bezier(0.500, 0.005, 0.800, 1.000)
		0.4s, opacity .4s cubic-bezier(0.500, 0.005, 0.800, 1.000);
	transition: visibility 0s cubic-bezier(0.500, 0.005, 0.800, 1.000) 0.4s,
		opacity .4s cubic-bezier(0.500, 0.005, 0.800, 1.000);
}

.submenu-subsubmenu {
	top: -1px;
	left: 201px;
}

/*
.submenu-frame,
.subsubmenu-frame {
  float: left;
  width: 100%;
}
*/
.submenu-item:hover,.subsubmenu-item:hover {
	position: relative;
}

.submenu-item a,.submenu-item .label,.submenu-item button {
	/*  all submenu entrys needs the block property */
	display: block;
}

.submenu-item .label { /* reset class label in submenu */
	margin: 0 !important;
}

.submenu-item button {
	/* all button entrys have to fill the whole line */
	width: 100%;
}

.menu-button:hover,.menu-button:focus,.menu-button:active,.submenu-item .label:hover,.submenu-item .label:focus,.submenu-item .label:active,.submenu-item a:hover,.submenu-item a:focus,.submenu-item a:active,.submenu-item button:hover,.submenu-item button:focus,.submenu-item button:active
	{
	color: #000;
	text-decoration: none;
	background: #ddeaf2;
}

/* +Header Controls
-------------------------------------------------------------------*/
.header-container,.header-container a {
	color: #888;
}

.header-container a,.header-container a:link,.header-container a:hover {
	text-decoration: none;
}

.header-container .menu-submenu {
	top: 32px; /* height of header menu control */
	max-height: calc(100vh - 50px);;
	width: auto;
}

/* +Term-Menu, +Global Search
-------------------------------*/

/* dimensions and alignment */
.menu-frame .image {
	vertical-align: middle;
}

.menu-semester {
	border: 1px solid #bbb;
	border-radius: 4px;
}

.menu-semester {
	min-width: 140px;
	width: 10em;
}

.menu-semester,.menu-search { /*padding: 4px;*/
	
}

.menu-semester .menu,.menu-semester .menu-item {
	width: 100%;
}

.menu-semester .menu-item,.menu-search .menu-item { /* webkit */
	min-height: 32px;
}

.semester-wrapper { /* text-wrapper */
	float: left;
	margin: 6px 0 0 4px;
	width: 86px;
	height: 24px; /* semester icon height (img float) */
	overflow: hidden;
	white-space: nowrap;
	text-shadow: 1px 1px 0 #fff;
}

.menu-search {
	float: left;
	border: 1px solid #bbb;
	border-radius: 4px 0 0 4px;
	margin-right: -1px;
}

.search-input { /* search field wrapper div */
	padding: 0 5px;
	border: 1px solid #bbb;
	border-radius: 0 4px 4px 0;
	overflow: hidden; /* float correction */
	background: #fff url(../images/v5-global-sprite.png) repeat-x 0 -189px;
	/* inner shadow */
	background: -moz-linear-gradient(top, rgba(241, 241, 241, 1) 0%,
		rgba(255, 255, 255, 1) 35% );
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(241,
		241, 241, 1) ), color-stop(35%, rgba(255, 255, 255, 1) ) );
	background: -webkit-linear-gradient(top, rgba(241, 241, 241, 1) 0%,
		rgba(255, 255, 255, 1) 35% );
	background: -o-linear-gradient(top, rgba(241, 241, 241, 1) 0%,
		rgba(255, 255, 255, 1) 35% );
	background: -ms-linear-gradient(top, rgba(241, 241, 241, 1) 0%,
		rgba(255, 255, 255, 1) 35% );
	background: linear-gradient(top, rgba(241, 241, 241, 1) 0%,
		rgba(255, 255, 255, 1) 35% );
}

.search-input.js-focus, /* shows the overlapped left border */
	.search-input.js-hover {
	position: relative;
}

.search-input.js-hover {
	border-color: #8f8f8f;
}

.search-input.js-focus {
	border-color: #498ab3;
	box-shadow: 0 0 3px #5697c3;
}

.global-search .search-text { /* input search field */
	margin: 0;
	padding: 0;
	border: none;
	width: 100%;
	height: 32px; /* = icon height + margin */
	line-height: 32px; /* IE 7,8 fix */
	background-position: right center;
	background-repeat: no-repeat;
	background-color: transparent;
	color: #adadad;
	vertical-align: top; /* Old FX fix */
}

.menu-semester .menu-submenu,.menu-search .menu-submenu {
	width: auto;
}

/* appearance and behavior */

/*
.global-search {
}
*/
.menu-semester,.menu-search {
	background: #f2f1f1 url(../images/v5-global-sprite.png) repeat-x 0
		-529px; /* inner shadow */
	background: -moz-linear-gradient(top, #fff, #f2f1f1);
	background: -webkit-linear-gradient(top, #fff, #f2f1f1);
	background: -o-linear-gradient(top, #fff, #f2f1f1);
	background: -ms-linear-gradient(top, #fff, #f2f1f1);
	background: linear-gradient(top, #fff, #f2f1f1);
}

.menu-semester:hover,.menu-semester:focus,.menu-search:hover,.menu-search:focus
	{
	-webkit-box-shadow: inset 0 1px 5px rgba(180, 180, 180, .3);
	-moz-box-shadow: inset 0 1px 5px rgba(180, 180, 180, .3);
	box-shadow: inset 0 1px 5px rgba(180, 180, 180, .3);
	border: solid 1px #bbb;
	background: #e7e7e7;
	background: -webkit-linear-gradient(bottom, #f5f5f5, #f1f1f1);
	background: -moz-linear-gradient(bottom, #f5f5f5, #f1f1f1);
	background: -o-linear-gradient(bottom, #f5f5f5, #f1f1f1);
	background: -ms-linear-gradient(bottom, #f5f5f5, #f1f1f1);
	background: linear-gradient(to top, #f5f5f5, #f1f1f1);
}

/* focus state */
.menu-semester.js-focus,.menu-search.js-focus {
	border-color: #8f8f8f;
}

.menu-semester .icon-down,.global-search .icon-down {
	margin: 0 6px 0 3px;
}

.menu-semester .icon-down { /*float: right;*/
	margin-top: 11px;
}

.menu-semester .icon-semester,.global-search .icon-search {
	margin: 4px 0 4px 4px;
}

.menu-semester .icon-semester {
	float: left;
}

/* +Header-Menu
-------------------------------*/

/* TODO: content... */
.header-menu {
	font-size: 0.857em;
}

.header-menu .menu-item {
	margin: 0 5px;
	min-height: 32px;
	min-width: 32px;
	border: 1px solid transparent;
	border-radius: 4px;
}

.header-menu .menu-item:hover,.header-menu .menu-item:focus {
	-webkit-box-shadow: inset 0 1px 5px rgba(150, 150, 150, .3);
	-moz-box-shadow: inset 0 1px 5px rgba(150, 150, 150, .3);
	box-shadow: inset 0 1px 5px rgba(150, 150, 150, .3);
	border: solid 1px #bbb;
	background: #e7e7e7;
	background: -webkit-linear-gradient(bottom, #f5f5f5, #f1f1f1);
	background: -moz-linear-gradient(bottom, #f5f5f5, #f1f1f1);
	background: -o-linear-gradient(bottom, #f5f5f5, #f1f1f1);
	background: -ms-linear-gradient(bottom, #f5f5f5, #f1f1f1);
	background: linear-gradient(to top, #f5f5f5, #f1f1f1);
}

.header-menu .image {
	margin: 4px;
}

.header-menu .label {
	margin-right: 4px;
}

.header-menu .menu-submenu {
	left: auto;
	right: 0;
}

.header-menu .submenu-subsubmenu {
	left: -102px;
}

/* +Headline
-------------------------------*/
.portal .header-container .large-label {
	padding: 8px 0 0;
}

/* +Page Title
-------------------------------------------------------------------*/

/* TODO: Klasse ändern, H1-Tag benutzen!!! */
/* content-title */
.title {
    clear: both;
    color: #56595a;
    font-size: 1.4em;
    font-weight: bold;
    padding: 10px 0 10px;
}


.heading-h1 {
	font-size: 1.333em;
	font-weight: bold;
	color: #56595a;
	margin-bottom: 20px;
}

/* +Navigation
-------------------------------------------------------------------*/

/*
.navigator-history {
}

.navigator-history .menu {

}

.navigator-history .menu-item .icon-down {
  margin: 0 3px;
}

.navigator-history .menu li:first-child:hover {
  background: #ffffff;	
  background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 50%, #e8e8e8 51%, #ededed 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#f1f1f1), color-stop(51%,#e8e8e8), color-stop(100%,#ededed));
  background: -webkit-linear-gradient(top, #ffffff 0%,#f1f1f1 50%,#e8e8e8 51%,#ededed 100%);
  -moz-border-radius: 2px 0px 0px 2px;
  -webkit-border-radius: 2px 0px 0px 2px;
  border-radius: 2px 0px 0px 2px;	
}

.navigator-history .menu li:last-child:hover {
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #f1f1f1 50%, #e8e8e8 51%, #ededed 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#f1f1f1), color-stop(51%,#e8e8e8), color-stop(100%,#ededed));
  background: -webkit-linear-gradient(top, #ffffff 0%,#f1f1f1 50%,#e8e8e8 51%,#ededed 100%);
  -moz-border-radius: 0px 2px 2px 0px;
  -webkit-border-radius: 0px 2px 2px 0px;
  border-radius: 0px 2px 2px 0px;
}

.navigator-history .menu-frame,
.navigator-breadcrumb .menu-frame {
  background: #f5f5f5;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  cursor: pointer;
}

.navigator-history .icon-arrow-left {
  vertical-align: middle;
}

.navigator-history .history {
  display: inline-block;
  padding: 0 15px;
  border-right: 1px solid #bbb;	
}



.navigator-breadcrumb .menu-submenu {
  min-width: 100px;
}
*/

/* +Breadcrumb-Navigation
-------------------------------*/
.navigator-history,.breadcrumb {
	float: left;
	margin: 0 10px 4px 0;
}

/* TODO: Klasse benötigt: navigator-history ul --> menu-history */
/* .menu-history, */
.navigator-history ul,.menu-bread {
	border: 1px solid #bbb;
	border-radius: 3px;
}

.navigator-history .menu-item,.breadcrumb .menu-item {
	padding: 2px 0;
}

/* TODO: Klasse benötigt: wie bei breadcrumb!!! */
/*.navigator-history .menu-item:first-child {*/
.navigator-history .menu-item:first-child {
	padding-left: 13px;
	padding-right: 13px;
}

/* TODO: Klasse benötigt: wie bei breadcrumb!!! */
/*.navigator-history .last {*/
.navigator-history .menu-item  ~ .menu-item { /* dropdown section */
	border-left: 1px solid #bbb;
	padding-left: 5px;
	padding-right: 5px;
}

.breadcrumb .menu-item {
	padding-left: 10px;
	padding-right: 10px;
	background: url("../images/graphic-sprite.png") no-repeat right -10px;
}

.breadcrumb li.first {
	padding-left: 0;
	padding-right: 0;
	width: 42px;
	text-align: center;
}

.breadcrumb li.last {
	background: none;
}

.breadcrumb a {
	text-decoration: none;
	color: #888;
}

.breadcrumb a:link,.breadcrumb a:visited {
	color: #888;
}

.breadcrumb>a:hover,.breadcrumb>a:focus,.breadcrumb>a:active {
	text-decoration: underline;
}

.breadcrumb .active>a {
	font-weight: bold;
}

.breadcrumb .icon-home-smaller {
	padding: 0 5px 0 0;
}

.breadcrumb .icon-down {
	margin: 0 3px 0 10px;
}

.breadcrumb .menu-submenu {
	top: 24px;
	overflow: auto;
	max-height: calc(100vh - 100px);
}

/* +Module-Navigation
-------------------------------*/
.app-section {
	overflow: hidden;
}

.app-large {
	padding: 8px;
	border-bottom: 1px solid #acb8bb;
	background: #ebf3f6;
}

.app-large .link-wrapper {
	display: block;
}

.app-large .link,.app-small .link {
	display: block;
	border: 1px solid transparent;
	border-radius: 4px;
	text-align: center;
	text-decoration: none;
	-webkit-transition: background 0.3s ease 0.3s, border 0.5s ease;
	-moz-transition: background 0.3s ease 0.3s, border 0.5s ease;
	-o-transition: background 0.3s ease 0.3s, border 0.5s ease;
	-ms-transition: background 0.3s ease 0.3s, border 0.5s ease;
	transition: background 0.3s ease 0.3s, border 0.5s ease;
}

.app-large .link {
	margin: 2px;
	padding: 6px 4px;
}

.app-small .link {
	margin: 5px;
	padding: 8px;
}

.app-large .link:hover,.app-small .link:hover {
	border-color: #b0bcc1;
	text-decoration: none;
	background: #d5e4e8 url(../images/v5-global-sprite.png) repeat-x 0
		-931px;
	background: -moz-linear-gradient(top, #edf3f5 0%, #d5e4e8 40%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #edf3f5),
		color-stop(40%, #d5e4e8) );
	background: -webkit-linear-gradient(top, #edf3f5 0%, #d5e4e8 40%);
	background: -o-linear-gradient(top, #edf3f5 0%, #d5e4e8 40%);
	background: -ms-linear-gradient(top, #edf3f5 0%, #d5e4e8 40%);
	background: linear-gradient(top, #edf3f5 0%, #d5e4e8 40%);
	outline: none;
}

.app-large .link:focus,.app-small .link:focus {
	border-color: #81939b;
	-webkit-box-shadow: 0 0 3px #c4d3d9;
	-moz-box-shadow: 0 0 3px #c4d3d9;
	box-shadow: 0 0 3px #c4d3d9;
	background: #d5e4e8;
	outline: none;
}

.app-large .link:active,.app-small .link:active {
	border-color: #b0bcc1;
	background: #d5e4e8 url(../images/v5-global-sprite.png) repeat-x 0
		-1004px;
	background: -moz-linear-gradient(top, #a3aeb1 0%, #b4c0c4 4%, #d5e4e8 15%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a3aeb1),
		color-stop(4%, #b4c0c4), color-stop(15%, #d5e4e8) );
	background: -webkit-linear-gradient(top, #a3aeb1 0%, #b4c0c4 4%, #d5e4e8 15%);
	background: -o-linear-gradient(top, #a3aeb1 0%, #b4c0c4 4%, #d5e4e8 15%);
	background: -ms-linear-gradient(top, #a3aeb1 0%, #b4c0c4 4%, #d5e4e8 15%);
	background: linear-gradient(top, #a3aeb1 0%, #b4c0c4 4%, #d5e4e8 15%);
	-webkit-box-shadow: none; /* reset :focus box-shadow */
	-moz-box-shadow: none;
	box-shadow: none;
}

.app-large .link:active *,.app-small .link:active * {
	position: relative;
	top: 1px;
}

/* hightlight active module */
.app-large .apphighlight,.app-large .apphighlight:hover,.app-small .apphighlight
	{
	border-color: #b0bcc1;
	text-decoration: none;
	background: #d5e4e8;
	outline: none;
}

.app-large .apphighlight {
	/* No pointer cursor for the active cockpit icon */
	cursor: default;
}

.app-large .apphighlight:active * {
	/* No move on click pointer for the active cockpit icon */
	position: static;
}

.app-large .link-text,.navigator-listheader-large .label,.navigator-listheader-context .label
	{
	font-weight: bold;
	color: #2d5378;
	text-shadow: 1px 1px 0 #fff;
}

.app-large .image,.app-small .image {
	display: block;
	margin: 0 auto;
}

/* arrow separator */
.app-separator {
	margin-top: -1px;
	text-align: center;
	line-height: 0;
}

/* +Main-Navigation / 
   +Subpage-Navigation
-------------------------------*/

/* general style(s) */
.nav-info {
	font-weight: bold;
	color: #2d5378;
	text-shadow: 1px 1px 0 #fff;
}

/* title section */
.modul-info { /* table */
	display: table;
	padding: 5px 10px;
}

.modul-info .boxlayout { /* tr */
	display: table-row;
}

.modul-info li { /* td */
	display: table-cell;
	float: none;
	vertical-align: middle;
}

.nav-info .image {
	margin: 0 10px 0 0;
}

/* navigation-list */
.main-navigation {
	margin: -1px 0 0; /* display top border over container border */
	border-top: 1px solid #acb8bb;
	border-bottom: 1px solid #eaf2f4;
}

.main-navigation li {
	float: none;
}

.main-navigation .link { /* A-tag */
	display: block;
	border-top: 1px solid #eaf2f4;
	border-bottom: 1px solid #acb8bb;
	text-decoration: none;
	color: #2b2e2e;
	cursor: pointer;
}

.main-navigation .link:hover,.main-navigation .link:focus {
	background: #eef6f8;
	color: #000;
}

/*
.main-navigation .link:active {
  border-top: 1px solid #5696c2;
	background: #4a7cab;
}
*/
.main-navigation .link:active .link-text {
	position: relative;
	top: 1px;
}

.main-navigation .active,.main-navigation .active:hover,.main-navigation .active:focus
	{
	border-top: 1px solid #3f5f7d;
	border-bottom: 1px solid #3f5f7d;
	background: #5595c0 url(../images/v5-global-sprite.png) repeat-x 0
		-809px;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(63,
		95, 125, 1) ), color-stop(100%, rgba(86, 151, 195, 1) ) );
	background: -webkit-linear-gradient(top, rgba(63, 95, 125, 1) 0%,
		rgba(86, 151, 195, 1) 100% );
	background: -moz-linear-gradient(top, rgba(63, 95, 125, 1) 0%,
		rgba(86, 151, 195, 1) 100% );
	background: -ms-linear-gradient(top, rgba(63, 95, 125, 1) 0%,
		rgba(86, 151, 195, 1) 100% );
	background: -o-linear-gradient(top, rgba(63, 95, 125, 1) 0%,
		rgba(86, 151, 195, 1) 100% );
	background: linear-gradient(top, rgba(63, 95, 125, 1) 0%,
		rgba(86, 151, 195, 1) 100% );
	color: #dbe5ec;
}

.main-navigation .link-text {
	display: block;
	padding: 0.3em 24px 0.3em 10px;
}

.main-navigation .active .link-text,.main-navigation .active:hover .link-text,.main-navigation .active:focus .link-text
	{
	background: none !important;
	cursor: default;
}

.main-navigation .active:active .link-text {
	position: static;
}

/* +Toolbar
-------------------------------------------------------------------*/
.toolbar-container {
	background: #f9f9f9;
	z-index: 10;
}

.menu-toolbar {
	max-height: 36px;
	min-height: 20px;
	border: 1px solid #bbb;
	border-radius: 3px;
	background: #fff;
	color: #606060;
}

.menu-toolbar .menu-item {
	margin: -1px; /* button border */
}

.menu-toolbar .action, /* button-element (wrapper) */ .menu-toolbar .link-button
	{ /* a-element */
	display: inline-block;
}

/* TODO: Regel vereinfachen, Klasse fuer Button benoetigt */
.menu-toolbar button,.menu-toolbar .link-button,.menu-toolbar .menu-item.menu-item-hassubmenu
	{
	margin: 0;
	padding: 0 8px;
	border: 1px solid transparent;
	font-weight: bold;
	color: #606060;
	line-height: 16px;
}

.menu-toolbar .menu-item.menu-item-hassubmenu {
	margin: -1px;
}

.menu-toolbar .link-button {
	text-decoration: none;
}

.menu-toolbar .menu-item:first-child button,
	/* first visible button in toolbar must have a left border-radius */
	.menu-toolbar .menu-item:first-child .link-button {
	border-radius: 3px 0 0 3px; /* top left, bottom left */
}

.menu-toolbar button:hover,.menu-toolbar .link-button:hover,.menu-item.menu-item-hassubmenu:hover
	{
	border-color: #bbb;
	background: #eee;
	background: -moz-linear-gradient(top, #ffffff 4%, #fbfbfb 4%, #f3f3f3 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(4%, #ffffff),
		color-stop(4%, #fbfbfb), color-stop(100%, #f3f3f3) );
	background: -webkit-linear-gradient(top, #ffffff 4%, #fbfbfb 4%, #f3f3f3 100%);
	background: -o-linear-gradient(top, #ffffff 4%, #fbfbfb 4%, #f3f3f3 100%);
	background: -ms-linear-gradient(top, #ffffff 4%, #fbfbfb 4%, #f3f3f3 100%);
	background: linear-gradient(top, #ffffff 4%, #fbfbfb 4%, #f3f3f3 100%);
}

.menu-toolbar button:focus,.menu-toolbar .link-button:focus {
	border-color: #888;
}

.menu-toolbar button:active,.menu-toolbar .link-button:active {
	border-color: #bbb;
	-webkit-box-shadow: inset 0 0 5px #c0c0c0;
	-moz-box-shadow: inset 0 0 5px #c0c0c0;
	box-shadow: inset 0 0 5px #c0c0c0;
	background-image: -webkit-linear-gradient(bottom, #e5e5e5, #eee, #e3e3e3);
	background-image: -moz-linear-gradient(bottom, #e5e5e5, #eee, #e3e3e3);
	background-image: -o-linear-gradient(bottom, #e5e5e5, #eee, #e3e3e3);
	background-image: -ms-linear-gradient(bottom, #e5e5e5, #eee, #e3e3e3);
	background-image: linear-gradient(to top, #e5e5e5, #eee, #e3e3e3);
}

.menu-toolbar button:active .image,.menu-toolbar button:active span,.menu-toolbar .link-button:active .image,.menu-toolbar .link-button:active span
	{
	position: relative;
	top: 1px;
}

.menu-toolbar .image {
	padding-right: 1px;
}

.menu-toolbar .link-text,.menu-toolbar .label {
	line-height: 2em;
	vertical-align: middle;
}

/* deactivated toolbar button */
.menu-toolbar .deactivated,.menu-toolbar .deactivated:hover,.menu-toolbar .deactivated:focus,.menu-toolbar .deactivated:active
	{
	background: #eee;
	border-color: #ccc;
	color: #9f9f9f;
	font-weight: normal;
	box-shadow: none;
	cursor: default;
}

.menu-toolbar .deactivated:active * {
	position: static;
}

.menu-toolbar button.deactivated img {
	opacity: 0.3;
}

.menu-toolbar .disabled {
	display: none;
}

.menu-toolbar .menu-item .primary-action {
	/* increased specificity needed */
	border-color: #aeaeae;
	background: #cdcdcd url(../images/v5-global-sprite.png) repeat-x 0
		-529px;
	background: -webkit-linear-gradient(bottom, #ccc, #eee);
	background: -moz-linear-gradient(bottom, #ccc, #eee);
	background: -o-linear-gradient(bottom, #ccc, #eee);
	background: -ms-linear-gradient(bottom, #ccc, #eee);
	background: linear-gradient(to top, #ccc, #eee);
}

.menu-toolbar .primary-action:hover {
	background-color: #d9d9d9;
	background-image: -webkit-linear-gradient(bottom, #d5d5d5, #f5f5f5);
	background-image: -moz-linear-gradient(bottom, #d5d5d5, #f5f5f5);
	background-image: -o-linear-gradient(bottom, #d5d5d5, #f5f5f5);
	background-image: -ms-linear-gradient(bottom, #d5d5d5, #f5f5f5);
	background-image: linear-gradient(to top, #d5d5d5, #f5f5f5);
}

.menu-toolbar .primary-action:focus {
	border-color: #888;
}

.menu-toolbar .primary-action:active {
	-webkit-box-shadow: inset 0 0 5px #b8b8b8;
	-moz-box-shadow: inset 0 0 5px #b8b8b8;
	box-shadow: inset 0 0 5px #b8b8b8;
	background-image: -webkit-linear-gradient(bottom, #d9d9d9, #d3d3d3);
	background-image: -moz-linear-gradient(bottom, #d9d9d9, #d3d3d3);
	background-image: -o-linear-gradient(bottom, #d9d9d9, #d3d3d3);
	background-image: -ms-linear-gradient(bottom, #d9d9d9, #d3d3d3);
	background-image: linear-gradient(to top, #d9d9d9, #d3d3d3);
}

.menu-toolbar .menu .menu-item .menu-submenu .submenu-frame .submenu .submenu-item:hover
	{
	background: none repeat scroll 0 0 #ddeaf2;
}

.menu-toolbar .menu .menu-item .menu-submenu .submenu-frame .submenu .submenu-item button
	{
	width: auto;
}

.menu-toolbar .menu .menu-item .menu-submenu .submenu-frame .submenu .submenu-item button:hover
	{
	border: none;
	background-image: none;
}

/* +Information Design Elements
-------------------------------------------------------------------*/

/* +Table
-------------------------------*/

/* TODO: überarbeiten!!! */
.list-container {
	clear: both;
}

.list {
	width: 100%;
	border-collapse: collapse;
	color: #56595a;
}

.list-container-fullscreen {
	
}

/* TODO: Prüfen ob max-height nötig ist und die Einheit passt. */
.list-container-embedded {
	margin: 0 0 40px;
	max-height: 300px;
}

.list-container-embedded-full-height {
	margin: 0 0 40px;
}

.list-fullscreen {
	
}

.list-embedded {
	border: 1px solid #d1d1d1;
}

.list th,.list td {
	padding: 3px;
}

.list-fullscreen th:first-child,.list-fullscreen td:first-child {
	padding-left: 10px;
}

/* List header */
.list-head {
	
}

.list-head-row th {
	border-top: 1px solid #d2d5da;
	border-bottom: 1px solid #d2d5da;
}

.list-embedded th {
	border-top: none;
}

.list-head-element { /* th */
	vertical-align: middle;
	text-align: left;
	font-weight: bold;
}

.list-head-wrapper { /* a */
	color: #56595a;
	text-decoration: none;
	display: block;
}

.list-head-wrapper:hover {
	background: #e7e7e7;
}

.list-head-wrapper:focus {
	background: #ccc;
}

.list-head-row .icon,.list-body-row .icon {
	width: 16px;
}

/*
 * List body
 */
.list-body-row td { /* row border */
	border-bottom: 1px solid #ddd;
}

.even td {
	background: #fff;
}

.odd td {
	background: #fbfbfb;
}

.list-body-row td {
	
}

.list-body-row .cell { /* td */
	
}

.cell-row-link { /* linked td-cell  */
	cursor: pointer;
}

.list-body-row:hover td {
	background: #eaeaea;
}

.cell-row-link a,.cell-row-link .link { /*color: #56595a;*/
	
}

/*
 * List sorting
 */
.list-head-text {
	display: table-cell;
}

.list-sort-area {
	padding-left: 0.5em;
	vertical-align: middle;
	display: table-cell;
}

.list-sort-area div {
	height: 9px;
	width: 9px;
	vertical-align: top;
}

.list-button-sortup {
    height: 9px;
    width: 9px;
    display: block;
	background: url(../images/v5-icon-sprite.png) no-repeat -39px -135px;
}

.list-button-sortdown {
    height: 9px;
    width: 9px;
    display: block;
	background: url(../images/v5-icon-sprite.png) no-repeat -39px -126px;
}

.icon_help_small {
	background: url(../images/v5-icon-sprite.png) no-repeat -32px -1152px;
	height: 16px;
	width: 16px;
}

/*
 * List column resize
 */
.ui-resize {
	background: transparent;
	cursor: col-resize;
	display: inline;
	float: right;
	height: 20px;
	margin: 0 -11px 0 15px;
	width: 5px;
	z-index: 10000;
}

.ui-resize-ghost {
	display: none;
	position: absolute;
	top: 0;
	width: 1px;
	background: #999;
	opacity: 0.6;
	margin: -7px -15px 0px 15px;
	z-index: 9999;
}

.inner-head {
	border-left: 1px solid black;
	line-height: 30px;
	margin-left: -5px;
	padding-left: 5px;
	position: absolute;
	text-align: left;
	top: 0;
}

/* +List (withot table)
-------------------------------*/
.bulletlist {
	
}

.bulletlist .boxlayout-vertical {
	margin: 0 0 1em;
}

.bulletlist .label {
	display: block;
}

.bulletlist-small .bullet-icon {
	
}

.bulletlist .bullet-text {
	float: none;
}

.bulletlist-small .bullet-text {
	margin: 0 0 0 30px;
}

/* +Infoboxen, +Formbox
-------------------------------------------------------------------*/
.data-border,.datalist-border {
	margin: 0 0 40px;
	border: 1px solid #d1d1d1;
	overflow: hidden;
}

/* TODO: Fix classname */
.data-border.edit-mode,.data-border.conditional-input-assistance,conditional-input-assistance-no-reload
	{
	-moz-box-shadow: 4px 4px 4px #eee;
	-webkit-box-shadow: 4px 4px 4px #eee;
	box-shadow: 4px 4px 4px #eee;
}

.data-box {
	
}

.data-content,.datalist-border {
	min-height: 50px;
}

.data-content { /*padding: 6px 6px 20px 15px;*/
	padding: 12px;
}

.datalist-border {
	padding: 12px;
}

.datalist-border-empty {
	padding: 12px;
}

.data-action {
	border-top: 1px solid #d1d1d1;
	padding: 10px 6px;
	text-align: right;
}

/*
.data-row { 
  display: table-row;
  width: 100%;
}

.data-label, 
.data-value,
.action-label,
.action-value { 
  display: table-cell;
  vertical-align: top;
  padding: 3px 5px;
}

.data-label,
.action-label {
	width: 25%;
	text-align: right;
}
*/
.data-row {
	width: 100%;
	padding: 0 0 5px;
}

.data-label,.data-value,.action-label,.action-value {
	display: inline-block;
	vertical-align: middle;
	/*padding: 3px 5px 3px 0;*/
}

/* TODO: Formulare korrekt ausrichten!*/
.data-label,.action-label {
	width: 26%;
	text-align: right;
	margin-right: 2%;
}

.edit-mode .data-label,.edit-mode .action-label {
	padding: 3px 0;
	/* balance the greater height of controls in the data-value block */
}

.data-value .checkbox,.data-value .radio {
	margin: 4px 4px 4px 0;
}

.data-value {
	width: 70%;
}

/* TODO: andere Lösung finden!!! */
.data-edit {
	height: 40px;
}

.inline-action,.data-edit-action, /* edit mode button (toggle button) */
	.data-edit-action-selected,.data-hide-action {
	/* button hides the optional form elements (button link) */
	background: transparent;
	border: 0 solid;
	padding: 0;
	margin: 0;
	float: right;
}

.inline-action,
.data-edit-action-selected {
	cursor: pointer;
}

.data-hide-action {
	font-size: 0.917em; /* 11px */
	text-decoration: none;
	color: #777;
	margin-right: 3em;
	margin-top: 0.2em;
	float: left;
}

.data-hide-action:hover {
	text-decoration: underline;
}

.inline-action:active,.data-edit-action:active,.data-hide-action:active
	{
	position: relative;
	top: 1px;
}

/* TODO: Werden diese Regeln irgendwo verwendet? */

/*
.data-list-item {
	border: 1px solid transparent;
	width: 500px;
}

.data-horizontal-list .data-list-item {
	width: auto;
	display: inline;
	float: left;
}

.data-hoverlist .data-list-item:hover {
	border-color: #ddd;
	background: #eee;
}

.action-frame {
	border: 1px solid #dadada;
	padding: 0.5em;
	background: #f2f2f2;
}

.action-frame .primary-action {
	background: #bfbfbf;
	border: 1px solid #8a8a8a;
	border-radius: 4px;
	color: #878787;
	cursor: pointer;
	text-align: left;
	padding: 0px;
	margin: 0px;
}

**************************************************/

/* +Form element proportions
-------------------------------*/
.data-value .text {
	width: 94%;
	box-sizing: border-box;
}

.data-value .select {
	width: 94%;
}

.data-value .checkbox,.data-value .radio {
	margin-left: 0;
}

.datepicker,datetimepicker,number {
	width: 10em;
}

/* +Controls
-------------------------------------------------------------------*/

/* +General
-------------------------------*/

/* Font property does not inherit by default (form elements).
 * It's necessary to override them manually.
 */
button,input,textarea {
	line-height: 16px;
}

.input,.text,.select,.password,.datepicker,.datetimepicker,.datetime24picker,.number,.tinymce
	{
	border: 1px solid #aaa;
	border-radius: 3px;
	padding: 3px;
}

.input:hover,.text:hover,.select:hover,.password:hover,.datepicker:hover,.datetimepicker:hover,.datetime24picker:hover,.number:hover,.tinymce:hover
	{
	outline: none;
	border-color: #666;
}

.input:focus,.text:focus,.select:focus,.password:focus,.datepicker:focus,.datetimepicker:focus,.datetime24picker:focus,.number:focus,.tinymce:focus
	{
	border-color: #498ab3;
	-moz-box-shadow: 0px 0px 3px #5697c3;
	-webkit-box-shadow: 0px 0px 3px #5697c3;
	box-shadow: 0px 0px 3px #5697c3;
}

.checkbox:focus,.radio:focus {
	-moz-box-shadow: 0px 0px 3px #5697c3;
	-webkit-box-shadow: 0px 0px 3px #5697c3;
	box-shadow: 0px 0px 3px #5697c3;
}

.password:focus {
	outline: none; /* removes the yellow outline in webkit browsers */
}

/* TODO: CSS aufräumen ! */
.tinymce { /* placeholder DIV for tinymce */
	/*width: 20em;  */
	width: 94%;
	max-height: 30em;
	min-height: 6em;
	overflow: auto;
}

.not-editable {
	
}

/* +Buttons
-------------------------------*/

/*
 * Form buttons
 */
.fakefile .primary-action,.fakefile .secondary-action,.content .primary-action,.content .secondary-action,.ui-dialog-buttonset .ui-button
	{
	border-radius: 4px;
	margin: 0.5em 0.4em 0.5em 0;
	padding: 0.3em 0.7em;
}

.fakefile .primary-action,.fakefile .secondary-action,.content .primary-action,.content .secondary-action
	{
	border: 1px solid transparent;
	font-size: 1.083em;
	text-align: center;
	cursor: pointer;
}

/* normal state */
.content .primary-action,.ui-dialog-buttonset .ui-button.primary-action
	{
	font-weight: bold;
	color: #fff;
	-webkit-box-shadow: inset 0 0 3px rgba(255, 255, 255, .32);
	-moz-box-shadow: inset 0 0 3px rgba(255, 255, 255, .32);
	box-shadow: inset 0 0 3px rgba(255, 255, 255, .32);
	border-color: #145683;
	background: #2d668e url(../images/v5-global-sprite.png) repeat-x 0
		-465px;
	background: -webkit-linear-gradient(bottom, #2d668e, #5197c7);
	background: -moz-linear-gradient(bottom, #2d668e, #5197c7);
	background: -o-linear-gradient(bottom, #2d668e, #5197c7);
	background: -ms-linear-gradient(bottom, #2d668e, #5197c7);
	background: linear-gradient(to top, #2d668e, #5197c7);
}

/* hover state */
.content .primary-action:hover,.ui-dialog-buttonset .ui-button.primary-action:hover
	{
	background-color: #367aa9;
	background-image: -webkit-linear-gradient(bottom, #3374a1, #71afda);
	background-image: -moz-linear-gradient(bottom, #3374a1, #71afda);
	background-image: -o-linear-gradient(bottom, #3374a1, #71afda);
	background-image: -ms-linear-gradient(bottom, #3374a1, #71afda);
	background-image: linear-gradient(to top, #3374a1, #71afda);
}

/* focus state */
.content .primary-action:focus,.ui-dialog-buttonset .ui-button.primary-action:focus
	{
	-webkit-box-shadow: 0 0 4px rgba(5, 66, 107, .6), inset 0 0 3px
		rgba(255, 255, 255, .32);
	-moz-box-shadow: 0 0 4px rgba(5, 66, 107, .6), inset 0 0 3px
		rgba(255, 255, 255, .32);
	box-shadow: 0 0 4px rgba(5, 66, 107, .6), inset 0 0 3px
		rgba(255, 255, 255, .32);
	border: solid 1px #07283f;
}

/* pressed state */
.content .primary-action:active,.ui-dialog-buttonset .ui-button.primary-action:active
	{
	-webkit-box-shadow: inset 0 0 6px #275a7d;
	-moz-box-shadow: inset 0 0 6px #275a7d;
	box-shadow: inset 0 0 6px #275a7d;
	background-color: #1b5074;
	background-image: -webkit-linear-gradient(bottom, #275a7d, #4688b5);
	background-image: -moz-linear-gradient(bottom, #275a7d, #4688b5);
	background-image: -o-linear-gradient(bottom, #275a7d, #4688b5);
	background-image: -ms-linear-gradient(bottom, #275a7d, #4688b5);
	background-image: linear-gradient(to top, #275a7d, #4688b5);
}

/* disabled state */
.content .primary-action.disabled,.ui-dialog-buttonset .ui-button.primary-action.disabled
	{
	background: #306a92;
}

/* normal state */
.fakefile .secondary-action,.content .secondary-action,.ui-dialog-buttonset .ui-button+.ui-button
	{
	color: #2b2e2e;
	border-color: #aaa;
	-webkit-box-shadow: inset 0 0 3px rgba(255, 255, 255, .85);
	-moz-box-shadow: inset 0 0 3px rgba(255, 255, 255, .85);
	box-shadow: inset 0 0 3px rgba(255, 255, 255, .85);
	background: #d1d1d1 url(../images/v5-global-sprite.png) repeat-x 0
		-529px;
	background: -webkit-linear-gradient(bottom, #d1d1d1, #f9f9f9);
	background: -moz-linear-gradient(bottom, #d1d1d1, #f9f9f9);
	background: -o-linear-gradient(bottom, #d1d1d1, #f9f9f9);
	background: -ms-linear-gradient(bottom, #d1d1d1, #f9f9f9);
	background: linear-gradient(to top, #d1d1d1, #f9f9f9);
}

/* hover state */
.content .secondary-action:hover,.ui-dialog-buttonset .ui-button+.ui-button:hover
	{
	border-color: #a0a0a0;
	background-color: #e1e1e1;
	background-image: -webkit-linear-gradient(bottom, #d9d9d9, #f1f1f1 50%, #fff);
	background-image: -moz-linear-gradient(bottom, #d9d9d9, #f1f1f1 50%, #fff);
	background-image: -o-linear-gradient(bottom, #d9d9d9, #f1f1f1 50%, #fff);
	background-image: -ms-linear-gradient(bottom, #d9d9d9, #f1f1f1 50%, #fff);
	background-image: linear-gradient(to top, #d9d9d9, #f1f1f1 50%, #fff);
}

/* focus state */
.content .secondary-action:focus,.ui-dialog-buttonset .ui-button+.ui-button:focus
	{
	-webkit-box-shadow: 0 0 4px rgba(63, 148, 198, .6), inset 0 0 3px
		rgba(255, 255, 255, .85);
	-moz-box-shadow: 0 0 4px rgba(63, 148, 198, .6), inset 0 0 3px
		rgba(255, 255, 255, .85);
	box-shadow: 0 0 4px rgba(63, 148, 198, .6), inset 0 0 3px
		rgba(255, 255, 255, .85);
	border: solid 1px #498ab3;
}

/* pressed state */
.content .secondary-action:active,.ui-dialog-buttonset .ui-button+.ui-button:active
	{
	-webkit-box-shadow: inset 0 0 6px #bbb;
	-moz-box-shadow: inset 0 0 6px #bbb;
	box-shadow: inset 0 0 6px #bbb;
	background-color: #b1b1b1;
	background-image: -webkit-linear-gradient(bottom, #c0c0c0, #eaeaea);
	background-image: -moz-linear-gradient(bottom, #c0c0c0, #eaeaea);
	background-image: -o-linear-gradient(bottom, #c0c0c0, #eaeaea);
	background-image: -ms-linear-gradient(bottom, #c0c0c0, #eaeaea);
	background-image: linear-gradient(to top, #c0c0c0, #eaeaea);
}

/* disabled state */
.content .secondary-action.disabled,.ui-dialog-buttonset .ui-button+.ui-button.disabled
	{
	background: #f4f4f4;
	color: #666;
}

/*
 * Call to action button
 */
.content .call-to-action button {
	padding: 0.5em 0.6em;
	font-size: 1.333em;
	font-weight: bold;
	color: #fff;
	background: #4c9b25 url(../images/v5-global-sprite.png) repeat-x 0
		-593px;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #70bf4e),
		color-stop(100%, #4c9b25) );
	background: -webkit-linear-gradient(top, #70bf4e 0%, #4c9b25 100%);
	background: -moz-linear-gradient(top, #70bf4e 0%, #4c9b25 100%);
	background: -o-linear-gradient(top, #70bf4e 0%, #4c9b25 100%);
	background: -ms-linear-gradient(top, #70bf4e 0%, #4c9b25 100%);
	background: linear-gradient(top, #70bf4e 0%, #4c9b25 100%);
	border: 1px solid #5b992b;
	box-shadow: 0 1px 0 0 #96ca6d inset;
	text-shadow: 0 -1px 0 #4c9021;
}

.content .call-to-action button:hover,.content .call-to-action button:focus
	{
	background-color: #398c27;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #65b44c),
		color-stop(100%, #398c27) );
	background: -webkit-linear-gradient(top, #65b44c 0%, #398c27 100%);
	background-image: -moz-linear-gradient(center top, #65b44c, #398c27);
	background: -o-linear-gradient(top, #65b44c 0%, #398c27 100%);
	background: -ms-linear-gradient(top, #65b44c 0%, #398c27 100%);
	background: linear-gradient(top, #65b44c 0%, #398c27 100%);
	box-shadow: 0 1px 0 0 #8dbf67 inset;
}

.content .call-to-action button:active {
	background-color: #398c27;
	border: 1px solid #538c27;
	box-shadow: 0 0 4px 2px #548c29 inset, 0 1px 0 0 #eee;
}

.content .call-to-action button img {
	float: right;
	margin-left: 15px;
}

.content .primary-action:active,.content .secondary-action:active,.ui-dialog-buttonset button:active,.content .call-to-action button:active
	{
	position: relative;
	top: 1px;
}

/*
 * Radio button
 */
.radiobutton-unselected,.radiobutton-selected {
	float: left;
}

.radiobutton-selected {
	
}

/* +Links
-------------------------------*/
.link .label {
	display: inline;
}

.content .link,.content .link:link,.content .link:visited {
	color: #0071b3;
	cursor: pointer;
	text-decoration: none;
}

.content .link:hover,.content .link:focus {
	color: #018fe2;
	text-decoration: underline;
}

.content .link:active {
	position: relative;
	top: 1px;
}

/* inactive links */
.content .link.disabled,.content .link.disabled:hover,.content .link.disabled:focus,.content .link.disabled:active
	{
	color: #333;
	text-decoration: none;
	cursor: default;
}

/* +Textinput
-------------------------------*/

/* +Calendar
-------------------------------------------------------------------*/

/*
.calendar-container {
	font-size: x-small;
	position: relative;
}

.calendar-appointments {
	display: none;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	position: absolute;
}

.calendar-table-body-column,
.calendar-table-head-column,
.calendar-table-body-time-column,
.calendar-table-head-time-column {
	border: 1px solid lightgray;
	width: 12.25%;
	padding: 0 2px 0 2px;
	height: 20px;
}

.calendar-table {
	width: 100%;
	border-collapse: collapse;
}

.calendar-table-head-time-column,
.calendar-table-body-time-column {
	width: 3%;
}

.calendar-table-body-column:hover {
	background-color: lightgray;
}

.calendar-appointment {
	background-color: #4c7898;
	border-radius: 2px;
	border: 1px solid black;
	color: ghostwhite;
	padding: 0 2px 0 2px;
	position: absolute;
	overflow: hidden;
	cursor: pointer;
}

.calendar-appointment-tooltip {
	border: 1px solid gray;
	position: absolute;
	padding: 0 2px 0 2px;
	background: ghostwhite;
	border-radius: 2px;
	z-index: 1000;
}

.dialogue-create-appointment {
	background: ghostwhite;
	border: 1px solid lightgray;
	width: 200px;
	border-radius: 2px;
	z-index: 1001;
	padding: 2px 2px 10px 10px;
	display: none;
	position: absolute;
}

.dialogue-create-appointment-row {
	height: 25px;
}

.dialogue-create-appointment-label {
	margin-right: 10px;
}

.calendar-weekday-date-internal,
.begin-time-internal,
.end-time-internal,
.calendar-appointment-id {
	display: none;
}

.popup {
	display: none;
}
*/

.link.link-help, .link.link-help:hover{
	text-decoration:none;
	margin-right:5px;
	padding-right:10px
}
.link-help-wrapper a.list-head-wrapper, .link-help-wrapper a.list-head-wrapper{
	display:inline;
}

.menu-item .link.link-help, .menu-item .link.link-help:hover{
	padding-left:6px;    
}

.link-help-wrapper .icon_help_small{
	margin-bottom:-3px;
}

/**
Responsivness
**/
@media only screen and (device-width: 980px),
       only screen and (max-width: 980px) {

	.menu-item:hover>.menu-submenu {
		transition-delay: 0.3s;
	}
}







