/*!
 * jQuery Mobile v1.0a4.1
 * http://jquerymobile.com/
 *
 * Copyright 2010, jQuery Project
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 */
/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
* Note: Code is in draft form and is subject to change 
*/


/* links within "buttons" 
-----------------------------------------------------------------------------------------------------------*/

a.ui-link-inherit {
	text-decoration: none !important;
}


/* Active class used as the "on" state across all themes
-----------------------------------------------------------------------------------------------------------*/

.ui-btn-active {
	font-weight: bold;
	color: 					#fff;
}
.ui-btn-active a.ui-link-inherit {
	color: 					#fff;
}


/* button inner top highlight
-----------------------------------------------------------------------------------------------------------*/

.ui-btn-inner {
	/*border-top: 1px solid 	#fff;
	border-color: 			rgba(255,255,255,.3);*/
}


/* corner rounding classes
-----------------------------------------------------------------------------------------------------------*/

.ui-corner-tl {
	-moz-border-radius-topleft: 		.6em;
	-webkit-border-top-left-radius: 	.6em;
	border-top-left-radius: 			.6em;
}
.ui-corner-tr {
	-moz-border-radius-topright: 		.6em;
	-webkit-border-top-right-radius: 	.6em;
	border-top-right-radius: 			.6em;
}
.ui-corner-bl {
	-moz-border-radius-bottomleft: 		.6em;
	-webkit-border-bottom-left-radius: 	.6em;
	border-bottom-left-radius: 			.6em;
}
.ui-corner-br {
	-moz-border-radius-bottomright: 	.6em;
	-webkit-border-bottom-right-radius: .6em;
	border-bottom-right-radius: 		.6em;
}
.ui-corner-top {
	-moz-border-radius-topleft: 		.6em;
	-webkit-border-top-left-radius: 	.6em;
	border-top-left-radius: 			.6em;
	-moz-border-radius-topright: 		.6em;
	-webkit-border-top-right-radius: 	.6em;
	border-top-right-radius: 			.6em;
}
.ui-corner-bottom {
	-moz-border-radius-bottomleft: 		.6em;
	-webkit-border-bottom-left-radius: 	.6em;
	border-bottom-left-radius: 			.6em;
	-moz-border-radius-bottomright: 	.6em;
	-webkit-border-bottom-right-radius: .6em;
	border-bottom-right-radius: 		.6em;
	}
.ui-corner-right {
	-moz-border-radius-topright: 		.6em;
	-webkit-border-top-right-radius: 	.6em;
	border-top-right-radius: 			.6em;
	-moz-border-radius-bottomright: 	.6em;
	-webkit-border-bottom-right-radius: .6em;
	border-bottom-right-radius: 		.6em;
}
.ui-corner-left {
	-moz-border-radius-topleft: 		.6em;
	-webkit-border-top-left-radius: 	.6em;
	border-top-left-radius: 			.6em;
	-moz-border-radius-bottomleft: 		.6em;
	-webkit-border-bottom-left-radius: 	.6em;
	border-bottom-left-radius: 			.6em;
}
.ui-corner-all {
	-moz-border-radius: 				.6em;
	-webkit-border-radius: 				.6em;
	border-radius: 						.6em;
}



/* Interaction cues
-----------------------------------------------------------------------------------------------------------*/
.ui-disabled {
	opacity: 							.3;
}
.ui-disabled,
.ui-disabled a {
	cursor: default !important;
}

/* Icons
-----------------------------------------------------------------------------------------------------------*/

.ui-icon {
	background: 						#666;
	background: 						rgba(0,0,0,.4);
	background-image: url(images/icons-18-white.png);
	background-repeat: no-repeat;
}


/* Alt icon color
-----------------------------------------------------------------------------------------------------------*/

.ui-icon-alt {
	background: 						#fff;
	background: 						rgba(255,255,255,.3);
	background-image: url(images/icons-18-black.png);
	background-repeat: no-repeat;
}

/* HD/"retina" sprite
-----------------------------------------------------------------------------------------------------------*/

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min--moz-device-pixel-ratio: 1.5),
       only screen and (min-resolution: 240dpi) {
	
	.ui-icon-plus, .ui-icon-minus, .ui-icon-delete, .ui-icon-arrow-r,
	.ui-icon-arrow-l, .ui-icon-arrow-u, .ui-icon-arrow-d, .ui-icon-check,
	.ui-icon-gear, .ui-icon-refresh, .ui-icon-forward, .ui-icon-back,
	.ui-icon-grid, .ui-icon-star, .ui-icon-alert, .ui-icon-info, .ui-icon-home, .ui-icon-search, 
	.ui-icon-checkbox-off, .ui-icon-checkbox-on, .ui-icon-radio-off, .ui-icon-radio-on {
		background-image: url(images/icons-36-white.png);
		-moz-background-size: 776px 18px;
		-o-background-size: 776px 18px;
		-webkit-background-size: 776px 18px;
		background-size: 776px 18px;
	}
	.ui-icon-alt {
		background-image: url(images/icons-36-black.png);
	}
}

/* plus minus */
.ui-icon-plus {
	background-position: 	-0 50%;
}
.ui-icon-minus {
	background-position: 	-36px 50%;
}

/* delete/close */
.ui-icon-delete {
	background-position: 	-72px 50%;
}

/* arrows */
.ui-icon-arrow-r {
	background-position: 	-108px 50%;
}
.ui-icon-arrow-l {
	background-position: 	-144px 50%;
}
.ui-icon-arrow-u {
	background-position: 	-180px 50%;
}
.ui-icon-arrow-d {
	background-position: 	-216px 50%;
}

/* misc */
.ui-icon-check {
	background-position: 	-252px 50%;
}
.ui-icon-gear {
	background-position: 	-288px 50%;
}
.ui-icon-refresh {
	background-position: 	-324px 50%;
}
.ui-icon-forward {
	background-position: 	-360px 50%;
}
.ui-icon-back {
	background-position: 	-396px 50%;
}
.ui-icon-grid {
	background-position: 	-432px 50%;
}
.ui-icon-star {
	background-position: 	-468px 50%;
}
.ui-icon-alert {
	background-position: 	-504px 50%;
}
.ui-icon-info {
	background-position: 	-540px 50%;
}
.ui-icon-home {
	background-position: 	-576px 50%;
}
.ui-icon-search {
	background-position: 	-612px 50%;
}
.ui-icon-checkbox-off {
	background-position: 	-684px 50%;
}
.ui-icon-checkbox-on {
	background-position: 	-648px 50%;
}
.ui-icon-radio-off {
	background-position: 	-756px 50%;
}
.ui-icon-radio-on {
	background-position: 	-720px 50%;
}


/* checks,radios */
.ui-icon-checkbox-off,
.ui-icon-checkbox-on,
.ui-icon-radio-off,
.ui-icon-radio-on {
	background-color: transparent;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.ui-icon-searchfield {
	background-image: url(images/icon-search-black.png);
	background-size: 14px 14px;
}

/* loading icon */
.ui-icon-loading {
	background-image: url(images/ajax-loader.png);
	width: 40px;
	height: 40px;
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	background-size: 35px 35px;
}


/* Button corner classes
-----------------------------------------------------------------------------------------------------------*/

.ui-btn-corner-tl {
	-moz-border-radius-topleft: 		1em;
	-webkit-border-top-left-radius: 	1em;
	border-top-left-radius: 			1em;
}
.ui-btn-corner-tr {
	-moz-border-radius-topright: 		1em;
	-webkit-border-top-right-radius: 	1em;
	border-top-right-radius: 			1em;
}
.ui-btn-corner-bl {
	-moz-border-radius-bottomleft: 		1em;
	-webkit-border-bottom-left-radius: 	1em;
	border-bottom-left-radius: 			1em;
}
.ui-btn-corner-br {
	-moz-border-radius-bottomright: 	1em;
	-webkit-border-bottom-right-radius: 1em;
	border-bottom-right-radius: 		1em;
}
.ui-btn-corner-top {
	-moz-border-radius-topleft: 		1em;
	-webkit-border-top-left-radius: 	1em;
	border-top-left-radius: 			1em;
	-moz-border-radius-topright: 		1em;
	-webkit-border-top-right-radius: 	1em;
	border-top-right-radius: 			1em;
}
.ui-btn-corner-bottom {
	-moz-border-radius-bottomleft: 		1em;
	-webkit-border-bottom-left-radius: 	1em;
	border-bottom-left-radius: 			1em;
	-moz-border-radius-bottomright: 	1em;
	-webkit-border-bottom-right-radius: 1em;
	border-bottom-right-radius: 		1em;
}
.ui-btn-corner-right {
	 -moz-border-radius-topright: 		1em;
	-webkit-border-top-right-radius: 	1em;
	border-top-right-radius: 			1em;
	-moz-border-radius-bottomright: 	1em;
	-webkit-border-bottom-right-radius: 1em;
	border-bottom-right-radius: 		1em;
}
.ui-btn-corner-left {
	-moz-border-radius-topleft: 		1em;
	-webkit-border-top-left-radius: 	1em;
	border-top-left-radius: 			1em;
	-moz-border-radius-bottomleft: 		1em;
	-webkit-border-bottom-left-radius: 	1em;
	border-bottom-left-radius: 			1em;
}
.ui-btn-corner-all {

}

/* radius clip workaround for cleaning up corner trapping */
.ui-corner-tl,
.ui-corner-tr,
.ui-corner-bl, 
.ui-corner-br,
.ui-corner-top,
.ui-corner-bottom, 
.ui-corner-right,
.ui-corner-left,
.ui-corner-all,
.ui-btn-corner-tl,
.ui-btn-corner-tr,
.ui-btn-corner-bl, 
.ui-btn-corner-br,
.ui-btn-corner-top,
.ui-btn-corner-bottom, 
.ui-btn-corner-right,
.ui-btn-corner-left,
.ui-btn-corner-all {
/*  -webkit-background-clip: padding-box;
     -moz-background-clip: padding-box;
          background-clip: padding-box;*/
}

/* Overlay / modal
-----------------------------------------------------------------------------------------------------------*/

.ui-overlay {
	background: #666;
	opacity: .5;
	filter: Alpha(Opacity=50);
	position: absolute;
	width: 100%;
	height: 100%;
}
.ui-overlay-shadow {
	-moz-box-shadow: 0px 0px 12px 			rgba(0,0,0,.6);
	-webkit-box-shadow: 0px 0px 12px 		rgba(0,0,0,.6);
	box-shadow: 0px 0px 12px 				rgba(0,0,0,.6);
}
.ui-shadow {
	/*-moz-box-shadow: 0px 1px 4px 			rgba(0,0,0,.3);
	-webkit-box-shadow: 0px 1px 4px 		rgba(0,0,0,.3);
	box-shadow: 0px 1px 4px 				rgba(0,0,0,.3); */
}
.ui-bar-a .ui-shadow,
.ui-bar-b .ui-shadow ,
.ui-bar-c .ui-shadow  {
	-moz-box-shadow: 0px 1px 0 				rgba(255,255,255,.3);
	-webkit-box-shadow: 0px 1px 0 			rgba(255,255,255,.3);
	box-shadow: 0px 1px 0 					rgba(255,255,255,.3);
}
.ui-shadow-inset {
	-moz-box-shadow: inset 0px 1px 4px 		rgba(0,0,0,.2);
	-webkit-box-shadow: inset 0px 1px 4px 	rgba(0,0,0,.2);
	box-shadow: inset 0px 1px 4px 			rgba(0,0,0,.2);
}
.ui-icon-shadow {
	-moz-box-shadow: 0px 1px 0 				rgba(255,255,255,.4);
	-webkit-box-shadow: 0px 1px 0 			rgba(255,255,255,.4);
	box-shadow: 0px 1px 0 					rgba(255,255,255,.4);
}


/* Focus state - set here for specificity
-----------------------------------------------------------------------------------------------------------*/

.ui-focus {
	-moz-box-shadow: 0px 0px 12px 		#387bbe;
	-webkit-box-shadow: 0px 0px 12px 	#387bbe;
	box-shadow: 0px 0px 12px 			#387bbe;
}

/* unset box shadow in browsers that don't do it right
-----------------------------------------------------------------------------------------------------------*/

.ui-mobile-nosupport-boxshadow * {
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

/* ...and bring back focus */
.ui-mobile-nosupport-boxshadow .ui-focus {
	outline-width: 2px;
}/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
* Note: Code is in draft form and is subject to change 
*/

/* some unsets - more probably needed */
.ui-mobile, .ui-mobile body { height: 100%; }
.ui-mobile fieldset, .ui-page { padding: 0; margin: 0; background-color: #051E5B;}
.ui-mobile a img, .ui-mobile fieldset { border: 0; }

/* responsive page widths */
.ui-mobile-viewport {  margin: 0; overflow-x: hidden; -webkit-text-size-adjust: none; -ms-text-size-adjust:none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

/* "page" containers - full-screen views, one should always be in view post-pageload */
.ui-mobile [data-role=page], .ui-mobile [data-role=dialog], .ui-page { top: 0; left: 0; width: 100%; min-height: 100%; position: absolute; display: none; border: 0; } 
.ui-mobile .ui-page-active { display: block; overflow: visible; }

/*orientations from js are available */
.portrait,
.portrait .ui-page { min-height: 100%; }
.landscape,
.landscape .ui-page  { min-height: 100%; }

/* loading screen */
.ui-loading .ui-mobile-viewport { overflow: hidden !important; }
.ui-loading .ui-loader { display: block; }
.ui-loading .ui-page { overflow: hidden;  }
.ui-loader { display: none; position: absolute; opacity: .85; z-index: 100; left: 50%; width: 200px; margin-left: -130px; margin-top: -35px; padding: 10px 30px; }
.ui-loader h1 { font-size: 15px; text-align: center; }
.ui-loader .ui-icon { position: static; display: block; opacity: .9; margin: 0 auto; width: 35px; height: 35px; background-color: transparent; }

/*fouc*/
.ui-mobile-rendering > * { visibility: hidden; }

/*headers, content panels*/
.ui-bar, .ui-body { position: relative; padding: .4em 15px;  overflow: hidden; display: block;  clear:both;  }
.ui-bar { font-size: 14px; margin: 0; }
.ui-bar h1, .ui-bar h2, .ui-bar h3, .ui-bar h4, .ui-bar h5, .ui-bar h6 { margin: 0; padding: 0; font-size: 14px; display: inline-block; }

.ui-header, .ui-footer { display: block; }
.ui-page .ui-header, .ui-page .ui-footer { position: relative; }
.ui-header .ui-btn-left { position: absolute; left: 10px; top: .4em;  }
.ui-header .ui-btn-right { position: absolute; right: 10px; top: .4em; }
.ui-header .ui-title, .ui-footer .ui-title { text-align: center; font-size: 14px; display: block; margin: .7em 90px .4em;  padding: 0;  text-overflow: ellipsis; overflow: hidden; white-space: nowrap; outline: 0 !important; }

/*content area*/
.ui-content { border-width: 0; overflow: visible; overflow-x: hidden; padding: 0px; background-color: #0d0b4d; min-height: 235px;-webkit-user-select:none;}
.ui-page-fullscreen .ui-content { padding:0; }

/* icons sizing */
.ui-icon { width: 18px; height: 18px; }

/* fullscreen class on ui-content div */
.ui-fullscreen {  }
.ui-fullscreen img { max-width: 100%; }

/* non-js content hiding */
.ui-nojs { position: absolute; left: -9999px; }
/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
*/
.spin  {
	-webkit-transform: rotate(360deg);
	-webkit-animation-name: spin;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count:  infinite;
}
@-webkit-keyframes spin {
	from {-webkit-transform: rotate(0deg);}
  	to {-webkit-transform: rotate(360deg);}
}

/* Transitions from jQtouch (with small modifications): http://www.jqtouch.com/
Built by David Kaneda and maintained by Jonathan Stark.
*/
.in, .out {
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-duration: 350ms;
}

.slide.in {
	-webkit-transform: translateX(0);
	-webkit-animation-name: slideinfromright;
}

.slide.out {
	-webkit-transform: translateX(-100%);
	-webkit-animation-name: slideouttoleft;
}

.slide.in.reverse {
	-webkit-transform: translateX(0);
	-webkit-animation-name: slideinfromleft;
}

.slide.out.reverse {
	-webkit-transform: translateX(100%);
	-webkit-animation-name: slideouttoright;
}

.slideup.in {
	-webkit-transform: translateY(0);
	-webkit-animation-name: slideinfrombottom;
	z-index: 10;
}

.slideup.out {
	-webkit-animation-name: dontmove;
	z-index: 0;
}

.slideup.out.reverse {
	-webkit-transform: translateY(100%);
	z-index: 10;
	-webkit-animation-name: slideouttobottom;
}

.slideup.in.reverse {
	z-index: 0;
	-webkit-animation-name: dontmove;
}
.slidedown.in {
	-webkit-transform: translateY(0);
	-webkit-animation-name: slideinfromtop;
	z-index: 10;
}

.slidedown.out {
	-webkit-animation-name: dontmove;
	z-index: 0;
}

.slidedown.out.reverse {
	-webkit-transform: translateY(-100%);
	z-index: 10;
	-webkit-animation-name: slideouttotop;
}

.slidedown.in.reverse {
	z-index: 0;
	-webkit-animation-name: dontmove;
}

@-webkit-keyframes slideinfromright {
    from { -webkit-transform: translateX(100%); }
    to { -webkit-transform: translateX(0); }
}

@-webkit-keyframes slideinfromleft {
    from { -webkit-transform: translateX(-100%); }
    to { -webkit-transform: translateX(0); }
}

@-webkit-keyframes slideouttoleft {
    from { -webkit-transform: translateX(0); }
    to { -webkit-transform: translateX(-100%); }
}

@-webkit-keyframes slideouttoright {
    from { -webkit-transform: translateX(0); }
    to { -webkit-transform: translateX(100%); }
}


@-webkit-keyframes slideinfromtop {
    from { -webkit-transform: translateY(-100%); }
    to { -webkit-transform: translateY(0); }
}

@-webkit-keyframes slideinfrombottom {
    from { -webkit-transform: translateY(100%); }
    to { -webkit-transform: translateY(0); }
}

@-webkit-keyframes slideouttobottom {
    from { -webkit-transform: translateY(0); }
    to { -webkit-transform: translateY(100%); }
}

@-webkit-keyframes slideouttotop {
    from { -webkit-transform: translateY(0); }
    to { -webkit-transform: translateY(-100%); }
}
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

@-webkit-keyframes fadeout {
    from { opacity: 1; }
    to { opacity: 0; }
}

.fade.in {
	opacity: 1;
	z-index: 10;
	-webkit-animation-name: fadein;
}
.fade.out {
	z-index: 0;
	-webkit-animation-name: fadeout;
}

/* The properties in this body rule are only necessary for the 'flip' transition.
 * We need specify the perspective to create a projection matrix. This will add
 * some depth as the element flips. The depth number represents the distance of
 * the viewer from the z-plane. According to the CSS3 spec, 1000 is a moderate
 * value.
 */
.ui-mobile-viewport-perspective {
	-webkit-perspective: 1000;
	position: absolute;
}

.ui-mobile-viewport-transitioning,
.ui-mobile-viewport-transitioning .ui-page {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.flip {
	-webkit-animation-duration: .65s;
	-webkit-backface-visibility:hidden;
	-webkit-transform:translateX(0); /* Needed to work around an iOS 3.1 bug that causes listview thumbs to disappear when -webkit-visibility:hidden is used. */
}

.flip.in {
	-webkit-transform: rotateY(0) scale(1);
	-webkit-animation-name: flipinfromleft;
}

.flip.out {
	-webkit-transform: rotateY(-180deg) scale(.8);
	-webkit-animation-name: flipouttoleft;
}

/* Shake it all about */

.flip.in.reverse {
	-webkit-transform: rotateY(0) scale(1);
	-webkit-animation-name: flipinfromright;
}

.flip.out.reverse {
	-webkit-transform: rotateY(180deg) scale(.8);
	-webkit-animation-name: flipouttoright;
}

@-webkit-keyframes flipinfromright {
    from { -webkit-transform: rotateY(-180deg) scale(.8); }
    to { -webkit-transform: rotateY(0) scale(1); }
}

@-webkit-keyframes flipinfromleft {
    from { -webkit-transform: rotateY(180deg) scale(.8); }
    to { -webkit-transform: rotateY(0) scale(1); }
}

@-webkit-keyframes flipouttoleft {
    from { -webkit-transform: rotateY(0) scale(1); }
    to { -webkit-transform: rotateY(-180deg) scale(.8); }
}

@-webkit-keyframes flipouttoright {
    from { -webkit-transform: rotateY(0) scale(1); }
    to { -webkit-transform: rotateY(180deg) scale(.8); }
}


/* Hackish, but reliable. */

@-webkit-keyframes dontmove {
    from { opacity: 1; }
    to { opacity: 1; }
}

.pop {
	-webkit-transform-origin: 50% 50%;
}

.pop.in {
	-webkit-transform: scale(1);
    opacity: 1;
	-webkit-animation-name: popin;
	z-index: 10;
}

.pop.out.reverse {
	-webkit-transform: scale(.2);
	opacity: 0;
	-webkit-animation-name: popout;
	z-index: 10;
}

.pop.in.reverse {
	z-index: 0;
	-webkit-animation-name: dontmove;
}

@-webkit-keyframes popin {
    from {
        -webkit-transform: scale(.2);
        opacity: 0;
    }
    to {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes popout {
    from {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    to {
        -webkit-transform: scale(.2);
        opacity: 0;
    }
}/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
*/

/* content configurations. */
.ui-grid-a, .ui-grid-b, .ui-grid-c, .ui-grid-d { overflow: hidden; }
.ui-block-a, .ui-block-b, .ui-block-c, .ui-block-d, .ui-block-e { margin: 0; padding: 0; border: 0; float: left; min-height:1px;}

/* grid solo: 100 - single item fallback */
.ui-grid-solo .ui-block-a { width: 100%; float: none; }

/* grid a: 50/50 */
.ui-grid-a .ui-block-a, .ui-grid-a .ui-block-b { width: 50%; }
.ui-grid-a .ui-block-a { clear: left; }

/* grid b: 33/33/33 */
.ui-grid-b .ui-block-a, .ui-grid-b .ui-block-b, .ui-grid-b .ui-block-c { width: 33.333%; }
.ui-grid-b .ui-block-a { clear: left; }

/* grid c: 25/25/25/25 */
.ui-grid-c .ui-block-a, .ui-grid-c .ui-block-b, .ui-grid-c .ui-block-c, .ui-grid-c .ui-block-d { width: 25%; }
.ui-grid-c .ui-block-a { clear: left; }

/* grid d: 20/20/20/20/20 */
.ui-grid-d .ui-block-a, .ui-grid-d .ui-block-b, .ui-grid-d .ui-block-c, .ui-grid-d .ui-block-d, .ui-grid-d .ui-block-e { width: 20%; }
.ui-grid-d .ui-block-a { clear: left; }
/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
*/
/* fixed page header & footer configuration */
.ui-header, .ui-footer, .ui-page-fullscreen .ui-header, .ui-page-fullscreen .ui-footer  { position: absolute;  overflow: hidden; width: 100%; border-left-width: 0; border-right-width: 0; }
.ui-header-fixed, .ui-footer-fixed {
	z-index: 1000;
	-webkit-transform: translateZ(0); /* Force header/footer rendering to go through the same rendering pipeline as native page scrolling. */
}
.ui-footer-duplicate, .ui-page-fullscreen .ui-fixed-inline { display: none; }
.ui-page-fullscreen .ui-header, .ui-page-fullscreen .ui-footer { opacity: .9; }
/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
*/
.ui-navbar { overflow: hidden;  }
.ui-navbar ul, .ui-navbar-expanded ul { list-style:none; padding: 0; margin: 0; position: relative; display: block; border: 0;}
.ui-navbar-collapsed ul { float: left; width: 75%; margin-right: -2px; }
.ui-navbar-collapsed .ui-navbar-toggle { float: left; width: 25%; }
.ui-navbar li.ui-navbar-truncate { position: absolute; left: -9999px; top: -9999px; }
.ui-navbar li .ui-btn, .ui-navbar .ui-navbar-toggle .ui-btn { display: block; font-size: 12px; text-align: center; margin: 0; border-right-width: 0; }
.ui-navbar li .ui-btn {  margin-right: -1px; }
.ui-navbar li .ui-btn:last-child { margin-right: 0; }
.ui-header .ui-navbar li .ui-btn, .ui-header .ui-navbar .ui-navbar-toggle .ui-btn,
.ui-footer .ui-navbar li .ui-btn, .ui-footer .ui-navbar .ui-navbar-toggle .ui-btn { border-top-width: 0; border-bottom-width: 0; }
.ui-navbar .ui-btn-inner { padding-left: 2px; padding-right: 2px; }
.ui-navbar-noicons li .ui-btn .ui-btn-inner, .ui-navbar-noicons .ui-navbar-toggle .ui-btn-inner { padding-top: .8em; padding-bottom: .9em; }
/*expanded page styles*/
.ui-navbar-expanded .ui-btn { margin: 0; font-size: 14px; }
.ui-navbar-expanded .ui-btn-inner { padding-left: 5px; padding-right: 5px;  }
.ui-navbar-expanded .ui-btn-icon-top .ui-btn-inner { padding: 45px 5px 15px; text-align: center; }
.ui-navbar-expanded .ui-btn-icon-top .ui-icon { top: 15px; }
.ui-navbar-expanded .ui-btn-icon-bottom .ui-btn-inner { padding: 15px 5px 45px; text-align: center; }
.ui-navbar-expanded .ui-btn-icon-bottom .ui-icon { bottom: 15px; }
.ui-navbar-expanded li .ui-btn .ui-btn-inner { min-height: 2.5em; }
.ui-navbar-expanded .ui-navbar-noicons .ui-btn .ui-btn-inner { padding-top: 1.8em; padding-bottom: 1.9em; }
/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
*/
.ui-btn { display: block; text-align: center; cursor:pointer;  position: relative; margin: .0em 5px; padding: 0; }
.ui-btn:focus, .ui-btn:active { outline: none; }
.ui-header .ui-btn, .ui-footer .ui-btn, .ui-bar .ui-btn { display: inline-block; font-size: 13px; margin: 0; }
.ui-btn-inline { display: inline-block; }
.ui-btn-inner { padding: -.2em 25px; display: block; height: 100%; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; position: relative; top: -2px;}
.ui-header .ui-btn-inner, .ui-footer .ui-btn-inner, .ui-bar .ui-btn-inner { padding: -.2em 8px .2em; }
.ui-btn-icon-notext { display: inline-block; width: 20px; height: 20px; padding: 2px 1px 2px 3px; text-indent: -9999px; }
.ui-btn-icon-notext .ui-btn-inner { padding: 0; }
.ui-btn-icon-notext .ui-btn-text { position: absolute; left: -999px; }
.ui-btn-icon-left .ui-btn-inner { padding-left: 33px; }
.ui-header .ui-btn-icon-left .ui-btn-inner,
.ui-footer .ui-btn-icon-left .ui-btn-inner,
.ui-bar .ui-btn-icon-left .ui-btn-inner { padding-left: 27px; }
.ui-btn-icon-right .ui-btn-inner { padding-right: 33px; }
.ui-header .ui-btn-icon-right .ui-btn-inner,
.ui-footer .ui-btn-icon-right .ui-btn-inner,
.ui-bar .ui-btn-icon-right .ui-btn-inner { padding-right: 27px; }
.ui-btn-icon-top .ui-btn-inner { padding-top: 33px; }
.ui-header .ui-btn-icon-top .ui-btn-inner,
.ui-footer .ui-btn-icon-top .ui-btn-inner,
.ui-bar .ui-btn-icon-top .ui-btn-inner { padding-top: 27px; }
.ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 33px; }
.ui-header .ui-btn-icon-bottom .ui-btn-inner,
.ui-footer .ui-btn-icon-bottom .ui-btn-inner,
.ui-bar .ui-btn-icon-bottom .ui-btn-inner { padding-bottom: 27px; }

/*btn icon positioning*/
.ui-btn-icon-notext .ui-icon { display: block; }
.ui-btn-icon-left .ui-icon, .ui-btn-icon-right .ui-icon { position: absolute; top: 50%; margin-top: -9px; }
.ui-btn-icon-top .ui-icon, .ui-btn-icon-bottom .ui-icon { position: absolute; left: 50%;  margin-left: -9px; }
.ui-btn-icon-left .ui-icon { left: 10px; }
.ui-btn-icon-right .ui-icon {right: 10px;}
.ui-header .ui-btn-icon-left .ui-icon,
.ui-footer .ui-btn-icon-left .ui-icon,
.ui-bar .ui-btn-icon-left .ui-icon { left: 4px; }
.ui-header .ui-btn-icon-right .ui-icon,
.ui-footer .ui-btn-icon-right .ui-icon,
.ui-bar .ui-btn-icon-right .ui-icon { right: 4px; }
.ui-header .ui-btn-icon-top .ui-icon,
.ui-footer .ui-btn-icon-top .ui-icon,
.ui-bar .ui-btn-icon-top .ui-icon { top: 4px; }
.ui-header .ui-btn-icon-bottom .ui-icon,
.ui-footer .ui-btn-icon-bottom .ui-icon,
.ui-bar .ui-btn-icon-bottom .ui-icon { bottom: 4px; }
.ui-btn-icon-top .ui-icon { top: 5px; }
.ui-btn-icon-bottom .ui-icon { bottom: 5px; }
/*hiding native button,inputs */
.ui-btn-hidden {  position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-appearance: button; opacity: 0; cursor: pointer; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); }
/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
*/
.ui-collapsible-contain { margin: .5em 0; }
.ui-collapsible-heading { font-size: 14px; display: block; margin: 0 -8px; padding: 0; border-width: 0 0 1px 0; position: relative; }
.ui-collapsible-heading a { text-align: left; margin: 0;  }
.ui-collapsible-heading a .ui-btn-inner { padding-left: 40px; }
.ui-collapsible-heading a span.ui-btn { position: absolute; left: 6px; top: 50%; margin: -12px 0 0 0; width: 20px; height: 20px; padding: 1px 0px 1px 2px; text-indent: -9999px; }
.ui-collapsible-heading a span.ui-btn .ui-btn-inner { padding: 0; }
.ui-collapsible-heading a span.ui-btn .ui-icon { left: 0; margin-top: -10px; }
.ui-collapsible-heading-status { position:absolute; left:-9999px; }
.ui-collapsible-content {  display: block; padding: 10px 0 10px 8px; }
.ui-collapsible-content-collapsed { display: none; }

.ui-collapsible-set { margin: .5em 0; }
.ui-collapsible-set .ui-collapsible-contain { margin: -1px 0 0; }
/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
*/
.ui-controlgroup, fieldset.ui-controlgroup { padding: 0; margin: .5em 0 1em; }
.ui-bar .ui-controlgroup { margin: 0 .3em; }
.ui-controlgroup-label { font-size: 14px; line-height: 1.4; font-weight: normal; margin: 0 0 .3em; }
.ui-controlgroup-controls { display: block; width: 95%;}
.ui-controlgroup li { list-style: none; }
.ui-controlgroup-vertical .ui-btn,
.ui-controlgroup-vertical .ui-checkbox, .ui-controlgroup-vertical .ui-radio { margin: 0; border-bottom-width: 0;  }
.ui-controlgroup-vertical .ui-controlgroup-last { border-bottom-width: 1px; }
.ui-controlgroup-horizontal { padding: 0; }
.ui-controlgroup-horizontal .ui-btn,
.ui-controlgroup-horizontal .ui-checkbox, .ui-controlgroup-horizontal .ui-radio { display: inline-block; margin: 0 -5px 0 0; }
.ui-controlgroup-horizontal .ui-checkbox, .ui-controlgroup-horizontal .ui-radio { display: inline; }
.ui-controlgroup-horizontal .ui-checkbox .ui-btn, .ui-controlgroup-horizontal .ui-radio .ui-btn,
.ui-controlgroup-horizontal .ui-checkbox:last-child, .ui-controlgroup-horizontal .ui-radio:last-child { margin-right: 0; }
.ui-controlgroup-horizontal .ui-controlgroup-last { margin-right: 0; }
.ui-controlgroup .ui-checkbox label, .ui-controlgroup .ui-radio label { font-size: 16px;  }
/* conflicts with listview..
.ui-controlgroup .ui-btn-icon-notext { width: 30px; height: 30px; text-indent: -9999px; }
.ui-controlgroup .ui-btn-icon-notext .ui-btn-inner {  padding: 5px 6px 5px 5px; }
*/

.min-width-480px .ui-controlgroup-label { vertical-align: top; display: inline-block;  width: 20%;  margin: 0 2% 0 0;  }
.min-width-480px .ui-controlgroup-controls { width: 60%; display: inline-block; } /*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
*/
.ui-dialog { min-height: 480px; }
.ui-dialog .ui-header, .ui-dialog .ui-content,  .ui-dialog .ui-footer { margin: 15px; position: relative; }
.ui-dialog .ui-header, .ui-dialog .ui-footer { z-index: 10; width: auto; }
.ui-dialog .ui-content, .ui-dialog .ui-footer { margin-top: -15px;  }/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
*/
.ui-checkbox, .ui-radio { position:relative;  margin: .2em 0 .5em; z-index: 1;  }
.ui-checkbox .ui-btn, .ui-radio .ui-btn { margin: 0; text-align: left; z-index: 2; }
.ui-checkbox .ui-btn-icon-left .ui-btn-inner,.ui-radio .ui-btn-icon-left .ui-btn-inner { padding-left: 45px; }
.ui-checkbox .ui-btn-icon-right .ui-btn-inner, .ui-radio .ui-btn-icon-right .ui-btn-inner { padding-right: 45px; }
.ui-checkbox .ui-btn-icon-left .ui-icon, .ui-radio .ui-btn-icon-left .ui-icon {left: 15px; }
.ui-checkbox .ui-btn-icon-right .ui-icon, .ui-radio .ui-btn-icon-right .ui-icon {right: 15px; }
/* input, label positioning */
.ui-checkbox input,.ui-radio input { position:absolute; left:20px; top:50%; width: 10px; height: 10px;  margin:-5px 0 0 0; outline: 0 !important; z-index: 1; }/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
*/
.ui-field-contain { background: none; padding: 1.5em 0; margin: 0; border-bottom-width: 1px; overflow: visible; }
.ui-field-contain:first-child { border-top-width: 0; }
.min-width-480px .ui-field-contain { border-width: 0; padding: 0; margin: 1em 0; }/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
*/
.ui-select { display: block; position: relative; }
.ui-select select { position: absolute; left: -9999px; top: -9999px; }
.ui-select .ui-btn { overflow: hidden; }
.ui-select .ui-btn select { cursor: pointer; -webkit-appearance: button; left: 0; top:0; width: 100%; height: 100%; opacity: 0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: alpha(opacity=0); }
.ui-select .ui-btn select.ui-select-nativeonly { opacity: 1; }

.ui-select .ui-btn-icon-right .ui-btn-inner { padding-right: 45px; } 
.ui-select .ui-btn-icon-right .ui-icon { right: 15px;  }

/* labels */
label.ui-select { font-size: 16px; line-height: 1.4;  font-weight: normal; margin: 0 0 .3em; display: block; }

/*listbox*/
.ui-select .ui-btn-text, .ui-selectmenu .ui-btn-text { display: inline-block; min-height: 1em; }
.ui-select .ui-btn-text { text-overflow: ellipsis; overflow: hidden; display: block;}

.ui-selectmenu { position: absolute; padding: 0; z-index: 100 !important; width: 80%; max-width: 350px; padding: 6px; }
.ui-selectmenu .ui-listview { margin: 0; }
.ui-selectmenu .ui-btn.ui-li-divider { cursor: default; }
.ui-selectmenu-hidden { top: -9999px; left: -9999px; }
.ui-selectmenu-screen { position: absolute; top: 0; left: 0; width: 100%; height: 100%;  z-index: 99; }
.ui-screen-hidden, .ui-selectmenu-list .ui-li .ui-icon { display: none; }
.ui-selectmenu-list .ui-li .ui-icon { display: block; }
.ui-li.ui-selectmenu-placeholder { display: none; }
.ui-selectmenu .ui-header .ui-title { margin: 0.6em 46px 0.2em; }

.min-width-480px label.ui-select { display: inline-block;  width: 20%;  margin: 0 2% 0 0; }
.min-width-480px .ui-select { width: 60%; display: inline-block; }

/* when no placeholder is defined in a multiple select, the header height doesn't even extend past the close button.  this shim's content in there */
.ui-selectmenu .ui-header h1:after { content: '.'; visibility: hidden; }/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
*/
label.ui-input-text { font-size: 16px; line-height: 1.4; display: block; font-weight: normal; margin: 0 0 .3em; }
input.ui-input-text, textarea.ui-input-text { background-image: none; padding: .4em; line-height: 1.4; font-size: 16px; display: block; width: 95%; }
input.ui-input-text { -webkit-appearance: none; }
textarea.ui-input-text { height: 50px; -webkit-transition: height 200ms linear; -moz-transition: height 200ms linear; -o-transition: height 200ms linear; transition: height 200ms linear; }
.ui-input-search { padding: 0 30px; width: 77%; background-position: 8px 50%; background-repeat: no-repeat; position: relative; }
.ui-input-search input.ui-input-text { border: none; width: 98%; padding: .4em 0; margin: 0; display: block; background: transparent none; outline: 0 !important; }
.ui-input-search .ui-input-clear { position: absolute; right: 0; top: 50%; margin-top: -14px; }
.ui-input-search .ui-input-clear-hidden { display: none; }

/* orientation adjustments - incomplete!*/
.min-width-480px label.ui-input-text  { vertical-align: top;   }
.min-width-480px label.ui-input-text { display: inline-block;  width: 20%;  margin: 0 2% 0 0; }
.min-width-480px input.ui-input-text, 
.min-width-480px textarea.ui-input-text, 
.min-width-480px .ui-input-search { width: 60%; display: inline-block; } 
.min-width-480px .ui-input-search { width: 50%; }
.min-width-480px .ui-input-search input.ui-input-text { width: 98%; /*echos rule from above*/ }
/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
*/
.ui-listview { margin: 0; counter-reset: listnumbering; }
.ui-content .ui-listview { margin: 0px; }
.ui-content .ui-listview-inset { margin: 1em 0;  }
.ui-listview, .ui-li { list-style:none; padding:0; }
.ui-li, .ui-li.ui-field-contain { display: block; margin:0; position: relative; overflow: visible; text-align: left; border-width: 0; border-top-width: 0px; }
.ui-li .ui-btn-text a.ui-link-inherit { text-overflow: ellipsis; overflow: hidden; white-space: nowrap;  }
.ui-li-divider, .ui-li-static { padding: .5em 15px; font-size: 14px; font-weight: bold;  }
.ui-li-divider { counter-reset: listnumbering;  }
ol.ui-listview .ui-link-inherit:before, ol.ui-listview .ui-li-static:before, .ui-li-dec { font-size: .8em; display: inline-block; padding-right: .3em; font-weight: normal;counter-increment: listnumbering; content: counter(listnumbering) ". "; }
ol.ui-listview .ui-li-jsnumbering:before { content: "" !important; } /* to avoid chance of duplication */
.ui-listview-inset .ui-li { border-right-width: 1px; border-left-width: 1px; }
.ui-li:last-child, .ui-li.ui-field-contain:last-child { border-bottom-width: 1px; }
.ui-li>.ui-btn-inner { display: block; position: relative; padding: 0; }
.ui-li .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li { padding: .7em 75px .7em 15px; display: block; }
.ui-li-has-thumb .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-thumb  { min-height: 80px; padding-left: 140px; }
.ui-li-has-icon .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-icon {  min-height: 20px; padding-left: 40px; }
.ui-li-heading { font-size: 16px; font-weight: bold; display: block; margin: .6em 0; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;  }
.ui-li-desc {  font-size: 12px; font-weight: normal; display: block; margin: -.5em 0 .6em; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.ui-li-thumb, .ui-li-icon { position: absolute; left: 0px; top: 0px;}
.ui-li-icon { max-height: 40px; max-width: 40px; left: 10px; top: .9em; }
.ui-li-thumb, .ui-li-icon, .ui-li-content { float: left; margin-right: 10px; }

.ui-li-aside { float: right; width: 50%; text-align: right; margin: .3em 0; }
.min-width-480px .ui-li-aside { width: 45%; }
.ui-li-divider { cursor: default; }
.ui-li-has-alt .ui-btn-inner a.ui-link-inherit, .ui-li-static.ui-li-has-alt { padding-right: 95px; }
.ui-li-count { position: absolute; font-size: 11px; font-weight: bold; padding: .2em .5em; top: 50%; margin-top: -.9em; right: 38px; }
.ui-li-divider .ui-li-count, .ui-li-static .ui-li-count { right: 10px; }
.ui-li-has-alt .ui-li-count { right: 55px; }
.ui-li-link-alt { position: absolute; width: 40px; height: 100%; border-width: 0; border-left-width: 1px; top: 0; right: 0; margin: 0; padding: 0; }
.ui-li-link-alt .ui-btn { overflow: hidden; position: absolute; right: 8px; top: 50%; margin: -11px 0 0 0; border-bottom-width: 1px; }
.ui-li-link-alt .ui-btn-inner { padding: 0; position: static; }
.ui-li-link-alt .ui-btn .ui-icon { right: 50%; margin-right: -9px;  }

.ui-listview-filter { border-width: 0; overflow: hidden; margin: -15px -15px 15px -15px }
.ui-listview-filter .ui-input-search { margin: 5px; width: auto; display: block; }

.ui-listview-filter-inset { margin: -15px -5px -15px -5px; background: transparent; }

/* Odd iPad positioning issue. */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .ui-li .ui-btn-text { overflow:  visible; }
}/*
* jQuery Mobile Framework
* Copyright (c) jQuery Project
* Dual licensed under the MIT (MIT-LICENSE.txt) or GPL (GPL-LICENSE.txt) licenses.
*/
label.ui-slider { display: block; }
input.ui-slider-input, .min-width-480px input.ui-slider-input { display: inline-block; width: 50px; }
select.ui-slider-switch { display: none; }
div.ui-slider { position: relative; display: inline-block; overflow: visible; height: 15px; padding: 0; margin: 0 2% 0 20px; top: 4px; width: 66%; }
a.ui-slider-handle { position: absolute; z-index: 10;  top: 50%; width: 28px; height: 28px; margin-top: -15px; margin-left: -15px; }
a.ui-slider-handle .ui-btn-inner { padding-left: 0; padding-right: 0; }
.min-width-480px label.ui-slider { display: inline-block;  width: 20%;  margin: 0 2% 0 0; }
.min-width-480px div.ui-slider { width: 45%; }

div.ui-slider-switch { height: 32px;  overflow: hidden; margin-left: 0; }
div.ui-slider-inneroffset { margin-left: 50%; position: absolute; top: 1px; height: 100%; width: 50%; }
div.ui-slider-handle-snapping { -webkit-transition: left 100ms linear; }
div.ui-slider-labelbg { position: absolute; top:0; margin: 0; border-width: 0; }
div.ui-slider-switch div.ui-slider-labelbg-a { width: 60%; height: 100%; left: 0; }
div.ui-slider-switch div.ui-slider-labelbg-b { width: 60%; height: 100%; right: 0; }
.ui-slider-switch-a div.ui-slider-labelbg-a, .ui-slider-switch-b div.ui-slider-labelbg-b { z-index: -1; }
.ui-slider-switch-a div.ui-slider-labelbg-b, .ui-slider-switch-b div.ui-slider-labelbg-a { z-index: 0; }

div.ui-slider-switch a.ui-slider-handle { z-index: 20;  width: 101%; height: 32px; margin-top: -18px; margin-left: -101%; }
span.ui-slider-label { width: 100%; position: absolute;height: 32px;  font-size: 16px; text-align: center; line-height: 2; background: none; border-color: transparent; }
span.ui-slider-label-a { left: -100%;  margin-right: -1px }
span.ui-slider-label-b { right: -100%;  margin-left: -1px }


/* Z
-----------------------------------------------------------------------------------------------------------*/

.ui-bar-z {
	border: 0px solid 		#000000;
	color: 					#fff;
background: #58739d; /* Old browsers */
background: -moz-linear-gradient(top, #58739d 0%, #3e6095 50%, #31548d 51%, #2b4986 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#58739d), color-stop(50%,#3e6095), color-stop(51%,#31548d), color-stop(100%,#2b4986)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #58739d 0%,#3e6095 50%,#31548d 51%,#2b4986 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #58739d 0%,#3e6095 50%,#31548d 51%,#2b4986 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #58739d 0%,#3e6095 50%,#31548d 51%,#2b4986 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#58739d', endColorstr='#2b4986',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #58739d 0%,#3e6095 50%,#31548d 51%,#2b4986 100%); /* W3C */
}


.ui-bar-z,
.ui-bar-z input,
.ui-bar-z select,
.ui-bar-z textarea,
.ui-bar-z button {
  font-weight: bold;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;
}
.ui-bar-z .ui-link-inherit {
	color: 					#fff;
}
.ui-bar-z .ui-link {
	color: 					#2489CE;
	font-weight: bold;
}
.ui-body-z {
	background: 			#222222;
	color: 					#fff;
	 text-shadow: 0 1px 0 	#000;
	font-weight: normal;
	background-image: -moz-linear-gradient(top, 
							#666666, 
							#222222);
	background-image: -webkit-gradient(linear,left top,left bottom,
		color-stop(0, 		#666666),
		color-stop(1, 		#222222));
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#666666', EndColorStr='#222222)')";
}
.ui-body-z,
.ui-body-z input,
.ui-body-z select,
.ui-body-z textarea,
.ui-body-z button {
	font-weight: bold;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;
}
.ui-body-z .ui-link-inherit {
	color: 					#333333;
}
.ui-body-z .ui-link {
	color: 					#2489CE;
	font-weight: bold;
}
.ui-btn-up-z {
	font-weight: bold;
	color: 					#333;
}
.ui-btn-up-z a.ui-link-inherit {
	color: 					#333;
}
.ui-btn-hover-z {
	font-weight: bold;
	color: 					#111;
}

.ui-btn-hover-z a.ui-link-inherit {
	color: 					#333;
}
.ui-btn-down-z {
	font-weight: bold;
	color: 					#111;

}

.ui-btn-down-z a.ui-link-inherit {
	color: 					#333;
}
.ui-btn-up-z,
.ui-btn-hover-z,
.ui-btn-down-z {
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;
	text-decoration: none;
	font-weight: bold;
}

#gradient_background{ 
  max-height: 320px; 
  background-repeat: repeat; 
  background:  url(images/mhsd/background_gradient@2x.png) 100% 100%; 
  background-size: 480px 320px; 
  width: 480px; 
  height: 280px; 
  margin-left: 0px !important;
  margin-top: -45px !important;
  font-size: 12px!important;
  font-weight: bold;
  color:#FFF!important;
  display:block; 
}

#gradient_backgroundfull{ 
  max-height: 320px; 
  background-repeat: repeat; 
  background:  url(images/mhsd/background_gradient@2x.png) 100% 100%; 
  background-size: 480px 320px; 
  width: 480px; 
  height: 320px; 
  margin-left: 0px !important;
  margin-top: 0px !important;
  font-size: 12px!important;
  font-weight: bold;
  color:#FFF!important;
  display:block;
}

.nolink{ 
  text-decoration: none!important;
}

#help_background{ 
  margin-left: 0px !important;
  margin-top: 0px !important;
  float:left;
  position: absolute;
  top:-50px;
  left:0px;
}

#background{ 
  width: 480px; 
  background-repeat: repeat; 
  margin-left: 0px !important;
  margin-top: -40px !important;
  margin-bottom: 0px !important;
  margin-right: 0px !important;
  padding-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  font-size: 12px!important;
  font-weight: bold;
  color:#FFF!important;
  display:block;
  background-color: #0d0b4d; 

}

.background_flow{ 
  background-color: #0d0b4d; 

}
#iframe_flow{ 
  margin-top: 0px !important;
  padding-top:0px !important;
  border: 1px solid white !important;
  position: absolute !important;
  top: 0px !important;
  left: 0px !important;
}

#pos_info
{
  position: absolute;
  top: 215px!important;
  left: 10px!important;
  color: white!important;
  float:left!important;
  text-decoration: none!important;
  font-weight: normal!important;  
  font-family: "Times New Roman",sans-serif!important;
  font-size: 12px!important;
  font-style: italic;
}

#pos_arrow
{
  position: absolute;
  top: 40px!important;
  left: 40px!important;
  color: white!important;
  float:left!important;
  text-decoration: none!important;
  font-weight: normal!important;  
  font-family: "Times New Roman", sans-serif!important;
  font-size: 12px!important;
  font-style: italic;
}

#pos_musee
{
  position: absolute;
  top: 230px!important;
  left: 130px!important;
  color: white!important;
  float:left!important;
  text-decoration: none!important;
  font-weight: normal!important;  
  font-family: "Times New Roman", sans-serif!important;
  font-size: 12px!important;	
  font-style: italic;
}

#pos_keypad
{
  position: absolute;
  top: 230px!important;
  left: 210px!important;
  color: white!important;
  float:left!important;
  text-decoration: none!important;
  font-weight: normal!important;  
  font-family: "Times New Roman", sans-serif!important;
  font-size: 12px!important;
  text-align: center;	
  font-style: italic;
}

#pos_sprache
{
  position: absolute;
  top: 230px!important;
  left: 340px!important;
  color: white!important;
  float:left!important;
  text-decoration: none!important;
  font-weight: normal!important;  
  font-family: "Times New Roman", sans-serif!important;
  font-size: 12px!important;	
  font-style: italic;
}

#pos_helpdesk
{
  position: absolute;
  top: 230px!important;
  left: 430px!important;
  color: white!important;
  float:left!important;
  text-decoration: none!important;
  font-weight: normal!important;  
  font-family: "Times New Roman", sans-serif!important;
  font-size: 12px!important;	
  font-style: italic;
}

#pos_help1{
  position: absolute;
  top: 60px!important;
  left: 290px!important;
  color: white!important;
  float:left!important;
  text-decoration: none!important;
  font-weight: normal!important;  
  font-family: "Times New Roman", sans-serif!important;
  font-size: 12px!important;	
  margin-right: 10px;
  border-radius:5px;
  padding: 2px;
  border: #cccccc solid 1px;
  width: 175px;
  height: 145px;
}

#pos_help2{
  position: absolute;
  top: 60px!important;
  left: 10px!important;
  color: white!important;
  float:left!important;
  text-decoration: none!important;
  font-weight: normal!important;  
  font-family: "Times New Roman", sans-serif!important;
  font-size: 12px!important;	
  margin-right: 10px;
  border-radius:5px;
  padding: 2px;
  border: #cccccc solid 1px;
  width: 270px;  
}

#pos_help3{
  position: absolute;
  top: 130px!important;
  left: 10px!important;
  color: white!important;
  float:left!important;
  text-decoration: none!important;
  font-weight: normal!important;  
  font-family: "Times New Roman", sans-serif!important;
  font-size: 12px!important;	
  margin-right: 10px;
  border-radius:5px;
  padding: 2px;
  border: #cccccc solid 1px;
  width: 270px;  
}
#info_maintitle
{
  text-align: center;
  font-size: 16px!important;
  font-weight: bold;
  color:#3870B2!important; 
  text-decoration: none;
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;
  margin-top: 40px;
}

#info_title
{
  text-align: left;
  font-size: 16px!important;
  font-weight: bold;
  color:#3870B2!important; 
  text-decoration: none;
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;
  margin-top: 30px;
  margin-left: 40px;
}

#info_text
{
  text-align: justify;
  font-family: "Times New Roman", sans-serif;
  font-size: 14px!important;
  font-weight: normal!important;

  color:#FFF!important; 
  text-decoration: none;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 40px;
  margin-right: 40px;
}

#info_text_icons
{
  line-height: 20px;
  text-align: left;
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;
  font-size: 13px!important;
  font-weight: bold;
  color:#FFF!important; 
  text-decoration: none;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 40px;
  margin-right: 40px;
}

#info_icon
{
	margin-right: 10px;
	line-height: 20px;
	margin-top: -2px;
}

#info_hr
{
  width: 480px; 
  height: 1px;
  color: #3870B2;
  background-color: #3870B2;
  height: 1px;
}

#background_keypad{ 
  width: 480px; 
  height: 280px;
  background-repeat: repeat; 
  margin-left: 0px !important;
  margin-top: -45px !important;
  margin-bottom: 0px !important;
  margin-right: 0px !important;
  padding-bottom: 0px;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  font-size: 12px!important;
  font-weight: bold;
  color:#FFF!important;
  display:block;
  background-color: #0d0b4d; 

}

#keypad2 {             
  margin-left: 1px !important;
  margin-top: 66px !important;
  text-align: center;  
  width: 480px; 
  height: 90px; 
  display:block;
  float:left; 
  position: relative; 
}

#keypad_line1 {
  border: 0px solid 		#FFF;
  font-size: 20px!important;
  font-weight: bold;
  color:#7E98C9!important; 
  display:block;
  position: relative;
  left: 0px;
  top: 55px;
  width: 480px;
  height: 30px;
  float: left;
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
}
#keypad_line2 {
  border: 0px solid #FFF;
  font-size: 16px!important;
  font-weight: normal;
  color:#FFF!important; 
  display:block;
  position: relative;
  float: left;
  left: 0px;
  top: 50px;
  width: 480px;
  height: 25px;
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
}

#onebutton {
  margin-left: -1px !important;
  margin-right: -1px !important;
  margin-top: -5px !important;
  padding-top: 0px !important;
  font-size: 12px!important;
  font-weight: bold;
  color:#FFF!important; 
  display:block;
  position: relative;
  float: left;
}


#flags {
  display: block;               
  margin-left: 0px !important;
  padding-top: 120px !important;
  text-align: center;  
  width: 400px; 
  height: 100px; 
  overflow: visible !important;
  float:inherit;  
  align: center;
}

#oneflag {
  margin-left: 0px !important;
  padding-top: 0px !important;
  width: 100px; 
  height: 100px ;
  font-size: 12px!important;
  font-weight: bold;
  color:#FFF!important; 
  display:block;
  position: relative;
  float: left;
}
#oneflag_link 
{
  font-size: 12px!important;
  font-weight: normal;
  color:#FFF!important; 
  text-decoration: none;
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif; 
}

#rooms {
  display: block;               
  margin-left: 0px !important;
  padding-top: 80px !important;
  text-align: center;  
  width: 480px; 
  height: 205px; 
  min-height: 205px;
  overflow: hidden !important;
  float:inherit;  
  align: center;
}

#listchoice {
  display: block;               
  margin-left: 0px !important;
  padding-top: 20px !important;
  text-align: center;  
  width: 480px; 
  height: 255px; 
  min-height: 255px;
  overflow: hidden !important;
  float:left;  
}
#listchoice_left {
  display: block;               
  margin-left: 0px !important;
  padding-top: 0px !important;
  text-align: center;  
  width: 200px; 
  height: 260px; 
  overflow: hidden !important;
  float:left;  
}

#listchoice_right {
  display: block;               
  margin-left: 0px !important;
  padding-top: 20px !important;
  width: 275px; 
  height: 260px; 
  overflow: hidden !important;
  float:left;  
}

#listchoice_right_top {
  display: block;               
  margin-left: 0px !important;
  padding-top: 0px !important;
  text-align: center;  
  width: 250px; 
  height: 120px; 
  overflow: hidden !important;
  float:left;  
}
#listchoice_right_bottom {
  display: block;               
  margin-left: 0px !important;
  padding-top: 0px !important;
  text-align: center;  
  width: 250px; 
  height: 120px; 
  overflow: hidden !important;
  float:left; 
   
}
#listchoice_right_bottom_text {
  display: block;               
  margin-left: 0px !important;
  padding-top: 0px !important;
  padding-left: 0px !important;
  overflow: hidden !important;
  float:left;
  position: relative;
  top: 25px;
  left: 50px;
}

#listchoice_right_bottom_text_link {
  display: block;               
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
  font-size: 17px!important; 
  text-decoration: none;
  color: #D60270; 
}

#listchoice_right_bottom_text_link_1 {
  display: block;               
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
  font-size: 17px!important; 
  text-decoration: none;
  color: #529F10; 
}
#listchoice_right_bottom_text_link_2 {
  display: block;               
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
  font-size: 17px!important; 
  text-decoration: none;
  color: #50126F; 
}
#listchoice_right_bottom_text_link_3 {
  display: block;               
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
  font-size: 17px!important; 
  text-decoration: none;
  color: #D60270; 
}
#listchoice_right_bottom_text_link_4 {
  display: block;               
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
  font-size: 17px!important; 
  text-decoration: none;
  color: #326fb0; 
}
#listchoice_right_bottom_text_link_5 {
  display: block;               
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
  font-size: 17px!important; 
  text-decoration: none;
  color: #f18e00; 
}
.coverflow_color_-2
{     
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif!important;  
  font-size: 17px!important; 
  text-decoration: none!important;
  color: #529F10!important; 
}

.coverflow_color_-1
{     
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif!important;  
  font-size: 17px!important; 
  text-decoration: none!important;
  color: #50126F!important; 
}

.coverflow_color_0
{     
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif!important;  
  font-size: 17px!important; 
  text-decoration: none!important;
  color: #D60270!important; 
}

.coverflow_color_1
{     
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif!important;  
  font-size: 17px!important; 
  text-decoration: none!important;
  color: #326fb0!important; 
}

.coverflow_color_2
{     
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif!important;  
  font-size: 17px!important; 
  text-decoration: none!important;
  color: #f18e00!important; 
  /*ED6E00*/
}


#listchoice_right_bottom_icon {
  display: block;               
  overflow: visible !important;
  position: relative;
  float:right;
  top: 27px!important;
  right: 30px!important;
}

#listchoice_right_top_text {
  display: block;               
  margin-left: 0px !important;
  padding-top: 0px !important;
  padding-left: 0px !important;
  overflow: hidden !important;
  float:left;
  position: relative;
  top: 75px;
  left: 50px;
}

#listchoice_right_top_text_link {
  display: block;               
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
  font-size: 17px!important; 
  text-decoration: none;
  color: #D60270; 
}

#listchoice_right_top_text_link_1 {
  display: block;               
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
  font-size: 17px!important; 
  text-decoration: none;
  color: #529F10; 
}
#listchoice_right_top_text_link_2 {
  display: block;               
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
  font-size: 17px!important; 
  text-decoration: none;
  color: #50126F; 
}
#listchoice_right_top_text_link_3 {
  display: block;               
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
  font-size: 17px!important; 
  text-decoration: none;
  color: #D60270; 
}
#listchoice_right_top_text_link_4 {
  display: block;               
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
  font-size: 17px!important; 
  text-decoration: none;
  color: #326fb0; 
}
#listchoice_right_top_text_link_5 {
  display: block;               
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
  font-size: 17px!important; 
  text-decoration: none;
  color: #f18e00; 
}

#listchoice_right_top_icon {
  display: block;               
  overflow: visible !important;
  position: relative;
  float:right;
  top: 77px!important;
  right: 30px!important;
}


#oneroom {
  margin-left: 10px !important;
  padding-top: 0px !important;
  width: 83px; 
  height: 187px ;
  font-size: 12px!important;
  font-weight: bold;
  color:#FFF!important; 
  display:block;
  position: relative;
  float: left;
}
#oneroom_link 
{
  font-size: 12px!important;
  font-weight: bold;
  color:#FFF!important; 
  text-decoration: none;
}

#rundgang_title
{
  text-align: left;
  font-size: 16px!important;
  font-weight: bold;
  color:#D60270!important; 
  text-decoration: none;
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;
  margin-top: 20px;
  margin-bottom: 15px;
  margin-left: 40px;
}

#rundgang_title_1
{
  text-align: left;
  font-size: 16px!important;
  font-weight: bold;
  color:#529F10!important; 
  text-decoration: none;
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;
  margin-top: 20px;
  margin-bottom: 15px;
  margin-left: 40px;
}

#rundgang_title_2
{
  text-align: left;
  font-size: 16px!important;
  font-weight: bold;
  color:#50126F!important; 
  text-decoration: none;
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;
  margin-top: 20px;
  margin-bottom: 15px;
  margin-left: 40px;
}

#rundgang_title_3
{
  text-align: left;
  font-size: 16px!important;
  font-weight: bold;
  color:#D60270!important; 
  text-decoration: none;
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;
  margin-top: 20px;
  margin-bottom: 15px;
  margin-left: 40px;
}

#rundgang_title_4
{
  text-align: left;
  font-size: 16px!important;
  font-weight: bold;
  color:#326fb0!important; 
  text-decoration: none;
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;
  margin-top: 20px;
  margin-bottom: 15px;
  margin-left: 40px;
}

#rundgang_title_5
{
  text-align: left;
  font-size: 16px!important;
  font-weight: bold;
  color:#f18e00!important; 
  text-decoration: none;
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;
  margin-top: 20px;
  margin-bottom: 15px;
  margin-left: 40px;
}

#rundgang_text
{
  text-align: justify;
  font-family: "Times New Roman", sans-serif;
  font-size: 14px!important;
  color:#FFF!important; 
  text-decoration: none;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 40px;
  margin-right: 40px;
}

#rundgang_text img
{
  width: 400px;
  height: inherit;
  margin-left: 0px;
  margin-right: 0px;
}
.rundgang_link
{
  color:#D60270!important; 
  text-decoration: none;
}

.rundgang_link_1
{
  color:#529F10!important; 
  text-decoration: none;
}

.rundgang_link_2
{
  color:#50126F!important; 
  text-decoration: none;
}

.rundgang_link_3
{
  color:#D60270!important; 
  text-decoration: none;
}

.rundgang_link_4
{
  color:#326fb0!important; 
  text-decoration: none;
}

.rundgang_link_5
{
  color:#f18e00!important; 
  text-decoration: none;
}

.nav-glyphish-example .ui-btn .ui-btn-inner { padding-top: 40px !important; font-size: 10px!important;color:#A6A6A6!important;}

.nav-glyphish-example .ui-btn .ui-icon { width: 30px!important; height: 28px!important; margin-left: -15px !important;margin-top: 3px !important; box-shadow: none!important; -moz-box-shadow: none!important; -webkit-box-shadow: none!important; -webkit-border-radius: none !important; border-radius: none !important; }

#museum .ui-icon { background:  url(images/mhsd/icon_tab_museum@2x.png) 50% 50% no-repeat; background-size: 30px 30px; }
#info .ui-icon { background:  url(images/mhsd/icon_tab_info@2x.png) 50% 50% no-repeat; background-size: 30px 30px; }
#sprache .ui-icon { background:  url(images/mhsd/icon_tab_sprache@2x.png) 50% 50% no-repeat; background-size: 30px 30px; }
#keypad .ui-icon { background:  url(images/mhsd/icon_tab_keypad@2x.png) 50% 50% no-repeat; background-size: 30px 30px; }
.eselsohr  { z-index: 1000; bottom: 0px; float: right; right: 0px; width: 55px; height: 53px;top: 0px;position: relative;overflow: hidden !important;display:block;}
.eselsohr2  { z-index: 1000; bottom: 0px; float: right; right: 0px; width: 55px; height: 53px;top: 3px;position: absolute;overflow: hidden !important;display:block;}


.nav-glyphish-example2 .ui-content .ui-listview {margin: 0px!important;padding: 0px!important;}
.nav-glyphish-example2 .ui-btn .ui-btn-inner {overflow: hidden}

.nav-glyphish-example2 .ui-btn .ui-icon { width: 20px!important; height: 17px!important; margin-left: 0px !important;padding-right: 0px; margin-top: -10px !important; box-shadow: none!important; -moz-box-shadow: none!important; -webkit-box-shadow: none!important; -webkit-border-radius: none !important; border-radius: none !important; }

#arrow_01 .ui-icon { background:  url(images/mhsd/pfeil_room_0.1@2x.png) 50% 50% no-repeat; background-size: 20px 17px;}
#arrow_02 .ui-icon { background:  url(images/mhsd/pfeil_room_0.2@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#arrow_03 .ui-icon { background:  url(images/mhsd/pfeil_room_0.3@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#arrow_04 .ui-icon { background:  url(images/mhsd/pfeil_room_0.4@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#arrow_05 .ui-icon { background:  url(images/mhsd/pfeil_room_0.5@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#arrow_06 .ui-icon { background:  url(images/mhsd/pfeil_room_0.6@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#arrow_00 .ui-icon { background:  url(images/mhsd/pfeil@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }

#indexlistarrow_0 .ui-icon { background:  url(images/mhsd/pfeil_room_0.1@2x.png) 50% 50% no-repeat; background-size: 2px 1px;}

#indexlistarrow_1_1 .ui-icon { background:  url(images/mhsd/pfeil_room_1.1@2x.png) 50% 50% no-repeat; background-size: 20px 17px;}
#indexlistarrow_1_2 .ui-icon { background:  url(images/mhsd/pfeil_room_1.2@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_1_3 .ui-icon { background:  url(images/mhsd/pfeil_room_1.3@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_1_4 .ui-icon { background:  url(images/mhsd/pfeil_room_1.4@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_1_5 .ui-icon { background:  url(images/mhsd/pfeil_room_1.5@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_1_6 .ui-icon { background:  url(images/mhsd/pfeil_room_1.6@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_1_0 .ui-icon { background:  url(images/mhsd/pfeil@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }

#indexlistarrow_2_1 .ui-icon { background:  url(images/mhsd/pfeil_room_2.1@2x.png) 50% 50% no-repeat; background-size: 20px 17px;}
#indexlistarrow_2_2 .ui-icon { background:  url(images/mhsd/pfeil_room_2.2@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_2_3 .ui-icon { background:  url(images/mhsd/pfeil_room_2.3@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_2_4 .ui-icon { background:  url(images/mhsd/pfeil_room_2.4@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_2_5 .ui-icon { background:  url(images/mhsd/pfeil_room_2.5@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_2_6 .ui-icon { background:  url(images/mhsd/pfeil_room_2.6@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_2_0 .ui-icon { background:  url(images/mhsd/pfeil@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }

#indexlistarrow_3_1 .ui-icon { background:  url(images/mhsd/pfeil_room_3.1@2x.png) 50% 50% no-repeat; background-size: 20px 17px;}
#indexlistarrow_3_2 .ui-icon { background:  url(images/mhsd/pfeil_room_3.2@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_3_3 .ui-icon { background:  url(images/mhsd/pfeil_room_3.3@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_3_4 .ui-icon { background:  url(images/mhsd/pfeil_room_3.4@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_3_5 .ui-icon { background:  url(images/mhsd/pfeil_room_3.5@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_3_6 .ui-icon { background:  url(images/mhsd/pfeil_room_3.6@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_3_0 .ui-icon { background:  url(images/mhsd/pfeil@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }

#indexlistarrow_4_1 .ui-icon { background:  url(images/mhsd/pfeil_room_4.1@2x.png) 50% 50% no-repeat; background-size: 20px 17px;}
#indexlistarrow_4_2 .ui-icon { background:  url(images/mhsd/pfeil_room_4.2@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_4_3 .ui-icon { background:  url(images/mhsd/pfeil_room_4.3@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_4_4 .ui-icon { background:  url(images/mhsd/pfeil_room_4.1@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_4_5 .ui-icon { background:  url(images/mhsd/pfeil_room_4.2@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_4_6 .ui-icon { background:  url(images/mhsd/pfeil_room_4.3@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_4_0 .ui-icon { background:  url(images/mhsd/pfeil@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }

#indexlistarrow_5_1 .ui-icon { background:  url(images/mhsd/pfeil_room_5.1@2x.png) 50% 50% no-repeat; background-size: 20px 17px;}
#indexlistarrow_5_2 .ui-icon { background:  url(images/mhsd/pfeil_room_5.2@2x.png) 50% 50% no-repeat; background-size: 20px 17px;}
#indexlistarrow_5_3 .ui-icon { background:  url(images/mhsd/pfeil_room_5.3@2x.png) 50% 50% no-repeat; background-size: 20px 17px;}
#indexlistarrow_5_4 .ui-icon { background:  url(images/mhsd/pfeil_room_5.1@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_5_5 .ui-icon { background:  url(images/mhsd/pfeil_room_5.2@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_5_6 .ui-icon { background:  url(images/mhsd/pfeil_room_5.3@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }
#indexlistarrow_5_0 .ui-icon { background:  url(images/mhsd/pfeil@2x.png) 50% 50% no-repeat; background-size: 20px 17px; }

#indexlistcolor_1_1 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexlistcolor_1_1 .ui-li-heading { color: #4b9021;}
#indexlistcolor_1_1 .ui-li-desc { color: #FFF;}


#indexlistcolor_1_2 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	color: 					#fff;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexlistcolor_1_2 .ui-li-heading { color: #50a125;}
#indexlistcolor_1_2 .ui-li-desc { color: #FFF;}

#indexlistcolor_1_3 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexlistcolor_1_3 .ui-li-heading { color: #58ac25;}
#indexlistcolor_1_3 .ui-li-desc { color: #FFF;}

#indexlistcolor_1_4 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px; 
}

#indexlistcolor_1_4 .ui-li-heading { color: #7cb955;}
#indexlistcolor_1_4 .ui-li-desc { color: #FFF;}

#indexlistcolor_1_5 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px; 
}

#indexlistcolor_1_5 .ui-li-heading { color: #b5d59a;}
#indexlistcolor_1_5 .ui-li-desc { color: #FFF;}

#indexlistcolor_1_6 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;  
}

#indexlistcolor_1_6 .ui-li-heading { color: #c9e0b3;}
#indexlistcolor_1_6 .ui-li-desc { color: #FFF;}


#indexlistcolor_2_1 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexlistcolor_2_1 .ui-li-heading { color: #662081;}
#indexlistcolor_2_1 .ui-li-desc { color: #FFF;}


#indexlistcolor_2_2 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	color: 					#fff;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexlistcolor_2_2 .ui-li-heading { color: #74368a;}
#indexlistcolor_2_2 .ui-li-desc { color: #FFF;}

#indexlistcolor_2_3 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexlistcolor_2_3 .ui-li-heading { color: #824a94;}
#indexlistcolor_2_3 .ui-li-desc { color: #FFF;}

#indexlistcolor_2_4 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px; 
}

#indexlistcolor_2_4 .ui-li-heading { color: #9060a1;}
#indexlistcolor_2_4 .ui-li-desc { color: #FFF;}

#indexlistcolor_2_5 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px; 
}

#indexlistcolor_2_5 .ui-li-heading { color: #9e76ae;}
#indexlistcolor_2_5 .ui-li-desc { color: #FFF;}

#indexlistcolor_2_6 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;  
}

#indexlistcolor_2_6 .ui-li-heading { color: #ae8cbc;}
#indexlistcolor_2_6 .ui-li-desc { color: #FFF;}


#indexlistcolor_3_1 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexlistcolor_3_1 .ui-li-heading { color: #6D213F;}
#indexlistcolor_3_1 .ui-li-desc { color: #FFF;}


#indexlistcolor_3_2 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	color: 					#fff;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexlistcolor_3_2 .ui-li-heading { color: #8C004C;}
#indexlistcolor_3_2 .ui-li-desc { color: #FFF;}

#indexlistcolor_3_3 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexlistcolor_3_3 .ui-li-heading { color: #D60270;}
#indexlistcolor_3_3 .ui-li-desc { color: #FFF;}

#indexlistcolor_3_4 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px; 
}

#indexlistcolor_3_4 .ui-li-heading { color: #ED2893;}
#indexlistcolor_3_4 .ui-li-desc { color: #FFF;}

#indexlistcolor_3_5 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px; 
}

#indexlistcolor_3_5 .ui-li-heading { color: #F46BAF;}
#indexlistcolor_3_5 .ui-li-desc { color: #FFF;}

#indexlistcolor_3_6 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;  
}

#indexlistcolor_3_6 .ui-li-heading { color: #F993C4;}
#indexlistcolor_3_6 .ui-li-desc { color: #FFF;}


#indexlistcolor_4_1 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexlistcolor_4_1 .ui-li-heading { color: #0055a0;}
#indexlistcolor_4_1 .ui-li-desc { color: #FFF;}


#indexlistcolor_4_2 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	color: 					#fff;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;

}

#indexlistcolor_4_2 .ui-li-heading { color: #326fb0;}
#indexlistcolor_4_2 .ui-li-desc { color: #FFF;}

#indexlistcolor_4_3 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexlistcolor_4_3 .ui-li-heading { color: #728fc4;}
#indexlistcolor_4_3 .ui-li-desc { color: #FFF;}

#indexlistcolor_4_4 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px; 
}

#indexlistcolor_4_4 .ui-li-heading { color: #0055a0;}
#indexlistcolor_4_4 .ui-li-desc { color: #FFF;}

#indexlistcolor_4_5 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px; 
}

#indexlistcolor_4_5 .ui-li-heading { color: #326fb0;}
#indexlistcolor_4_5 .ui-li-desc { color: #FFF;}

#indexlistcolor_4_6 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;  
}

#indexlistcolor_4_6 .ui-li-heading { color: #728fc4;}
#indexlistcolor_4_6 .ui-li-desc { color: #FFF;}

#indexlistcolor_5_1 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexlistcolor_5_1 .ui-li-heading { color: #e31818;}
#indexlistcolor_5_1 .ui-li-desc { color: #FFF;}


#indexlistcolor_5_2 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	color: 					#fff;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexlistcolor_5_2 .ui-li-heading { color: #f18e00;}
#indexlistcolor_5_2 .ui-li-desc { color: #FFF;}

#indexlistcolor_5_3 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexlistcolor_5_3 .ui-li-heading { color: #fed300;}
#indexlistcolor_5_3 .ui-li-desc { color: #FFF;}

#indexlistcolor_5_4 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px; 
}

#indexlistcolor_5_4 .ui-li-heading { color: #e31818;}
#indexlistcolor_5_4 .ui-li-desc { color: #FFF;}

#indexlistcolor_5_5 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px; 
}

#indexlistcolor_5_5 .ui-li-heading { color: #f18e00;}
#indexlistcolor_5_5 .ui-li-desc { color: #FFF;}

#indexlistcolor_5_6 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;  
}

#indexlistcolor_5_6 .ui-li-heading { color: #fed300;}
#indexlistcolor_5_6 .ui-li-desc { color: #FFF;}

#indexdetaillistcolor_1_1 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#4b9021), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_1_2 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#50a125), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_1_3 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#58ac25), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_1_4 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#7cb955), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_1_5 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#b5d59a), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_1_6 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#c9e0b3), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_2_1 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#662081), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_2_2 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#74368a), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_2_3 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#824a94), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_2_4 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#9060a1), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_2_5 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#9e76ae), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_2_6 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#ae8cbc), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_1_6 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#c9e0b3), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_3_1 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#6D213F), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_3_2 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#8C004C), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_3_3 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#D60270), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_3_4 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#ED2893), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_3_5 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#F46BAF), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_3_6 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#F993C4), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}


#indexdetaillistcolor_4_1 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#0055a0), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_4_2 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#326fb0), color-stop(100%,#000000));	
	border-bottom: 0px solid 		#3370b2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_4_3 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#728fc4), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_4_4 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#0055a0), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_4_5 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#326fb0), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_4_6 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#728fc4), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_5_1 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#e31818), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_5_2 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#f18e00), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_5_3 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#fed300), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_5_4 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#e31818), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_5_5 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#f18e00), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_5_6 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#fed300), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#indexdetaillistcolor_1_1 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_1_1  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_1_2 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_1_2  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_1_3 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_1_3  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_1_4 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_1_4  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_1_5 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_1_5  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_1_6 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_1_6  .ui-li-desc { color: #FFF;}

#indexdetaillistcolor_2_1 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_2_1  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_2_2 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_2_2  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_2_3 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_2_3  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_2_4 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_2_4  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_2_5 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_2_5  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_2_6 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_2_6  .ui-li-desc { color: #FFF;}

#indexdetaillistcolor_3_1 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_3_1  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_3_2 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_3_2  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_3_3 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_3_3  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_3_4 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_3_4  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_3_5 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_3_5  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_3_6 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_3_6  .ui-li-desc { color: #FFF;}

#indexdetaillistcolor_4_1 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_4_1  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_4_2 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_4_2  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_4_3 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_4_3  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_4_4 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_4_4  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_4_5 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_4_5  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_4_6 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_4_6  .ui-li-desc { color: #FFF;}

#indexdetaillistcolor_5_1 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_5_1  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_5_2 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_5_2  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_5_3 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_5_3  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_5_4 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_5_4  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_5_5 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_5_5  .ui-li-desc { color: #FFF;}
#indexdetaillistcolor_5_6 .ui-li-heading { color: #051E5B;}
#indexdetaillistcolor_5_6  .ui-li-desc { color: #FFF;}

#hauptfarbe_01 {
  /* background: 			#051E5B; */
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#hauptfarbe_01 .ui-li-heading { color: #6D213F;}
#hauptfarbe_01 .ui-li-desc { color: #FFF;}


#hauptfarbe_02 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	color: 					#fff;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#hauptfarbe_02 .ui-li-heading { color: #8C004C;}
#hauptfarbe_02 .ui-li-desc { color: #FFF;}

#hauptfarbe_03 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#hauptfarbe_03 .ui-li-heading { color: #D60270;}
#hauptfarbe_03 .ui-li-desc { color: #FFF;}

#hauptfarbe_04 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px; 
}

#hauptfarbe_04 .ui-li-heading { color: #ED2893;}
#hauptfarbe_04 .ui-li-desc { color: #FFF;}

#hauptfarbe_05 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px; 
}

#hauptfarbe_05 .ui-li-heading { color: #F46BAF;}
#hauptfarbe_05 .ui-li-desc { color: #FFF;}

#hauptfarbe_06 {
	color: 					#fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#051E5B), color-stop(100%,#3870B2));	
	border-bottom: 0px solid 		#3870B2;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;  
}

#hauptfarbe_06 .ui-li-heading { color: #F993C4;}
#hauptfarbe_06 .ui-li-desc { color: #FFF;}



#hauptfarbe_01_01 {
  /*background: 			#D60270; */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#d60270), color-stop(100%,#6D213F));
	color: 					#fff;
	border-bottom: 0px solid 		#6D213F;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#hauptfarbe_01_01 .ui-li-heading { color: #051E5B;}
#hauptfarbe_01_01 .ui-li-desc { color: #FFF;}

#hauptfarbe_01_01b {
  /*background: 			#D60270; */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#d60270), color-stop(100%,#6D213F));
	color: 					#fff;
	border-bottom: 0px solid 		#6D213F;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#hauptfarbe_01_01b .ui-li-heading { color: #051E5B;}
#hauptfarbe_01_01b .ui-li-desc { color: #FFF;}

#hauptfarbe_01_01c {
  /*background: 			#D60270; */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(99%,#d60270), color-stop(100%,#6D213F));
	color: 					#fff;
	border-bottom: 0px solid 		#6D213F;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
  height: 80px;
  width: 480px;
  margin-right: 15px;
}

#hauptfarbe_01_01c .ui-li-heading { color: #051E5B;}
#hauptfarbe_01_01c .ui-li-desc { color: #FFF;}

.pink_01 {
  background: #6D213F;
}
.pink_02 {
  background: #8C004C;
}
.pink_03 {
  background: #D60270;
}
.pink_04 {
  background: #ED2893;
}
.pink_05 {
  background: #F46BAF;
}
.pink_06 {
  background: #F993C4;
}

.objektpage {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#D60270;
}

.objektpage_1_1 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#4b9021;
}

.objektpage_1_2 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#50a125;
}
.objektpage_1_3 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#58ac25;
}
.objektpage_1_4 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#7cb955;
}
.objektpage_1_5 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#b5d59a;
}
.objektpage_1_6 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#c9e0b3;
}

.objektpage_2_1 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#662081;
}

.objektpage_2_2 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#74368a;
}
.objektpage_2_3 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#824a94;
}
.objektpage_2_4 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#9060a1;
}
.objektpage_2_5 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#9e76ae;
}
.objektpage_2_6 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#ae8cbc;
}

.objektpage_3_1 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#6D213F;
}

.objektpage_3_2 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#8C004C;
}
.objektpage_3_3 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#D60270;
}
.objektpage_3_4 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#ED2893;
}
.objektpage_3_5 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#F46BAF;
}
.objektpage_3_6 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#F993C4;
}

.objektpage_4_1 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#0055a0;
}

.objektpage_4_2 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#326fb0;
}
.objektpage_4_3 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#728fc4;
}
.objektpage_4_4 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#0055a0;
}
.objektpage_4_5 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#326fb0;
}
.objektpage_4_6 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#728fc4;
}

.objektpage_5_1 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#e31818;
}

.objektpage_5_2 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#f18e00;
}
.objektpage_5_3 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#fed300;
}
.objektpage_5_4 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#e31818;
}
.objektpage_5_5 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#f18e00;
}
.objektpage_5_6 {
  width: 480px;
  height: 235px;
	font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
	font-size: 12px!important;
	background: 			#fed300;
}

.objektpageaudio {
  width: 480px;
  height: 235px;
  font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
  background: 			#fafafa;
  padding-top: 0px;
}

.objektpagevideo {
	align: center;
	padding-top: -150px;
	background: 			#000;
}
.objektpage_part1 {
	border-bottom: 1px solid 		#6D213F;
  height: 175px;
  width: 480px;

}

.objektpage_part2 {
  height: 70px;
  width: 480px;

}

.objektimage {
  float: left;
  margin: 20px 20px 20px 20px;
}

.objektimagebig {

}

.objekttitle {
 padding-top: 20px;
 color: #051E5B;
 font-size: 16px!important;
 font-weight: bold;
}

.objektdescription{
 padding-top: 20px;
 padding-right: 10px;
color: #FFF;
font-family: "Trebuchet MS",Helvetica, Arial, sans-serif;  
 text-decoration: none;
 min-height: 125px;
}


#objektdescription_icon {
  display: block;               
  overflow: visible !important;
  position: relative;
  float:right;
  bottom: 10px!important;
  right: 30px!important;
}
.objektaudio .ui-link{
 text-decoration: none;
 color: #051E5B;
 font-size: 16px!important;
 font-weight: bold;
 float: left;
 padding-top: 15px;
 padding-left: 45px; 
}

.objektaudiorundgang_1 {
 text-decoration: none;
 padding-top: 20px;
 padding-left: 45px;
 color: #529F10!important;
 font-size: 14px!important;
 font-weight: bold;
 display: block;
 text-align: center;
}

.objektaudiorundgang_2 {
 text-decoration: none;
 color: #50126F!important;
 font-size: 14px!important;
 font-weight: bold;
 display: block;
 text-align: center;
}

.objektaudiorundgang_3 {
 text-decoration: none;
 color: #D60270!important;
 font-size: 14px!important;
 font-weight: bold;
 display: block;
 text-align: center;
}

.objektaudiorundgang_4 {
 text-decoration: none;

 color: #326fb0!important;
 font-size: 14px!important;
 font-weight: bold;
 display: block;
 text-align: center;
}

.objektaudiorundgang_5 {
 text-decoration: none;
 color: #f18e00!important;
 font-size: 14px!important;
 font-weight: bold;
 display: block;
 text-align: center;
}

.objekttext .ui-link{
 text-decoration: none;
 color: #051E5B;
 font-size: 16px!important;
 font-weight: bold;
 float: left;
 padding-top: 15px;
 padding-left: 45px;  
}


.objektvideo .ui-link{
 text-decoration: none;
 padding-top: 15px;
 padding-left: 45px; 
 color: #051E5B;
 font-size: 16px!important;
 font-weight: bold;
 float: left;
}

.audio_icon{
top: -2px;
padding-left: 20px;
}

.video_icon{
top: -2px;
padding-left: 20px;
}

.text_icon{
top: -2px;
padding-left: 20px;
}

.audio_icon_rundgang{
padding-left: 130px;
padding-right: 100px;
padding-top: 55px;
padding-bottom: 100%;
width: 150px;
position:absolute;
top: 20px;
left:40px;
height: auto;
z-index: 1000;
cursor:pointer;
}