/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/
/****Font Imports****/

@font-face {
  font-family: "Fontin_Sans_B_45b";
  src: url(http://nlightonline.com/wp-content/uploads/fonts/Fontin_Sans_B_45b.otf) format("opentype");
}
@font-face {
  font-family: "Fontin_Sans_BI_45b";
  src: url(http://nlightonline.com/wp-content/uploads/fonts/Fontin_Sans_BI_45b.otf) format("opentype");
}
@font-face {
  font-family: "Fontin_Sans_I_45b";
  src: url(http://nlightonline.com/wp-content/uploads/fonts/Fontin_Sans_I_45b.otf) format("opentype");
}
@font-face {
  font-family: "Fontin_Sans_R_45b";
  src: url(http://nlightonline.com/wp-content/uploads/fonts/Fontin_Sans_R_45b.otf) format("opentype");
}
@font-face {
  font-family: "Fontin_Sans_SC_45b";
  src: url(http://nlightonline.com/wp-content/uploads/fonts/Fontin_Sans_SC_45b.otf) format("opentype");
}
@font-face {
  font-family: "Fontin-Bold";
  src: url(http://nlightonline.com/wp-content/uploads/fonts/Fontin-Bold.otf) format("opentype");
}
@font-face {
  font-family: "Fontin-Italic";
  src: url(http://nlightonline.com/wp-content/uploads/fonts/Fontin-Italic.otf) format("opentype");
}
@font-face {
  font-family: "Fontin-Regular";
  src: url(http://nlightonline.com/wp-content/uploads/fonts/Fontin-Regular.otf) format("opentype");
}
@font-face {
  font-family: "Fontin-SmallCaps";
  src: url(http://nlightonline.com/wp-content/uploads/fonts/Fontin-SmallCaps.otf) format("opentype");
}


/****END Font Imports****/

/****Page Styles****/

.custom #container {
	background:none repeat scroll 0 0 #FF0000;
	border:10px solid #3E3E3A;
	margin-bottom:2em;
	margin-top:2em;
	padding:0;
	}
body{  
	border-bottom:none;
        }
#page{
        padding:2.4em;
        }

/****Custom Text Styles****/
.custom p{
	font-family:"Fontin-Regular" , serif;
}

.headline_area h1, .headline_area h2 {
	text-align:center;
	font-size: 4em;
	font-family: "Fontin_Sans_R_45b", sans-serif;
	text-shadow: #b8b8b8 2px 2px 2px;
	}

.comments_closed p {
	display: none;
}

/****Header Styles****/
#header{
	Height: 155px;
	}
.custom #header #tagline {
	Display:none;
	}
.custom #header #logo {
	Display:none;
	}



/****SLIDER STYLES****/

.hackadelic-sliderPanel {
	padding: 5px;
	padding-left: 10px;
	Margin-left: 10px;
	border-left: #888888 1px solid;
	color: #888888;
}

a.hackadelic-sliderButton {
	padding: 0 3px;
	font-size: 1.2em;
}
/****END SLIDER STYLES****/

/****SQUEEZE PAGE****/
.squeezepage #header {display:none;}
.squeezepage #footer {display:none;}
.squeezepage #sidebars {display:none;}
.squeezepage .headline_area h1, .squeezepage .headline_area h2 {color:red;}
.squeezepage h1{text-align:center; font-family:"Fontin_Sans_SC_45b" , sans-serif; line-height:1.3; color:red; text-shadow: #b8b8b8 2px 2px 2px;}
.squeezepage h2{text-align:center; font-family:"Fontin_Sans_I_45b" , sans-serif; text-shadow: #b8b8b8 2px 2px 2px;}
.squeezepage p{text-align:center; }

/****END SQUEEZE PAGE****/