/*
	style-desktop.css   May 27, 2015  boston-discovery-guide.com
*/

/*********************************************************************************/
/* Basic                                                                         */
/*********************************************************************************/

	h1
	{
		font-size: 2.2em;
		letter-spacing: -0.3px;
		margin: 0 0 1.5em 0;
	}

	h2
	{
		font-size: 1.7em;
		letter-spacing: -0.8px;
		margin: 1.1em 0 .5em 0;
	}

	h3
	{
		font-size: 1.2em;
	}

	.side-padded
	{
		padding-left: 2em;
	}

	.right-sidebar
	{
		padding-left: 2em;
	}
	
	.left-sidebar
	{
		padding-right: 2em;
	}
	
	section > :last-child, article > :last-child
	{
		margin-bottom: 0;
	}
	
	.blocks
	{
	}

		.blocks a
		{
		}

		.blocks a:after
		{
			right: 25px;
			bottom: 40px;
		}
		
		
	.blocks2
	{
	}

		.blocks2 a
		{
		}

		.blocks2 a:after
		{
			right: 25px;
			bottom: 40px;
		}	

/*********************************************************************************/
/* Wrappers                                                                      */
/*********************************************************************************/

	#header-wrapper
	{
		position: fixed;   /*--make the header fixed--*/
		z-index: 10000;        /*--bring it forward--*/
		left: 0;           /*--position it--*/
		top: 0;
		width: 100%;         /*--stretch across the screen--*/
		background: #00a6eb;
		padding: 2em 0;
		
	}
	
	#banner-wrapper
	{
		position: relative;  
		background: #2f2f2f url('../image-files/overlay.png');
		padding: 8em 0 2.4em 0;     /*--made banner wider by changing top padding from 4em to 8em, bottom from 4em to 2.4em--*/
	}
	
	#banner-wrapper:before
	{
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: url('../image-files/highlight.png') bottom center no-repeat;
		background-size: 1800px 100%;
	}
	
	#search-wrapper-home    /*--added this so that search on home page doesn't get covered due to combo of taller home page doesn't cover search--*/
	{		
		background: #f6f6f6;
		border-bottom: solid 1px #d9d9d9;
		padding: 1.4em 0 1.4em 0;
	}
	
	#search-wrapper
	{		
		background: #f6f6f6;
		border-bottom: solid 1px #d9d9d9;
		padding: 7em 0 1.4em 0;   /*--increased top padding from 2.5em to 7em so that taller top banner doesn't cover it, although decreased bottom padding so that displayed search wrapper will be less tall --*/
	}

	#main-wrapper
	{
		padding: 2em 0 3em 0;   /*--changed from 6em on top and bottom, don't remember why--*/
	}

	#footer-wrapper
	{
		background: #f6f6f6;
		border-top: solid 1px #d9d9d9;
		padding: 2em 0 0em 0;    /*--changed from 5em on top and bottom for aesthetic reasons--*/
	}
	


/*********************************************************************************/
/* Header                                                                        */
/*********************************************************************************/

	#page-header
	{
		color: #fff;
		position: relative;
	}

		#page-header h6      /*--changed from h1 in order to use h1 for content header rather than page header--*/
		{
			font-size: 2.2em;
			letter-spacing: -0.1px;
		}

			#page-header h6 a
			{
				text-decoration: none;
			}
			
			#page-header h6 span
			{
				font-weight: 400;
			}

		#page-header a
		{
			color: #fff;
		}
		
		#page-header nav
		{
			position: absolute;
			right: 0;
			top: 0;
		}
		
			#page-header nav ul
			{
			}
		
				#page-header nav ul li
				{
					display: inline-block;
					margin-left: 1.0em;
					font-weight: 700;
					font-size: 1.1em;
					font-variant: small-caps;
				}

					#page-header nav ul li a
					{
						outline: 0;
						position: relative;
						text-decoration: none;
						padding: 0.5em 1em 0.5em 1em;
						transition: background-color .25s ease-in-out;
						-moz-transition: background-color .25s ease-in-out;
						-webkit-transition: background-color .25s ease-in-out;
					}

					#page-header nav ul li.active a, #page-header nav ul li:hover a
					{
						background: rgba(0,0,0,0.15);
					}

					#page-header nav ul li .arrow
					{
						padding-right: 1.9em;
					}
					
					#page-header nav ul li .arrow:after
					{
						position: absolute;
						display: inline-block;
						content: '';
						border-top: solid 5px #fff;
						border-left: solid 5px transparent;
						border-right: solid 5px transparent;
						top: 1.15em;
						right: 1em;
					}

			#page-header nav > ul > li > ul
			{
				display: none;
			}
	
	.dropotron
	{
		background: #00a6eb;
		background: rgba(0,166,235,0.9);
		padding: 1em 0.5em 1em 0.5em;
		line-height: 3em;
		box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.15);
	}

		.dropotron a, .dropotron span
		{
			position: relative;
			display: block;
			text-decoration: none;
			color: #fff;
			font-size: 1.1em;
			padding: 0 3em 0 1em;
			transition: background-color .25s ease-in-out;
			-moz-transition: background-color .25s ease-in-out;
			-webkit-transition: background-color .25s ease-in-out;
		}
	
		.dropotron .arrow:before
		{
			content: '';
			display: block;
			position: absolute;
			right: 1em;
			bottom: 1em;
			border-left: solid 5px #fff;
			border-top: solid 5px transparent;
			border-bottom: solid 5px transparent;			
		}
		
		.dropotron li:hover > a, .dropotron li:hover > span
		{
			background: rgba(0,0,0,0.15);
		}
	
	.dropotron.level-0
	{
		margin-top: 1.9em;
	}
	
/*********************************************************************************/
/* Banner                                                                        */
/*********************************************************************************/

	#banner
	{
		position: relative;
		width: 100%;
		overflow: hidden;
		box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.35);
		height: 510px;  /* was 440 - also change init.js  */
	}
	
		#banner .nav-next, #banner .nav-previous
		{
			position: absolute;
			width: 52px;
			height: 74px;
			z-index: 3;
			transition: opacity .25s ease-in-out;
			-moz-transition: opacity .25s ease-in-out;
			-webkit-transition: opacity .25s ease-in-out;
			opacity: 0;
			cursor: pointer;
			text-align: center;
			line-height: 64px;
		}

		#banner .nav-next:before, #banner .nav-previous:before
		{
			font-family: FontAwesome;
			text-decoration: none;
			font-size: 72px;
			font-style: normal;
			font-weight: normal;
			-webkit-font-smoothing:antialiased;
			-moz-osx-font-smoothing:grayscale;
			
			color: #fff;
		}

		#banner:hover .nav-next, #banner:hover .nav-previous
		{
			opacity: 0.45;
		}
		
		#banner .nav-next:hover, #banner .nav-previous:hover
		{
			opacity: 1.0;
		}
	
		#banner .nav-next
		{
			bottom: 20px;
			right: 20px;
		}

		#banner .nav-next:before
		{
			content: "\f105";
		}

		#banner .nav-previous
		{
			bottom: 20px;
			right: 72px;
		}

		#banner .nav-previous:before
		{
			content: "\f104";
		}
	
		#banner .captions
		{
			position: absolute;
			background: #00a6eb;
			background: rgba(0,166,235,0.9);
			padding: 3em 7em 2.2em 2.5em;
			bottom: 1.5em;
			left: 1.5em;
			color: #fff;
			width: 45%;
			z-index: 1;
		}

			#banner .captions:after
			{
				content: "\f0a9";
				font-family: FontAwesome;
				text-decoration: none;
				font-size: 55px;
				font-style: normal;
				font-weight: normal;
				line-height: 1;
				-webkit-font-smoothing:antialiased;
				-moz-osx-font-smoothing:grayscale;

				cursor: default;
				display: block;
				width: 48px;
				height: 48px;
				position: absolute;
				right: 30px;
				bottom: 40px;
			}
		
			#banner .captions .caption-line-1
			{
				display: block;
				font-size: 2.5em;
				letter-spacing: -2px;  
				margin: 0 0 0.75em 0;
			}
		
			#banner .captions .caption-line-2
			{
				display: block;
				font-size: 1.6em;  /*--changed from 1.5em--*/
				letter-spacing: -0.5px; /*--changed from -1.0px--*/
				line-height: 1.5em;
				color: rgba(255,255,255,0.9);  /*--changed from 0.8--*/
			}
		
		#banner .viewer
		{
			background: #fff;
		}
		
		#banner .slide
		{
		}
		
			#banner .slide .caption-1
			{
				display: none;
			}		
			
			#banner .slide .caption-2
			{
				display: none;
			}
			
			#banner .slide img
			{
				display: block;
				width: 1200px;
			}
			
			#banner .slide .link
			{
				position: absolute;
				text-indent: -9999px;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				z-index: 2;
			}
			
/*********************************************************************************/
/* Search                                                                        */
/*********************************************************************************/

	#search
	{
		position: relative;
	}
	
		#search span
		{
	position: absolute;
	left: -29px;
	bottom: 19px;
		}
	
		#search form
		{
			overflow: hidden;
			position: relative;
		}
		
			#search form input.text
			{
				display: block;
				width: 100%;
				height: 34px;
			}
		
			#search form input.button
			{
				width: 34px;
				height: 34px;
				position: absolute;
				right: 0;
				top: 0;
				display: block;
				z-index: 1;
				border: 0;
				padding: 0;
				opacity: 0;
			}
			
			#search form:before {
				content: "\f002";
				font-family: FontAwesome;
				text-decoration: none;
				font-size: 18px;
				font-style: normal;
				font-weight: normal;
				line-height: 1;
				-webkit-font-smoothing:antialiased;
				-moz-osx-font-smoothing:grayscale;

				position: absolute;
				right: 0;
				top: 0;
				z-index: 2;
				background: #00a6eb;
				color: #fff;
				width: 34px;
				height: 34px;
				line-height: 34px;
				text-align: center;
			}
		
/*********************************************************************************/
/* Content                                                                       */
/*********************************************************************************/

	#content
	{
	}
	
		#content > section, #content > article
		{
			margin-bottom: 3.5em;    /*--changed from 7.5em--*/
		}

		#content > section:last-child, #content > article:last-child
		{
			margin-bottom: 0;
		}
		
		#content section header, #content article header
			{
				border-top: solid 7px #00a6eb;
				padding-top: 2.5em;
				margin: 2em 0 2em 0;
			}
			
				#content section header h1, #content article header h1    /*--changed from h2--*/
				{
					margin: 0 0 0.5em 0;
				}
				
				#content section.featured header h1, #content article.featured header h1
				{
					font-size: 2.75em;
					letter-spacing: -1.5px;
					margin: 0.25em 0 0.75em 0;
				}
				
				#content section header .byline , #content article header .byline 
				{
					display: block;
					color: #a0a0a0;
					font-size: 1.9em;
					line-height: 1.3em;
				}
				
				#content section.featured header .byline , #content article.featured header .byline
				{
					font-size: 1.7em;
					letter-spacing: -1px;
					line-height: 1.4em;
				}
				
				#content section.featured h3, #content article.featured h3
				{
					font-size: 1.3em;
					letter-spacing: -.8px;
					margin: 0 0 1em 0;
					font-weight: 400; /*---was 300--*/
				}
				


		
/*********************************************************************************/
/* Sidebar                                                                       */
/*********************************************************************************/

	#sidebar
	{
	}
	
		#sidebar h2
		{
			font-size: 1.75em;
			letter-spacing: -1px;
		}
	
		#sidebar > section
		{
			margin-bottom: 4em;
		}

		#sidebar > section:last-child
		{
			margin-bottom: 0;
		}
		
			#sidebar section header
			{
				border-top: solid 7px #00a6eb;
				padding-top: 5em;  /*--changed from 3.5em--*/
				margin: 0 0 1em 0;       /*--changed from 3em--*/
			}
			
				#sidebar section header h2
				{
					margin: 0 0 0.5em 0;
				}
				
				#sidebar section.featured header h2
				{
					font-size: 4em;
					letter-spacing: -3px;
					margin: 0.25em 0 0.75em 0;
				}

/*********************************************************************************/
/* Footer                                                                        */
/*********************************************************************************/

	#page-footer
	{
	}

		#page-footer h2
		{
			font-size: 1.5em;
			letter-spacing: -1.5px;
		}
	
		#page-footer section
		{
			font-size: .8em;
			margin: 0 0 3em 0;
		}

		#page-footer > section:last-child
		{
			margin-bottom: 0;
		}
		
			#page-footer section h2
			{
				margin: 0 0 1.5em 0;
			}
			
		/*--commenting out this code, which forces d. gray text for links by overriding blue:
		
		#page-footer a
		{
			color: #474747;
		}
		--*/

/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/

	#copyright
	{
		font-size: .8em;
		border-top: solid 2px #d9d9d9;
		text-align: center;
		padding: 1.1em 0 2.8em 0;
		color: #a0a0a0;
	}
