@charset "utf-8";
/* CSS Document */
/* copies 4/15/18 from https://www.w3schools.com/howto/howto_css_custom_checkbox.asp */

/*  * * * ** * * * * * *    FORM HANDLING STYLES    * * * * * * * * * * * */
.pageForm {
	padding-left: 30px;
	padding-right: 30px;
}

.contactFormPrintedBorder {
	padding-top: 20px;
	max-width: 500px;
	font-size: 0.95em; /*12px; */
	font-style: italic;
	text-align: center;
	padding-bottom: 10px;
	margin: auto;

	border-image-slice: 27 27 27 27;
	border-image-width: 20px 20px 20px 20px;
	border-image-outset: 0px 0px 0px 0px;
	border-image-repeat: stretch stretch;
	border-style: solid;
	border-image-source: url("/images/MenuItems/commentsBorderWhole.gif");

}
.columnContact {

    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
    -webkit-column-gap: 40px; /* Chrome, Safari, Opera */
    -moz-column-gap: 40px; /* Firefox */
    column-gap: 40px;
  
}
	


.chklistHead {
	font-size: 14px;
	font-weight: bold;
}

.chklistItems {
	padding-left: 10px;
}

input[type=text] {
	width: 100%;
	margin-left: -30px;
	font-size: 16px;
}
input[type=submit] {
	margin: 15px;
	padding: 5px;
	
}

textarea {

	margin: auto;
	margin-left:20px;

	min-height:  100px;
	width: 90%;

}


.formBreakLabelFromData {
	display:block;
	clear:both;
}
input[type=text]:focus {
    background-color: lightblue;
}

#contactContent { 
	margin-top: 20px;
	margin-left: 20px;
    margin-right: 20px;
	
}

#contactContent li dd dt {
	text-decoration: none;
}

li {list-style-type: none;
}

.formInnerTitle {
		padding-top: 30px;
		font-size: 16px;
		font-weight: bold;
	}
	

.checkboxText {
	margin-left: 25px;
}

.fieldsetStyle {
		border-color: darkgreen;
		border-style: groove;
		border-width: thick;
		background-color:whitesmoke;
	padding: 0.35em 1.0em 0.75em;
	}
/* The container */
label{
	list-style-type: none;
}
input[type="checkbox"], label {
	clear: left;
    float: left;
    margin: 5px 0px 5px 0px;
    padding-left: 24px;
    font-size: 14px;

}


input[type="email"] {
    width: 100%;
    margin-left: -30px;
    font-size: 16px;
}

.chkboxLabel {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.chkboxLabel input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.chkMarkBox {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #A0A0A0;
}

/* On mouse-over, add a smoky green background color */
.chkboxLabel:hover input ~ .chkMarkBox {
    background-color: #99BF99;
}

/* When the checkbox is checked, add a darker green background */
.chkboxLabel input:checked ~ .chkMarkBox {
    background-color: #538653;
}

/* Create the checkmark/indicator (hidden when not checked) */
.chkMarkBox:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.chkboxLabel input:checked ~ .chkMarkBox:after {
    display: block;
}

/* Style the checkmark/indicator */
.chkboxLabel .chkMarkBox:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}