/**
* CSS which is used on the front-end and the admin
**/


a img {
	border-style: none;
}


/**
* Notification list
**/
ul.messages {
	padding: 0;
	margin: 0 0 15px 0;
	list-style-type: none;
	font-family: arial, sans-serif;
	font-size: 12px;
	zoom: 1;
}
	ul.messages li {
		display: block;
		vertical-align: bottom;
		margin: 0;
		padding: 5px 10px;
		font-size: 14px;
		list-style-type: none;
	}
	ul.messages li.confirm {
		color: #005201;
	}
	ul.messages li.error {
		color: #52000B;
	}
	ul.messages li span.action-link {
		padding-left: 25px;
	}


/**
* Notification box
**/
div#notification-box {
	padding: 20px;
}
	div#notification-box-links {
		width: auto !important;
		position: static !important;
		padding: 20px !important;
	}
	#notification-box-links {
		text-align: center;
	}
	#notification-box-links a {
		margin: 0 10px 0 0;
		font-family: 'Lucida Grande', Verdana, helvetica, arial, sans-serif;
	}


/**
* Refine bar
**/
div.refine-bar {
	background-color: #EFFFF9;
	border: 1px #333 solid;
	padding: 0px;
	zoom: 1;
	min-height: 53px;
}

div.refine-bar div.refine-add {
	float: left;
	width: 180px;
	padding: 10px;
}

	div.refine-bar div.refine-add select {
		width: 180px;
	}
	
	div.refine-bar div.refine-add optgroup {
		margin-top: 5px;
	}
	
	div.refine-bar div.refine-add optgroup option {
		padding-left: 15px;
	}
	
div.refine-bar div.refine-list {
	float: left;
	width: 415px;
	padding: 10px;
}

	div.refine-bar div.refine-list > div {
		padding: 2px;
	}
	
	div.refine-bar b {
		padding-top: 6px;
		width: 135px;
		float: left;
	}
	
	div.refine-bar div.refine-list input {
		width: 130px;
		float: left;
	}
	
	div.refine-bar div.refine-list select {
		width: 140px;
		float: left;
	}
	
	div.refine-bar div.refine-list .remove {
		margin: 6px 0 0 6px;
		cursor: pointer;
		display: inline-block;
	}
		div.refine-bar div.refine-list div._added_after .remove {
			margin: 0 0 0 6px;
			position: relative;
			top: -6px;
		
		}

	div.refine-bar div.refine-list a.dp-choose-date {
		margin: 5px 5px 0!important;
	}

	div.refine-bar div.refine-list input.datepicker.wd,
	div.refine-bar div.refine-list input.datepicker.wm  {
		width:2em!important;
	}

	div.refine-bar div.refine-list input.datepicker.wy  {
		width:3em!important;
	}

div.refine-bar .fb-widget-datepicker {
	display: inline-block;
}

div.refine-bar div.refine-submit {
	float: left;
	width: 200px;
	padding: 10px;
}


/* Toggle strips */
.toggle-strip {}

	.toggle-strip .ts-item {
		background: #fff;
		border: 1px #888 solid;
		box-shadow: 1px 1px 1px #ccc;
		float: left;
		padding: 5px 10px;
		margin-left: -1px;
		cursor: pointer;
	}
	
	.toggle-strip .ts-over {
		background: #eee;
	}
	
	.toggle-strip .ts-on {
		background: #bbb;
	}
	
	.toggle-strip .ts-first {
		border-radius: 4px 0 0 4px;
		-moz-border-radius: 4px 0 0 4px;
		-webkit-border-radius: 4px 0 0 4px;
	}
	
	.toggle-strip .ts-last {
		border-radius: 0 4px 4px 0;
		-moz-border-radius: 0 4px 4px 0;
		-webkit-border-radius: 0 4px 4px 0;
	}


.widget-hasinfobox {
	position: relative;
}

	.widget-hasinfobox:hover {
		outline: 1px #999 dotted;
	}
	
	.widget-infobox {
		display: none;
		position: absolute;
		top: 0; right: 0;
		padding: 5px 10px;
		background: #CCC;
		color: #000;
		font-size: 12px;
		font-family: sans-serif;
	}
	
	.widget-hasinfobox:hover > .widget-infobox {
		display: block;
	}


/**
* If a dev has forgotten to use `content_replace::html` when outputting a HTML field
* the addon tag will ge output to the browser. In this case, hide it.
**/
addon {
	display: none;
}


/**
* Debugging - always show PREs in a readable fashion
**/
pre {
	text-align: left;
	background-color: white;
	color: black;
	padding: 10px;
	margin: 5px;
	font-size: 11px;
	border: 1px #CCC solid;
}

