@charset "utf-8";

/* -----------------------------------------------
	
	Forms
	
----------------------------------------------- */

form.tabmin_form input[type=text], 
form.tabmin_form input[type=password],
form.tabmin_form select {
	width: 150px;
}

form.tabmin_form textarea {
	height: 150px;
	width: 200px;
}

/* -----------------------------------------------
	
	Action Buttons
	
----------------------------------------------- */

.action_button {
	width: 16px;
	height: 16px;
	margin: 2px 2px;
	padding: 0;
	float: left;
}

.action_button * {
	margin: 0;
	padding: 0;
	display: inline;
}

.action_button img {
	border: none;
}

/* -----------------------------------------------
	
	Location Suggestions
	
----------------------------------------------- */

#locationSuggestContainer
{

	position: absolute; 
	z-index:100; 
	margin-top: 2px;
}

#locationSuggest
{
	width: 400px;
	background-color: #0099FF;
	position: absolute;
	z-index: 100;
	border: 1px black solid;
}

#locationSuggest option
{
	padding-top: 5px;
	overflow: hidden;
	display: block;
	width: 100%;
	height: 20px;
	font-family: Arial, Helvetica, sans-serif;
}

ul.grid{
	list-style:none;
	width: 100%;
	margin-left: -40px;
}

ul.grid li{
	width: 500px;
	background-color: #CCCCCC;
	margin-bottom: 3px;
	padding: 10px;
	float: left;
	clear:both;
}

ul.grid li .image {
	width: 146px;
	float: left;
}

ul.grid li .caption{
	float: left;
	width: 200px;
}

ul.grid li .buttons, ul.grid li .image_buttons {
	float: left;
	clear: both;
}

ul.grid li .image_buttons {
	margin-right: 10px
}

/* -----------------------------------------------
	
	Information Tables
	
----------------------------------------------- */

.info_table {
	width: 100%;
}

.info_table th,
.info_table td {
	padding: 2px 5px;
	vertical-align: top;
}

.info_table tr.dark{
	background-color: #ccc;
}

.info_table tr.light{
	background-color: #ddd;
}

.info_table tr.featured.light
{
	background-color: #eeeeaa;
}

.info_table tr.featured.dark
{
	background-color: #cccc88;
}

.info_table_header {
	/*background-color: #ddd;*/
}

.info_table span.format {
	font-size: 10px;
	font-style: italic;
	color: #999;
	margin-left: 5px;
}

.info_table button {
	background: transparent;
	border: 0px none;
	cursor: pointer;
}
/* -----------------------------------------------
	
	Tooltips
	
----------------------------------------------- 
*/

.tool {
	position: relative;   /* this is key */
}
 
.tool span.tip {
	display: none;        /* so is this */
}

/* tooltip will display on :hover event */
 
.tool:hover span.tip,  /* For everyone but You-Know-Who */
.tool span.tip_hover { /* For IE6 */
	display: block;
	z-index: 100;
	position: absolute;
	top: -3px;
	right: 20px;
	width: auto;
	padding: 3px 7px 4px 6px;
	border: 1px solid #333;
	background-color: #f7f4ed;
	font: normal 10px arial, helvetica, sans-serif;
	text-align: left;
	color: #000;
	text-decoration: none;
	white-space: nowrap;
}

span.tip:hover {
	display: none !important;
}
/* -----------------------------------------------
	
	ErrorSet
	
----------------------------------------------- */

.debug_bar {
	position: fixed;
	min-height: 15px;
	bottom: 0px;
	left: 0px;
	z-index: 100;
	width: 100%;
}

.debug_bar>div {
	margin: 0 auto;
	max-height: 200px;
	overflow: auto;
	width: 95%;
    color: #D8000C;
	border: 1px solid;
	border-bottom: none;
    background-color: #FFBABA;
	padding: 10px;
}

/* -----------------------------------------------
	
	PasswordSet
	
----------------------------------------------- */
.password_meter
{
	border: 1px solid gray;
	background-color: #CCC;
	width: 120px;
	height: 20px;
	position: relative;
}

.password_meter_bar {
	height: 5px;
}

.password_meter_bar_container {
	height: 5px;
	width: 118px;
	border: 1px solid white;
	position: absolute;
	bottom: 1px;
}

.password_meter_text {
	text-align: center;
	font-size: 10px;
}

.required {
	font-size: 9px;
	margin-right: 3px;
	color: #4b91d7;
}

.profile_picture_container {
	float: left;
	margin-right: 15px;
	height: 100px;
	width: 100px;
}

.edit_picture {
	display: none;
	position: absolute;
	right: 0px;
	z-index: 100;
	background-color: #CCC;
	border: 1px solid;
	padding: 2px;
	background-image:url(../images/tabmin/picture_edit.png);
	background-position: 3px 3px;
	background-repeat: no-repeat;
	padding-left: 20px;
	filter: alpha(opacity=80);	/* For IE */
	opacity: .80;				/* For everyone else */
	color: #0079C2;
	cursor: pointer;
}

.profile_picture:hover .edit_picture {
	display: block;
}

.profile_picture {
	float: left;
	height: 100px;
	margin-right: 15px;
	margin-top: 12px;
	position: absolute;
}

.profile_information {
	float: left;
	width: 460px;
}

.profile_information fieldset {
	border: 2px solid #8BE841;
	width: 100%;
	margin: 5px 0 10px;
}

.profile_information fieldset legend {
	color: #0079C2;
	font-weight: bold;
	border: 3px #8BE841 solid;
	border-top: none;
	border-bottom: none;
	margin-left: 10px;
}

tr.status_waiting td {
}

tr.status_pending td {
	background-color: #EFFAB6;
}

tr.status_rejected td {
	background-color: #FF9F9F;
}

tr.status_approved td {
	background-color: #9DFFB6;
}

.profile input, .profile select, .profile textarea {
	font-family:Tahoma,Geneva,Arial,Helvetica,sans-serif;
	font-size:12px;
	border:1px solid #66CCFF;
}

.profile input[type="text"],
.profile input[type="password"],
.profile select.cc_type {
	width: 140px;
	height: 19px;
	padding: 5px 5px 0;
}

.profile textarea {
	width: 275px;
	height: 100px;
	padding: 0 0 0 5px;
}
.facebook, .twitter, .linkedin {
	background-repeat: no-repeat;
	background-position: 2px 2px;
	padding-left: 24px !important;
	width: 121px !important;
}

.facebook {
	background-image: url(../images/icon_facebook.png);
}

.linkedin {
	background-image: url(../images/icon_linkedin.png);
}

.twitter {
	background-image: url(../images/icon_twitter.png);
}
