/*-------------------- DECISION DESKTOP OR MOBILE NAVBAR -----------------*/

/* Javascript determines by checking browser name if touch screen device
 * is used and incidates that by adding the class "touchscreen" to elements
 * 
 * Devices can override this setting using the media query hover feature if
 * the browser supports it.
 */

/* default: only display mobile navbar */
#desktop-navbar {
	display: none;
}
body {
	padding-top: 0;
}

/* if screen large enough and no touchscreen (Javascript),
 * display desktop navbar */
@media only screen and (min-width: 768px) {
	body:not(.touchscreen) #mobile-navbar {
		display: none;
	}
	
	body:not(.touchscreen) #desktop-navbar {
		display: block;
	}
	
	body:not(.touchscreen) {
		/* menu has two rows */
		padding-top: 259px;
	}
	@media (min-width: 992px) {
		/* menu fits in one row */
		body:not(.touchscreen) {
			padding-top: 215px;
		}
	}
}


/* override javascript settings if media query supported */

@media only screen and (hover: hover) and (min-width: 768px) {
	#mobile-navbar {
		display: none !important;
	}
	
	#desktop-navbar {
		display: block !important;
	}

	body {
		/* menu has two rows */
		padding-top: 259px !important;
	}
	@media (min-width: 992px) {
		/* menu fits in one row */
		body {
			padding-top: 215px !important;
		}
	}
}

@media only screen and (hover: none) {
	#mobile-navbar {
		display: block !important;
	}
	
	#desktop-navbar {
		display: none !important;
	}

	body {
		padding-top: 0 !important;
	}
}


/*---------------------------- MOBILE NAVBAR -----------------------------*/

#mobile-navbar {
	padding-top: 2px;
	margin-top: 0;
	top: 0;
	width: 100%;
	height: 50px;
	background-color: #2F5E96;
	min-width: 250px;
}

#mobile-navbar-icons {
	float: right;
}

#mobile-navbar img {
	height: 45px;
}

img#mobile-navbar-login-icon {
	height: 42px;
}

#mobile-navbar-langtext {
	font-size: 16px;
	font-weight: 800;
	margin: 0px 10px 0px 10px;
	/* text zentrieren */
	position: relative;
	top: 2px;
}
#mobile-navbar-langtext a {
	color: #C8E5FF;
}
#mobile-navbar-langtext .selected {
	color: white;
	text-decoration: underline;
}

#mobile-menu {
	display: none;
	position: absolute;
	top: 50px;
	background-color: #2F5E96;
	/*width: 400px;*/
	width: 100%;
	font-weight: bold;
	z-index: 10;
}
#mobile-menu a {
	color: white;
}

.mobile-menu-item {
	padding: 2.5px 0 2.5px 5px;
}

.mobile-menu-item.level2 {
	padding-left: 20px;
}

/*------------------------ HTML Standard Elements ------------------------*/

body {
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #7b7b7b;
}
h1, h2, h3, h4, h5 {
    margin: 0;
    color: #0e5693;
}
a, a h1, a h2, a h3, a h4, a h5 {
    color: #337ab7;
}
h1 {
    font-size: 30px;
    margin-bottom: 40px;
}
h2 {
    font-size: 24px;
    margin-bottom: 10px;
}
h3 {
    font-size: 20px;
    margin: 10px 0 10px;
}
h4 {
    margin: 0;
}
.headline-tall {
    padding: 5px 0;
    line-height: 1.2em;
}

[class*="col-"] {
    padding-top: 50px;
    padding-bottom: 50px;
}
.col-low {
    padding-top: 0;
    padding-bottom: 0;
}

/* fix missing horizontal lines in Chrome */
hr {
	height: 1px;
}

img {
	max-width: 100%;
}

body > .container,
.desktop-arrangement > .container,
.mobile-arrangement > .container
{
	overflow: auto;
}

/*------------ Pseudo Button links ------------*/

.button, .button-invert, button {
    padding: 5px 20px;
    margin: 20px 0;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    border: 0;
}
.button, button {
    background: #7ca0c2;
    color: #FFF;
}
.button-invert {
    background: none;
    color: #FFF;
    border: 1px solid #FFF;
}
.button:hover, button {
    text-decoration: none;
    background: #0e5693;
    color: #FFF;
}
button:hover {
    opacity: 0.8;
}
.button-invert:hover {
    background: #FFF;
    color: #0e5693;
}

/*------------ Big list ------------*/

ul.biglist {
    list-style-type: none;
    font-weight: 300;
    margin-left: -8px;
    padding-left: 20px;
    padding-bottom: 20px;
}
.biglist li {
    padding: 5px;
}
.biglist a {
    font-size: 18px;
    padding: 5px;
}
.biglist-invert a, .biglist .dropdown a:hover {
    color: #FFF;
    text-decoration: none;
}
.biglist-invert li a:hover, .biglist .dropdown a:hover {
    background: #284263;
}

/* VON  BENNY, UM SUB MENU PUNKTE AKTIV ZU MARKIEREN */
.biglist-invert li.active a, .biglist li.active a {
	text-decoration: underline;
}

.biglist .dropdown-menu {
    background: #284263;
    border-radius: 0;
    border: 0;
    top: 32px;
}

.biglist .dropdown {
    padding-left: 0;
}
.biglist .dropdown > a {
    padding-right: 5px;
    padding-left: 10px;
}
.biglist .dropdown > a:after {
    display:inline-block;
    content:" ";
    width:0;
    height:0;
    border-color:transparent;
    border-style:solid;
    border-width:5px 0 5px 5px;
    border-left-color:#2f5e96;
    margin-top:9px;
    margin-right:0px;
    margin-left: 5px;
}
.biglist-invert .dropdown > a:after {
    border-left-color:#FFF;
}

.biglist .dropdown-menu a {
    color: #FFF;
    font-size: 0.9em;
}
.biglist .dropdown-menu a:hover {
    background: inherit;
    color: #FFF;
}
.biglist .dropdown-menu li {
    width: 100%;
    padding: 3px 0;
}
.biglist .dropdown-menu li:hover {
    background: #CCC;
}
.biglist .dropdown-menu li:hover a {
    color: #000;
}

/*------------ Business card ------------*/
.business-card {
    background: #f0f0f0;
    font-size: 0.8em;
    padding-right: 10px;
    margin-bottom: 20px;
}
.business-card .img-container {
    width: 150px;
    height: 220px;
    background: url('') no-repeat center center;
    background-size: cover;
    float: left;
    margin-right: 10px;
}
.business-card .bc-position {
    display: inline-block;
    padding-top: 30px;
    font-size: 0.8em;
}
.business-card .bc-name {
    display: block;
    font-size: 1.2em;
    line-height: 1.3em;
    height: 40px;
    text-transform: uppercase;
    overflow: hidden;
}
.business-card .bc-address, .business-card .bc-phone, .business-card .bc-mail {
    display: block;
    overflow: hidden;
}
.business-card .bc-address, .business-card .bc-phone {
    white-space: nowrap;
}

.business-card .bc-address {
    
}
.business-card .bc-phone {
    font-weight: bold;
    background: url('/icons/phone.svg') no-repeat left 8px;
    background-size: 13px;
    padding: 5px 0 7px;
    padding-left: 18px;
}
.business-card .bc-mail {
    line-height: 1.2em;
    height: 32px;
    margin: 0 0 20px;
}
.business-card .bc-more {
    
}



    


/*------------ image links ------------*/

.a-img, .a-img-invert {
    display: inline-block;
    text-align: center;
    padding: 10px 0;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.a-img-invert {
    background: #2b77d1;
    color: #FFF;
    font-weight: 300;
}
.a-img-invert:hover {
    color: #FFF;
    text-decoration: none;
    background: #aaa;
}
.a-img img, .a-img-invert img {
    width: 50%;
    padding: 10px 0;
}


/*------------------------------ Layout ------------------------------*/

.clear {
    clear: both;
}

/*------------ Header ------------*/

.navbar-default {
    border: none;
    border-top: 5px solid #0e5693;
    background: #FFF;
}

header .header-logo {
    margin: 20px 0 30px -32px;
    display: block;
}
header .header-logo img {
    width: 370px;
}

.meta-navigation {
    font-size: 0.75em;
    text-transform: uppercase;
    list-style-type: none;
    float: right;
    padding-top: 10px;
}
.meta-navigation li {
    float: left;
    margin-left: 10px;
}

/*------------ Main Navigation ------------*/

#navbar {
    background: #2b77d1;
    font-weight: 700;
}
.navbar-default .navbar-nav > li > a {
    color: #FFF;
    padding-top: 12px;
    padding-bottom: 12px;
}
.navbar-default .navbar-nav > li.active > a {
    background: #2f5e96;
    color: #FFF;
}
.navbar-default .navbar-nav > li > a:hover {
    background: #5b99e2;
}
#navbar .dropdown-menu a {
    color: #000;
    white-space: inherit;
    line-height: 1.2em;
    padding: 5px 20px;
}
#navbar .dropdown-menu {
    border: none;
    min-width: 220px;
}

/*------------ Hover Menus Function ------------*/

.dropdown-menu {
	display: block;
	visibility: hidden;
}

.dropdown > a:hover + .dropdown-menu, .dropdown-menu:hover {
		visibility: visible;
}

/*-------------- Sub-Menu ----------------*/

.dropdown-submenu {
    position:relative;
}
.dropdown-submenu>.dropdown-menu {
    top:0;
    left:100%;
    margin-top:-6px;
    margin-left:-1px;
    -webkit-border-radius:0 6px 6px 6px;
    -moz-border-radius:0 6px 6px 6px;
    border-radius:0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
		visibility: visible;
}
.dropdown-submenu>a:after {
    display:block;
    content:" ";
    float:right;
    width:0;
    height:0;
    border-color:transparent;
    border-style:solid;
    border-width:5px 0 5px 5px;
    border-left-color:#cccccc;
    margin-top:5px;
    margin-right:-10px;
}
.dropdown-submenu:hover>a:after {
    border-left-color:#ffffff;
}
.dropdown-submenu.pull-left {
    float:none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
    left:-100%;
    margin-left:10px;
    -webkit-border-radius:6px 0 6px 6px;
    -moz-border-radius:6px 0 6px 6px;
    border-radius:6px 0 6px 6px;
}

.dropdown-submenu .dropdown-menu.show-left {
		left: auto;
		right: 100%;
}


/*------------ Sub-navigation ------------*/

.subnavigation {
    padding: 20px 0 20px;
    background: #2f5e96;
    color: #FFF;
}
.subnavigation h1 {
    color: #FFF;
    margin: 0 0 5px;
    font-size: 40px;
}
.subnavigation .biglist {
    padding: 0;
}
.subnavigation .biglist li {
    float: left;
    margin-right: 15px;
    clear: inherit;
}

/*------------------------ LISTS ------------------------*/

.list {
    list-style-type: none;
    padding: 0; 
    margin: 20px 0;
}
.list:not(.accordion) {
    display: table;
    border-collapse: collapse;
    width: 100%;
}
.list > li {
    padding: 10px 0;
    border-top: 1px dotted #aaa;
}
.list:not(.accordion) > li {
    display: table-row;
    width: 100%;
}
.list:not(.accordion) > li:target {
	background-color: #FFE9A4;
}
.list:not(.accordion) > li > span {
    display: table-cell;
    padding: 10px 0;
    padding-right: 10px;
}
.list:not(.accordion) li > span:last-child {
    padding-right: 0;
}
.list > li:last-child {
    border-bottom: 1px dotted #aaa;
}
.list-header {
    font-weight: bold;
}

.list-form form {
    float: right;
}
.list-form form input, .list-form form button {
    height: 28px;
    vertical-align: top;
    margin: 0;
}
.list-form form button {
    padding-top: 0;
}/*------------------------ ACCORDION ------------------------*/


.list.accordion li div:first-child {
    cursor: pointer;
    outline: none;
    padding: 15px 0;
}
.list.accordion li div:last-child {
    padding-bottom: 20px;
}
.projects.accordion li div:first-child h2 {
    margin: 0;
}
.projects.accordion li div:first-child h3 {
    font-size: 1.2em;
    line-height: 1.3em;
    font-weight: normal;
    margin: 0;
    padding: 5px 0;
}
.projects.accordion li div:first-child span:last-child {
    text-decoration: underline;
}
.projects.accordion li p {
    padding: 20px 0;
}


.ui-state-default .ui-icon.iconClosed {
    background-image:url("/icons/arrow-closed.png");
    height: 24px;
    width: 10px;
    background-repeat: no-repeat;
    background-position: left center;
    float: left;
}
.ui-state-default .ui-icon.iconOpen {
    background-image:url("/icons/arrow-opened.png");
    height: 24px;
    width: 10px;
    background-repeat: no-repeat;
    background-position: left center;
    float: left;
}

.ui-state-default {
	background: transparent !important;
	border: 0px none !important;	
}
.projects.accordion li div:first-child span:last-child {
	text-decoration: none !important;	
	color: #7b7b7b !important;
}

.ui-widget-content {
	color: #7b7b7b !important;
	border: 0px none !important;
}
.ui-accordion .ui-accordion-content {
	padding: 0 !important;
}
.ui-widget-content a {
	color: #337ab7 !important;	
}

/* PFEIL WIRD VON JQUERY-UI NACH UNTEN VERSETZT: DESHALB KLASSE UEBERSCHREIBEN: */
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	margin-top: 0 !important;
	position: relative !important;
	left: 0 !important;
}


/*------------ Slideshow ------------*/

.teaser, .teaser-invert {
    font-size: 0.8em;
    line-height: 1.3em;
    background: #dfedfa;
}
.teaser-invert {
    background: #0e5693;
    color: #FFF;
}
.teaser .jcarousel-wrapper {
    border: 0;
    box-shadow: none;
    width: 100%;
    margin: 0;
}
.teaser .jcarousel-wrapper .jcarousel-pagination {
    left: 735px;
}
.teaser .jcarousel-wrapper .jcarousel-pagination a {
    text-indent: -9999px;
    border-radius: 10px;
    width: 5px;
    height: 15px;
    background: transparent;
    border: 2px solid #87898a;
}
.teaser-invert .jcarousel-wrapper .jcarousel-pagination a {
      border-color: #FFF; 
}
.teaser .jcarousel-wrapper .jcarousel-pagination a.active {
    background: #87898a;
}
.teaser-invert .jcarousel-wrapper .jcarousel-pagination a.active {
    background: #FFF;
}
.teaser-invert a {
    color: #8ebbf0;
}
.teaser a:hover {
    color: #FFF;
}
.teaser img {
    display: block;
    float: left;
    width: 715px;
    margin-right: 20px;
}
.teaser .slider-text {
    width: 405px;
    float: left;
    padding-top: 30px;
    padding-right: 20px;
}
.teaser .slider-text h1 {
    margin-bottom: 30px;
    font-size: 37px;
}
.teaser .slider-text h4 {
    font-weight: 300;
    padding-bottom: 8px;
}
.teaser-invert .slider-text h1, .teaser-invert .slider-text h4 {
    color: #FFF;
}
.teaser-invert .slider-text h4 {
    padding-top: 25px;
}
.teaser .slider-text .button {
    margin-top: 20px;
}
.teaser .slider-text:after {
		clear: both;
		content: " ";
		display: table;
}

@media (max-width: 767px) {
	.teaser .jcarousel-wrapper {
		margin-top: 10px;
	}

	.teaser .jcarousel-wrapper,
	.jcarousel li,
	.teaser .slider-text {
		width: 90vw;
		height: auto;
	}
	.teaser img {
		 width: 90vw;
		 height: auto;
	 }
	.teaser .slider-text {
		padding-top: 0;
		padding-bottom: 20px;
		font-size: 14px;
		line-height: 1.2em;
	}
	.teaser .jcarousel-wrapper .jcarousel-pagination {
		left: auto;
		right: 20px;
	}
	h1 {
		overflow-wrap: break-word;
	}
	.teaser .jcarousel-pagination a {
		margin-right: 5px;
	}
}

/*------------ Matheon Main Content ------------*/
.matheon-content {
    padding-bottom: 50px;
}
.matheon-content h1 {
    border-bottom: 1px solid #0e5693;
    margin: 0 0 20px;
}
.matheon-content h3 {
    margin: 0;
}

.date {
    font-size: 0.8em;
    font-weight: 700;
    padding-bottom: 5px;
    margin: 0;
    display: inline-block;
}

/*------------ Footer ------------*/
footer {
    background: #0e5693;
    color: #97bfe1;
    font-size: 14px;
}
footer ul {
    padding: 0;
    /*padding-bottom: 25px;*/
    padding-bottom: 10px;
    list-style-type: none;
}
footer a {
    color: #FFF;
}
footer a:hover {
    color: #FFF;
    text-decoration: underline;
}
footer li > b {
    /*padding-bottom: 15px;*/
    display: inline-block;
}
.footer-star {
    width: 110px;
    padding-top: 100px;
}



/*------------------------------- PAGE-SPECIFIC -------------------------------*/

/*------------ Start Page ------------*/
.bignum {
    font-size: 154px;
    font-weight: 200;
    display: block;
    text-align: center;
    line-height: 1em;
    letter-spacing: -10px;
}

.calendar-row {
    padding: 15px 0;
    clear:left;
}
.calendar-row .calendar-sheet {
    float: left;
    font-size: 0.8em;
    margin-right: 10px;
    text-align: center;
    height: 110px;
}
.calendar-row .calendar-sheet div {
    width: 60px;
    border: 1px solid #8a8a8a;
}
.calendar-row div span {
    width: 100%;
    display: inline-block;
    color: #FFF;
    background: #0e5693;
    padding: 1px 0;
}
.calendar-row div h2 {
    color: #8a8a8a;
    font-weight: 700;
    margin: 5px 0;
}
.calendar-row > a {
    
}
.calendar-row > span {
    font-size: 0.8em;
    display: inline-block;
    line-height: 1.5em;
}
.calendar-row small {
    font-size: 0.65em;
    display: block;
    line-height: 1.5em;
}


.matheon-start-news .col-md-5, .matheon-start-news .col-md-7 {
    padding: 10px 0 30px;
}
.matheon-start-news h3 {
    margin: 0 0 10px;
}
.matheon-start-news .col-md-7 a:last-child {
    /*font-weight: 700;*/
}


.matheon-start-news .col-md-5 .img-container {
    /*background: #f4f4f4;*/
    /*height: 100%;*/
    max-width: 90%;
    text-align: center;
}
.matheon-start-news .col-md-5 img {
    max-width: 100%;
}
.matheon-start-news .col-md-12 {
    padding: 0;
}



.matheon-start-aufgelesen ul {
    list-style-type: none;
    padding: 0;
}
.matheon-start-aufgelesen li {
    padding-bottom: 5px;
}
.matheon-start-aufgelesen li .date {
    padding-right: 15px;
}
.matheon-start-aufgelesen li .date, .matheon-start-aufgelesen li a {
    display: table-cell;
}

.matheon-start-news > .row {
	margin-left: 0;
}

.mobile-arrangement .img-container > img {
	/*max-width: 90vw;*/
	max-width: 100%;
}

.mobile-arrangement .news .col-md-5 {
	padding-top: 50px; /* default */
	padding-bottom: 0;
	
}
.mobile-arrangement .news .col-md-7 {
	padding-top: 25px;
	padding-bottom: 50px; /* default */
}

/*------------------------ test page â€“ TODO: check & delete ------------------------*/

.row {
  margin-bottom: 20px;
}
.row .row {
  margin-top: 10px;
  margin-bottom: 0;
}
.test-cols [class*="col-"] {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #eee;
  background-color: rgba(86,61,124,.15);
  border: 1px solid #ddd;
  border: 1px solid rgba(86,61,124,.2);
}

hr {
  margin-top: 40px;
  margin-bottom: 40px;
}

/*------------------------ Anchor ------------------------*/
:target:before {
  /*content:"";*/
  display:block;
  height:220px; /* fixed header height*/
  margin:-220px 0 0; /* negative fixed header height */
}





/* -------------- BENNY STYLES -----------------*/


.matheon {
	font-variant:small-caps;
}

.matheon-stern {
	float:left;	
	margin: 5px 0px;
}

.mediumnum {
    font-size: 90px;
    /*font-weight: 100;*/
    display: block;
    text-align: center;
    line-height: 1em;
    letter-spacing: -5px;
}

.image-credits {
	font-size:0.6em;
}

.form input[type=text], .form textarea {
	width: 400px;	
}

.field-row {
	/*border: 1px solid;*/
	background: white;
	height: 32px;
	margin-top: 15px;
}
.field-row-no-color {
	/*border: 1px solid;*/
	height: 32px;
	margin-top: 15px;
}

.field-label {
	float: left;
	width: 45%;
	padding: 5px;
	height: 20px;
}
.field-input {
	float: left;
	width: 45%;
	padding: 5px;
	height: 20px;
}

.pre-unplugged pre{
	background:	transparent;
	border:	0px none;	
	padding: 0;
	font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
	font-size:0.9em;
}

/* BOOTSTRAP ROW COL INNER INNER INNER ADDONS WEB MULTIPLE EXTENSION PACK STACK */
.nopadding-top { padding-top: 0; }
.nopadding-top-bottom { padding-top: 0; padding-bottom: 0;}
.nomargin-top { margin-top: 0;}
.nomargin-top-bottom { margin-top: 0;margin-bottom: 0;}

/*Bootstrap style*/
.row.no-space-bottom {
  padding-bottom: 0;
  margin-bottom: 0;
}
.row.no-space-bottom > [class^="col-"],
.row.no-space-bottom > [class*=" col-"] {
  padding-bottom: 0;
  margin-bottom: 0;
}
.row.no-space-top {
  padding-top: 0;
  margin-top: 0;
}
.row.no-space-top > [class^="col-"],
.row.no-space-top > [class*=" col-"] {
  padding-top: 0;
  margin-top: 0;
}
.row.no-space-top-bottom,
.row.no-space-top-bottom > [class^="col-"],
.row.no-space-top-bottom > [class*=" col-"] {
	padding-top: 0;
	padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.header-link-list, .content-link-list {
	list-style-type: none;
}

.header-link-list li{
	margin-left: 100px;
	margin-bottom: 20px;
}
.content-link-list {
	margin-bottom: 40px;	
}	
.content-link-list li {
	margin-bottom: 10px;
}


/* BLOG LIST FIX VON BENNY OBSOLET * /
.matheon-subpage-list .col-md-5 .img-container {
    max-width: 90%;
    text-align: center;
}
.matheon-subpage-list .col-md-5, .matheon-subpage-list .col-md-7 {
    padding: 10px 0 30px;
}
.matheon-subpage-list .col-md-5 img {
    /*max-width: 100%;
}
*/





/* INTERN */
/* INTERN */
/* INTERN */

/* FORMS */
textarea.entry {
	width: 300px;
	height: 200px;		
}

.connectedSortable {
	overflow: scroll;	
	border: 1px solid #eee;
	list-style-type: none;
	margin: 0;
	padding: 5px 0 0 0;
	margin-right: 10px;
	width: 200px;
	height: 100px;
}
.connectedSortable li {
	margin: 0 5px 5px 5px;
	padding:2px 5px;
	width: 150px;
	cursor: pointer;
}

.dragable-box-container {
	float: left;
	width: 200px;
	height: 100px;
}
.ok {
	float:left;
	width:20px;
	top:50px;
	position:relative;	
	margin-left: 10px;
}
.save-heads-success, .save-heads-error, 
.save-members-success, .save-members-error, 
.save-guests-success, .save-guests-error,
.save-referees-success, .save-referees-error,
.save-head_of_projects-success, .save-head_of_projects-error, 
.save-member_of_projects-success, .save-member_of_projects-error, 
.save-guest_of_projects-success, .save-guest_of_projects-error,
.save-referee_of_projects-success, .save-referee_of_projects-error  {
	
	float:left;
	width:50px;
	top:50px;
	position:relative;	
}

.linkData-success, .linkData-error  {
	display: none;	
	width:100%;
}


.required-text-field {
	color: red;	
	font-weight:bold;
}

.trashedEntry {
	opacity: 0.2;
	text-decoration:line-through;
}

.unpublishedEntry {
	opacity: 0.2;
}


.info, .success, .warning, .error {
margin: 10px 0px;
padding:12px;
 
}
.info {
    color: #00529B;
    background-color: #BDE5F8;
}
.success {
    color: #4F8A10;
    background-color: #DFF2BF;
}
.warning {
    color: #9F6000;
    background-color: #FEEFB3;
}
.error {
    color: #D8000C;
    background-color: #FFBABA;
}
.info i, .success i, .warning i, .error i {
    margin:10px 22px;
    font-size:2em;
    vertical-align:middle;
}

.alert {
	/*visibility:hidden;		/*es nervte rf141012*/
	position:absolute;
	top:50px;
	left:20px;
	width:500px;
	padding-left:20px;
	background:yellow;
	border:5px dashed red;
	z-index:3000;
	text-transform: uppercase;
	-moz-border-radius: 12px;
  -webkit-border-radius: 12px;
  border-radius: 12px;

  -moz-box-shadow: 4px 4px 14px #000;
  -webkit-box-shadow: 4px 4px 14px #000;
  box-shadow: 4px 4px 14px #000;

  -moz-transform:rotate(340deg);
  -webkit-transform:rotate(340deg);
  -o-transform:rotate(340deg);
  -ms-transform:rotate(340deg);
  filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=.34);	
}


.textarea-row {
	height: 200px;
	
}
.textarea-row textarea {
	height: 185px;	
	width: 300px;
}

