
.search-form {
  margin-bottom: 1em;
}
.search-form input {
  margin-top: 5px;
  margin-bottom: 0;
}
.search-results {
  list-style: none;
}
.search-results p {
  margin-top: 0;
}
.search-results .title {
  font-size: 1.2em;
}
.search-results li {
  margin-bottom: 1em;
}
.search-results .search-snippet-info {
  padding-left: 1em; /* LTR */
}
.search-results .search-info {
  font-size: 0.85em;
}
.search-advanced .criterion {
  float: left; /* LTR */
  margin-right: 2em; /* LTR */
}
.search-advanced .action {
  float: left; /* LTR */
  clear: left; /* LTR */
}
.search-advanced {
	margin-top: 10px;
}
legend {
	margin-bottom: 10px;
}
.fieldset-title {
	border-bottom: 1px dotted #000;
	margin: 10px 0;
}
.fieldset-title:hover {
	border-bottom: 1px dotted #E84A4A;
}
input {
	margin: 0;
    padding: 0 10px;
    display: block;
    line-height: 30px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 11px;
    color: #808080;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.form-submit {
	color: #FFF;
    background-color: #E84A4A;
	cursor: pointer;
	margin-top: 10px;
}
.form-text {
	width: 210px;
}
.description {
	font-size:9px;
	color: #bbb;
}
.label {
    padding-left: 5px;
    display: table-cell;
    vertical-align: middle;
}
.checkboxFive {
	width: 20px;
	/*margin: 20px 100px;*/
	position: relative;
	display: table-cell;
}

.checkboxFive input {
	margin: 0;
    padding: 0 10px;
    display: block;
    line-height: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 11px;
    color: #808080;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/**
 * Create the box for the checkbox
 */
 
.checkboxFive label {
	cursor: pointer;
	position: absolute;
	width: 20px;
	height: 20px;
	top: 0;
  	left: 0;
	background: #fff;
	line-height: 30px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 11px;
    color: #808080;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

/**
 * Display the tick inside the checkbox
 */
.checkboxFive label:after {
	opacity: 0.2;
	content: '';
	position: absolute;
	width: 9px;
	height: 5px;
	background: transparent;
	top: 3px;
	left: 3px;
	border: 3px solid #333;
	border-top: none;
	border-right: none;

	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/**
 * Create the hover event of the tick
 */
.checkboxFive label:hover::after {
	opacity: 0.5;
}

/**
 * Create the checkbox state for the tick
 */
.checkboxFive input[type=checkbox]:checked + label:after {
	opacity: 1;
}
