/* ____________________________________ 
  |Table of Contents                   |
  |									   |
  |-----------GENERAL FORMATTING-------|
  |-----------MENU FORMATTING----------|
  |----------HEADER FORMATTING---------|
  |-----------PHOTO FORMATTING---------|
  |-------QUICK SEARCH FORMATTING------|
  |----------CALLOUT FORMATTING--------|
  |-------BODY CONTENT FORMATTING------|
  |----FEATURED LISTINGS FORMATTING----|
  |----------FOOTER FORMATTING---------|
  |----------SOCIAL FORMATTING---------|
  --------------------------------------
/*
                         ______    ____
                        :  ;;;;\__/:  ;\
                         \;__/.... :  _/;
                        ___:__ ..__\_/__;
                        |  ## `--'   ##|;
                        |_____/~;\_____|;
                          /~~~_ _ ~~   /
                          // (_:_)   \\
                    _     // ,'~ `,_\\~\_
                   //     ~~`,---,'~~~   \
          ___     //         ~~~~      ;; \_  __
         /_\/____::_        ,(:;:  __    ;; \/;;\  __
         \_/) _  :: (       ; ;;:    \    / ;:;;::-,-'
            |[-]_::-|       : :;;:   /  * | ;:;;:;'
            | :__:: |       :.`,:::  : +  : /___:'
            |[_ ] [\|       ;. ;--`:_:.  *| /   /
            |__| |_]|    ,-' . :uu-'/     \|UUU/
            |_______|   ;_|_|_/    :_;_;_;_:
             [=====]

*/
 /*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- GENERAL FORMATTING START -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/
* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

hr
{
	border-width: 1px;
	border-style: solid;
	margin: auto;
}

body
{
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	background: url(../images/body_color.png) repeat;
	font-size: 13px;
	color: #424242;
}

#body-secondary
{
	background: #FFFFFF;
	color: #000000;
}

a
{
	text-decoration: none;
}

/*Home Page SubHeading*/
.subheading
{
	font-size: 16px;
	color: #A6000F;
	font-weight: 700;
}

/*Home Page Heading*/
.heading
{
	font-size: 30px;
	color: #A6000F;
	font-weight: 700;
}

/*Secondary Page Heading*/
#secondary-body-content-wrapper .heading
{
	
}

/*Secondary Page SubHeading*/
#secondary-body-content-wrapper .subheading
{
	
}

input, textarea, select
{
	border: 1px solid #CDCDCD;
}
 /*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- GENERAL FORMATTING END -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/
  
/*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- MENU FORMATTING START -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/
#menu-wrapper
{
	background: url(../images/menu_color.png) repeat;
	width: 100%;
	border-bottom: 3px solid #E1E4E6;
	position: relative;
	z-index: 999;
}

@media screen and (max-width: 980px)
{
	#menu-wrapper
	{
		border-bottom: none;
	}
}

#menu
{
	width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}

/*Menu Font*/
#menu a
{
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 10px 0 0 0;
	padding: 0 10px 0 10px;
	display: block;
	border-right: 1px solid #FFFFFF;
	font-size: 14px;
}
#menu li
{
	display: block;
	float: left;
	height: 40px;
}

#menu ul
{
	list-style: none;
}

#menu li ul
{
	display: none;
	position: absolute;
	top: 40px;
	background: url(../images/menu_dropdown_color.png);
	width: 250px;
	border-left: 3px solid #E1E4E6;
	border-right: 3px solid #E1E4E6;
	border-bottom: 3px solid #E1E4E6;
}

#menu ul li ul li
{
	float: none;
	border-bottom: 1px solid #E1E4E6;
	padding: 10px 10px 0 10px;
	margin: 0;
	height: 30px;
}

/*Menu Dropdown Font*/
#menu ul li ul li a
{
	padding: 0;
	margin: 0;
	border-right: none;
	color: #000000;
}

#menu li:hover ul
{
	display: block;
}

#menu li:hover
{
	background: url(../images/menu_mouseover.png);
}

#mobile-menu
{
	padding: 5px 5px 5px 5px;
	background: url(../images/menu_color.png) repeat;
}

#mobile-menu select
{
	width: 100%;
	display: block;
	height: 30px;
	font-size: 16px;
}
/*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- MENU FORMATTING END -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/

  
/*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- HEADER FORMATTING START -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/
#header
{
	width: 100%;
	background: url(../images/under_menu_bar_color.png);
	text-align: center;
}

@media screen and (max-width: 1000px)
{
	#header img
	{
		width: 100%;
	}
}
/*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- HEADER FORMATTING END -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/
  
  /*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- PHOTO FORMATTING START -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/
#photo-wrapper
{
	position: relative;
}

.photo
{
	width: 100%;
	float: none;
	display: block;
	position: relative;
}

#under-photo-bar
{
	height: 12px;
	width: 100%;
	background: url(../images/under_photo_bar_color.png);
}

#under-photo-slogan-wrapper
{
	width: 1000px;
	margin: 0 auto;
	overflow: hidden;
}

#under-photo-slogan
{
	display: block;
	float: left;
}
	/*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- PHOTO FORMATTING END -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/
    
	/*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- QUICK SEARCH FORMATTING START-- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/
#quick-search-wrapper
{
	width: 906px;
	height: 154px;
	position: absolute;
	right: 0;
    left: 0;
	bottom: 15px;
    margin: auto;
	z-index: 10;
}

@media screen and (max-width: 910px)
{
	#quick-search-wrapper
	{
		display: none;
	}
}

#quick-search-top-tab
{
	width: 203px;
	height: 29px;
	background: url(../images/quick_top_tab.png) no-repeat;
	margin: 0 0 0 100px;
	display: block;
}

#quick-search-bottom-tab
{
	width: 203px;
	height: 30px;
	background: url(../images/quick_bottom_tab.png) no-repeat;
	margin: 0 0 0 100px;
	display: block;
}
#quick-search-border
{
	background: url(../images/quick_border.png) repeat;
	width: 900px;
	height: 89px;
	-moz-border-radius: 23px;
	border-radius: 23px;
	margin: 0 auto;
	padding: 3px;
}

#quick-search
{
	height: 89px;
	width: 900px;
	background: url(../images/quick_background.png) repeat;
	margin: 0 auto;
	-moz-border-radius: 20px;
	border-radius: 20px;
	position: relative;
	color: #585C5D;
}

#quick-search-bar
{
	width: 335px;
	height: 50px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	border: 1px solid gray;
	font-size: 20px;
	text-align: center;
	margin: 19px 0 0 15px;
	font-family: 'Raleway', sans-serif;
}

input:focus
{
	outline:none;
}

select:focus
{
	outline:none;
}

/* Changes Place Holder Text */
::-webkit-input-placeholder {
   color: #BCBCBC;
}

:-moz-placeholder { /* Firefox 18- */
   color: #BCBCBC;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #BCBCBC;  
}

:-ms-input-placeholder {  
   color: #BCBCBC;  
}

/* End Place Holder Text */


#search-options-wrapper
{
	width: 330px;
	height: 89px;
	padding: 0;
	position: absolute;
	left: 375px;
	top: 0;
}

#search-options
{
	list-style: none;
	margin: 0;
	padding: 0;
	font-family: 'Raleway', sans-serif;
}

#search-options li
{
	float: left;
	position: relative;
	width: 110px;
	height: 92px;
}

#search-options li:hover
{
	background: url(../images/quick_rollover.png) repeat;
}
.search-options-p
{
	margin: 30px 0 0 0;
	padding: 0;
	text-align: center;
	font-size: 22px;
}

#search-button
{
	height: 75px;
	width: 144px;
	background: url(../images/quick_search_button.png) no-repeat;
	display:block;
	border: none;
	text-indent: -9999em;
	position: absolute;
	top: 8px;
	right: 5px;
}

#search-button:hover
{
	background: url(../images/quick_search_button_dn.png) no-repeat;
}
.sub-options-1
{
	display: none;
	position: absolute;
	top: 92px;
	width: 330px;
	height: 130px;
	margin: 0;
	padding: 0;
	background: url(../images/quick_dropdown_color.png) repeat;
	-moz-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
}

.sub-options-2
{
	display: none;
	position: absolute;
	top: 92px;
	left: -110px;
	width: 330px;
	height: 130px;
	margin: 0;
	z-index: 5;
	padding: 0;
	background: url(../images/quick_dropdown_color.png) repeat;
	-moz-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
}

.sub-options-3
{
	display: none;
	position: absolute;
	top: 92px;
	left: -220px;
	width: 330px;
	height: 180px;
	margin: 0;
	z-index: 5;
	padding: 0;
	background: url(../images/quick_dropdown_color.png) repeat;
	-moz-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
}
#search-options li:hover .sub-options-1, #search-options li:hover .sub-options-2, #search-options li:hover .sub-options-3
{
	display: block;
}

#min
{
	width: 100px;
	height: 94px;
	font-size: 16px;
	margin: 20px 0 0 35px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	float: left;
	border: 1px solid #B9BABC;
}

#max
{
	width: 100px;
	height: 94px;
	font-size: 16px;
	margin: 20px 0 0 15px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	float: left;
	border: 1px solid #B9BABC;
}

#price-min
{
	width: 100px;
	height: 140px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin: 20px 0 0 35px;
	border: 1px solid #B9BABC;
	float: left;
}

#price-max
{
	width: 100px;
	height: 140px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin: 20px 0 0 15px;
	border: 1px solid #B9BABC;
	float: left;
}

.between-min-max
{
	float: left;
	margin: 30px 0 0 15px;
	padding: 0;
	font-size: 14px;
	display: block;
}

.down-arrow
{
	padding: 0;
	margin: 0 0 2px 5px;
}

  /*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- QUICK SEARCH FORMATTING END -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/

  /*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- CALLOUT BOX FORMATTING START -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/
#callout-wrapper
{
	width: 1000px;
	margin: 0 auto;
	overflow: hidden;
	background: url(../images/top_callouts_background_color.png);
	padding: 20px;
}

@media screen and (max-width: 1000px)
{
	#callout-wrapper
	{
		display: none;
	}
}
.callout
{
	width: 227px;
	float: left;
	margin: 0 15px 0 15px;
	text-align: center;
}

.callout:first-child
{
	margin: 0 15px 0 1px;
}

.callout-last-child
{
	margin: 0 1px 0 15px;
}

.callout-black-text
{
	color: #000000;
}

.callout .subheading
{
	font-size: 15px;
}
   /*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- CALLOUT BOX FORMATTING END -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/
  
   /*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- BODY CONTENT FORMATTING START -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/

/*Home Page Body Font*/
#body-content-wrapper
{
	width: 1000px;
	margin: 20px auto;
	padding: 0 10px 0 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}

#body-content-wrapper p, #secondary-body-content-wrapper p
{
	margin: 1em 0;
}

/*HOME PAGE BODY LINK COLOR*/
#body-content-wrapper a
{
}

@media screen and (max-width: 1000px)
{
	#body-content-wrapper
	{
		width: 100%;
		margin: 0 0 0 0;
	}
	
	#secondary-body-content-wrapper
	{
		width: 100% !important;
	}
}

/*Secondary Body Page Font*/
#secondary-body-content-wrapper
{
	width: 1000px;
	padding: 0 10px 0 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	margin: 20px auto;
}

/*Secondary Page Body Link Color*/
#secondary-body-content-wrapper a
{
}

	/*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- BODY CONTENT FORMATTING END -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/
  
  /*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- FEATURED LISTINGS FORMATTING START -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/
.featured-top-bar
{
	width: 1000px;
	height: 53px;
	margin: 0 auto;
	background: url(../images/featured_listing_big_bar.png);
}

.featured-top-bar-on-top
{
	width: 1000px;
	height: 53px;
	margin: 20px auto 0 auto;
	background: url(../images/featured_listing_big_bar.png);
}

#featured-wrapper_1
{
	width: 980px;
	margin: 15px auto;
	overflow: hidden;
	background: url(../images/featured_outer_background.png);
	height: 427px;
	padding: 0 15px 0 15px;
}

@media screen and (max-width: 1010px)
{
	.featured-top-bar, #featured-wrapper_1, .featured-top-bar-on-top
	{
		display: none;
	}
}

.featured-heading
{
	font-size: 30px;
	color: #FFFFFF;
	font-weight: 400;
	display: block;
	line-height: 53px;
	margin: 0 0 0 30px;
}

.listing-container
{
	width: 214px;
	float: left;
	margin: 15px 0 0 12px;
	background: url(../images/featured_inner_background.png);
	padding: 10px 10px 10px 10px;
	height: 375px;
	position: relative;
	border: 1px solid #CDCDCD;
	color: #000000;
}

.listing-image
{
	width: 214px;
	height: 144px;
	display: block;
	float: none;
	position: absolute;
	top: 22px;
	border: 1px solid #CDCDCD;
}

.listing-container:first-child
{
	margin-left: 0;
}

.listing-top-bar
{
	width: 216px;
	height: 12px;
	background: url(../images/featured_top_photo_bar_color.png);
}

.listing-info
{
	width: 216px;
	position: absolute;
	top: 181px;
	height: 50;
}

/*Featured City Font*/
.listing-heading
{
	font-size: 18px;
	color: #A6000F;
	font-weight: 600;
	display: block;
	width: 216px;
}

/*Featured Beds and Bath Font*/
.listing-beds-bath
{
	display: inline-block;
	zoom: 1; 
	*display: inline;
	margin: 0 10px 0 0;
	font-size: 11px;
	font-weight: 700;
}

/*Featured Remarks Font*/
.listing-remarks
{
	height: 75px;
	overflow: hidden;
	margin: 0 0 10px 0;

}

/*Featured Price Font*/
.listing-price
{
	color: #00158C;
	font-size: 20px;
	font-weight: 700;
}

/*Featured Address Font*/
.listing-address
{
	color: #A6000F;
	font-size: 12px;
}


   /*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- FEATURED LISTINGS FORMATTING END -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/

  
  /*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- FOOTER FORMATTING START -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/
#footer-wrapper
{
	width: 100%;
	background: url(../images/footer_top_color.png);
	min-height: 200px;
	font-weight: 600;
	padding: 10px 0 0 0;
}

#footer-top
{
	min-height: 100px;
	width: 100%;
}

/*Footer Top Font*/
#footer-top-inner
{
	width: 980px;
	margin: 0 auto;
	min-height: 100px;
	padding: 0 10px 0 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}

#footer-bar
{
	height: 40px;
	width: 100%;
	background: url(../images/footer_bottom_color.png);
}

#footer-bottom
{
	width: 100%;

}

#footer-bottom-inner
{
	width: 980px;
	margin: 0 auto;
	min-height: 40px;
	padding: 20px 10px 0 10px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}

.footer-heading
{
	color: #A6000F;
	font-size: 20px;
}

.footer-heading a
{
	color: #A6000F;
}

#footer-top p
{
	line-height: 22px;
}

/*Footer Top Link*/
#footer-top a
{
	
}

/*Footer Bottom Font*/
#footer-bottom p
{
	color: #B0ACAB;
	display: block;
	float: left;
}

/*Footer Bottom Link*/
#footer-bottom a
{
	color: #B0ACAB;
}

#footer-bottom img
{
	margin: 0 0 0 5px;
}

@media screen and (max-width: 980px)
{
	#footer-bottom-inner, #footer-top-inner
	{
		width: 100%;
	}
}
    /*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- FOOTER FORMATTING END -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/

  /*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- SOCIAL  FORMATTING START -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/
/*
#social
{
	float: left;
	height: 37px;
	width: 326px;
	overflow: hidden;
	margin: 28px 0 0 0;
}

#social li, #social ul
{
	list-style: none;
	height: 37px;
	display: block;
}

#social a
{
	text-indent: -9999em;
	display: block;
	width: 38px;
	height: 37px;
}

#social li
{
	width: 38px;
	float: right;
}

#social li.email 
{
	background:url(../images/social_media/email.png) no-repeat top left;
}
#social li.flickr 
{
	background:url(../images/social_media/flickr.png) no-repeat top left;
}
#social li.google-plus 
{
	background:url(../images/social_media/google-plus.png) no-repeat top left;
}
#social li.home 
{
	background:url(../images/social_media/home.png) no-repeat top left;
}
#social li.instagram 
{
	background:url(../images/social_media/instagram.png) no-repeat top left;
}
#social li.linkdin 
{
	background:url(../images/social_media/linkdin.png) no-repeat top left;
}
#social li.pinterest 
{
	background:url(../images/social_media/pinterest.png) no-repeat top left;
}
#social li.reddit 
{
	background:url(../images/social_media/reddit.png) no-repeat top left;
}
#social li.tumblr 
{
	background:url(../images/social_media/tumblr.png) no-repeat top left;
}
#social li.twitter 
{
	background:url(../images/social_media/twitter.png) no-repeat top left;
}
#social li.vimeo 
{
	background:url(../images/social_media/vimeo.png) no-repeat top left;
}
#social li.wordpress 
{
	background:url(../images/social_media/wordpress.png) no-repeat top left;
}
#social li.youtube 
{
	background:url(../images/social_media/youtube.png) no-repeat top left;
}
#social li.facebook 
{
	background:url(../images/social_media/facebook.png) no-repeat top left;
}

#social li.email a:hover 
{
	background:url(../images/social_media/email-dn.png) no-repeat top left;
}
#social li.flickr a:hover 
{
	background:url(../images/social_media/flickr-dn.png) no-repeat top left;
}
#social li.google-plus a:hover 
{
	background:url(../images/social_media/google-plus-dn.png) no-repeat top left;
}
#social li.home a:hover 
{
	background:url(../images/social_media/home-dn.png) no-repeat top left;
}
#social li.instagram a:hover 
{
	background:url(../images/social_media/instagram-dn.png) no-repeat top left;
}
#social li.linkdin a:hover 
{
	background:url(../images/social_media/linkdin-dn.png) no-repeat top left;
}
#social li.pinterest a:hover 
{
	background:url(../images/social_media/pinterest-dn.png) no-repeat top left;
}
#social li.reddit a:hover 
{
	background:url(../images/social_media/reddit-dn.png) no-repeat top left;
}
#social li.tumblr a:hover 
{
	background:url(../images/social_media/tumblr-dn.png) no-repeat top left;
}
#social li.twitter a:hover
 {
	background:url(../images/social_media/twitter-dn.png) no-repeat top left;
}
#social li.vimeo a:hover 
{
	background:url(../images/social_media/vimeo-dn.png) no-repeat top left;
}
#social li.wordpress a:hover 
{
	background:url(../images/social_media/wordpress-dn.png) no-repeat top left;
}
#social li.youtube a:hover 
{
	background:url(../images/social_media/youtube-dn.png) no-repeat top left;
}
#social li.facebook a:hover 
{
	background:url(../images/social_media/facebook-dn.png) no-repeat top left;
}

*/
  /*====================================================================================================================================================
====================================================================================================================================================
 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ -- SOCIAL  FORMATTING END -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
====================================================================================================================================================
  ===================================================================================================================================================*/