/* FONT STACK */
body,
input, select, textarea {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

/* BASE LAYOUT */

html {
	background-color: #ddd;
	background-image: -moz-linear-gradient(center top, #aaa, #ddd);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #aaa), color-stop(1, #ddd));
	background-image: linear-gradient(top, #aaa, #ddd);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr = '#aaaaaa', EndColorStr = '#dddddd');
	background-repeat: no-repeat;
	height: 100%;
	/* change the box model to exclude the padding from the calculation of 100% height (IE8+) */
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

html.no-cssgradients {
	background-color: #aaa;
}

.ie6 html {
	height: 100%;
}

html * {
	margin: 0;
}

body {
	background: #ffffff;
	color: #333333;
	margin: 0 auto;
	max-width: 960px;
	overflow-x: hidden; /* prevents box-shadow causing a horizontal scrollbar in firefox when viewport < 960px wide */
	   -moz-box-shadow: 0 0 0.3em #255b17;
	-webkit-box-shadow: 0 0 0.3em #255b17;
	        box-shadow: 0 0 0.3em #255b17;
}

#banner {
	background-image: url(../images/sunset_banner.JPG);
    background-size:960px 176px;
    background-repeat:no-repeat;
    /*color: #48802c;*/
    /*font-weight: bold;*/
    /*font-size: 2.25em;*/
    margin: 0.8em 0 0.3em 0;
}

/* replace with .no-boxshadow body if you have modernizr available */
.ie6 body,
.ie7 body,
.ie8 body {
	border-color: #255b17;
	border-style: solid;
	border-width: 0 1px;
}

.ie6 body {
	height: 100%;
}

a:link, a:visited, a:hover {
	color: #48802c;
}

a:hover, a:active {
	outline: none; /* prevents outline in webkit on active links but retains it for tab focus */
}

h1 {
	color: black;
	font-weight: normal;
	font-size: 1.25em;
	margin: 0.8em 0 0.3em 0;
    padding-left: 0.75em;
}

ul {
	padding: 0;
}

img {
	border: 0;
}

/* GENERAL */

/*#grailsLogo a {*/
	/*display: inline-block;*/
	/*margin: 1em;*/
/*}*/

.content {
}

.content h1 {
	border-bottom: 1px solid #CCCCCC;
	margin: 0.8em 1em 0.3em;
	padding: 0 0.25em;
}

.scaffold-list h1 {
	border: none;
}

.footer a {
	color: #255b17;
}

.spinner {
	background: url(../images/spinner.gif) 50% 50% no-repeat transparent;
	height: 16px;
	width: 16px;
    padding: 0.5em;
    position: absolute;
    right: 0;
	top: 0;
	text-indent: -9999px;
}

/* NAVIGATION MENU */

.nav {
	background-color: #efefef;
	padding: 0.5em 0.75em;
	   -moz-box-shadow: 0 0 3px 1px #aaaaaa;
	-webkit-box-shadow: 0 0 3px 1px #aaaaaa;
	        box-shadow: 0 0 3px 1px #aaaaaa;
	zoom: 1;
}

.nav ul {
	overflow: hidden;
	padding-left: 0;
	zoom: 1;
}

.nav li {
	display: block;
	float: left;
	list-style-type: none;
	margin-right: 0.5em;
	padding: 0;
}

.nav a {
	color: #666666;
	display: block;
	padding: 0.25em 0.7em;
	text-decoration: none;
	   -moz-border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	        border-radius: 0.3em;
}

.nav a:active, .nav a:visited {
	color: #666666;
}

.nav a:focus, .nav a:hover {
	background-color: #999999;
	color: #ffffff;
	outline: none;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.no-borderradius .nav a:focus, .no-borderradius .nav a:hover {
	background-color: transparent;
	color: #444444;
	text-decoration: underline;
}

.nav a.home, .nav a.list, .nav a.create {
	background-position: 0.7em center;
	background-repeat: no-repeat;
	text-indent: 25px;
}

.nav a.home {
	background-image: url(../images/skin/house.png);
}

.nav a.list {
	background-image: url(../images/skin/database_table.png);
}

.nav a.create {
	background-image: url(../images/skin/database_add.png);
}

/* CREATE/EDIT FORMS AND SHOW PAGES */

fieldset,
.property-list {
	margin: 0.6em 1.25em 0 1.25em;
	padding: 0.3em 1.8em 1.25em;
	position: relative;
	zoom: 1;
	border: none;
}

.property-list .fieldcontain {
	list-style: none;
	overflow: hidden;
	zoom: 1;
}

.fieldcontain {
	margin-top: 1em;
}

.fieldcontain label,
.fieldcontain .property-label {
	color: #666666;
	text-align: right;
	width: 25%;
}

.fieldcontain .property-label {
	float: left;
}

.fieldcontain .property-value {
	display: block;
	margin-left: 27%;
}

label {
	cursor: pointer;
	display: inline-block;
	margin: 0 0.25em 0 0;
}

input, select, textarea {
	background-color: #fcfcfc;
	border: 1px solid #cccccc;
	font-size: 1em;
	padding: 0.2em 0.4em;
}

select {
	padding: 0.2em 0.2em 0.2em 0;
}

select[multiple] {
	vertical-align: top;
}

textarea {
	width: 250px;
	height: 150px;
	overflow: auto; /* IE always renders vertical scrollbar without this */
	vertical-align: top;
}

input[type=checkbox], input[type=radio] {
	background-color: transparent;
	border: 0;
	padding: 0;
}

input:focus, select:focus, textarea:focus {
	background-color: #ffffff;
	border: 1px solid #eeeeee;
	outline: 0;
	   -moz-box-shadow: 0 0 0.5em #ffffff;
	-webkit-box-shadow: 0 0 0.5em #ffffff;
	        box-shadow: 0 0 0.5em #ffffff;
}

.required-indicator {
	color: #48802C;
	display: inline-block;
	font-weight: bold;
	margin-left: 0.3em;
	position: relative;
	top: 0.1em;
}

ul.one-to-many {
	display: inline-block;
	list-style-position: inside;
	vertical-align: top;
}

.ie6 ul.one-to-many, .ie7 ul.one-to-many {
	display: inline;
	zoom: 1;
}

ul.one-to-many li.add {
	list-style-type: none;
}

/* EMBEDDED PROPERTIES */

fieldset.embedded {
	background-color: transparent;
	border: 1px solid #CCCCCC;
	padding-left: 0;
	padding-right: 0;
	   -moz-box-shadow: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

fieldset.embedded legend {
	margin: 0 1em;
}

/* MESSAGES AND ERRORS */

.errors,
.message {
	font-size: 0.8em;
	line-height: 2;
	margin: 1em 2em;
	padding: 0.5em;
}

.message {
	background: #f3f3ff;
	border: 1px solid #b2d1ff;
	color: #006dba;
	   -moz-box-shadow: 0 0 0.25em #b2d1ff;
	-webkit-box-shadow: 0 0 0.25em #b2d1ff;
	        box-shadow: 0 0 0.25em #b2d1ff;
}

.errors {
	background: #fff3f3;
	border: 1px solid #ffaaaa;
	color: #cc0000;
	   -moz-box-shadow: 0 0 0.25em #ff8888;
	-webkit-box-shadow: 0 0 0.25em #ff8888;
	        box-shadow: 0 0 0.25em #ff8888;
}

.errors ul,
.message {
	padding: 0;
}

.errors li {
	list-style: none;
	background: transparent url(../images/skin/exclamation.png) 0 50% no-repeat;
	text-indent: 22px;
}

.message {
	background: transparent url(../images/skin/information.png) 0 50% no-repeat;
	text-indent: 22px;
}

/* form fields with errors */

.error input, .error select, .error textarea {
	background: #fff3f3;
	border-color: #ffaaaa;
	color: #cc0000;
}

.error input:focus, .error select:focus, .error textarea:focus {
	   -moz-box-shadow: 0 0 0.5em #ffaaaa;
	-webkit-box-shadow: 0 0 0.5em #ffaaaa;
	        box-shadow: 0 0 0.5em #ffaaaa;
}

/* same effects for browsers that support HTML5 client-side validation (these have to be specified separately or IE will ignore the entire rule) */

input:invalid, select:invalid, textarea:invalid {
	background: #fff3f3;
	border-color: #ffaaaa;
	color: #cc0000;
}

input:invalid:focus, select:invalid:focus, textarea:invalid:focus {
	   -moz-box-shadow: 0 0 0.5em #ffaaaa;
	-webkit-box-shadow: 0 0 0.5em #ffaaaa;
	        box-shadow: 0 0 0.5em #ffaaaa;
}

/* TABLES */

table {
	/*border-top: 1px solid #DFDFDF;*/
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 1em;
}

tr {
	border: 0;
}

tr>td:first-child, tr>th:first-child {
	padding-left: 1.25em;
}

tr>td:last-child, tr>th:last-child {
	padding-right: 1.25em;
}

td, th {
	line-height: 1.5em;
	padding: 0.5em 0.6em;
	text-align: left;
	vertical-align: top;
}

th {
	background-color: #efefef;
	background-image: -moz-linear-gradient(top, #ffffff, #eaeaea);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #eaeaea));
	    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr = '#ffffff', EndColorStr = '#eaeaea');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', EndColorStr='#eaeaea')";
	color: #666666;
	font-weight: bold;
	line-height: 1.7em;
	padding: 0.2em 0.6em;
}

thead th {
	white-space: nowrap;
}

th a {
	display: block;
	text-decoration: none;
}

th a:link, th a:visited {
	color: #666666;
}

th a:hover, th a:focus {
	color: #333333;
}

th.sortable a {
	background-position: right;
	background-repeat: no-repeat;
	padding-right: 1.1em;
}

th.asc a {
	background-image: url(../images/skin/sorted_asc.gif);
}

th.desc a {
	background-image: url(../images/skin/sorted_desc.gif);
}

.odd {
	background: #f7f7f7;
}

.even {
	background: #ffffff;
}

/*th:hover, tr:hover {*/
	/*background: #E1F2B6;*/
/*}*/

/* PAGINATION */

.pagination {
	border-top: 0;
	margin: 0;
	padding: 0.3em 0.2em;
	text-align: center;
	   -moz-box-shadow: 0 0 3px 1px #AAAAAA;
	-webkit-box-shadow: 0 0 3px 1px #AAAAAA;
	        box-shadow: 0 0 3px 1px #AAAAAA;
	background-color: #EFEFEF;
}

.pagination a,
.pagination .currentStep {
	color: #666666;
	display: inline-block;
	margin: 0 0.1em;
	padding: 0.25em 0.7em;
	text-decoration: none;
	   -moz-border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	        border-radius: 0.3em;
}

.pagination a:hover, .pagination a:focus,
.pagination .currentStep {
	background-color: #999999;
	color: #ffffff;
	outline: none;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.no-borderradius .pagination a:hover, .no-borderradius .pagination a:focus,
.no-borderradius .pagination .currentStep {
	background-color: transparent;
	color: #444444;
	text-decoration: underline;
}

/* ACTION BUTTONS */

.buttons {
	background-color: #efefef;
	overflow: hidden;
	padding: 0.3em;
	   -moz-box-shadow: 0 0 3px 1px #aaaaaa;
	-webkit-box-shadow: 0 0 3px 1px #aaaaaa;
	        box-shadow: 0 0 3px 1px #aaaaaa;
	margin: 0.1em 0 0 0;
	border: none;
}

.buttons input,
.buttons a {
	background-color: transparent;
	border: 0;
	color: #666666;
	cursor: pointer;
	display: inline-block;
	margin: 0 0.25em 0;
	overflow: visible;
	padding: 0.25em 0.7em;
	text-decoration: none;

	   -moz-border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	        border-radius: 0.3em;
}

.buttons input:hover, .buttons input:focus,
.buttons a:hover, .buttons a:focus {
	background-color: #999999;
	color: #ffffff;
	outline: none;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
	   -moz-box-shadow: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.no-borderradius .buttons input:hover, .no-borderradius .buttons input:focus,
.no-borderradius .buttons a:hover, .no-borderradius .buttons a:focus {
	background-color: transparent;
	color: #444444;
	text-decoration: underline;
}

.buttons .delete, .buttons .edit, .buttons .save {
	background-position: 0.7em center;
	background-repeat: no-repeat;
	text-indent: 25px;
}

.buttons .delete {
	background-image: url(../images/skin/database_delete.png);
}

.buttons .edit {
	background-image: url(../images/skin/database_edit.png);
}

.buttons .save {
	background-image: url(../images/skin/database_save.png);
}

a.skip {
	position: absolute;
	left: -9999px;
}
.submit-button {
    -moz-box-shadow: 0px 0px .75em #ccc;
    -webkit-box-shadow: 0px 0px .75em #ccc;
    box-shadow: 0px 0px .75em #ccc;
    -moz-border-radius: 0.6em;
    -webkit-border-radius: 0.6em;
    border-radius: 0.6em;
    margin: 1em;
    height: 2em;
    width: 7em;
    background-color: #ffe1e3;
    cursor : pointer;
}

.b-select {
    width: 5em;
}

//CSS JQUERY OVERRIDE
body {
      font-size: 62.5%;
  }
table {
    font-size: 1em;
}
body {
    font-family: "Verdana","Helvetica","Arial","sans-serif";
}
.layout-grid {
    width: 960px;
}
.layout-grid td {
    vertical-align: top;
}
.layout-grid td.left-nav {
    width: 140px;
}
.layout-grid td.normal {
    border-left: 1px solid #EEEEEE;
    font-family: "Helvetica","Arial","Verdana","sans-serif";
    padding: 20px 24px;
}
.layout-grid td.demos {
    background: url("/images/demos_bg.jpg") no-repeat scroll 0 0 transparent;
    height: 337px;
    overflow: hidden;
}
.normal h3, .normal h4 {
    font-weight: normal;
    margin: 0;
}
.normal h3 {
    font-size: 1.8em;
    padding: 0 0 9px;
}
.normal h4 {
    border-bottom: 1px dashed #999999;
    font-size: 1.2em;
    font-weight: bold;
    padding-bottom: 21px;
}
.normal p {
    font-size: 1.2em;
}
.demos-nav, .demos-nav dt, .demos-nav dd, .demos-nav ul, .demos-nav li {
    margin: 0;
    padding: 0;
}
.demos-nav {
    float: left;
    font-size: 1.3em;
    width: 170px;
}
.demos-nav dt, .demos-nav h4 {
    color: #E87B10;
    font: 1.1em "Helvetica","Arial","Verdana","sans-serif";
    margin: 0;
    padding: 0;
}
.demos-nav dt, .demos-nav h4 {
    border-bottom: 1px solid #F4F4F4;
    line-height: 1.2em;
    margin-bottom: 0;
    margin-top: 1.5em;
    padding-bottom: 5px;
    padding-left: 8px;
}
.demos-nav dd a, .demos-nav li a {
    border-bottom: 1px solid #F4F4F4;
    color: #555555;
    display: block;
    font-size: 90%;
    height: 13px;
    margin: 2px 0;
    padding: 4px 3px 4px 8px;
    text-decoration: none;
}
.demos-nav dd a:hover, .demos-nav dd a:focus, .demos-nav dd a:hover, .demos-nav dd a:focus {
    background: none repeat scroll 0 0 #F3F3F3;
    border-radius: 5px 5px 5px 5px;
    color: #000000;
}
.demos-nav dd a.selected {
    background: none repeat scroll 0 0 #555555;
    border-radius: 5px 5px 5px 5px;
    color: #FFFFFF;
}
.normal h3.demo-header {
    border-bottom: 1px solid #EEEEEE;
    font-size: 32px;
    padding: 0 0 5px;
    text-transform: capitalize;
}
.normal h4.demo-subheader {
    border: 0 none;
    color: #999999;
    font-size: 10px;
    margin: 0;
    padding: 8px 0 3px;
    text-transform: uppercase;
}
.normal a:link, .normal a:visited {
    color: #1B75BB;
    text-decoration: none;
}
.normal a:hover, .normal a:active {
    color: #0B559B;
}
#demo-config {
    padding: 20px 0 0;
}
#demo-frame {
    border: 1px solid #DDDDDD;
    float: left;
    height: 380px;
    overflow: auto;
    position: relative;
    width: 540px;
}
#demo-frame h3, #demo-frame h4 {
    font-size: 1em;
    font-weight: bold;
    padding: 0;
}
#demo-config-menu {
    float: right;
    width: 180px;
}
#demo-config-menu h4 {
    border: 0 none;
    color: #666666;
    font-size: 13px;
    font-weight: normal;
    padding-left: 18px;
}
#demo-config-menu ul {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}
#demo-config-menu li {
    font-size: 12px;
    margin: 3px 0;
    padding: 0 0 0 10px;
}
#demo-config-menu li a:link, #demo-config-menu li a:visited {
    border-bottom: 1px dotted #B3B3B3;
    display: block;
    padding: 1px 8px 4px;
}
* html #demo-config-menu li a:link, * html #demo-config-menu li a:visited {
    padding: 1px 8px 2px;
}
#demo-config-menu li a:hover, #demo-config-menu li a:active {
    background-color: #F6F6F6;
}
#demo-config-menu li.demo-config-on {
    background: url("/images/demo-config-on-tile.gif") repeat-x scroll left center transparent;
}
#demo-config-menu li.demo-config-on a:link, #demo-config-menu li.demo-config-on a:visited, #demo-config-menu li.demo-config-on a:hover, #demo-config-menu li.demo-config-on a:active {
    background: url("/images/demo-config-on.gif") no-repeat scroll left center transparent;
    border: 0 none;
    color: #FFFFFF;
    margin-bottom: 0;
    margin-left: -10px;
    margin-top: 0;
    padding-left: 18px;
}
#demo-source, #demo-notes {
    clear: both;
    font-size: 1.3em;
    padding: 20px 0 0;
}
#demo-notes {
    color: #333333;
    font-size: 1em;
    width: 520px;
}
#demo-notes p code, .demo-description p code {
    font-weight: bold;
    padding: 0;
}
#demo-source pre, #demo-source code {
    padding: 0;
}
code, pre {
    font-size: 1.2em;
    line-height: 130%;
    padding: 8px 0 8px 20px;
}
#demo-source a:link, #demo-source a:visited, #demo-source a:hover, #demo-source a:active {
    background-position: left center;
    background-repeat: no-repeat;
    font-size: 12px;
    padding-left: 13px;
}
#demo-source a.source-open:link, #demo-source a.source-open:visited, #demo-source a.source-open:hover, #demo-source a.source-open:active {
    background-image: url("/images/demo-spindown-open.gif");
}
#demo-source a.source-closed:link, #demo-source a.source-closed:visited, #demo-source a.source-closed:hover, #demo-source a.source-closed:active {
    background-image: url("/images/demo-spindown-closed.gif");
}
div.demo {
    font-family: "Arial","Helvetica","Verdana","sans-serif";
    padding: 12px;
}
div.demo h3.docs {
    clear: left;
    font-size: 12px;
    font-weight: normal;
    margin: 0;
    padding: 0 0 1em;
}
div.demo-description {
    clear: both;
    font-family: Arial","Helvetica","Verdana","sans-serif";
    font-size: 1.3em;
    line-height: 1.4em;
    padding: 12px;
}
.ui-draggable, .ui-droppable {
    background-position: left top;
}
.left-nav .demos-nav {
    padding-right: 10px;
}
#demo-link {
    clear: both;
    font-size: 11px;
    overflow: hidden;
    padding-top: 6px;
}
#demo-link a span.ui-icon {
    float: left;
    margin-right: 3px;
}
#widget-docs .ui-widget {
    font-family: Verdana,Arial,sans-serif;
    font-size: 1em;
}
#widget-docs .ui-widget input, #widget-docs .ui-widget select, #widget-docs .ui-widget textarea, #widget-docs .ui-widget button {
    font-family: Verdana,Arial,sans-serif;
    font-size: 1em;
}
#widget-docs .ui-widget-header {
    background: url("/images/464646_40x100_textures_01_flat_100.png") repeat-x scroll 50% 50% #464646;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    font-weight: bold;
}
#widget-docs .ui-widget-header a {
    color: #FFFFFF;
}
#widget-docs .ui-widget-content {
    background: url("/images/ffffff_40x100_textures_01_flat_75.png") repeat-x scroll 50% 50% #FFFFFF;
    border: 1px solid #FFFFFF;
    color: #222222;
}
#widget-docs .ui-widget-content a {
    color: #222222;
}
#widget-docs .ui-state-default, #widget-docs .ui-widget-content #widget-docs .ui-state-default {
    background: url("/images/555555_40x100_textures_03_highlight_soft_75.png") repeat-x scroll 50% 50% #555555;
    border: 1px solid #666666;
    color: #FFFFFF;
    font-weight: normal;
    outline: medium none;
}
#widget-docs .ui-state-default a {
    color: #FFFFFF;
    outline: medium none;
    text-decoration: none;
}
#widget-docs .ui-state-hover, #widget-docs .ui-widget-content #widget-docs .ui-state-hover, #widget-docs .ui-state-focus, #widget-docs .ui-widget-content #widget-docs .ui-state-focus {
    background: url("/images/444444_40x100_textures_03_highlight_soft_60.png") repeat-x scroll 50% 50% #444444;
    border: 1px solid #666666;
    color: #FFFFFF;
    font-weight: normal;
    outline: medium none;
}
#widget-docs .ui-state-hover a {
    color: #FFFFFF;
    outline: medium none;
    text-decoration: none;
}
#widget-docs .ui-state-active, #widget-docs .ui-widget-content #widget-docs .ui-state-active {
    background: url("/images/ffffff_40x100_textures_01_flat_65.png") repeat-x scroll 50% 50% #FFFFFF;
    border: 1px solid #666666;
    color: #F6921E;
    font-weight: normal;
    outline: medium none;
}
#widget-docs .ui-state-active a {
    color: #F6921E;
    outline: medium none;
    text-decoration: none;
}
#widget-docs .ui-state-highlight, #widget-docs .ui-widget-content #widget-docs .ui-state-highlight {
    background: url("/images/fbf9ee_40x100_textures_02_glass_55.png") repeat-x scroll 50% 50% #FBF9EE;
    border: 1px solid #FCEFA1;
    color: #363636;
}
#widget-docs .ui-state-error, #widget-docs .ui-widget-content #widget-docs .ui-state-error {
    background: url("/images/fef1ec_40x100_textures_05_inset_soft_95.png") repeat-x scroll 50% bottom #FEF1EC;
    border: 1px solid #CD0A0A;
    color: #CD0A0A;
}
#widget-docs .ui-state-error-text, #widget-docs .ui-widget-content #widget-docs .ui-state-error-text {
    color: #CD0A0A;
}
#widget-docs .ui-state-disabled, #widget-docs .ui-widget-content #widget-docs .ui-state-disabled {
    background-image: none;
    opacity: 0.35;
}
#widget-docs .ui-priority-primary, #widget-docs .ui-widget-content #widget-docs .ui-priority-primary {
    font-weight: bold;
}
#widget-docs .ui-priority-secondary, #widget-docs .ui-widget-content #widget-docs .ui-priority-secondary {
    font-weight: normal;
    opacity: 0.7;
}
#demo-frame-wrapper .ui-icon, #widget-docs .ui-icon {
    background-image: url("/images/222222_256x240_icons_icons.png");
    height: 16px;
    width: 16px;
}
#widget-docs .ui-widget-content .ui-icon {
    background-image: url("/images/222222_256x240_icons_icons.png");
}
#widget-docs .ui-widget-header .ui-icon {
    background-image: url("/images/222222_256x240_icons_icons.png");
}
#widget-docs .ui-state-default .ui-icon {
    background-image: url("/images/888888_256x240_icons_icons.png");
}
#widget-docs .ui-state-hover .ui-icon, #widget-docs .ui-state-focus .ui-icon {
    background-image: url("/images/454545_256x240_icons_icons.png");
}
#widget-docs .ui-state-active .ui-icon {
    background-image: url("/images/454545_256x240_icons_icons.png");
}
#widget-docs .ui-state-highlight .ui-icon {
    background-image: url("/images/2e83ff_256x240_icons_icons.png");
}
#widget-docs .ui-state-error .ui-icon, #widget-docs .ui-state-error-text .ui-icon {
    background-image: url("/images/cd0a0a_256x240_icons_icons.png");
}
#widget-docs .ui-corner-tl {
    border-top-left-radius: 4px;
}
#widget-docs .ui-corner-tr {
    border-top-right-radius: 4px;
}
#widget-docs .ui-corner-bl {
    border-bottom-left-radius: 4px;
}
#widget-docs .ui-corner-br {
    border-bottom-right-radius: 4px;
}
#widget-docs .ui-corner-top {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
#widget-docs .ui-corner-bottom {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
#widget-docs .ui-corner-right {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}
#widget-docs .ui-corner-left {
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
}
#widget-docs .ui-corner-all {
    border-radius: 4px 4px 4px 4px;
}
#widget-docs .ui-widget-overlay {
    background: url("/images/aaaaaa_40x100_textures_01_flat_0.png") repeat-x scroll 50% 50% #AAAAAA;
    opacity: 0.3;
}
#widget-docs .ui-widget-shadow {
    background: url("/images/aaaaaa_40x100_textures_01_flat_0.png") repeat-x scroll 50% 50% #AAAAAA;
    border-radius: 8px 8px 8px 8px;
    margin: -8px 0 0 -8px;
    opacity: 0.3;
    padding: 8px;
}
#widget-docs {
    border: medium none;
    margin: 20px 0 0;
}
#widget-docs h2, #widget-docs h3, #widget-docs h4, #widget-docs p, #widget-docs ul, #widget-docs code {
    margin: 0;
    padding: 0;
}
#widget-docs code {
    color: #444444;
    display: block;
    font-size: 0.9em;
    margin: 0 0 1em;
}
#widget-docs code strong {
    color: #000000;
}
#widget-docs p {
    margin: 0 3em 1.2em 0;
}
#widget-docs p.intro {
    color: #666666;
    font-size: 13px;
    line-height: 1.3;
}
#widget-docs ul {
    list-style-type: none;
}
#widget-docs h2 {
    font-size: 16px;
    margin: 1.2em 0 0.5em;
}
#widget-docs h3 {
    color: #E6820E;
    font-size: 14px;
    margin: 1.5em 0 0.5em;
}
.normal #widget-docs h4 {
    border: 0 none;
    color: #000000;
    font-size: 12px;
    margin: 0 0 0.5em;
}
#docs-overview-main {
    width: 400px;
}
#docs-overview-sidebar {
    float: right;
    width: 200px;
}
#docs-overview-sidebar a span {
    color: #666666;
}
#widget-docs #docs-overview-main p {
    margin-right: 0;
}
#widget-docs #docs-overview-sidebar h4 {
    padding-left: 0;
}
.docs-list-header {
    border-bottom: 1px solid #EEEEEE;
    float: left;
    margin: 10px 0 0;
    width: 100%;
}
#widget-docs .docs-list-header h2 {
    float: left;
    margin: 0;
}
#widget-docs .docs-list-header p {
    float: right;
    font-size: 11px;
    margin: 5px 0;
}
.docs-list {
    float: left;
    padding: 0 0 10px;
    width: 100%;
}
.docs-list .param-header {
    border-top: 1px solid #EEEEEE;
    clear: left;
    float: left;
    padding: 8px 0;
    width: 100%;
}
#widget-docs .param-header h3, #widget-docs .param-header p {
    float: left;
    margin: 0;
}
#widget-docs .param-header h3 {
    width: 50%;
}
#widget-docs .param-header h3 span {
    background: url("/images/demo-spindown-closed.gif") no-repeat scroll left center transparent;
    padding-left: 13px;
}
#widget-docs .param-open .param-header h3 span {
    background: url("/images/demo-spindown-open.gif") no-repeat scroll left center transparent;
}
#widget-docs .param-header p {
    width: 24%;
}
#widget-docs .param-header p.param-type span {
    background: url("/images/icon-docs-info.gif") no-repeat scroll left center transparent;
    border-bottom: 1px dashed #CCCCCC;
    cursor: pointer;
    padding-left: 15px;
}
.param-details {
    padding-left: 13px;
}
.param-args {
    border-top: 1px dotted #CCCCCC;
    margin: 0 0 1.5em;
}
.param-args td {
    border-bottom: 1px dotted #CCCCCC;
    padding: 3px 30px 3px 5px;
}
#widget-docs ul.ui-tabs-nav {
    padding: 0 0 0 8px;
}
#widget-docs .ui-tabs-nav li {
    margin: 5px 5px 0 0;
}
#widget-docs .ui-tabs-nav li a:link, #widget-docs .ui-tabs-nav li a:visited, #widget-docs .ui-tabs-nav li a:hover, #widget-docs .ui-tabs-nav li a:active {
    color: #FFFFFF;
    font-size: 14px;
    padding: 4px 1.2em 3px;
}
#widget-docs .ui-tabs-nav li.ui-tabs-selected a:link, #widget-docs .ui-tabs-nav li.ui-tabs-selected a:visited, #widget-docs .ui-tabs-nav li.ui-tabs-selected a:hover, #widget-docs .ui-tabs-nav li.ui-tabs-selected a:active {
    color: #E6820E;
}
#widget-docs .ui-tabs-panel {
    color: #000000;
    font-size: 12px;
    line-height: 1.4;
    padding: 20px 9px;
}
#widget-docs .ui-widget-content a:link, #widget-docs .ui-widget-content a:visited {
    color: #1B75BB;
    text-decoration: none;
}
#widget-docs .ui-widget-content a:hover, #widget-docs .ui-widget-content a:active {
    color: #0B559B;
}

/*RENTAL SOLUTIONS*/
.column {
    float: left;
    width: 50%;
}
.center-contents {
        width: 100%;
        height: 100%;

        /* Firefox */
        display:-moz-box;
        -moz-box-orient:horizontal;
        -moz-box-pack:center;
        -moz-box-align:center;

        /* Safari and Chrome */
        display:-webkit-box;
        -webkit-box-orient:horizontal;
        -webkit-box-pack:center;
        -webkit-box-align:center;

        /* W3C */
        display:box;
        box-orient:horizontal;
        box-pack:center;
        box-align:center;

}

.prop-required::before {
    content: "*";
    display: inline;
}

.flash-message {
    background: #fff3f3;
    border: 1px solid #ffaaaa;
    color: #cc8224;
    -moz-box-shadow: 0 0 0.25em #ff8888;
    -webkit-box-shadow: 0 0 0.25em #ff8888;
    box-shadow: 0 0 0.25em #ff8888;
}

.thumb {
    border: 2px solid #d1d1d1;
    border-radius: 5px 5px 5px 5px;
    display: block;
    line-height: 0;
    padding: 2px;
    background: none repeat scroll 0 0 transparent !important;
    height: 60px;
    padding: 2px !important;
    width: 60px;
}

.featured-listing {
    padding-top: 1em;
    padding-bottom: 1em;
}
.featured-listing > .thumb{
    width: auto;
    height: auto;
    line-height: 1;
}
.featured-listing > .thumb > .headline{
    float:left;
}

.headline > p{
    padding: .4em 0;
    /*margin: .25em .25em .25em .25em;*/
    float:left;
    width:100%;
    font-size: .7em;
    margin: 0;
    /*padding-left: 0;*/
    /*padding-right: 0;*/
}
.layout {
    padding-top: 25px;
    padding-left: 1em;
    padding-right: 1em;
}

.chk {
    font-size: 1em;
}

/*.delete-icon {*/
    /*height:10px;*/
    /*width:10px;*/
    /*background-image: url("../images/delete_icon.png");*/
    /*background-repeat:no-repeat;*/
    /*text-indent: -9999px;*/
/*}*/