/*
by default, the default form adds some surrounding space, this cancels it
*/
.content div.form-item,
.content div.content {
  margin-top: 0px; padding-top: 0px;
  text-transform:none;
}

/*
this adds some space in top and bottom, so anything inside can look vertically
centered
*/
#user-login-form {
	padding: 0px;
	/*padding: .65em 0;*/
  /*margin-top:30px;*/
  width:850px;
	position:absolute;
	top:58px;
	left:140px;
	z-index:500;
	font-family: 'CabinRegular';
	font-size:14px;
	margin-top:-10px;
	/*border: 1px solid #FFF;*/
}
#lafront{
	position:relative;
}
#lafront #user-login-form {
	padding: 0px;
	/*padding: .65em 0;*/
  /*margin-top:30px;*/
  width:850px;
	position:absolute;
	top:21px;
	left:140px;
	z-index:500;
	font-family: 'CabinRegular';
	font-size:14px;
	/*margin-top:-16px;
	border: 1px solid #FFF;*/
}
#lafront #user-login-form form {
	padding: 0px;
	/*padding: .65em 0;*/
  /*margin-top:30px;*/
  width:850px;
	position:absolute;
	top:58px;
	left:140px;
	z-index:500;
	font-family: 'CabinRegular';
	font-size:14px;
	/*margin-top:-16px;
	border: 1px solid #FFF;*/
}
#user-login-form  .form-item{
	margin-top:0px;
	margin-bottom:0px;
}
#user-login-form form{
	margin-top:-60px;
	/*background:#C63;*/
	padding:0px;
	/*border:1px solid #6F0;*/
}

/*
by default, fields labels tries to reserve a whole line for itself, this
cancels that and and sends it to the left.
it also adds some space on the right and left of the label to look easy on
the eye.
*/
#user-login-form label {
  float: left;
  margin-left: 10px;
  margin-right: 2px;
  margin-top:0px;
  font-family:"CabinSemiBold";
}

/*
inputs too, they try to reserve a whole line for itself, this
cancels that and sends it to the left
*/
#user-login-form input {
  float: left;
  margin-left:5px;
  color:#999;
  margin-top:0px;
  padding-left:2px;
  height:13px;
}

/*
I don't like the required * (asterisks), so I hide them.
*/
#user-login-form span.form-required {
  display: none;
  margin-top:0px;
}

/*
the form submit button,
*/
#user-login-form input.form-submit {
font-family:"CabinRegular";
	margin-top: 0px;
	margin-left: 5px;
	margin-right: 0px;
	/*font-size:.9em;*/
	font-size:13px;
	border:1px solid #999;
	background-color:#E5E5E5;
	color:#333;
	cursor:pointer;
	height:20px;
	padding-top:0px;
	padding-right: 0.5em;
	padding-bottom: 0.1em;
	padding-left: 0.5em;
}



#user-login-form #edit-name, #user-login-form #edit-pass,
#user-login-form #edit-name-1,#user-login-form #edit-pass-1 {
width: 85px;
font-size:.9em;
margin-top:0px;
}


/*
now this is for the links list, lists by default tries to reserve a whole line
also they add space surrounding them. we cancel all that and send the list
to the right
*/
#user-login-form div.item-list ul {
  margin: 0px; 
  padding-top:0px;
  text-align:left;
  /*clear:both;*/
}

#lafront #user-login-form div.item-list ul {
  margin: 37px; 
  padding-top:0px;
  text-align:left;
  /*clear:both;*/
}

/*
remember, stylign above was for the whole list, now for each item,
we all know each item in the list by default exists on a separate line, also
has that bullet on the left. we cancel all that. and makes all items sit beside
each other
*/
#user-login-form div.item-list ul li {

  padding: 0px;
  margin-top: 0px;
  /*background:#CC3;*/
  list-style:none;
  /*display:inline-block;*/
  float:left;
  margin-left:0px;
  margin-right:0px;
}
.form-item {
	margin-top:0px;
	margin-bottom:0px;
}

/*
this is the "Hi user, welcome back message".
by default <p> tries to exist on a separate line, we cancel that.
also by default <p> has some surrounding space, we cancel that too, and give it
only space on the left.
*/
#lafront #user-login-form p.user-info {
	float: left;
	padding: 0;
	margin-top: 37px;
	margin-right: 0px;;
	margin-bottom: 0;
	margin-left: 185px;
	/*background:#36C;*/
}
#user-login-form p.user-info {
	float: left;
	padding: 0;
	margin-top: 0px;
	margin-right: 0px;;
	margin-bottom: 0;
	margin-left: 185px;
	/*background:#36C;*/
}
#user-login-form p.user-info a {
	text-decoration:none;
	color:#F30;
}
#user-login-form p.user-info a:hover {
	text-decoration:underline;
}
/*#lafront #user-login-form ul li.first a{
    color: #666;
    text-decoration: none;
    font-size: 12px;
    margin-right: 0px;
    padding-left: 12px;
	margin-left: 10px;
}/**/
#user-login-form ul li.first a{
  color:#666;
  text-decoration:none;
  font-size:13px;
  margin-right:0px;
  /*border-left:solid 1px #CCC;*/
  padding-left:12px;
  margin-left:-100px;
}
#user-login-form ul li.last a,
#lafront #user-login-form ul li.last a{
  color:#666;
  text-decoration:none;
  font-size:12px;
  margin-right:0px;
  margin-left:10px;
  border-left:solid 1px #CCC;
  padding-left:12px;
}
#user-login-form ul li.last a:hover, #user-login-form ul li.first a:hover {
	color:#09F;
	text-decoration:underline;
}