/*  LANDING & SEARCH CSS  */

<style>

/* @import "https://fonts.googleapis.com/css?family=Montserrat:400,700|Raleway:300,400"; */






/*--------------------------------------------------------------------------------------*/
/*			*/
/* LINKS 	*/
/*			*/

a {
 	/* background-color: yellow;*/
	/* color: green; */
   target: _blank;
    text-decoration: none;
    transition-timing-function: ease-out;
    transition: .5s;
}
a:link {	
	/*background-color: yellow;*/
	color: white;
	text-decoration: none;
	text-shadow: 1px 1px 2px black;
	/* text-shadow: 0 0 25px white;*/
}
a:hover {	
	/*background-color: yellow;*/
	color: white;
	text-shadow: 2px 2px 3px black;
	text-shadow: 3px 3px 10px red;
	text-shadow: 4px 4px 15px gold;
	text-decoration: underline;
	transition: .3s;
}
a:active {	
	/* background-color: yellow;*/
	color: purple;
	cursor: progress;	/*  SHOW VISIBLE INDICATION OF CLICK - SHOW PROGRESS WHEEL  */
	text-decoration: underline;
    transition: .01s;  /* SUPER SHORT TRANSITION - BE QUICK & COOL  */
}
a:visited {
	/*background-color: yellow;*/
	color: white;
	text-decoration: none;
	text-shadow: 1px 1px 3px black; 
	text-shadow: 0 0 5px purple;
	transition: .3s;
}

/*--------------------------------------------------------------------------------------*/







/*---------------------------------------------------------------------------------------*/

body{
	background-color: white; 		 /*  silver, white : Give Empty page feel */
	font-family:arial;  /*  set page FONT */
	font-size:20px;		/* set page FONT-SIZE */
	line-height:40px;	/* set page LINE-HEIGHT (space above and below default text) */
	padding:0px;					/* re-set padding to zero for page */
	margin:0px;						/* re-set margin to zero for page */
	
}

img {
	onContextMenu: return false;   /*  DISABLE right-click / image SaveAs  */
}

.center{
	text-align: center;
} 

.item{
	font-size: 13px;
	padding:10px;
} 






/*--------------------------------------------------------------------------------------*/

.flexmenu {	/*  This is the Primary Container for these features	*/
	transition: .5s;  /*   */
	width: 100%;
    display: flex;
	flex-direction: row;  /* Define orientation of internal div elements */
	flex-wrap: wrap; /* Enables wrapping of internal div elements */
 	accent-color:  gold   ;   /* red, #0000FF, rgb(0, 255, 0), black, orange, pink, auto  */
	background-color: #333;  /* 333 Default background color */
	overflow: auto;
	/*white-space: nowrap; /* prevents internal text wrap of menu items  */
	align-content: space-around;  /* stretch, center, flex-start, flex-end, space-between, space-around, space-evenly */
	align-items: center    ;   /* stretch, center, flex-start, flex-end, baseline  */
	/* padding: 10px;   /*      */
	margin: 5px;
	
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.35) -2px 5px 15px;  /*  adds nice drop shadow effect to menu */
}
.flexmenu > div {
  /* width: 600px;  /*  prevents other links from moving jerkishly adjusting for animation  */
  	align-items: center    ;   /* stretch, center, flex-start, flex-end, baseline  */
	background-color: #333;
  color: white;                      /*  NO Link Text color  */
  margin: 10px;
  padding: 5px;
}
.flexmenu a {
  color: white;
  text-align: center;
  text-decoration: none;
    transition: .3s;
  margin-bottom: 2px; /*  ANIMATION : Move the text up the vertical axis a little  */
  border-radius: 3px;
  text-align: center;
  font-size: 18px; /* increase the font size by 2, animate any existing font */
  padding: 15px;
  text-shadow: 1px 1px 2px black, 0 0 25px gold, 0 0 5px darkgrey;
}


.flexmenu a:hover {  
  color: white;
  background-color: gold;  /* button color when hovered */
  transition: 1s;
  margin-bottom: 2px; /*  ANIMATION : Move the text up the vertical axis a little  */
  border-radius: 3px;
  text-align: center;
  font-size: 20px; /* increase the font size by 2, animate any existing font */
  padding: 14px;
  text-shadow: 1px 1px 2px black, 0 0 25px gold, 0 0 5px darkgrey;
}

.flexmenu a:active {  
/* use hover settings and keep similar settings after the click */
/* lengthen timeframe of click transition and ad to font animation */
  background-color: gold;
  transition: 10s;
  margin-bottom: 2px; /*  ANIMATION : Move the text up the vertical axis a little  */
  border-radius: 3px;
  text-align: center;
  font-size: 21px; /* increase the font size by 2, animate any existing font */
  padding: 20px;
  text-shadow: 1px 1px 2px black, 0 0 25px gold, 0 0 5px darkgrey;
}
/*--------------------------------------------------------------------------------------*/


/*--------------------------------------------------------------------------------------*/


/* div{
	overflow:auto;
}
*/
.divider{			/*  DIVIDER  */
	height:20px;
	margin:1px 0px;
}


/*--------------------------------------------------------------------------------------*/

#container{
	width:80%;   /*  WIDTH OF THE WHOLE CONTAINER  ;) */
}

.searchblock{
	padding:5px;
	text-align:center;

}

/*--------------------------------------------------------------------------------------*/

#footer{
	text-align:center;
	font-size:10pt;
	margin:10px;
}
.footer a{
	text-decoration:none;
}

/*--------------------------------------------------------------------------------------*/

#header{			
	position:relative;
	margin-top:20px;
	padding:15px;
}
.header_text{
	position:relative;
	float:right;			/* COOL FLOAT RIGHT */
	font-size:12pt;
	color:white;
}

/*--------------------------------------------------------------------------------------*/

#main{
	border:1px solid #ccc;
	border-top:0px;
}

	



/*--------------------------------------------------------------------------------------*/
.content {
    text-align: center;
    margin:100px;
    padding: 20px;
    font-size: 24pt;
    font-weight: bold;
    background-color: white;
}




/*--------------------------------------------------------------------------------------*/


.logo{			/*  DEFAULT LOGO LOOK  */
    height: 100px;
    text-align: center;
    font-size:32pt;
	font-weight:bold;
	text-decoration:none;
	color:silver;  
}


.logo a{			/*  DEFAULT LOGO LINK LOOK  */
	
	color:white;  
}
.logo a:hover{
	transition: 1s;
	margin-top:-2px;
}


/*--------------------------------------------------------------------------------------*/


.relatedsearchtitle2{
	position:relative;
	padding:0px;
	font-size:12px;
	margin-top:20px;
	padding-left:20px;
	border-bottom:1px dotted #CCC;
	padding-bottom:5px;
}
#sponsoredresults,#webresultstitle,#bottomsponsoredresults{
	margin:10px 0px;
}
#results_container{
	width:460px;
	background:white;
	padding:10px 30px;
}
.main_image{
	width:40%;
	margin:0px;
	float:right;
	background:white;
}
#search{
	padding:20px;
}
.ourterm{
	padding-left:20px;
	margin-top:7px;
	padding-bottom:7px;
	border-bottom:1px dotted #CCC;
	font-size:14px;
}
.ourterm a{
	text-decoration:none;
}
.ourterm a:hover{
	text-decoration:underline;
}
.related_keywords{
	float:right;
	width:250px;
}
.related_keywords .relatedsearchtitle{
	background:white;
	opacity:0.4;
	margin:0px;
	padding:7px 10px;
	border-bottom:1px dotted #999;
}
.related_keywords .term{
	padding-top:7px;
	padding-bottom:7px;
	border-bottom:1px dotted #CCC;
	font-size:14px;
	background:white;
	opacity:0.9;
	padding-left:10px;
	margin-left:1px;
}
.related_keywords .term a{
	text-decoration:none;
}
.text_area{
	margin:20px;
}
.left_side{
	background:white;
	padding:10px;
}
.left {
    text-align: left;
}
.sub{
	margin: 20px;
}
.frame{
	overflow:hidden;
}
.search{
	width:200px;
}


/*--------------------------------------------------------------------------------------*/


.text-center{
	text-align:center;
}

.header_text{
    color: white;  /* white */
    text-align: center;
    font-size: 30px;
    font-style: bold;
}
.button{
	background-color: #000;
    text-align: center;
    font-size: 30px;
    width: 80%;
}


/*--------------------------------------------------------------------------------------*/

.banner-background{
    background-color: none;  /*  Keep background container transparent = 'none'.  banner-box shadow */
    /*position:relative;*/
    position:center;
	/*float:center;	*/
}

.banner{  /*  SIZE is 728px by 90px */
    width: 732px;  /* 728px + 4 extra space to frame to banner with black 732 */
    height: 94px;  /* 90px + 4 extra space to frame the banner with black 94 */
    padding: 2px;
    background-color: black;  /*  black color behind the banner */
	box-shadow: rgba(0, 0, 0, 0.35) -2px 5px 15px; 
}
.banner:hover{
	transition: .5s;
	margin-top: -2px;
    box-shadow: rgba(0, 0, 0, 0.8) -2px 5px 20px; 

}





/*--------------------------------------------------------------------------------------*/
</style>		/* END  */
/*--------------------------------------------------------------------------------------*/







