body {
	background: #273864;
}

input {
	vertical-align: middle;
	
	width: 16px;
}

button {
	font-family: Arial, Helvetica, sans-serif;
	cursor: default;
	background: url(../gfx/bgr.button_grey.png) repeat-x center #eeeeee;
	border: 1px solid #cccccc;
	color: #273864;
	padding: 2px 10px;
	position: relative;
	text-align: center;
	overflow: visible;
}

button.Disabled {
	color: silver;
}

/********** SELECT **********/

.Select,
.SelectDisabled {
	padding: 0px 25px 0px 0px;
	background: url(../gfx/bgr.select_right.png) no-repeat top right;
	cursor: default;
	color: #273864;
}

.SelectDisabled {
	background-image: url(../gfx/bgr.select_disabled_right.png);
}

.Select .Value,
.SelectDisabled .Value {
	padding: 0px 5px;
	background: url(../gfx/bgr.select_left.png) no-repeat top left;
	line-height: 25px;
	height: 25px;
	overflow: hidden;
}

.SelectDisabled .Value {
	background: url(../gfx/bgr.select_disabled_left.png) no-repeat top left;
	color: #cccccc;
}

.Select .Options {
	border: 1px solid silver;
	background: white;
	padding: 1px;
	position: absolute;
	display: none;
	overflow: auto;
	max-height: 250px;
	width: 300px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	z-index: 1000;
	line-height: 20px;
}

.SelectDisabled .Options {
	display: none;
}

.Select .Options .Option {
	display: block;
	padding: 1px;
	border: 0px;
	border-top: 1px solid #eeeeee;
}

.SelectAdmin .Options .Option {
	color: #006600;
}

.Select .Options .Option:hover {
	background: #eeeeee;
}

.Select .Options .Option:first-child {
	border: 0px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	-webkit-border-radius-topleft: 3px;
	-webkit-border-radius-topright: 3px;
}

.Select .Options .Option:last-child {
	-moz-border-radius-bottomleft: 3px;
	-moz-border-radius-bottomright: 3px;
	-webkit-border-radius-bottomleft: 3px;
	-webkit-border-radius-bottomright: 3px;
}

.Select .Options div .Option:first-child {
	border-top: 1px solid #eeeeee;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
}




/********** INPUT **********/

.Input,
.InputActive {
	padding: 0px 0px 0px 5px;
	background: url(../gfx/bgr.input_left.png) no-repeat top left;
	border: 0px;
}

.Input div,
.InputActive div {
	display: block;
	padding: 3px 5px 3px 0px;
	background: url(../gfx/bgr.input_right.png) no-repeat top right;
	height: 19px;
	line-height: 19px;
}

.Input div input,
.InputActive div input {
	background: none;
	width: 90%;
	display: block;
	height: 19px;
}

.InputActive {
	background-position: bottom left;
}

.InputActive div {
	background-position: bottom right;
}




/********** TEXTAREA **********/

.Textarea,
.TextareaActive {
	padding: 0px 0px 0px 5px;
	background: url(../gfx/bgr.textarea_left.png) no-repeat top left;
	border: 0px;
}

.Textarea div,
.TextareaActive div {
	display: block;
	padding: 3px 5px 3px 0px;
	background: url(../gfx/bgr.textarea_right.png) no-repeat top right;
	height: 144px;
	line-height: 19px;
}

.Textarea div textarea,
.TextareaActive div textarea {
	background: none;
	width: 100%;
	height: 144px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
}

.TextareaActive {
	background-position: bottom left;
}

.TextareaActive div {
	background-position: bottom right;
}




/********** BUTTONS **********/

.Buttons {
	border-top: 1px solid #cccccc;
	min-height: 25px;
	line-height: 25px;
	padding: 15px 0px 0px 0px;
}

.LeftButton,
.LeftButtonDisabled,
.RightButton,
.RightButtonDisabled {
	padding: 0px 0px 0px 25px;
	background: url(../gfx/bgr.button_left.png) no-repeat top left;
	cursor: pointer;
	border: 0px;
}

.RedRightButton,
.RedRightButtonDisabled {
	padding: 0px 0px 0px 25px;
	background: url(../gfx/bgr.button_left_red.png) no-repeat top left;
	cursor: pointer;
	border: 0px;
}

.LeftButtonDisabled,
.RightButtonDisabled {
	background: url(../gfx/bgr.button_disabled_left.png) no-repeat top left;
	cursor: default;
}

.LeftButton span,
.LeftButtonDisabled span,
.RightButton span,
.RightButtonDisabled span {
	display: block;
	padding: 0px 5px;
	background: url(../gfx/bgr.button_right.png) no-repeat top right;
	height: 25px;
	line-height: 25px;
	white-space: nowrap;
	font-variant: small-caps;
	font-weight: bold;
	color: #273864;
}

.RedRightButton span,
.RedRightButtonDisabled span {
	display: block;
	padding: 0px 5px;
	background: url(../gfx/bgr.button_right_red.png) no-repeat top right;
	height: 25px;
	line-height: 25px;
	white-space: nowrap;
	font-variant: small-caps;
	font-weight: bold;
	color: #273864;
}

.LeftButtonDisabled span,
.RightButtonDisabled span {
	background: url(../gfx/bgr.button_disabled_right.png) no-repeat top right;
	color: #cccccc;
}

.LeftButton:hover,
.RightButton:hover,
.RedRightButton:hover {
	background-position: bottom left;
}

.LeftButton:hover span,
.RightButton:hover span,
.RedRightButton:hover span {
	background-position: bottom right;
}

.LeftButton,
.LeftButtonDisabled {
	float: left;
	margin: 0px 10px 0px 0px;
}

.RightButton,
.RightButtonDisabled,
.RedRightButton,
.RedRightButtonDisabled {
	float: right;
	margin: 0px 0px 0px 10px;
}

.BrowseButton {
	background-image: url(../gfx/bgr.button_browse_left.png);
}

.DeleteButton {
	background-image: url(../gfx/bgr.button_delete_left.png);
}

.AdminButton {
	background: url(../gfx/bgr.button_left_admin.png) no-repeat top left;
}

.AdminButton span {
	color: #006600;
}




/********** BIGBUTTONS **********/

.BigButtons {
	min-height: 45px;
	line-height: 45px;
	padding: 0px 0px 0px 0px;
}

.LeftBigButton,
.RightBigButton {
	padding: 0px 0px 0px 25px;
	background: url(../gfx/bgr.bigbutton_left.png) no-repeat top left;
	cursor: pointer;
	border: 0px;
}

.LeftBigButton span,
.RightBigButton span {
	display: block;
	padding: 5px 5px;
	background: url(../gfx/bgr.bigbutton_right.png) no-repeat top right;
	width: 100px;
	height: 35px;
	font-variant: small-caps;
	font-weight: bold;
	line-height: 17px;
	text-align: center;
}

.LeftBigButton:hover,
.RightBigButton:hover {
	background-position: bottom left;
}

.LeftBigButton:hover span,
.RightBigButton:hover span {
	background-position: bottom right;
}

.LeftBigButton {
	float: left;
	margin: 0px 10px 0px 0px;
}

.RightBigButton {
	float: right;
	margin: 0px 0px 0px 10px;
}




/********** CANVAS **********/

#ErrorCanvas,
#WarningCanvas,
#HintCanvas {
	height: 100%;
	width: 100%;
	background: #000000;
	opacity: .8;
	filter: alpha(opacity=80);
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 10000;
}




/********** ERRORS **********/

#Errors {
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 10001;
}

#Errors h1 {
	color: white;
	font-weight: bold;
	letter-spacing: 2px;
	border-bottom: 2px solid #cc0000;
	width: 600px;
	margin: 0 auto;
	padding: 30px 0 2px 0;
}

#Errors p,
#Errors ul {
	width: 600px;
	margin: 0 auto;
	color: white;
	font-size: 15px;
	line-height: 22px;
	letter-spacing: 1px;
}

#Errors .Buttons {
	width: 600px;
	margin: 0 auto;
}




/********** WARNINGS **********/

#Warnings {
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 10001;
}

#Warnings h1 {
	color: white;
	font-weight: bold;
	letter-spacing: 2px;
	border-bottom: 2px solid #ffcc00;
	width: 600px;
	margin: 0 auto 6px auto;
	padding: 30px 0 2px 0;
}

#Warnings p,
#Warnings ul {
	width: 600px;
	margin: 0 auto;
	color: white;
	font-size: 15px;
	line-height: 22px;
	letter-spacing: 1px;
}

#Warnings .Buttons {
	width: 600px;
	margin: 0 auto;
}




/********** HINTS **********/

#Hints {
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 10001;
}

#Hints h1 {
	color: white;
	font-weight: bold;
	letter-spacing: 2px;
	border-bottom: 2px solid #00cc00;
	width: 600px;
	margin: 0 auto 20px auto;
	padding: 30px 0 2px 0;
}

#Hints p,
#Hints ul {
	width: 600px;
	margin: 0 auto;
	color: white;
	font-size: 15px;
	line-height: 22px;
	letter-spacing: 1px;
}

#Hints .Buttons {
	width: 600px;
	margin: 20px auto 0 auto;
}




/********** BASE **********/

.Base {
	position: relative;
	background: #101541;
}




/********** BROWSERWARNING **********/

.Base .BrowserWarning {
	background: #ffffcc;
	padding: 3px;
	text-align: center;
	font-weight: bold;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	z-index: 100;
	border-bottom: 1px solid black;
}




/********** HEAD **********/

.Head {
	width: 1300px;
	height: 190px;
	/*margin: 0 auto;*/
	position: relative;
	background: #FFFFFF;
}

.Head .HeadTopLeft {
	float: left;
	background-color: #FFFFFF;
	height: 190px;
	width: 150px;
}

.Head .HeadTopLeft img {
	width: 96px;
	height: 190px;
	border: 0px;
	margin-left: 20px;
}

.Head .HeadTopMiddle {
	width: 700px;
	height: 190px;
	float: left;
	background: url(/Files/HeadImages/standard.jpg);
}

.Head .HeadTopMiddle .Banner {
	position: absolute;
	left: 600px;
	height: 150px;
}

.Head .Logo {
	width: 350px;
	height: 190px;
	float: left;
	background-color: #FFFFFF;
}

.Head .Logo img {
	border: 0px;
	margin-left: 15px;
}

.Head .Ticker {
	position: absolute;
	width: 1000px;
	height: 40px;
	top: 150px;
	left: 150px;
	color: #ffffff;
	background: #101642;
	font-weight: bold;
	font-size: 14px;
	font-stretch: wider;
	word-spacing: 7px;
	line-height: 35px;	
}


/********** BODY **********/

.Base .Body {
	width: 1300px;
	/*margin: 0 auto;*/
	background: url(../gfx/bgr.body.png) repeat-y left;
}




/********** LEFT **********/

.Left {
	width: 150px;
	height: 1200px;
	float: left;
	padding: 20px 0;
	background-color: #101642;
}

.Left .Menu {
	padding: 0 0 0 0;
	font-size: 13px;
	font-weight: bold;
}

.Left .Menu a {
	display: block;
	line-height: 15px;
	padding: 6px 0 6px 15px;
	color: #ffffff;
	border: 0px;	
}

.Left .Menu a:hover {
	background-color: #1B266D;
}

.Left .Menu span {
	display: block;
	height: 10px;
	margin: 0 0 10px 0;
	border-bottom: 1px solid #959db2;
}



/********** RIGHT **********/

.Base .Body .Right {
	width: 130px;
	float: right;
	padding: 20px 0px 20px 0px;
	background-color: #FFFFFF;
}

.Base .Body .Right a {
	border: 0px;
}



/********** CENTER **********/

.Base .Body .Center {
	width: 950px;
	float: right;
	padding: 20px 30px 20px 30px;
	font-size: 12px;
	color: #333333;
	background-color: #FFFFFF;
	min-height: 1200px;
}

.Path {
	margin: 0 0 20px 0;
	font-size: 10px;
	font-weight: bold;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border: 1px solid #cccccc;
	width: 500px;
}

.Path * {
	line-height: 20px;
	border: 0px;
}

.Path .Back {
	float: left;
	font-size: 12px;
	padding: 0px 10px 0px 5px;
	border: 0px;
	margin: 0 10px 0 0;
	background: #eeeeee;
}

.Path .Back:hover {
	background: #cccccc;
}

.Path .Spacer {
	margin: 0 5px;
	color: #cccccc;
}

.Text {
}

.NotSpecified {
	font-style: italic;
	color: #999999;
}

.FrameImage {
	width: 90px;
	height: 120px;
	background: url(../gfx/bgr.frame_image.png) no-repeat top left;
	padding: 15px;
}

.FrameImage a {
	border: 0px;
}

.FrameImage img {
	width: 90px;
	height: 120px;
}




/********** SEARCH BOX **********/

.SearchBox {
	width: 100%;
	width: 660px;
	height: 140px;
	background: #ffffff;	
}

.SearchBox h2 {
	width: 140px;
}

.SearchBox form {
	height: 100%;
	border: 1px solid #cccccc;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	padding: 15px 15px 0 15px;
	background: url(../gfx/bgr.search_box.png) repeat-x bottom;
	font-weight: bold;
}



/********** REGISTRIERUNG **********/

.RegistrationTypeControl {
	margin: 0 20px 0 0;
	display: inline-block;
	line-height: 25px;
}





/********** PROFILE SEARCH INPUT **********/

.ProfileSearchInput {
}

.ProfileSearchInput .ProfileAmount {
	position: absolute;
	top: 65px;
	right: 0px;
}



/********** PROFILE SEARCH OUTPUT **********/

#ProfileList {
	border-bottom: 1px solid #cccccc;
	margin: 15px 0 0 0;
}

#ProfileList .ProfileListEntry {
	width: 950px;
	height: 230px;
	border-top: 1px solid #cccccc;
	margin: 0 0 15px 0;
	padding: 15px 0 0 0;
}

#ProfileList .ProfileListEntry .ProfileContactData {
	width: 215px;
	float: left;
	padding: 10px 5px 5px 0px;
}

#ProfileList .ProfileListEntry .ProfileContactData .ProfileName {
	font-weight: bold;
}

#ProfileList .ProfileListEntry .ProfileDescription {
	width: 300px;
	float: right;
	padding: 10px 5px 5px 5px;
	min-height: 140px;
}

#ProfileList .ProfileListEntry .ProfileExtensions {
	width: 420px;
	float: left;
	padding: 12px 0px 0px 0px;
	text-align: right;
}

#ProfileList .ProfileListEntry .ProfileExtensions .ProfileImage {
	width: 160px;
	float: left;
	padding: 0px 5px 5px 5px;
	text-align: right;
}

#ProfileList .ProfileListEntry .ProfileExtensions .ProfileVideo {
	width: 160px;
	float: right;
	margin: 0px 15px 0px 0px;
	padding: 0px 5px 5px 5px;
	text-align: right;
}

#ProfileList .ProfileListEntry .ProfileExtensions .ProfileButtons {
	width: 330px;
	height: 65px;
	margin-top: 10px;
	text-align: left;
}

#ProfileList .ProfileAdministrationBar {
	color: #FFFFFF;
	background-color: #6F0000;
	padding: 5px 5px 5px 5px;
	margin: 20px 0 10px 0;
}

#ProfileList .ProfileAdministrationBar .Select {
	width: 250px;
}


#ProfileDetails #ProfileContact {
	width: 350px;
	height: 210px;
	float: left;
}

#ProfileDetails #ProfileDescription {
	width: 620px;
	margin: 0 0 20px 0;
}

#ProfileDetails #ProfileImages {
	width: 290px;
	height: 380px;
	float: right;
	padding: 0 0 0 10px;
}

#ProfileDetails #ProfileImages .ProfileImage {
	height: 360px;
}

#ProfileDetails #ProfileVideos {
	width: 300px;
	height: 380px;
	float: right;
}



/********** ArticleList**********/

.ArticleList {
	
	padding: 0 0 0 10px;
}

.ArticleList li {
	min-height: 160px;
	float: left;
	margin: 0 35px 20px 0;
	border-right: 1px dotted gray;
}


/********** LISTING **********/

.Listing {
	border-bottom: 1px solid #cccccc;
	margin: 15px 0 0 0;
}

.Listing .Image {
	border: 0px;
}

.Listing .Image img {
	border: 1px solid #cccccc;
	background: #ffffff;
	padding: 3px;
	cursor: pointer;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	display: block;
}

.Listing .Name {
	font-size: 15px;
}

.Listing thead th {
	background: url(../gfx/bgr.table_head.png) repeat-x bottom;
	text-align: left;
	font-size: 15px;
	padding: 0px 10px 10px 10px;
	font-weight: normal;
	color: #999999;
	border-left: 1px solid #cccccc;
	vertical-align: top;
}

.Listing thead th:first-child {
	border: 0px;
}

.Listing thead td {
	vertical-align: top;
	padding: 0 0 30px 0;
}

.Listing tbody th {
	text-align: left;
	font-weight: normal;
	padding: 15px 0;
	border-top: 1px solid #cccccc;
	vertical-align: top;
	height: 30px;
}

.Listing tbody td {
	vertical-align: top;
	padding: 0 0 15px 0;
}

.Listing tbody th .WideButton {
	float: none;
	display: block;
	margin: 5px 0 0 0;
}

.Listing tfoot th {
	text-align: left;
	font-weight: normal;
	vertical-align: top;
	padding: 15px 0;
	background: url(../gfx/bgr.table_foot.png) repeat-x top;
}

.Listing tfoot td {
	vertical-align: top;
	padding: 0 0 15px 0;
}



.Pages {
	text-align: center;
	padding: 0px;
}

.Pages .LeftButton,
.Pages .RightButton {
	margin-top: 15px;
	margin-bottom: 15px;
}

.Pages .Page {
	padding: 20px 5px;
	line-height: 55px;
}

.Pages .Current {
	background: #eeeeee;
	font-weight: bold;
}



/********** LISTING HEADLINE **********/

.ListingHeadline {

}

.ListingHeadline .Item {
	border: 0px;
	padding: 0 0 0 13px;
	background: url(../gfx/bgr.tab_button_left.png) no-repeat top left;
	color: white;
	font-weight: bold;
	float: right;
	margin: -10px -8px 0 -15px;
	position: relative;
	z-index: 1000;
}

.ListingHeadline .Item span {
	display: block;
	padding: 0 25px 0 12px;
	background: url(../gfx/bgr.tab_button_right.png) no-repeat top right;
	line-height: 42px;
	text-transform: uppercase;
	color: #273864;
}

.ListingHeadline .Selected {
	background-position: left bottom;
	z-index: 1001;
}

.ListingHeadline .Selected span {
	background-position: right bottom;
	color: white;
}

/********** OFFER DETAIL **********/

.OfferDetail {
}

.OfferDetail .Image,
.OfferDetail .Thumbnail {
	border: 1px solid #cccccc;
	background: #ffffff;
	padding: 3px;
	margin: 0px 10px 10px 0px;
	float: left;
	cursor: pointer;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.OfferDetail td {
	padding: 0px 0px 10px 0px;
}

/********** OFFER WIZARD **********/

#OfferWizard {
}

#OfferWizard .Images {
	position: relative;
}


#OfferWizard .Images .Image {
	float: left;
	border: 1px solid #cccccc;
	width: 102px;
	height: 138px;
	margin: 20px 25px 0 0;
	overflow: hidden;
	text-align: center;
	position: relative;
}

#OfferWizard .Images .Image img {
	padding: 1px;
	display: block;
}

#OfferWizard .Images .Image .Buttons {
	border: 0;
	padding: 5px;
	position: relative;
	margin: 0 1px 1px 1px;
	background: #eeeeee;
}

#OfferWizard .Images .Image .Buttons .LeftButton {
	float: none;
	display: block;
	margin: 0;
}

#OfferWizard .Images .Image .Buttons input {
	position: absolute;
	top: 5px;
	left: 5px;
	opacity: 0;
	filter: alpha(opacity=0);
	cursor: pointer;
	height: 25px;
	background: red;
}

#OfferWizard .Images #Loader {
	display: none;
	background: url(../gfx/bgr.loader.png);
	position: absolute;
	top: 0px;
	left: 0px;
	height: 100%;
	width: 100%;
}

#OfferWizard .Images #Loader div {
	top: 50%;
	left: 0px;
	width: 100%;
	position: absolute;
	text-align: center;
	padding: 30px 0 0 0;
	background: url(../gfx/ani.wait.gif) no-repeat center top;
	margin: -30px 0 0 0;
}




/********** SCROLL BOX **********/

.ScrollBox {
	position: relative;
	background: #eeeeee;
	padding: 10px 30px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

.ScrollBox .Frame {
	background: #ffffff;
	border: 1px solid #cccccc;
	overflow: hidden;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	white-space: nowrap;
}

.ScrollBox .Frame .Item {
	width: 129px;
	text-align: center;
	float: left;
	border-right: 1px solid #eeeeee;
	border-bottom: 0px;
	padding: 10px;
	overflow: hidden;
}

.ScrollBox .Frame .Item .Image {
	border: 1px solid #cccccc;
	padding: 3px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.ScrollBox .LeftScrollButton {
	position: absolute;
	top: 75px;
	left: 5px;
	width: 26px;
	height: 50px;
	background: url(../gfx/bgr.button_image.png) no-repeat top left;
	cursor: pointer;
}

.ScrollBox .LeftScrollButton:hover {
	background-position: bottom left;
}

.ScrollBox .RightScrollButton {
	position: absolute;
	top: 75px;
	right: 5px;
	width: 26px;
	height: 50px;
	background: url(../gfx/bgr.button_image.png) no-repeat top right;
	cursor: pointer;
}

.ScrollBox .RightScrollButton:hover {
	background-position: bottom right;
}




/********** OFFER SHOWCASE **********/

.ShowcaseBox {
	position: relative;
	background: #eeeeee;
	padding: 5px 5px 5px 5px;
	width: 100%;
	height: 404px;
	float: left;		
	font-size: 10px;
	line-height: 14px;
}

.ShowcaseBox .ShowcaseFrame {
	background: #ffffff;
	border: 2px solid #cccccc;
	width: 100%;
	height: 394px;
	white-space: nowrap;
	overflow: hidden;
	float: left;
}

.ShowcaseBox .ShowcaseFrame .ShowcaseItem {
	display: inline-block;
	width: 150px;
	height: 193px;
	text-align: center;
	float: left;
	border: 2px solid #eeeeee;
	background-color: White;
	margin: 0px 0px 0px 0px;
	white-space: normal;
}

.ShowcaseBox .ShowcaseFrame .ShowcaseItem:hover {
	display: inline-block;
	width: 150px;
	height: 193px;
	text-align: center;
	float: left;
	border: 2px solid Black;
	background-color: #D1DEEF;
	margin: 0px 0px 0px 0px;
	white-space: normal;
}

.ShowcaseBox .ShowcaseFrame .ShowcaseItem .Image {
	border: 1px solid #cccccc;
	margin-top: 2px;
	padding: 1px;
}

.ShowcaseBox .ShowcaseFrame .ShowcaseItem .LabelName {
	font-weight: bold;
	font-size: 11px;
}

.SaveListButton {
	width: 80px;
	height: 25px;
	margin-left: 10px;
	vertical-align: top;
	line-height: 12px;
	border-top: 2px solid White;
	border-left: 2px solid White;
	border-bottom: 2px solid #404040;
	border-right: 2px solid #404040;
	padding-bottom: 2px;
}

.SaveListButton:active {
	width: 80px;
	height: 25px;
	margin-left: 10px;
	vertical-align: top;
	line-height: 12px;
	border-top: 2px solid #404040;
	border-left: 2px solid #404040;
	border-bottom: 2px solid White;
	border-right: 2px solid White;
	padding-left: 2px;
	padding-bottom: 3px;
}

.txtOfferIdList {
	width: 535px;
	height: 21px;
	margin-top: 1px;
	border-top: 2px solid #404040;
	border-left: 2px solid #404040;
	border-bottom: 1px solid #404040;
	border-right: 1px solid #404040;
	font-weight: bold;
}




/********** EXT CMS CONTENT **********/

.PagerBar {
	font-size: 12pt;
}

.PagerBar .PreviousPageButton {
	margin-right: 5px;
}

.PagerBar .NextPageButton {
	margin-left: 5px;
}

.PagerBar .CurrentPageButton {
	border: 1px solid #878787;
	padding-left: 5px;
	padding-right: 5px;
	color: White;
	background-color: Black;
}

.PagerBar .PageButton {
	border: 1px solid #878787;
	padding-left: 5px;
	padding-right: 5px;
}





/********** TAG CLOUD **********/

.TagCloud {
	line-height: 30px;
	text-align: center;
}

.TagCloud a {
	margin: 0 10px 0 0;
}

.TagCloud .Phase0 {
	font-size: 10px;
	color: #cccccc;

}

.TagCloud .Phase1 {
	font-size: 11px;
	color: #c1c2c6;
}

.TagCloud .Phase2 {
	font-size: 12px;
	color: #b3b6bc;
}

.TagCloud .Phase3 {
	font-size: 13px;
	color: #a1a5b1;
}

.TagCloud .Phase4 {
	font-size: 14px;
	color: #8e94a5;
}

.TagCloud .Phase5 {
	font-size: 15px;
	color: #7a8298;
}

.TagCloud .Phase6 {
	font-size: 16px;
	color: #656f8b;
}

.TagCloud .Phase7 {
	font-size: 17px;
	color: #515e7f;
}

.TagCloud .Phase8 {
	font-size: 18px;
	color: #404e74;
}

.TagCloud .Phase9 {
	font-size: 19px;
	color: #31426a;
}

.TagCloud .Phase10 {
	font-size: 20px;
	color: #273864;
}

.ImageLeft {
	border: 1px solid silver;
	background: white;
	padding: 5px;
	margin: 0 20px 0 0;
	float: left;
}

.ImageRight {
	border: 1px solid silver;
	background: white;
	padding: 5px;
	margin: 0 0 0 20px;
	float: right;
}

.ImageCenter {
	margin: 0 auto;
	border: 1px solid silver;
	background: white;
	padding: 5px;
}

.Administration {
	padding: 5px;
	line-height: 25px;
	background: #cc0000;
	color: #FFCC99;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

.Administration .Select {
	float: right;
}

/********** NEWSLETTER **********/

.Base .Body .Newsletter {
	position: absolute;
	top: -93px;
	left: 545px;
	width: 115px;
	height: 105px;
	background: url(../gfx/bgr.newsletter.png) no-repeat;
	color: #ffffff;
	padding: 20px;
}

.Base .Body .Newsletter .Title {
	text-transform: uppercase;
	font-weight: bold;
}

.Base .Body .Newsletter .InputField {
	margin: 10px 0 0 0;
	position: relative;
	color: #999999;
	font-size: 10px;
	padding: 1px 5px;
	background: white;
	border: 1px solid #273864;
	height: 15px;
}

.Base .Body .Newsletter .InputField input {
	display: none;
	position: absolute;
	top: 2px;
	left: 4px;
	background: #ffffff;
	width: 105px;
	line-height: 14px;
	height: 14px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
}

.Base .Body .Newsletter button {
	font-size: 10px;
	color: #ffffff;
	border: 1px solid #677494;
	display: block;
	margin: 10px 0 0 auto;
	text-transform: uppercase;
	background: #273864;
	padding: 0;
}



/********** FOOT **********/

.Foot {
	background: #111111;
	padding: 25px 0;
	color: #ffffff;
	height: 200px;
}

.Foot a {
	color: #ffffff;
	border: 0px;
}

.Foot .Content {
	width: 660px;
	margin: 0 auto;
	position: relative;
}

.Foot .Content .Menu {
	position: absolute;
	right: 0px;
}

.Foot .Content .Menu span {
	margin: 0 5px;
}

/********** IMAGE VIEWER **********/

#ImageViewer {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 10000;
}

#ImageViewer #Canvas {
	height: 100%;
	width: 100%;
	background: #000000;
	opacity: .8;
	filter: alpha(opacity=80);
	position: absolute;
	top: 0px;
	left: 0px;
}

#ImageViewer #Frame {
	position: fixed;
	z-index: 10010;
	left: 180px;
	top: 50px;
	background: #eeeeee;
	border: 1px solid #ffffff;
	width: 600px;
	_width: 1%;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

#ImageViewer #Frame #Image {
	display: block;
	margin: 10px auto;
	padding: 3px;
	border: 1px solid #cccccc;
	background: #ffffff;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

#ImageViewer #Frame #LeftButton {
	position: absolute;
	top: 235px;
	left: 21px;
	background: url(../gfx/bgr.button_image.png) no-repeat top left;
	height: 50px;
	width: 26px;
	border: 0px;
	padding: 0px;
}

#ImageViewer #Frame #LeftButton:hover {
	background-position: bottom left;
}

#ImageViewer #Frame #RightButton {
	position: absolute;
	top: 235px;
	right: 21px;
	background: url(../gfx/bgr.button_image.png) no-repeat top right;
	height: 50px;
	width: 26px;
	border: 0px;
	padding: 0px;
}

#ImageViewer #Frame #RightButton:hover {
	background-position: bottom right;
}

#ImageViewer #Frame #CloseButton {
	position: absolute;
	top: 10px;
	right: 10px;
	background: red;
	height: 25px;
	width: 26px;
	background: url(../gfx/bgr.button_close.png) no-repeat top;
	border: 0px;
}

#ImageViewer #Frame #CloseButton:hover {
	background-position: bottom;
}

#ImageViewer #Frame #ImageDescription {
	position: absolute;
	top: 10px;
	left: 10px;
}

#ImageViewer #Frame .Buttons {
	padding: 15px;
	background: #eeeeee;
}


