@charset "UTF-8";


* { margin: 0; padding: 0; }


body { 
	background: #f6f6f6 url('../img/bg_body.jpg') top left repeat-x; 
	margin: 0; 
	color: #333333; 
	font-family:Arial, Helvetica, sans-serif;
}

a, a:visited { text-decoration: underline; outline: none; color: #265999; }
a img { border: none; }
p {float:left;}

img { vertical-align: middle; }

label {
	width: 100px;
	float: left;
	padding: 8px 10px 0 0;
	font-size: 14px;
	margin: 20px 0 0 0;
	text-align: right;
}

input, textarea {
	float: left;
	border: 1px solid #dddddd;
	width: 370px;
	margin: 20px 0 0 0;
	padding: 7px;
	font-size: 14px;
	color: #000000;
}

textarea {
	color: #000000;
	font-size: 14px;
	font-family:Arial, Helvetica, sans-serif;
}

/*------- resizable css buttons ------*/
button { 
  border:0; 
  cursor:pointer; 
  font-weight:bold; 
  padding:0 12px 0 0; 
  text-align:center; 
}
button span { 
  position:relative; 
  display:block; 
  white-space:nowrap; 
  padding:0 0 0 15px; 
  margin-right:4px!important;
}

/*blue big button*/
button.blue_big { 
  background:url('../img/btn_blue_right_big.gif') right no-repeat; 
  font-size:20px;
  margin: -2px 0 0 0;
}
button.blue_big span { 
  height:40px; 
  line-height:37px;
  background:url('../img/btn_blue_left_big.gif') left no-repeat;
  color:#fff; 
}

/*blue buttons*/
button.blue { 
  background:url('../img/btn_blue_right.png') right no-repeat; 
  font-size:12px;
  margin: 0 0 0 0;
}
button.blue span { 
  height:25px; 
  line-height:25px;
  background:url('../img/btn_blue_left.png') left no-repeat;
  color:#ffffff; 
}

/*yellow buttons*/
button.yellow { 
  background:url('../img/btn_yellow_right.png') right no-repeat; 
  font-size:12px;
  margin: 0 0 0 0;
}
button.yellow span { 
  height:25px; 
  line-height:25px;
  background:url('../img/btn_yellow_left.png') left no-repeat;
  color:#222222; 
}

/*disabled buttons*/
button.disabled { 
  background:url('../img/btn_grey_right.png') right no-repeat; 
  font-size:12px;
  margin: 0 0 0 0;
}
button.disabled span { 
  height:25px; 
  line-height:25px;
  background:url('../img/btn_grey_left.png') left no-repeat;
  color:#cccccc; 
}

/*<a> elements as buttons */
a.btn {
	border:none;
	text-decoration: none!important; 
	cursor:pointer; 
  	font-weight:bold; 
  	padding:0 12px 0 0; 
  	text-align:center;
	display:block;
}

a.btn span {
	position:relative; 
  	display:block; 
  	white-space:nowrap; 
  	padding:0 0 0 15px; 
}

a.btn.blue { 
  background:url('../img/btn_blue_right.png') right no-repeat; 
  font-size:12px;
  margin: 0;
}

a.btn.blue span { 
  line-height:25px;
  background:url('../img/btn_blue_left.png') left no-repeat;
  color:#ffffff; 
}

a.btn.yellow { 
  background:url('../img/btn_yellow_right.png') right no-repeat; 
  font-size:12px;
  margin: 0;
}

a.btn.yellow span { 
  line-height:25px;
  background:url('../img/btn_yellow_left.png') left no-repeat;
  color:#222222; 
}

a.btn.yellow_big { 
  background:url('../img/bg_btn_yellow_big_right_arrow.jpg') right top no-repeat; 
  font-size:18px;
  margin: 0;
  padding:0 22px 0 0; 
}

a.btn.yellow_big span { 
  line-height:37px;
  background:url('../img/bg_btn_yellow_big_left.jpg') left top no-repeat;
  color:#333333; 
  padding:0 0 0 25px; 
}

.rounded_top {
-moz-border-radius-topleft:10px;
-moz-border-radius-topright:10px;
-webkit-border-top-left-radius:10px;
-webkit-border-top-right-radius:10px;
-khtml-border-radius-topleft:10px;
-khtml-border-radius-topright:10px;
border-top-left-radius:10px;
border-top-right-radius:10px;
}

.rounded_bottom {
-moz-border-radius-bottomleft:10px;
-moz-border-radius-bottomright:10px;
-webkit-border-bottom-left-radius:10px;
-webkit-border-bottom-right-radius:10px;
-khtml-border-radius-bottomleft:10px;
-khtml-border-radius-bottomright:10px;
border-border-left-radius:10px;
border-border-right-radius:10px;
}

/*------ end of buttons -----*/

/*------ OVERLAY ------------*/

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

#overlay {
    width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
	z-index: 1000;
	background: url(../img/bg_overlay.png);
    display: none;
    text-align: center;
}

#overlay-panel {
	position: fixed;
	margin: 100px 35%;
	display: block;
	border: 10px solid #265999;
    width: 350px;
	height: 100px;
	z-index: 1001;
    background: #FFF;
	padding: 0 0 30px 0;
	text-align: center;
}

#overlay-panel p {
	display: block;
	float:left;
	width: 350px;
	text-align: center;
	padding: 20px 0 0 0;
}

#overlay-panel p.overlay_buttons {
	display:block;
	width: 270px;
	padding: 20px 0 0 110px;
}

#overlay-panel p a {
	float: left; 
	margin: 0 10px 0 0;
}


/*------- MAIN STRUCTURE --------*/
#top_navigation {
	background: #DCE8FA;
	border-bottom: 1px solid #ffffff;	
	overflow:hidden;
	display: block;
	height: 25px;
}

#top_navigation ul {
	display: block;
	float: left;
	padding: 0;
}

#top_navigation ul li {
	display: inline;
	float: left;
}

#top_navigation ul li a {
	text-decoration: underline;
	font-size: 12px;
	float: left;
	display: block;
	padding: 5px 0 0 20px;
}

#wrapper {
  width: 800px;
  margin: 0 auto;
}

#logo img {
	float:left;
}

#logo h1 {
	height:59px;
	width:170px;
	position:relative;
}
/* hide from Mac IE5.x \*/
#logo h1{overflow:hidden;}
/* end hide*/

#logo h1 span, #logo h1 em {
	background-repeat: no-repeat;
	margin-top: 0px;
	height: 59px;
	position:absolute;
	left:0;top:0;
	display:block;
	width:170px;
}

#logo h1.en span, #logo h1.en em {background-image: url('../img/lendly_logo_en.jpg');}
#logo h1.de span, #logo h1.de em {background-image: url('../img/lendly_logo_de.jpg');}


#language_box{
	margin : -70px 0px 70px 730px;
	
}

#header {
	padding: 20px 0 0 0;
}

/*+++++++++++++++++++ neu für merk dir was prozess +++++++++++++++++++++*/

#container {
	display: block;
	float:left;
	width: 800px;
	padding: 0 0 50px 0;
	margin: 20px 0 0 0;
	border-bottom:1px dotted #cccccc;
}


#front_box {
	display: block;
	float: left;
	background: #ffffff;
	border: 1px solid #DDDDDD;
	margin: 0 0 0 205px;
	padding: 0;
}

#front_box h2 {
	padding: 25px 35px 10px 35px;
	display: block;
	font-size: 20px;
	line-height: 24px;
	font-weight:normal;
	color: #ffffff;
	background: #6893CC url("../img/bg_sunflower.png") right bottom no-repeat;
	/* Firefox */
	background: url("../img/bg_sunflower.png") right bottom no-repeat,
	-moz-linear-gradient(top, #235897, #6893CC);
	/* Webkit */
	background: url("../img/bg_sunflower.png") right bottom no-repeat,
	-webkit-gradient(linear, left top, left bottom, from(#235897), to(#6893CC));
	
}

#front_box ul {
	display: block;
	float:left;
	padding: 35px 35px 0 35px;
	clear: both;
}

#front_box ul li {
	display: block;
	line-height: 24px;
	padding: 3px 0 20px 40px;	
	list-style-type: none;
}

#front_box ul li.bullet_book {background: url('../img/icon_book.gif') left 0px no-repeat;}
#front_box ul li.bullet_money {background: url('../img/icon_money.gif') left 0px no-repeat;}
#front_box ul li.bullet_jacket {background: url('../img/icon_jacket.gif') left 0px no-repeat;}
#front_box ul li.bullet_box {background: url('../img/icon_box.gif') left 0px no-repeat;padding-bottom:35px;}

#front_box a {	
	clear: both;
	margin: 25px 70px 25px 70px;
	font-size: 18px;
}

#front_box_2 {
	display: block;
	float: right;
	width: 200px;
	margin: 0 0 0 40px;
	padding: 100px 0 0 0;
}

#front_box_2 h3 {font-size:14px;}
#front_box_2 ul {padding: 0;font-size:12px;margin:0;}
#front_box_2 ul li {list-style-type:none;margin:0;}
#front_box_2 ul li a {color:#888888;padding: 0 0 7x 0;display:block;float:left;text-decoration:none;line-height:18px;}
#front_box_2 a {display:block;float:left;clear:both;font-size:12px;color:#888888;padding: 0 0 10px 0;text-decoration:none;}
#front_box_2 ul li a:hover, #front_box_2 a:hover {color:#265999;text-decoration: underline;}


a.btn-yellow-big span {
	background:transparent url('../img/bg_btn_yellow_big_right.jpg') no-repeat scroll right top;
	padding: 11px 25px 9px 0;	
	line-height: 18px;
	float: left;
	display: block;
	color: #333333;
	font-size:14px;
	margin:-1px -3px -1px 0;
}





/*++++++++++++++++++++++++++++++++++++++++++++++++++++*/

#create_tabs {display:block;float:left;padding: 20px 0 0 20px;}
#create_tabs ul {display:block;float:left;}
#create_tabs ul li {
	display:block;
	float:left;
	list-style-type:none;
	display:inline;
	padding:5px 10px;
	margin: 0 5px 0 0;
	font-size:14px;
	background:#ffffff;
	border: 1px solid #dddddd;
	border-bottom: none;
}
#create_tabs ul li.inactive {
	background: #efefef;
	background:-moz-linear-gradient(top, #efefef, #ddd); /* Firefox */
	background:-webkit-gradient(linear, left top, left bottom, from(#efefef), to(#ddd)); /* Safari, Chrome */
}


#content {
	float:left;
	width:740px;
	padding: 30px 30px 100px 30px; 
	margin: 30px 0 0 0; 
	background: #ffffff;
	border: 1px solid #DDDDDD;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
}

#content.tabs_on_top {
	margin-top:0px;
	border-top:none;
}

.top_left_radius {
	-moz-border-radius-topleft: 7px;
	-moz-border-radius-topright: 7px;
	-webkit-border-top-left-radius: 7px;
	-webkit-border-top-right-radius: 7px;
	-khtml-border-radius-topleft: 7px;
	-khtml-border-radius-topright: 7px;
	border-radius-topleft: 7px;
	border-radius-topright: 7px;	
}

#list_navigation {
	display: block;
	float: left;	
	margin-bottom:20px;
	width: 100%;
	border-bottom:2px solid #2C66A5;	
}

#list_navigation li {
	float: left;
	display: inline;
	list-style-type: none;
	margin-left: 10px;
	border:1px solid #ccc;
	border-bottom:none;
	background: #efefef;
	background:-moz-linear-gradient(top, #efefef, #ddd); /* Firefox */
	background:-webkit-gradient(linear, left top, left bottom, from(#efefef), to(#ddd)); /* Safari, Chrome */
	-moz-border-radius-topleft: 7px;
	-moz-border-radius-topright: 7px;
	-webkit-border-top-left-radius: 7px;
	-webkit-border-top-right-radius: 7px;
	-khtml-border-radius-topleft: 7px;
	-khtml-border-radius-topright: 7px;
	border-radius-topleft: 7px;
	border-radius-topright: 7px;
}

#list_navigation li a {
	display: block;
	float: left;
	padding: 5px 10px;
}

#list_navigation li.selected {
	padding: 5px 10px;
	background: #2C66A5;
	color: #ffffff;
	border-color: #2C66A5;
}

#content h2 {
	width: 740px;
	float:left;
	font-size: 18px;
	line-height:18px;
	padding: 0 0 5px 0;
	border-bottom:1px dotted #CCCCCC;	
}


/* MAIN */

#main {
	float: left;
	width: 540px;
	font-size: 14px;
	font-weight: normal;
}

#main h2 {
	width: 540px;
}

p {
	padding: 20px 0 0 0;
	line-height: 18px;
}

p.create_new_item {
	display:block;
	float:right;
	font-size:12px;
	margin:-3px 0 0;
	padding:0 0 20px;
}


p.msg_warning {
	font-size: 14px;
	background: #FF9 url('../img/icon_warning.gif') 10px 7px no-repeat;
	padding: 10px 10px 10px 45px;
	margin: 20px 0 0 0;
	width: 485px;
	overflow: hidden;
}

p.user_info {
	padding: 0 0 20px 0;	
}

span.link_back {
	padding:0 0 10px 0;
	display:block;
	font-size:12px;
}

span.link_back a {
	text-decoration:none;
}

div.wish {
	float:left;
	background: #2C66A5;
	padding: 0px  20px 20px 20px;
	margin: 0px 0 0 0;
	max-width: 500px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
}

div.wish h2 {
	float: left;
	max-width: 500px !important;
	border: none !important;
	font-weight: normal;
	color: #ffffff;
}

div.wish p {
	color: #ffffff;
	line-height: 18px;
	padding: 10px 0 0 0;
	width:500px;
}

div.wish p.more_wishes {
	display:block;
	float:right;
	margin:0;
	overflow:visible;
	padding:5px 0 7px;
	position:relative;
	top:0;
	width:200px;
	z-index:999;
	height: 0;
}

div.wish p.more_wishes.en {left:100px;}
div.wish p.more_wishes.de {left:40px;}

div.wish form {
	display:block;
	float:right;
	height:0;
	left:130px;
	margin:0;
	overflow:visible;
	padding:0;
	position:relative;
	top:0px;
	width:200px;
	z-index:999;
}

div.wish form input {
	border: none;
	width:90px;
	background: #FFFFFF url('../img/bg_wish_see_more.gif') no-repeat bottom left;
	margin:0;
	padding: 5px 0 8px 0;
	color: #265999;
	text-decoration: underline;
	font-size:12px;
}

div.wish_distribution {
	display:block;
	float: left;
	width: 540px;
	padding: 20px 0 0 0;
}

.wish_distribution h2 {
	width: 500px !important;
	float: left !important;
}

.wish_distribution table tr td {
	padding: 20px 0 0 20px;
}

.wish_distribution p.wish_url {
	padding:20px 20px 20px 70px;	
}

.wish_distribution p.wish_url span {
	padding: 0 0 0 15px;
}

.active_offer {
	background: #DCE8FA;
	float: left;
	width: 520px;
	padding: 15px 10px 10px 10px;
	margin: 20px 0 0 0;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
}

.accepted_offer {
	background: #e7e7e7;
	float: left;
	width: 520px;
	padding: 15px 10px 10px 10px;
	margin: 20px 0 0 0;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
}

.offer_with_actions {
	float:left;
	
}

p.offer_info {
	float:left;
	display: inline;
	padding: 0 0 10px 10px;
	width: 380px;
	line-height: 18px;
}

p.msg_offer_sent {
	background: url('../img/icon_green_check.gif') top left no-repeat;
	float:right;
	padding: 0 0 10px 20px;
	width: 100px;
}

p.reminder_created {
	background: #FFFF99;
	float:left;
	display: block;
	width: 510px;
	padding: 10px 10px 10px 20px !important;
	margin-top: 20px;	
	line-height: 18px;
}

p.msg_status {
	background: #FFFF99;
	float:left;
	display: block;
	width: 510px;
	padding: 10px 10px 10px 20px !important;
	margin-top: 10px;
}	

.offer_details {
	display:block;
	float: left;
	background: #ffffff;
	padding: 10px;
	width: 370px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
}

.offer_details h3 {
	font-size: 14px;
	font-weight: bold;
}

.offer_details p {
	padding: 10px 0 0 0;
}

.offer_actions {
	float:right;
	margin: -30px 0 0 0;
	width: 120px;
}

.offer_actions ul {
	display: block;
	float: left;
	padding: 0 0 0 10px;
	width: 120px;
}

.offer_actions ul li {
	list-style-type: none;
	width: 120px;
	display: block:
}

.offer_actions ul li.accepted_offer_action {
	color: #999999;
	display: block;
	padding: 5px 0 5px 0px;
	width: 100px;
	text-align: center;
	font-size: 14px;
}

.offer_actions ul li.date {
	color: #999999;
	display: block;
	padding: 0px 0 5px 0px;
	width: 100px;
	text-align: center;
	font-size: 11px;
}

.offer_actions ul li.say_thanks {
	width: 40px;
	min-height: 40px;
	padding: 5px 0 0 65px;
	background: url('../img/bg_say_thanks.png') 18px 3px no-repeat;
}

.offer_actions ul li.say_thanks a {
	float:left;
	width: 30px;
}

.offer_actions form {
	float:left;
	display:block;
}

.offer_actions form input, .offer_actions form button {
	visibility: hidden;
	width: 120px;
	float: left;
	margin: 0 0 5px 0 !important;
}

.offer_actions form.en button#accept_submit {
	visibility: visible;
	display: block;
	clear: both;
	margin: 0 0 5px 0 !important;
}

.offer_actions form.de button#accept_submit {
	visibility: visible;
	display: block;
	clear: both;
	margin: 0 0 5px 0 !important;
	padding: 0 7px 0 0;
}

.offer_actions form.de button#accept_submit span {
	padding: 0 0 0 10px;
}

.offer_actions form button#ignore_submit {
	visibility: visible;
	display: block;
	clear: both;
}

.offer_actions form button#returned_submit {
	visibility: visible;
	display: block;
	clear: both;
}

.offer_actions form button#reclaim_submit {
	visibility: visible;
	display: block;
	clear: both;
}

.offer_actions form button#delete_submit {
	visibility: visible;
	display: block;
	clear: both;
}

#main_without_sidebar {
	float: left;
	width: 740px;
}

ul.list_of_wishes {
	display: block;
	float: left;
}

ul.list_of_wishes li {
	list-style: none;
	display:block;
}

ul.list_of_wishes li a {
	display:block;
	font-size: 18px;
	padding: 20px 0 0 20px;
}

/*------- sidebar ----------*/

#sidebar {
	float: left;
	width: 170px;
	margin: 0 0 0 30px;
	font-size: 14px;
	line-height:18px;
}

a.lent_item_number {
	font-size:12px;
	line-heigth:12px;
	background:#666666;
	color:#ffffff;
	padding:1px 7px 1px 7px;
	margin: 0 0 0 5px;
	cursor:help;
	text-decoration: none;
	-moz-border-radius:5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
}

a.user_email {
	color: #333333;
	font-weight:bold;
}

p.hint {
	display: block;
	float: left;
	padding: 10px;
	border: 1px solid #dddddd;
	text-align:center;
	margin: 0 0 20px 0;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
}

p.align_left {
	text-align:left;
}

p.hint a.btn {
	margin: 10px 10px 0 10px !important;

}

div.hint {
	display: block;
	float: left;
	padding: 10px 15px;
	border: 1px solid #dddddd;
	margin: 0 0 20px 0;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
}

div.hint ul {
	display: block;
	float: left;
	padding: 10px 0 0 0;
}

div.hint ul li {
	display: block;
	float: left;
	margin: 0;
	list-style-image:none;
	padding: 0 0 10px 25px;	
	background:transparent url('../img/icon_blue_check.gif') no-repeat scroll left 5px;
}



p#views {
	border:1px solid #dddddd;
	padding:20px 0;
	text-align:center;
	display: block;
	float:left;
	width:150px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius: 10px;
}

#views_number {
	font-weight: bold;		
}

div#email_reminder_box {
	border:1px solid #ddd;
	padding: 10px;
	text-align:center;
	margin: 0 0 30px 0;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;
	border-radius:10px;
	display:block;
	float: left;
	width: 150px;
	clear:both;
}

span#email_reminder_state {
	font-weight:bold;
	padding:10px 0 10px 0;
	display:block;
	clear:both;
}
	          	

/*------ FOOTER ---------*/

#footer {
	color: #888888;
	width: 780px;
	padding: 10px 10px 20px 10px;
	float:left;
	font-size: 12px;	
	font-family:Arial, Helvetica, sans-serif;
}

#footer ul {
	float:left;
}

#footer ul li {
	display: inline;
	float: left;
}

#footer ul li a {
	color: #888888;
	list-style-image:none;
	padding: 0 10px 0 0;
	text-decoration: none;
}

#footer ul li a:hover {
	text-decoration: underline;	
}

#footer #copyright {
	float: right;
	padding: 0;
}

/*------ end ----- FOOTER ---------*/

/*---------- language switcher --------------*/
ul#user_email {
	float:right;
	color: #999999;
	padding-right: 10px;
	padding-top: 3px;
	font-size: 12px;
}

ul#your_overview {
float:right;
padding-right: 15px;
}

ul#lang_switch {
float:right;
padding-top: 5px;
}
ul#lang_switch li {
display:inline;
float:left;
padding: 0;
}

ul#lang_switch li a {
	display: block;
	float: left;
	width: 1px;
	height: 15px;
color:#888888;
list-style-image:none;
padding:0 25px 0 0;
text-decoration:none;
color: transparent;
}

ul#lang_switch li a span {
	display: block;
	height:0;
	overflow: hidden;
	width: 0;
}

ul#lang_switch li#de.selected a, ul#lang_switch li#de a:hover {
	background: url('../img/de.gif') 0px 2px no-repeat;	
}

ul#lang_switch li#en.selected a, ul#lang_switch li#en a:hover {
	background: url('../img/us.gif') 0px 2px no-repeat;	
}

ul#lang_switch li#de a {
	background: url('../img/de_gr.gif') 0px 2px no-repeat;	
}

ul#lang_switch li#en a {
	background: url('../img/us_gr.gif') 0px 2px no-repeat;	
}

/*------ end ---- language switcher --------------*/

/*------ Say Thank You ------*/

#tab-area {
	float:left;
	display: block;
	font-size: 14px;
}

#tab-area ul.tabs {
	float:left;
	display: block;
	width:120px;
	padding:20px 0 100px 0;
}

#tab-area ul.tabs li {
	display: block;
	float:left;
	list-style-type:none;
	padding-bottom: 5px;
	overflow:hidden;
	width:120px;
}

#tab-area ul.tabs li a {
	float: left;
	display: block;
	padding: 10px;
	text-align:center;
	width: 100px;
	-moz-border-radius-topleft: 7px;
	-moz-border-radius-bottomleft: 7px;
	-webkit-border-top-left-radius: 7px;
	-webkit-border-bottom-left-radius: 7px;
	-khtml-border-radius-topleft: 7px;
	-khtml-border-radius-bottomleft: 7px;
	border-radius-topleft: 7px;
	border-radius-bottomleft: 7px;
	border: 1px solid #dddddd;
	border-right: none;
	text-decoration:none;
}

#tab-area ul.tabs li a.selected {
	text-decoration: none;
	color: #333333;
	background: #ffda5b;
	border-color: #ffda5b;
}

#tab-area div.tab-page {
	min-height:300px;
	padding:20px;
	width:570px;
	float: left;
	display: block;
	border: 2px solid #ffda5b;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	-khtml-border-radius: 7px;
	border-radius: 7px;
}

#tab-area div.message {
	background:transparent url(../img/bg-direct-message.jpg) no-repeat scroll left top;
}

#tab-area div.visible {display:block;}

#tab-area div.invisible {display:none;}

#tab-area div.tab-page p {
	float:left;
	width: 570px;
	padding-top: 20px;
	clear:both;
}

#tab-area div.tab-page ul {
	float:left;
	display: block;
	list-style-type:none;
	padding-top: 20px;
}

#tab-area div.thanks-list ul li {
	border:1px solid #DDDDDD;
	float:left;
	display: block;
	margin:0 19px 20px 0;
	padding:5px;
	text-align:center;
	width:160px;
}

#tab-area div.thanks-list ul li a {
	display:block;
	margin:0 auto;
}

#tab-area div.thanks-list ul li a.affil {
	height: 40px;
}

#tab-area div.thanks-list ul li a img {
	border: none;
	padding: 0 0 10px 0;
}

#tab-area div.thanks-list ul li.row-end {
	margin-right:0;
}

span#message-to, span#message-from {
	float: left;
	width: 100px;
	text-align:right;
}

input#message-to-email {
	margin: 0 0 0 10px;
}

span#message-recipient, span#message-sender {
	font-weight:bold;
	padding-left: 10px;}
	
span#message-sender {
	float:left;
}

#tab-area button.yellow {
	display: block;
	float:left;
	margin: 10px 0 0 105px;
}

/*-------- end ----- Say Thank You ------*/

/*------------ .lendlyForm -------------------*/

.lendlyForm {
	display:block;
	float:left;
	padding:0;
	margin:0;
	width:520px;
}

.lendlyForm label {
	float: left;
	display: block;
	width: 100px;
	padding: 8px 10px 0 0;
	margin: 20px 0 0 0;
	font-size: 14px;
	text-align: right;
}

.lendlyForm input, .lendlyForm textarea {
	float: left;
	display: block;
	border: 1px solid #dddddd;
	width: 370px;
	margin: 20px 0 0 0;
	padding: 7px;
	color: #000000;
	font-size: 14px;
	font-family:Arial, Helvetica, sans-serif;
}

.lendlyForm textarea {
	height: 100px;
}

.lendlyForm p {
	display: block;
	float:left;
	margin: 0;
	padding: 4px 0 0 115px;
	font-size: 12px;
	color: #888888;
	width: 370px;
}

.lendlyForm input#captcha_code {
	width: 169px;
}

.lendlyForm div#captcha {
	float: left;
	display: block;
	margin: 0;
	padding: 15px 0 0 15px;
	text-align: center;
	width: 169px !important;
}

.lendlyForm #captcha img {
	display: block;
	float: left;
	margin: 0;
	padding: 0;
}

.lendlyForm .FormError1 {
	background:transparent url('../img/error_form.gif') no-repeat 2px 2px;
	color:#CC0000;
	display:block;
	float:left;
	margin: 3px 0 0 113px;
	font-size:11px;
	padding:5px 3px 3px 20px;
	width: 370px;	
}

.lendlyForm button.yellow {
	display: block;
	float:left;
	margin: 10px 0 0 105px;
}

.lendlyForm#createWish {
	padding-left: 75px;
}

.lendlyForm#contactUs, .lendlyForm#createOffer {
	padding-left: 10px;
}

/*------- end ----- .lendlyForm -------------------*/

/*------- .lendlyForm2 ----------------------------*/
form#createOffer2 {
	padding: 10px 0 0 30px;	
}

form#contactUs2 {
	padding: 10px 0 0 30px;	
}

form#createWish2 {
	padding: 20px 0 0 20px;	
	width: 530px;
}

form#createReminder2 {
	padding: 15px 0 0 25px;	
	width: 520px;
}

form#reclaimReminder2 {
	padding: 20px 0 0 20px;	
	width: 530px;
}

form.lendlyForm2 {
	float:left;	
}

.form_hint {
	-moz-border-radius:10px 10px 10px 10px;
	border:1px solid #DDDDDD;
	padding: 10px;
	float:right;
	margin: 30px 0 0 0;
	width:158px;
	font-size:14px;
	line-height: 18px;
	color: #888888;
}



.form_hint ul {
	float:left;
	display:block;
	padding: 5px 0 0 0;
}

.form_hint ul li {
	list-style-type: none;
	padding: 0 0 5px 15px;
	font-size:14px;
	line-height: 18px;
	background:url(../img/li_2.gif) left 6px no-repeat;
}

form.lendlyForm2 label {
	display: block;
	float:left;
	width: 470px;
	text-align: left;
	margin: 0;
	padding: 15px 0 2px 0;
	color: #111111;
}

form.lendlyForm2 input, form.lendlyForm2 textarea {
	float: left;
	border:1px solid #aaaaaa;
	color:#888888;
	display:block;
	font-family:Arial,Helvetica,sans-serif;
	font-size:14px;
	padding: 5px;	
	width: 350px;
	text-align: left;
	margin: 0;
}

form.lendlyForm2 textarea#reclaimLentItemMessage {
	height: 200px;	
}


form.lendlyForm2 input:focus, form.lendlyForm2 textarea:focus {
        border: 2px solid #B1CAF5;
        padding: 4px;
}

form.lendlyForm2 span.small {
	color:#aaaaaa;
	font-size:11px;
	margin-left: 7px;
	font-weight: normal;
}

form.lendlyForm2 p {
	float: left;
	display: block;
	width: block;
	width: 465px;
	color:#aaaaaa;
	font-size:11px;
	padding: 3px 0 0 5px;
}

form.lendlyForm2 input#captcha_code {
	width: 160px;
	clear: both;
}

form.lendlyForm2 img#Captcha1 {
	float: left;
	height: 33px;
	padding: 0 0 0 10px;
}

form.lendlyForm2 p.hidden {
	display: none;
}

form.lendlyForm2 p.buttonLabel {
	display:block;
	float:left;
	font-size:14px;
	margin:12px 0 0 10px;
	width:270px;
}

form.lendlyForm2 span.FormError1 {
	float: left;
	display: block;
	width: block;
	width: 465px;
	color:#ff0000;
	font-size:11px;
	padding: 3px 0 0 5px;
}

form.lendlyForm2 button {
	float: left;
	clear: both;
	margin: 10px 0 0 -3px;
}

form.lendlyForm2 input.checkbox {
	float: left;
	clear: both;
	margin: 10px 0 0 0;
	width: 20px;
	border: none;
	padding: 0;
}

form.lendlyForm2 label.checkbox_label {
	float: left;
	margin: 0 0 0 5px;
	padding: 8px 0 3px 0;
	line-height: 18px;
	color: #aaaaaa;
}

form.lendlyForm2 input.valid_email {
	background: url('../img/icon_green_check.gif') 460px 7px no-repeat;
}


/*--------- end of lendlyForm2 ------------*/


/*------- dialog customization -------*/

#accept_dialog,
#ignore_dialog,
#deleteWish_dialog,
#deleteOffer_dialog,
#returnedWishOwner_dialog,
#returnedOfferOwner_dialog {
	color: #ffffff;
	visibility: hidden;
}

.ui-dialog #accept_dialog,
.ui-dialog #ignore_dialog,
.ui-dialog #deleteWish_dialog,
.ui-dialog #deleteOffer_dialog,
.ui-dialog #returnedWishOwner_dialog,
.ui-dialog #returnedOfferOwner_dialog {
	color: #333333;
	visibility: visible;
}

.ui-dialog {
	background: #ffffff;
	border: 10px solid #265999;
}

.ui-dialog-titlebar {
	display: none;
}

.ui-dialog .message {
	text-align:center;
	padding: 20px;
	height: 70px;
}

.ui-widget-content {
	text-align: center;
	background: #ffffff;
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	font-weight: bold;
}

.ui-dialog-buttonpane {
	display: block;
	float:left;
	text-align:center;
	font-family:Arial,Helvetica,sans-serif;
	margin:0 auto !important;
	padding:10px 0 10px 40px !important;
	border: none;
}

.ui-dialog .ui-dialog-buttonpane button {
	float: left;
	display: block;
	width: 90px;
	font-family:Arial, Helvetica, sans-serif;
	padding: 3px 10px 4px 10px;
	margin: 0 10px;
	font-size:14px;
	border: none;
}

.ui-dialog button.ui-state-default {
	color: #ffffff;
	background: transparent url('../img/bg_btn_blue.gif') left top no-repeat;
}

.ui-dialog button.yellow {
	color: #333333;
	background: transparent url('../img/bg_btn_yellow.gif') left top no-repeat;
}

.ui-dialog #reclaimWishOwner_dialog {
	text-align: left;
	font-weight: normal;
}

.ui-dialog #reclaimWishOwner_dialog h3.dialog_headline {
	
}

.ui-dialog #reclaimWishOwner_dialog p.dialog_lendly_message {
	padding: 20px 0 10px 0;
	margin: 0;
}

.ui-dialog #reclaimWishOwner_dialog form.dialog_user_message {
	padding: 0;
	margin: 0;	
}

.ui-dialog #reclaimWishOwner_dialog .ui-dialog .message {
	padding: 20px 20px 15px 20px;
}

.ui-dialog #reclaimWishOwner_dialog form.dialog_user_message label {
	float:left;
	text-align:left;
	width:400px;
	margin:0;
	padding:20px 0 5px 0;
}

.ui-dialog #reclaimWishOwner_dialog form.dialog_user_message input {
	width:445px;
	margin:5px 0 0 0;
}

.ui-dialog #reclaimWishOwner_dialog form.dialog_user_message div.introduction {
	float:left;
	display:block;
	padding: 10px;
	margin: 0;
	width: 440px;
	height: 120px;
	border: 1px solid #dddddd;
	background: #efefef;
}

.ui-dialog #reclaimWishOwner_dialog form.dialog_user_message span.formError {
color:#FF0000;
display:block;
float:left;
font-size:11px;
padding:3px 0 0 5px;
width:400px;
}

.ui-dialog #reclaimWishOwner_dialog form.dialog_user_message textarea{
	float:left;
	padding: 10px;
	margin: 0;
	width: 440px;
	height: 165px;
		
}


/*------- end ---- dialog customization -------*/

/*------------- items -----------------*/
.item {display:block;float:left;width: 530px;border-top: 1px dotted #cccccc;margin: 0;padding:10px 5px 10px 5px;}
	.item_accepted {background: #E9FFDF;}
	.item_done .item_title, .item_done .item_details {color:#999;}
	
.item_description {display:block;float:left;width:430px;}
	.item_title {font-size:14px;padding:0 0 5px 0;}
	.item_details {font-size:12px;padding:0 0 5px 0;}
	.item_status_message, .item_meta {font-size: 12px;color:#999999;width:435px;padding:0 0 5px 0;}
	.green {background: url(../img/bg_green_dot.gif) no-repeat left 3px;padding-left: 12px;}
	.orange {background: url(../img/bg_yellow_dot.gif) no-repeat left 3px;padding-left: 12px;}
	.gray {background: url(../img/bg_gray_dot.gif) no-repeat left 3px;padding-left: 12px;}
	.user_lent_item_num, .user_thanks {cursor:help;background:#e3e3e3;color:#999;font-size:12px;text-decoration: none;}
	.user_lent_item_num {padding:1px 2px 1px 7px;margin-left:2px;-moz-border-radius-topleft: 7px;-moz-border-radius-bottomleft: 7px;}
	 	.blue {background:#255995;color:#ffffff;}
	.user_thanks {padding:1px 5px 1px 5px;margin-left:1px;margin-right:5px;-moz-border-radius-topright: 7px;-moz-border-radius-bottomright: 7px;}
		.yellow{background:#FFA606;color:#ffffff;padding-right:7px;}
	.item_user_email {color:#999999;text-decoration:none;}	
	.item_user_email:hover {text-decoration:underline;}	
	
.item_actions, .wish_infos {display:block;float:right;width: 100px;text-align:right;}
	.item_action {clear:both;max-width:100px;display:block;float:right;background: transparent;color: #255995;border-bottom:1px solid #255995;padding:0;margin: 0 0 2px 0;font-size:12px;font-weight:normal;line-height:10px;font-family:Arial, Helvetica, sans-serif;}
	a.item_action {padding-bottom:3px;padding-left:3px;text-decoration:none;}
	.reclaim_action_success {font-size:12px;color:#cccccc;padding:0 0 3px 0;float:right;display:block;width:100px;}
	.done_action_success {font-size:12px;color:#333333;padding:0 0 3px 0;float:right;display:block;width:100px;}
	.thanks_action {margin-bottom:5px;}
	#remove_submit {border:none;clear:both;padding:3px 0 0 0;}
	
.wish_infos li {list-style-type:none;font-size:12px;color:#999999;padding: 0 0 5px 0;}



