@charset "UTF-8";
/*CSS Document*/
/*****General styling*****/
*{
    box-sizing: border-box;
}


body{	
	background-color: rgba( 0 , 0 , 0 , 1 );
	color:#fff;
	font-family:"Palatino Linotype", "Book Antiqua", "Palatino", "san serif";
	font-size: 14px;
	padding:0em;
	margin:0em;
	letter-spacing: 0.05em;
	word-spacing: 0.2em;
}




/*****Wrapper, Container*****/

.content
{
	width:100%;
	margin:0 auto 0 auto;
	padding:0;
	border-top:1px solid rgba( 0 , 0 , 0 , 0 );
	border-bottom:1px solid rgba( 0 , 0 , 0 , 0 );
}



/*****Link*****/
a
{
	position: relative;
	display: inline-block;
	color: #fff;
	text-decoration: none;

	margin: 0;
	padding: 0;

	-moz-transition: background-color .1s ease-in-out;
	-webkit-transition: background-color .1s ease-in-out;
	-o-transition: background-color .1s ease-in-out;
	-ms-transition: background-color .1s ease-in-out;
	transition: background-color .1s ease-in-out;
}

a:hover
{
	color: #fff !important;
	background:#686868;
}

a:active
{
	background: #888888;
}



/*****Form and elements*****/
input, select
{
	border:0em;
	margin:0em;
	padding: 0.3em 0.1em 0.3em 0.1em;
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;

	background-color:rgba( 100 , 100 , 100 , 1 );
	
	color:rgba( 255 , 255 , 255 , 1 );
	text-align:center;
	font-size:1em;
}

input[type = "submit"], input[type = "reset"]
{
	width:3.5em;
}

input[type = "submit"]:hover, input[type = "reset"]:hover
{
	background-color:#777;
}
	
input[type = "email"]
{
	width:13em;
}



/*****Format*****/
	hr.hr2
	{
		width:8em !important;
		height: 1px !important;
		margin: 1.5em auto 1.5em auto !important;
		color:rgba( 180 , 180 , 180 , 1 ) !important;
		background-color:rgba( 180 , 180 , 180 , 1 ) !important;
		border:none !important;
	}










/*********************************************************************************/
/* For desktop                                                                   */
/*********************************************************************************/
@media only screen and (min-width :601px)
{
	.placeholder
	{	
		width:100%;
		height:30em;
		margin:0;
		padding:0;
		border-top: 1px solid white;
		border-bottom: 1px solid white;
		background-attachment:scroll;
		background-repeat:no-repeat;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}

	/*****Format*****/
	h1	
	{
		font-size:3em;
		text-align:center;
		margin-top:1em;
		margin-bottom:0.25em;
	}

	h2
	{
		font-size:1.8em;
		text-align:center;
		font-style:italic;
		margin-top:0.5em;
		margin-bottom:0.25em;
	}

	h3, h4, h5, h6
	{
		font-size:1.25em;
		margin-top:1.3em;
		margin-bottom:0.5em;
	}

	p
	{	
		max-width:36em;
		margin: 1.5em auto 1.5em auto;
		padding-left:1em;
		padding-right:1em;
		line-height:1.5em;
		text-align:justified;
	}

	li
	{
		max-width:36em;
		margin: 1.5em auto 1.5em auto;
		padding-left:0.5em;
		padding-right:0.5em;
		/*line-height:1.5em;*/
	}
}










/*********************************************************************************/
/* For mobile                                                                    */
/*********************************************************************************/
@media only screen and (max-device-width : 600px), (max-width : 600px)
{	
	.placeholder
	{	
		width:100%;
		height:20em;
		margin:0;
		padding:0;
		background-attachment:scroll;
		background-repeat:no-repeat;
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}

	/*****Format*****/
	h1	
	{
		font-size:2em;
		text-align:center;
		margin-top:2em;
		margin-bottom:0.25em;
	}

	h2
	{
		font-size:1.5em;
		text-align:center;
		font-style:italic;
		margin-top:0.5em;
		margin-bottom:0.25em;
	}

	h3, h4, h5, h6
	{
		margin-top:1em;
		margin-bottom:0.5em;
	}

	p
	{	
		margin: 1em auto 1em auto;
		padding-left:0.5em;
		padding-right:0.5em;
		line-height:1.5em;
		text-align:justified;
	}

	li
	{
		margin: 1.2em auto 1.2em auto;
		padding-left:0.5em;
		padding-right:0.5em;
		line-height:1.5em;
	}
	
}