/**
 * @file
 * Form Styling
 */


.form-item { /* Wrapper for a form element (or group of form elements) and its label */
  margin: 1.5em 0;
}

.form-item input.error,
.form-item textarea.error,
.form-item select.error { /* Highlight the form elements that caused a form submission error */
  border: 1px solid #c00;
}

.form-item label { /* The label for a form element */
  display: block;
  font-weight: bold;
}

.form-item label.option { /* The label for a radio button or checkbox */
  display: inline;
  font-weight: normal;
}

.form-required { /* The part of the label that indicates a required field */
  color: #c00;
}

.form-item .description { /* The descriptive help text (separate from the label) */
  font-size: 0.85em;
}

.form-checkboxes .form-item,
.form-radios .form-item { /* Pack groups of checkboxes and radio buttons closer together */
  margin: 0; /* Drupal core uses "0.4em 0" */
}

.form-submit { /* The submit button */
}

.container-inline div,
.container-inline label { /* Inline labels and form divs */
  display: inline;
}

.tips { /* Tips for Drupal's input formats */
}


input[type=submit] { margin-right: .5em; }

/* shiny buttons from style tile */

input[type=submit],
button,
.button,
.button:link,
.button:visited,
.buttons a,
.buttons a:link,
.buttons a:visited{ /* Buttons used by contrib modules like Media */
	border:1px solid #205f7a;                /*box model*/
	margin-bottom:1.262201279030629em;  /*15/11.884*/
	padding: 5px .5em;
	display: inline-block;                   /*layout*/
	color: #333;                             /*typography*/
	font-weight:normal;
	text-shadow: 0 1px 0 hsla(200, 26%, 93%, .5);
	background-color: #bccfd7;                /*backgrounds & borders*//*IE 9 fallback*/
	border-radius: 3px;
	box-shadow: 0 2px 2px hsla(0,0%,0%,.25);  /*miscelaneous*/
	-webkit-transition: all .1s ease-in-out;  /*Safari 6, Chrome 25*/
	   -moz-transition: all .1s ease-in-out;  /*Firefox 15*/
	     -o-transition: all .1s ease-in-out;  /*Opera 12*/
	        transition: all .1s ease-in-out;  /*w3c*/
	/*-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;*/
}

td input[type=submit],
td button,
td .button,
td .button:link,
td .button:visited,
td .buttons a,
td .buttons a:link,
td .buttons a:visited {
  margin-bottom: 0;
}

td .b

input[type=submit]:hover,
button:hover,
.button:hover,
button:focus,
.button:focus,
.buttons a:hover,
.buttons a:focus{
	color:#205f7a;             /*typography*/
	background-color:#e9eff2;  /*backgrounds & borders*//*IE 9 fallback*/
	-webkit-transition: all .1s ease-in-out;  /*Safari 6, Chrome 25*/  /*misc*/
	   -moz-transition: all .1s ease-in-out;  /*Firefox 15*/
	     -o-transition: all .1s ease-in-out;  /*Opera 12*/
	        transition: all .1s ease-in-out;  /*w3c*/
}

input[type=submit]:focus,
button:focus,
.button:focus,
.buttons a:focus{
	border-color:#333;
	outline-width:0;
}

input[type=submit]:active,
button:active,
.button:active,
.buttons a:active{
	text-shadow: none;
	background-color:#bccfd7;                      /*backgrounds & borders*//*IE 9 fallback*/
	outline-width: 0;
	box-shadow: inset 0 1px 2px hsla(0,0%,0%,.25);  /*miscellaneous*/
}
button[disabled],
input[disabled],
.is-disabled,
.is-disabled:link,
.is-disabled:visited,
.is-disabled:hover,
.is-disabled:active,
.buttons .is-disabled,
.buttons .is-disabled:link,
.buttons .is-disabled:visited,
.buttons .is-disabled:hover,
.buttons .is-disabled:active,
.form-button-disabled {
	border-color: #999;
	color: #999;
	text-shadow: 0 1px 0 hsla(200, 26%, 93%, .5);
	box-shadow: inset 0 1px 1px hsla(0, 0%, 0%, .15);
	cursor: not-allowed;
}

.prime,
.prime:link,
.prime:visited,
.buttons .prime,
.buttons .prime:link,
.buttons .prime:visited {
	border: 1px solid #46502b; /*box model*/
	color: #fff; /*typography*/
	text-shadow: 0 -1px 0 hsla(76, 30%, 24%, .5);
	background-color: hsl(76, 30%, 48%);
}
/*backgrounds & borders*//*IE 9 fallback*/
.prime:hover,
.prime:focus,
.buttons .prime:hover,
.buttons .prime:focus{
	color: #fff;
	background-color:hsl(76, 30%, 58%);  /*backgrounds & borders*//*IE 9 fallback*/
}
.prime:focus,
.buttons .prime:focus{
	color:#333;
}
.prime:active,
.buttons .prime:active{
	background-color: #6f853c;                                                /*IE 9 fallback*/

}
.prime[disabled],
.prime.is-disabled,
.prime.is-disabled:link,
.prime.is-disabled:visited,
.prime.is-disabled:hover,
.prime.is-disabled:active{
	border-color: #999;  /*box model*/
	color: #ccc;         /*typography*/
	text-shadow: 0 -1px 0 hsla(76, 30%, 24%, .5);
}

/*
 * Password confirmation
 */

.password-parent,
.confirm-parent {
  margin: 0;
}

/*
 * Search (search-block-form.tpl.php)
 */

#block-search-form { /* Wrapper for the search form */
}

/*
 * Drupal's default login form block
 */

#user-login-form {
  text-align: left; /* LTR */
}

/*
 * OpenID
 *
 * The default styling for the OpenID login link seems to assume Garland's
 * styling of list items.
 */

#user-login-form ul { /* OpenID creates a new ul above the login form's links. */
  margin-bottom: 0; /* Position OpenID's ul next to the rest of the links. */
}

html.js #user-login-form li.openid-link,
#user-login-form li.openid-link { /* The "Log in using OpenID" link. */
  margin-top: 1.5em;
  margin-left: -20px; /* LTR */ /* Un-do some of the padding on the ul list. */
}

#user-login-form li.user-link { /* The "Cancel OpenID login" link. */
  margin-top: 1.5em;
}

#user-login ul {
  margin: 1.5em 0;
}

/*
 * Drupal admin tables
 *
 * We overrode these styles in normalize.css, but restore them for the admin
 * section of the site.
 */

form th {
  text-align: left; /* LTR */
  padding-right: 1em; /* LTR */
  border-bottom: 3px solid #ccc;
}

form tbody {
  border-top: 1px solid #ccc;
}

form tr.even {
  background-color: #fff;
}

form table .item-list ul {
  margin: 0;
}

.lt-ie8 tr.even th,
.lt-ie8 tr.even td,
.lt-ie8 tr.odd th,
.lt-ie8 tr.odd td {
  border-bottom: 1px solid #ccc; /* IE doesn't display borders on table rows */
}

/*
 * Drupal core wrongly puts this in system.menus.css. Since we override that, add it back.
 */

td.menu-disabled {
  background: #ccc;
}
