/*
 * Northern Lights Nordic.org
 * Created by Keith Murphy, 2014
 *
 * Background images obtained from subtlepatterns.com
 * Northern Lights images obtained from http://www.lightchase.com/, http://tornadobob.com/
 * Icons obtained from http://particletree.com/features/rediscovering-the-button-element/
 *		and http://famfamfam.com/
 *		and https://iconarchive.com/show/the-village-icons-by-calle/Outhouse-icon.html.
 * Color scheme inspired by http://www.colorcombos.com/color-schemes/2026/ColorCombo2026.html
 */
 
* { 
	margin:0; 
	padding:0; 
	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

body {
	background: url('img/black_linen_v2.png');
    font-family: 'Buenard';	
}

/*--------------------------
 *	#wrap
 *	container for everything inside
 */
#wrap {
	width: 900px;
	margin: auto;
}

/*--------------------------
 *	#header
 *	Top of the page
 *  Area above main
 *	Named in tophalf
 */
#header {
	background: url('img/tbheader2.jpg') no-repeat;		/*Courtesy Tornado Bob*/
    width: 900px;
    height: 200px;
    border-top: 1px solid #eaecf5;
    border-left: 1px solid #eaecf5;
    border-right: 1px solid #eaecf5;
    margin-top: 5px;
    padding: 5px;
}

#header h1 {
	color: #eaecf5;
	text-align: left;
	font-size: 16pt;
	padding-top: 138px;
	color: #D8D8D8;		/*an off white color*/
}

#header h3 {
    color:#eaecf5;
    text-align: left;
    font-size: 12pt;
    color: #B0B0B0;		/*a gray color*/
}

/*--------------------------
 *	#content
 *	Container for content
 *	Area between header and footer
 *	Named at bottom of tophalf and ends at beginning of bottomhalf
 */
#content {
    background: #FFFAFA;    /*snow*/
    padding: 30px;
    width: 100%;
}

#content p {
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 5px;
	padding-bottom: 30px;
}

#content a:link, #content a:visited{
	color: #AF81C9;
	text-decoration: none;
}

#content a:active, #content a:hover {
	color: #F2CA85;
	text-decoration: underline;
}

#content h2 {
	padding-bottom: 20px;
}

#brochure {
	margin-left: auto;
	margin-right: auto;
	width: 33%;
	padding: 10px;
	text-align: center;
}

#brochure img {
	width: 150px;
	padding: 10px;
}

#main_photo {
	float: right;
	width: 350px;
	
	margin-bottom: 30px;
	margin-left: 30px;
}

#main_photo img {
	width: 100%;
}

#main_photo .caption {
	width: 100%;
	font-size: small;
	text-align: center;
}



/*This print_only hides the check box on membership page until printed.*/
#print_only {
	visibility: hidden;
	display: none;
	height: 0px;
}

.fb-like-box {
	background-color: white;	
}



/*did you know?*/
.dyk {
	overflow: auto;
	border: 1px solid #F2CA85;		/*same color as nav bar underline*/
	margin-top: 30px;
	margin-left: 0px;
	margin-bottom: 30px;
	padding: 10px;
	text-indent: 30px;
}


.dyk::before {
	content: "Did you know?";
	float: right;
	text-align: center;
	text-indent: 0px;				/*allows us to indent the box text, without indenting the dyk*/
	font-style: italic;
	position: relative;				/*allows us to place this box outside of the div*/
	top: 0px;						/*move this up*/
	border: 1px solid #F2CA85;		/*same color as nav bar underline*/
	color: #F2CA85;					
	padding: 5px;
	background: #FFFAFA;    		/*snow -- allows us to hide border underneath*/
	margin-bottom: 3px;			/*allows text to wrap around dyk more closely/smoothly*/
	margin-left: 10px;
}

/*update, bubble similar to dyk*/
.update {
	overflow: auto;
	border: 1px dotted red;
	margin-top: 30px;
	margin-left: 0px;
	margin-bottom: 30px;
	padding: 20px;
	text-indent: 30px;
}

.update::before {
	overflow: auto;
	content: "Update!";
	float: right;
	text-align: center;
	text-indent: 0px;				/*allows us to indent the box text, without indenting the dyk*/
	font-style: italic;
	position: relative;				/*allows us to place this box outside of the div*/
	top: 0px;						/*move this up*/
	border: 1px dotted red;
	color: red;					
	padding: 5px;
	background: #FFFAFA;    		/*snow -- allows us to hide border underneath*/
	margin-bottom: 3px;			/*allows text to wrap around dyk more closely/smoothly*/
	margin-left: 10px;
}

/*--------------------------
 *	For the main photo gallery 
 * 	
 *  
 */
.clear			{ clear:both; }
.photo-link		{ padding:5px; margin:5px; border:1px solid #ccc; display:block; float:left; }
.photo-link:hover	{ border-color:#999; }

/*
	Paypal formatting for donation page
	
	awesome radio formatting courtesy: http://cssdeck.com/labs/ldmtsmfk
*/
#paypal_all {
	margin-left: 0px;
	position: relative;
	float: left;
	clear: both;
	width: 100%;
	margin-bottom: 25px;
	padding-left: 100px;
	padding-bottom: 25px;
	/*border: 1px dashed #B0B0B0;		a gray color*/
}

#paypal_form {
	clear: both;
	margin-top: 0px;
	margin-left: 50px;

}

#paypal_form label {
	width: 200px;
	border-radius: 3px;
  	border: 1px solid #D1D3D4
}

/* hide input */
#paypal_form input[type="radio"]:empty {
	margin-left: -999px;
}

/* style label */
#paypal_form input[type="radio"]:empty ~ label {
	clear: both;
	position: relative;
	float: left;
	line-height: 2em;
	text-indent: 3.25em;
	margin-top: 10px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#paypal_form input[type="radio"]:empty ~ label:before {
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	content: '';
	width: 2.5em;
	background: #D1D3D4;
	border-radius: 3px 0 0 3px;
}

/* toggle hover */
#paypal_form input[type="radio"]:hover:not(:checked) ~ label:before {
	content:'\2714';
	text-indent: .9em;
	color: #C2C2C2;
}

#paypal_form input[type="radio"]:hover:not(:checked) ~ label {
	color: #F2CA85;
}

/* toggle on */
#paypal_form input[type="radio"]:checked ~ label:before {
	content:'\2714';
	text-indent: .9em;
	color: #AF81C9;
	background-color: #F2CA85;
}

#paypal_form input[type="radio"]:checked ~ label {
	color: #F2CA85;
}

#paypal_button {
	position: relative;
	top: -50px;
	left: 50px;
}

#paypal_heading {
	font-size: x-large;
	padding-bottom: 15px;
}




/*--------------------------
 *	For the newsletter 
 * 	
 *  
 */
.letterlist {
	font-size: large;
	text-indent: 20px;
	padding-bottom: 5px;
	background-image: url("/img/page_white_text.png");
	background-repeat: no-repeat;
	background-position: left center;
}


/*--------------------------
 *	For the newsletter 
 * 	archive section
 *  
 */
.archive {
	display: none;							/* start hidden */	
}



/*--------------------------
 *	#footer
 * 	Contains bottom of page
 *  Named in bottomhalf
 */
#footer {
	clear: both;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 10px;
    text-align: center;
    font-size: small;
    color:#eaecf5;
}

#footer p {
	color: #B0B0B0;		/*a gray color*/
	font-size: x-small;
	padding-bottom: 10px;
}

#footer a {
	color: #B0B0B0;		/*a gray color*/
	padding-right: 5px;
}

#footer div {
	padding-right: 10px;
	padding-left: 10px;
}

/*--------------------------
 *	#nav
 * 	contains navigational bar
 *	Named in tophalf
 */
#nav {
	width: 900px;
	height: 40px;
    text-align: center;
    border-bottom: 1px solid #eaecf5;
    border-left: 1px solid #eaecf5;
    border-right: 1px solid #eaecf5;
    margin-bottom: 5px;
    background-color: black;
}

#nav ul#nav_list {
    list-style-type: none; 
    margin-left: auto;
    margin-right: auto;
	width: 75%;
}

#nav ul#nav_list li {
    float: left;
    height: 21px;
    margin-left: 5px;
    margin-right: 5px;
}

#nav a:link, #nav a:visited {
	border: 1px solid transparent;	/*needed as a buffer for hover/active below*/
	padding: 5px;					/*needed as a buffer for hover/active below*/
    display: block;
    color: #eaecf5;
    text-align: center;
    text-decoration: none;
}

#nav a:hover, #nav a:active {
    border: 1px solid #eaecf5;
    padding: 5px;
}

#nav #current, #nav #current a:hover, #nav #current a:active {
	/*Current: this is the current page.
	 *	mark the link in the nav with an underline.
	 */
	border-bottom: 1px solid #F2CA85;
	border-top: 0;
	border-left: 0;
	border-right: 0;
}

#nav p {
    text-align: right;
    padding-top: 4%;
    padding-right: 0%;
    padding-bottom: 0%;
    margin-bottom: 0%;
}

/*--------------------------
 *	#links
 * 	contains links page
 *	Named in /links/
 */
#links h3 {
	clear: left;
	padding-bottom: 10px;
} 
 
#links img {
	float: left;
	clear: left;
	margin-top: 0;
	margin-left: 0;
	margin-bottom: 30px;
	margin-right: 30px;
	border: 1px solid black;
	padding: 2px;
	
	height:auto; 
	width:auto; 
	max-width:100px; 
	max-height:100px;
}

#links p {
	margin-bottom: 10px;

}

/*------------------------------------------------------------------------
 *  Trails section
 *
 *-----------------------------------------------------------------------*/
/*The map on the main trails page*/
#trail_map {
	float: left;
	width: 65%;
	height: 650px;
} 

/*list of all trails on the main trails page*/
#trail_list {
	float: left;
	padding: 15px;
	width: 275px;
} 

#trail_list h3 {
	border: 1px dashed gray;
	margin-bottom: 20px;
	width: 80%;
	padding: 15px;
}
 
 
#trail_listing {
	/*names on trail list page*/
	font-size: large;
	padding-left: 20px;
}

#trail_grouping {
	/*these are grouped by owner. eg DNR*/
	font-size: medium;
	padding-top: 10px;
}

/*The "card" for each trail, on it's own trail page.*/
#trail_info {
	float: left;
	border: 1px solid black;
	padding: 25px;
	margin-bottom: 25px;
	width: 50%;
} 

#trail_info .trail_data {
	margin-top: 10px;
}

#trail_icon_group {
	margin-top: 10px;
	margin-bottom: 20px;
}

.trail_icon {
	width: 30px;
	height: 30px;
}

/* little map on page for a specific trail*/
#trail_map2 {
	float: left;
	margin-left: 15px;
	width: 48%;
	height: 300px;
} 

#trail_info #name {
	font-size: xx-large;
}

#trail_reports {
	clear: both;
}

#trail_reports h2 {
	margin-bottom: 0px;
	padding-bottom: 0px;
}
 
#trail_reports .date {
	/*color: #F2CA85; orange was too hard for Catherine to read */
	color: black;
	font-size: large;
	border: 1px dashed gray;
	padding: 5px;
}

#trail_reports .report {
	margin-bottom: 20px;
}

#trail_reports .trail_name {
	font-size: x-large;
}

#trail_reports ul {
	padding-left: 50px;
	margin-bottom: 20px;
}

#trail_reports li {
	list-style-type: circle;
}

/*google map camvas for individual trail pages*/
#map-canvas {
	float: left;
	margin-left: 15px;
	width: 365px;
	height: 365px;
	border: 1px gray solid;
	
}

#map_content {
	background-color: white;
}


/*--------------------------
 *	For the trails photo gallery 
 * 	
 *  
 */


#trail_photos {
	clear: both;
	display: grid;
	grid-template-columns: auto auto auto;	/*3 columns*/
}

.containerPhotoMeta {
	border: 1px dashed gray;
	margin: 10px;
	padding: 20px;
}

.containerPhotoMeta img {
	object-fit: cover;
	
	display: block;		/*centers the image*/
	margin: auto;		/*centers the image*/
	overflow: auto;		/*centers the image*/
}






/*------------------------------------------------------------------------
 * Account forms section
 *
 *-----------------------------------------------------------------------*/
.head_subtitle {
    font-style: italic;
    font-size: 12pt;
}

#error_message {
    display: none;
    background-color: #FFA500;
    border: 1px red solid;
    padding: 10px;
}

#error_message p {
    background: transparent url(/img/exclamation.png) center left no-repeat;
    text-indent: 20px;
    padding: 0 0 5px 0;
    margin: 0 0 0 15px;
}

#information .input {
    height: 30px;
    width: 90%;
    margin: 0 15px 0 0;
    font-size: 12pt;
}

#information .input_name {
    width: 40%;
}

#information .input_zip, #information .input_year {
    width: 60px;
}

#information .input_password {
    margin-bottom: 10px;
}

#information select {
    font-size: 14pt;
}

.form_section {
    clear: both;
    font-size: 14pt;
    margin: 25px 0 5px 0;
}

.form_subtitle {
    clear: both;
    width: 95%;
    font-size: 10pt;
    font-style: italic;
    margin: 0 5px 10px 5px;
}

.form_subtitle_name {
    float: left;
    width: 40%;
    font-size: 10pt;
    font-style: italic;
    padding-left: 5px;
    margin: 0 5px 0 5px;
}

#info_entry {
    float: left;
    width: 48%;
}

#privacy_entry {
    float: left;
    width: 48%;
}

#privacy_entry label {
    display: block;
}

#privacy_entry label input {
    margin: 5px;
}



/*------------------------------------------------------------------------
 * Account section
 *
 * Button elements from: 
 * http://particletree.com/features/rediscovering-the-button-element/
 *------------------------------------------------------------------------*/
 
#acct_login {
    float: left;
    width: 35%;
} 

#acct_login p {
    font-size: 14pt;
    margin-bottom: 15px;
}

#acct_login .text_entry {
    height: 30px;
    width: 300px;
    margin: 5px;
    font-size: 12pt;
}


#acct_login_message {
	float: right;
	width: 35%;
	height: 50%;
	background-color: #f8d018;
	visibility: hidden;
	padding: 5%;
}

#acct_login_message p{
	font-size: large;
}

/* BUTTONS */
.buttons a, .buttons button{
    display:block;
    float:left;
    margin:0 7px 0 0;
    background-color:#f5f5f5;
    border:1px solid #dedede;
    border-top:1px solid #eee;
    border-left:1px solid #eee;    
    font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
    font-size:100%;
    line-height:130%;
    text-decoration:none;
    font-weight:bold;
    color:#565656;
    cursor:pointer;
    padding:5px 10px 6px 7px; /* Links */
}
.buttons button{
    width:auto;
    overflow:visible;
    padding:4px 10px 3px 7px; /* IE6 */
}
.buttons button[type]{
    padding:5px 10px 5px 7px; /* Firefox */
    line-height:17px; /* Safari */
}
*:first-child+html button[type]{
    padding:4px 10px 3px 7px; /* IE7 */
}
.buttons button img, .buttons a img{
    margin:0 3px -3px 0 !important;
    padding:0;
    border:none;
    width:16px;
    height:16px;
}

/* STANDARD */
button:hover, .buttons a:hover{
    background-color:#dff4ff;
    border:1px solid #c2e1ef;
    color:#336699;
}
.buttons a:active{
    background-color:#6299c5;
    border:1px solid #6299c5;
    color:#fff;
}

/* POSITIVE */
button.positive, .buttons a.positive{
    color:#529214;
}
.buttons a.positive:hover, button.positive:hover{
    background-color:#E6EFC2;
    border:1px solid #C6D880;
    color:#529214;
}
.buttons a.positive:active{
    background-color:#529214;
    border:1px solid #529214;
    color:#fff;

}/* NEGATIVE */
.buttons a.negative, button.negative{
    color:#d12f19;
}
.buttons a.negative:hover, button.negative:hover{
    background:#fbe3e4;
    border:1px solid #fbc2c4;
    color:#d12f19;
}
.buttons a.negative:active{
    background-color:#d12f19;
    border:1px solid #d12f19;
    color:#fff;
}