 @import url("reset.css");
 
 /*FAMILY TREE CODE*/
* {margin: 0; padding: 0;}

		.tree ul {
			padding-top: 20px; position: relative;
	
			-webkit-transition: all 0.5s;
			-moz-transition: all 0.5s;
			transition: all 0.5s;
		}

		.tree li {
			float: left; text-align: center;
			list-style-type: none;
			position: relative;
			padding: 20px 5px 0 5px;
	
			-webkit-transition: all 0.5s;
			-moz-transition: all 0.5s;
			transition: all 0.5s;
		}

		/*We will use ::before and ::after to draw the connectors*/

		.tree li::before, .tree li::after{
			content: '';
			position: absolute; top: 0; right: 50%;
			border-top: 1px solid #ccc;
			width: 50%; height: 45px;
			z-index: -1;
		}
		.tree li::after{
			right: auto; left: 50%;
			border-left: 1px solid #ccc;
		}

		/*We need to remove left-right connectors from elements without 
		any siblings*/
		.tree li:only-child::after, .tree li:only-child::before {
			display: none;
		}

		/*Remove space from the top of single children*/
		.tree li:only-child{ padding-top: 0;}

		/*Remove left connector from first child and 
		right connector from last child*/
		.tree li:first-child::before, .tree li:last-child::after{
			border: 0 none;
		}
		/*Adding back the vertical connector to the last nodes*/
		.tree li:last-child::before{
			border-right: 1px solid #ccc;
			border-radius: 0 5px 0 0;
			
			-webkit-transform: translateX(1px);
			-moz-transform: translateX(1px);
			transform: translateX(1px);
			
			-webkit-border-radius: 0 5px 0 0;
			-moz-border-radius: 0 5px 0 0;
			border-radius: 0 5px 0 0;
		}
		.tree li:first-child::after{
			border-radius: 5px 0 0 0;
			-webkit-border-radius: 5px 0 0 0;
			-moz-border-radius: 5px 0 0 0;
		}

		/*Time to add downward connectors from parents*/
		.tree ul ul::before{
			content: '';
			position: absolute; top: -12px; left: 50%;
			border-left: 1px solid #ccc;
			width: 0; height: 32px;
			z-index: -1;
		}

		.tree li a{
			border: 1px solid #ccc;
			padding: 5px 10px;
			text-decoration: none;
			color: #666;
			font-family: arial, verdana, tahoma;
			font-size: 11px;
			display: inline-block;
			background: #000;/*BACKGROUND BLOCK COLOR*/
	
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border-radius: 5px;
	
			-webkit-transition: all 0.5s;
			-moz-transition: all 0.5s;
			transition: all 0.5s;
		}
		.tree li a+a {
			margin-left: 20px;
			position: relative;
		}
		.tree li a+a::before {
			content: '';
			position: absolute;
			border-top: 1px solid #ccc;
			top: 50%; left: -21px; 
			width: 20px;
		}

		/*Time for some hover effects*/
		/*We will apply the hover effect the the lineage of the element also*/
		.tree li a:hover, .tree li a:hover~ul li a {
			/*WAS #c8e4f8*/background: #712067; color: #FFF; border: 1px solid #94a0b4;
		}
		/*Connector styles on hover*/
		.tree li a:hover~ul li::after, 
		.tree li a:hover~ul li::before, 
		.tree li a:hover~ul::before, 
		.tree li a:hover~ul ul::before
		{
			border-color: #94a0b4;
		}
	
 #tree {
            width: 100%;
            height: 100%;
            position: relative;
            background-color: #2E2E2E;
        }

/* END FAMILY TREE CODE */

/** CHARACTER IMAGE GALLERY **/
div.img {
    margin: 35px;
    border: 1px solid #ccc;
    float: left;
    width: 325px;
	
}

div.img:hover {
    border: 1px solid #712067;/** Was #777 **/
}

div.img img {
    width: 100%;
    height: 325px;
	object-fit: cover;
	object-position: center;
	
}


div.desc {
    padding: 15px;
    text-align: center;
}

body
{
	font-size: 12px;
	font-family: 'Droid Sans', Arial, Helvetica, sans-serif;
	color: #CCC;
	background: #020202;
	
}

a { color: #712067; text-decoration: none; }
a:hover { color: #FFF; text-decoration: none; }


/*SUBMIT BUTTON FOR CHARACTER SHEET*/

input[type=submit] {
  border-radius: 6px;
  background-color: #712067; 
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 10px;
  width: 350px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}



/* PROFILE MENU CSS*/

#profilecont
{
	width: 100%;
	background: #020202;
}

	#profilecont #proheader
	{
	margin: 0 auto;
	width: 900px;
	}
		
		#profilecont #proheader #profilemenu
		{
	float: left;
	width: 780px; /*MENU BAR LENGTH ADUSTMENT*/
	padding: 30px 0;
		}

			#profilecont #proheader #profilemenu ul
			{
				float: right;
				height: 36px;
			}
			
			#profilecont #proheader #profilemenu ul li
			{
				float: left;
				display: block;
			}
			
			#profilecont #proheader #profilemenu ul li a
			{
				float: left;
				display: block;
				color: #FFF;
				background: #712067; /*menu bar background color*/
				margin: 0 0 0 5px;
				padding: 0 20px;
				line-height: 55px; /*menu bar button height*/
				font-size: 20px;
				text-decoration: none;
				text-transform: uppercase;
			}
			
			#profilecont #proheader #profilemenu ul ul li a
			{ 
				float: none; 
				width: 270px; /*menu list width adjustement*/
				padding: 10px 20px;
				line-height: 35px;
				margin: 1px;
			}
			
			

			#profilecont #proheader #profilemenu ul li a:hover, #profilecont #proheader #profilemenu ul li.sfHover a, #profilecont #proheader #profilemenu ul ul a
			{
				color: #FFF;
				background: #712067;
			}
			
			#profilecont #proheader #profilemenu ul li li a:hover, #profilecont #proheader ##profilemenu ul li.sfHover li a:hover
			{
				color: #FFF;
				background: #511649;
			}
			
/* END PROFILE MENU BAR*/


/* CONTROL PANEL MENU CSS*/

#profilecont2
{
	width: 100%;
	background: #020202;
}

	#profilecont2 #proheader2
	{
	margin: 0 auto;
	width: 900px;
	}
		
		#profilecont2 #proheader2 #profilemenu2
		{
	float: left;
	width: 685px; /*MENU BAR LENGTH ADUSTMENT*/
	padding: 30px 0;
		}

			#profilecont2 #proheader2 #profilemenu2 ul
			{
				float: right;
				height: 36px;
			}
			
			#profilecont2 #proheader2 #profilemenu2 ul li
			{
				float: left;
				display: block;
			}
			
			#profilecont2 #proheader2 #profilemenu2 ul li a
			{
				float: left;
				display: block;
				color: #FFF;
				background: #712067; /*menu bar background color*/
				margin: 0 0 0 5px;
				padding: 0 20px;
				line-height: 55px; /*menu bar button height*/
				font-size: 20px;
				text-decoration: none;
				text-transform: uppercase;
			}
			
			#profilecont2 #proheader2 #profilemenu2 ul ul li a
			{ 
				float: none; 
				width: 270px; /*menu list width adjustement*/
				padding: 10px 20px;
				line-height: 35px;
				margin: 1px;
			}
			
			

			#profilecont2 #proheader2 #profilemenu2 ul li a:hover, #profilecont2 #proheader2 #profilemenu2 ul li.sfHover a, #profilecont2 #proheader2 #profilemenu2 ul ul a
			{
				color: #FFF;
				background: #712067;
			}
			
			#profilecont2 #proheader2 #profilemenu2 ul li li a:hover, #profilecont2 #proheader2 ##profilemenu2 ul li.sfHover li a:hover
			{
				color: #FFF;
				background: #511649;
			}
			
/* END PROFILE MENU BAR*/


/** Main Styles **/

#headercont
{
	width: 100%;
	background: #020202;
}

	#headercont #header
	{
	margin: 0 auto;
	width: 900px;
	}
	
		#headercont #header #headerlogo
		{
	float: left;
	width: 800px;
	padding: 35px 0 0 0;
		}

			#headercont #header #headerlogo h1 a
			{
				color: #FFF;
				font-weight: normal;
				font-size: 70px;
				letter-spacing: -1px;
				text-transform: uppercase;
			}
			
			#headercont #header #headerlogo h1 a:hover
			{
				color: #712067; 
			}
		
		#headercont #header #headermenu
		{
	float: left;
	width: 860px; /*MENU BAR LENGTH ADUSTMENT*/
	padding: 30px 0;
		}

			#headercont #header #headermenu ul
			{
				float: right;
				height: 36px;
			}
			
			#headercont #header #headermenu ul li
			{
				float: left;
				display: block;
			}
			
			#headercont #header #headermenu ul li a
			{
				float: left;
				display: block;
				color: #FFF;
				background: #222; /*menu bar background color*/
				margin: 0 0 0 5px;
				padding: 0 20px;
				line-height: 55px; /*menu bar button height*/
				font-size: 20px;
				text-decoration: none;
				text-transform: uppercase;
			}
			
			#headercont #header #headermenu ul ul li a
			{ 
				float: none; 
				width: 270px; /*menu list width adjustement*/
				padding: 10px 20px;
				line-height: 35px;
				margin: 1px;
			}
			
			

			#headercont #header #headermenu ul li a:hover, #headercont #header #headermenu ul li.sfHover a, #headercont #header #headermenu ul ul a
			{
				color: #FFF;
				background: #712067;
			}
			
			#headercont #header #headermenu ul li li a:hover, #headercont #header #headermenu ul li.sfHover li a:hover
			{
				color: #FFF;
				background: #511649;
			}
			
				/*** Start SuckerFish Styles ***/
				
					.sf-menu, .sf-menu * { margin: 0; padding: 0; list-style:	none; }
					.sf-menu { line-height:	1.0; }
					.sf-menu ul { position: absolute; top: -999em; width: 200px; margin-top: 0; padding-top: 0; }
					.sf-menu ul li { width:	100%; }
					.sf-menu li:hover { visibility: inherit; }
					.sf-menu li { float: left; position: relative; }
					.sf-menu a { display: block; position: relative; }
					.sf-menu li:hover ul, .sf-menu li.sfHover ul { left: 0; top: 56px; z-index: 99; } /* Adjust the drop down menu location distance from the bar */
					ul.sf-menu li:hover li ul, ul.sf-menu li.sfHover li ul { top: -999em; }
					ul.sf-menu li li:hover ul, ul.sf-menu li li.sfHover ul { left: 200px; top: 0; }
					ul.sf-menu li li:hover li ul,
					ul.sf-menu li li.sfHover li ul { top: -999em; }
					ul.sf-menu li li li:hover ul,
					ul.sf-menu li li li.sfHover ul { left: 10em; top: 0; }		
				
				/** End SuckerFish Styles **/


	/*ATTEMPT TO REMOVE ARROW SECTION CSS*/
	
	#gallerycont
{
	margin: 0 auto;
	width: 920px;
	padding: 20px 0 0 0;
	font-size: 11px;
}
	
	#gallerycont .panel2
	{
		float: left;
		width: 330px;
		padding: 20px 0 20px 20px;
	}

	/* END GALLERY ARROW BUTTON REMOVAL CSS */

#gallerycont
{
	margin: 0 auto;
	width: 920px;
	padding: 20px 0 0 0;
	font-size: 11px;
}
	
	#gallerycont .panelleft
	{
		float: left;
		width: 330px;
		padding: 20px 0 20px 20px;
	}
	
		#gallerycont .panelleft p
		{
			margin: 0 0 15px 0;
		}
		
		#gallerycont .panelleft h3
		{
			margin: 10px 0;
			font-size: 36px;
			font-weight: bold;
			color: #FFF;
			text-transform: uppercase;
		}
		
	
	#gallerycont .panelright
	{
	float: right;
	width: 450px;
	height: 300px;
	padding: 20px;

	}
	
	
	/* NEW CENTER PANNEL FOR MOBILE */
	
	#gallerycont .panelcenter
	{
		float: left;
		width: 780px;
		height: 515px;
		padding: 20px 0 20px 20px;
	}
	
		#gallerycont .panelcenter p
		{
			margin: 0 0 15px 0;
		}
		
		#gallerycont .panelcenter h3
		{
			margin: 10px 0;
			font-size: 30px;
			font-weight: bold;
			color: #FFF;
			text-transform: uppercase;
		}
		
		#gallerycont .panelcenter h2
		{
			margin: 10px 0;
			font-size: 45px;
			font-weight: bold;
			color: #FFF;
			line-height: 105%;
			text-transform: uppercase;
		}
		
		.sansserif 
		{
  			font-family: Arial, Helvetica, sans-serif;
  			margin: 80px 0;
			font-size: 23px;
			font-weight: none;
			line-height: 105%;
			color: #FFF;
		}
		
		.sansgar
		{ 
			font-family: Garamond, Baskerville, "Baskerville Old Face", "Hoefler Text", "Times New Roman", serif; 
			font-size: 24px; 
			font-style: normal; 
			font-variant: normal; 
			font-weight: none; 
			line-height: 26px; 
		}
		
		.sansgill
		{ 
			font-family: "Gill Sans", sans-serif; 
			font-size: 24px; 
			font-style: normal; 
			font-variant: normal; 
			font-weight: none; 
			line-height: 22px; 
		}
		
		.name
		{ 	font-family: "Droid Sans", Arial, Helvetica, sans-serif;
			font-style: normal; 
			font-variant: normal; 
			font-weight: 400; 
			margin: 10px 0;
			padding: 0;
			border: 0;
			outline: 0;
			line-height: 18px;
			font-size: 30px;
			font-weight: bold;
			color: #FFF;
			text-transform: uppercase;
		
		}
		
		.profile
		{ 	font-family: "Droid Sans", Arial, Helvetica, sans-serif;
			font-style: normal; 
			font-variant: normal; 
			margin: 10px 0;
			padding: 0;
			border: 0;
			outline: 0;
			line-height: 18px;
			font-size: 18px;
			font-weight: 0;
			color: #FFF;
			text-transform: uppercase;
		
		}
		
		.body
		{ 
			font-family: "Droid Sans"; 
			font-size: 18px; 
			font-style: normal; 
			font-variant: normal; 
			font-weight: 400; 
			line-height: 25px; 
		}
		
		.coltext
		{ 
			font-family: "Droid Sans"; 
			font-size: 35px; 
			font-style: normal; 
			font-variant: normal; 
			font-weight: 400; 
			line-height: 35px;
		}
		
		.hometext
		{ 
			font-family: "Droid Sans"; 
			font-size: 17px; 
			font-style: normal; 
			font-variant: normal; 
			font-weight: 400; 
			line-height: 23px; 
		}
		
		.bodylarge
		{ 	font-family: "Droid Sans", Arial, Helvetica, sans-serif;
			font-style: normal; 
			font-variant: normal; 
			font-weight: 400; 
			margin: 10px 0;
			padding: 0;
			border: 0;
			outline: 0;
			line-height: 18px;
			font-size: 30px;
			font-weight: bold;
			text-transform: uppercase;
		}
		
		#gallerycont .panelcenter h1
		{
			font-family: "Droid Sans"; 
			font-size: 40px; font-style: normal; 
			font-variant: normal; 
			font-weight: bold; 
			line-height: 26px;
			letter-spacing: -2px;
			line-height: 105%;
		}
		
		
		/* REGISTRATION BOX PAGE */
		
		#gallerycont .panelreg
	{
		float: left;
		width: 780px;
		height: 680px;
		padding: 20px 0 20px 20px;
	}
	
		#gallerycont .panelreg p
		{
			margin: 0 0 15px 0;
		}
		
		
		#gallerycont .panelreg h3
		{
			margin: 10px 0;
			font-size: 30px;
			font-weight: bold;
			color: #FFF;
			text-transform: uppercase;
		}
		
		#gallerycont .panelreg h2
		{
			margin: 10px 0;
			font-size: 45px;
			font-weight: bold;
			color: #FFF;
			line-height: 105%;
			text-transform: uppercase;
		}
		
		.sansserif 
		{
  			font-family: Arial, Helvetica, sans-serif;
  			margin: 80px 0;
			font-size: 23px;
			font-weight: none;
			line-height: 105%;
			color: #FFF;
		}
		
		
		#gallerycont .panelreg h1
		{
			font-family: "Droid Sans"; 
			font-size: 40px; font-style: normal; 
			font-variant: normal; 
			font-weight: bold; 
			line-height: 26px;
			letter-spacing: -2px;
			line-height: 105%;
		}
		
			/* REGISTRATION SUCCESS BOX PAGE */
		
		#gallerycont .panelsucc
	{
		float: left;
		width: 780px;
		height: 380px;
		padding: 20px 0 20px 20px;
	}
	
		#gallerycont .panelsucc p
		{
			margin: 0 0 15px 0;
		}
		
		
		#gallerycont .panelsucc h3
		{
			margin: 10px 0;
			font-size: 30px;
			font-weight: bold;
			color: #FFF;
			text-transform: uppercase;
		}
		
		#gallerycont .panelsucc h2
		{
			margin: 10px 0;
			font-size: 45px;
			font-weight: bold;
			color: #FFF;
			line-height: 105%;
			text-transform: uppercase;
		}
		
		.sansserif 
		{
  			font-family: Arial, Helvetica, sans-serif;
  			margin: 80px 0;
			font-size: 23px;
			font-weight: none;
			line-height: 105%;
			color: #FFF;
		}
		
		
		#gallerycont .panelsucc h1
		{
			font-family: "Droid Sans"; 
			font-size: 40px; font-style: normal; 
			font-variant: normal; 
			font-weight: bold; 
			line-height: 26px;
			letter-spacing: -2px;
			line-height: 105%;
		}
		
		/* LOGIN BOX PAGE */
		
		#gallerycont .panellog
	{
		float: left;
		width: 780px;
		height: 550px;
		padding: 20px 0 20px 20px;
	}
	
		#gallerycont .panellog p
		{
			margin: 0 0 15px 0;
		}
		
		
		#gallerycont .panellog h3
		{
			margin: 10px 0;
			font-size: 30px;
			font-weight: bold;
			color: #FFF;
			text-transform: uppercase;
		}
		
		#gallerycont .panellog h2
		{
			margin: 10px 0;
			font-size: 45px;
			font-weight: bold;
			color: #FFF;
			line-height: 105%;
			text-transform: uppercase;
		}
		
		.sansserif 
		{
  			font-family: Arial, Helvetica, sans-serif;
  			margin: 80px 0;
			font-size: 23px;
			font-weight: none;
			line-height: 105%;
			color: #FFF;
		}
		
		
		#gallerycont .panellog h1
		{
			font-family: "Droid Sans"; 
			font-size: 40px; font-style: normal; 
			font-variant: normal; 
			font-weight: bold; 
			line-height: 26px;
			letter-spacing: -2px;
			line-height: 105%;
		}
		
		
		/* /** LOIN / REGISTER FORM BOXES MODIFICATIONS **/
		
		/** YOU CAN SET THE FONT-SIZE WITH THIS SETTING **/
		
		/* .loginbox .loginform .form-label > label 
		{
    	font-size: 150%;
		}
		
		/** YOU CAN CHANGE THE WIDTH OF THE INPUT BOXES WITH THIS SETTING **/
		
		/* .loginbox .loginform .form-input input 
		{
    	width: 20em;
		}
		
		/** YOU CAN CHANGE THE HEIGHT, TEXT COLOR, FONT-SIZE OF THE INPUT BOXES WITH THIS SETTING **/
		
		/* .loginbox .loginform .form-input input#username,
		.loginbox .loginform .form-input input#password {
   		border-radius: 4px;
    	color: #555;
    	display: inline-block;
    	font-size: 14px;
    	height: 20px;
    	line-height: 20px;
    	margin-bottom: 10px;
    	padding: 10px 5px;
    	vertical-align: middle;
} */

	
	/* Don't change anything below here unless you know what you're doing */
		/* PRIMARY GALLERY WITH ARROWS*/

		.coda-slider { background: #222; -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px; -moz-box-shadow: 0 0 5px #000; -webkit-box-shadow: 0 0 5px #000; box-shadow: 0 0 5px #000; } /*GALLERY BACKGROUND COLOR*/
		.coda-slider, .coda-slider .panel { width: 840px; line-height: 16px; } /* WIDTH CONTROLS GALLERY WIDTH - LINE HEIGHT CONTROLS BOTTOM LENGTH - MARGIN CONTROLS PHYSICAL LOCATION*/
		
		.coda-nav-left a { background: url("../images/arrow-left.png") no-repeat center right; color: #FFF; width: 40px; height: 340px; text-indent: -9000em; }
			.coda-nav-left a:hover { background: url("../images/arrow-left.png") no-repeat center left; }
		
		.coda-nav-right a { background: url("../images/arrow-right.png") no-repeat center left; color: #FFF; width: 40px; height: 340px; text-indent: -9000em; }
			.coda-nav-right a:hover { background: url("../images/arrow-right.png") no-repeat center right; }

		.coda-slider-wrapper { clear: both; overflow: auto }
		.coda-slider { float: left; overflow: hidden; position: relative }
		.coda-slider .panel { display: block; float: left }
		.coda-slider .panel-container { position: relative }
		.coda-nav-left, .coda-nav-right { float: left }
		.coda-nav-left a, .coda-nav-right a { display: block; text-align: center; text-decoration: none }
	
	/* End */
	
	/* SECONDARY GALLERY WITHOUT ARROWS */

		.coda-slider2 { background: #222; -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px; -moz-box-shadow: 0 0 5px #000; -webkit-box-shadow: 0 0 5px #000; box-shadow: 0 0 5px #000; } /*GALLERY BACKGROUND COLOR*/
		.coda-slider2, .coda-slider2 .panel2 { width: 840px; line-height: 18px; margin: 0 0 0 40px; } /* WIDTH CONTROLS GALLERY WIDTH - LINE HEIGHT CONTROLS BOTTOM LENGTH - MARGIN CONTROLS PHYSICAL LOCATION*/
		
		.coda-nav-left2 a { background: url("../images/arrow-left2.png") no-repeat center right; color: #FFF; width: 40px; height: 340px; text-indent: -9000em; }
			.coda-nav-left2 a:hover { background: url("../images/arrow-left2.png") no-repeat center left; }
		
		.coda-nav-right2 a { background: url("../images/arrow-right.png") no-repeat center left; color: #FFF; width: 40px; height: 340px; text-indent: -9000em; }
			.coda-nav-right2 a:hover { background: url("../images/arrow-right.png") no-repeat center right; }

		.coda-slider-wrapper2 { clear: both; overflow: auto }
		.coda-slider2 { float: left; overflow: hidden; position: relative }
		.coda-slider2 .panel2 { display: block; float: left }
		.coda-slider2 .panel-container2 { position: relative }
		.coda-nav-left2, .coda-nav-right2 { float: left }
		.coda-nav-left2 a, .coda-nav-right2 a { display: block; text-align: center; text-decoration: none } 
	
	/* End */

#maincont
{
	margin: 0 auto;
	width: 840px;
	padding: 5px 40px;
	line-height: 22px;
}

		#maincont p { margin: 0 0 15px 0; }
		
		#maincont h1, #maincont h2, #maincont h3, #maincont h4, #maincont h5 {
	/* [disabled]margin: 0 0 15px 0; */
	font-weight: normal;
	letter-spacing: -1px;
}
		#maincont h1 { font-size: 36px; }
		#maincont h2 { font-size: 34px; }
		#maincont h3 { font-size: 34px; }
		#maincont h4 { font-size: 22px; }
		#maincont h5 { font-size: 22px; }
			#maincont #mainleft h1, #maincont #mainleft h2, #maincont #mainleft h3, #maincont #mainleft h4, #maincont #mainleft h5 { color: #666; }
		
		#maincont ul { margin: 0 0 15px 35px; list-style-type: square; }
		#maincont ul li { padding: 0 0 0 2px; }
		
		#maincont ol { margin: 0 0 15px 35px; list-style-type: decimal; }
		#maincont ol li { padding: 0 0 0 2px; }
		
		
	#maincont blockquote 
		{ 
		font-family: "Droid Sans", Arial, Helvetica, sans-serif;
		background: #171717; 
		border-left: 3px solid #712067; 
		border-right: 3px solid #712067; 
		padding: 25px; 
		margin: 0 0 20px 0; 
		font-size: 20px;
		text-align: center;  
		width: 780px;
		}


	#maincont #mainleft
	{
	float: left;
	width: 200px;
	padding: 0 40px 0 0;
	color: #666;
	}
	
		#maincont #mainleft ul.sidemenu
		{
			float: left;
			width: 900px;
			margin: 0 0 15px 0;
			
		}
		
		#maincont #mainleft ul.sidemenu li
		{
			display: block;
			list-style-type: none;
			
		}
		
		#maincont #mainleft ul.sidemenu li a
		{
			float: left;
			width: 394px;
			height: 50px;
			padding: 6px 10px;
			margin: 1px 5px 5px 1px;
			background: #181818;
			color: #CCC;
			display: flex;
 			flex-direction: column;
  			flex-wrap: wrap;
  			align-content: flex-start;
  			list-style: none;
			line-height: 50px;
		}
		
			#maincont #mainleft ul.sidemenu li.active a
			{
				color: #FFF;
				background: #712067;
			}
		
		#maincont #mainleft ul.sidemenu li a:hover
		{
			color: #FFF;
			background: #511649;
		}
	
	#maincont #mainright
	{
	float: left;
	width: 800px;
	}
	
#footercont
{
	margin: 0 auto;
	width: 800px;
	padding: 20px;
	font-size: 11px;
	line-height: 16px;
	text-align: right;
	border-top: 1px dashed #222;
	color: #666;
}

/** Start Floating IMG **/

element {
    cursor: pointer;
}

* {
    font-size: 100.01%;
}

.s4_btn_style .s4_widget_pos {
    position: absolute;
    top: 139px;
}

img {
    border-style: none;
        border-top-style: none;
        border-right-style-value: none;
        border-bottom-style: none;
        border-left-style-value: none;
        border-left-style-ltr-source: physical;
        border-left-style-rtl-source: physical;
        border-right-style-ltr-source: physical;
        border-right-style-rtl-source: physical;
    vertical-align: top;
}
* {
    font-size: 100.01%;
}

.s4_btn_style {
    list-style: none outside none;
        list-style-type: none;
        list-style-image: none;
        list-style-position: outside;
}

.s4_btn_style {
    position: fixed;
    margin: 0px;
    padding: 0px;
    top: 98px;
    list-style: none outside none;
    z-index: 9999;
    right: 87px;
}

#s4-widget-arrow1 {
    top: 294px;
    z-index: -1;
}

#s4-widget-arrow2 {
    left: 57px;
    top: 295px;
}

.sa_s4_overlay_popup_css {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 1000;
    opacity: 0.5;
}

.sa_s4_popup_css {
    background-color: #FFF;
    display: none;
    height: 475px;
    left: 50%;
    padding: 16px;
    position: fixed;
    top: 50%;
    width: 650px;
    z-index: 1002;
    margin-top: -232px;
    margin-left: -325px;
}

.sa_s4_cpcd_popup_overlay_popup_css{
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index:1000;
    -moz-opacity: 0.5;
     opacity:.50;
     filter: alpha(opacity=80);
}

/** End Floating IMG **/

/** COLAPSABLE TEXT AREA **/

.toggle-box {
  display: none;
}

.toggle-box + label {
  cursor: pointer;
  display: block;
  font-weight: bold;
  line-height: 21px;
  margin-bottom: 5px;
}

.toggle-box + label + div {
  display: none;
  margin-bottom: -10px;
}

.toggle-box:checked + label + div {
  display: block;
}

.toggle-box + label:before {
  background-color: #93388C; /** ORIGINAL COLOR #4F5150 **/
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: #FFFFFF;
  content: url(https://houseofblackflame.com/_images/Page%20Break%20Icons/arrow_right.png);
  display: block;
  float: left;
  font-weight: bold;
  height: 20px;
  line-height: 20px;
  margin-right: 5px;
  text-align: center;
  width: 20px;
}

.toggle-box:checked + label:before {
  content: url(http://houseofblackflame.com/_images/Page%20Break%20Icons/arrow_down.png);
}


/** COLAPSABLE TEXT AREA MOBILE **/

.toggle-box1 {
  display: none;
}

.toggle-box1 + label {
  cursor: pointer;
  display: block;
  font-weight: bold;
  line-height: 44px;
  margin-bottom: 15px;
}

.toggle-box1 + label + div {
  display: none;
  margin-bottom: 15px;
}

.toggle-box1:checked + label + div {
  display: block;
}

.toggle-box1 + label:before {
  	/** background-color: #1F201F; /** ORIGINAL COLOR #4F5150 **/
  	-webkit-border-radius: 35px;
  	-moz-border-radius: 35px;
 	border-radius: 35px;
  	color: #FFFFFF;
  	content: url(https://houseofblackflame.com/_images/Page%20Break%20Icons/arrow_right.png);
  	font-size: 32px;
 	display: block;
  	float: left;
  	font-weight: bold;
  	height: 35px;
  	line-height: 36px;
  	margin-right: 5px;
  	text-align: center;
  	width: 35px;
}

.toggle-box1:checked + label:before {
  content: url(http://houseofblackflame.com/_images/Page%20Break%20Icons/arrow_down.png);
}


/** TESTING IE WARNING **/

#warning        {position:relative; top:0px; width:100%; height:40px; background-color:#fff; margin-top:0px; padding:4px; border-bottom:solid 4px #000066}

/** VIEW PORT TESTING **/

/** MOBILE DEVICE CODING **/


/* @media only screen and (max-device-width: 800px) {

.page5

#headercont
{
	width: 100%;
	background: #020202;
}


}

/* FORM 3 DENIED PAGE CODE */

.form-3 {
    font-family: 'Ubuntu', 'Lato', sans-serif;
    font-weight: 400;
    /* Size and position */
    width: 500px;
    position: relative;
    margin: 35px auto 30px;
    padding: 10px;
    overflow: hidden;

    /* Styles */
    background: #111; 
    border-radius: 0.4em;
    border: 1px solid #191919;
    box-shadow: 
        inset 0 0 2px 1px rgba(255,255,255,0.08), 
        0 16px 10px -8px rgba(0, 0, 0, 0.6);
}

.form-3 label {
    /* Size and position */
    width: 30%;
    float: left;
    padding-top: 9px;

    /* Styles */
    color: #ddd;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 0 #000;
    text-indent: 10px;
    font-weight: 700;
    cursor: pointer;
}

.form-3 input[type=text],
.form-3 input[type=password] {
    /* Size and position */
    width: 60%;
    float: left;
    padding: 8px 5px;
    margin-bottom: 10px;
    font-size: 12px;

    /* Styles */
    background: #1f2124; /* Fallback */
    background: -moz-linear-gradient(#1f2124, #27292c);
    background: -ms-linear-gradient(#1f2124, #27292c);
    background: -o-linear-gradient(#1f2124, #27292c);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#1f2124), to(#27292c));
    background: -webkit-linear-gradient(#1f2124, #27292c);
    background: linear-gradient(#1f2124, #27292c);    
    border: 1px solid #000;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.1);
    border-radius: 3px;

    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: #fff;

}

.form-3 input[type=text]:hover,
.form-3 input[type=password]:hover,
.form-3 label:hover ~ input[type=text],
.form-3 label:hover ~ input[type=password] {
    background: #27292c;
}

.form-3 input[type=text]:focus, 
.form-3 input[type=password]:focus {
    box-shadow: inset 0 0 2px #000;
    background: #494d54;
    border-color: #986893;
	border-width: 2px;
    outline: none; /* Remove Chrome outline */
}

.form-3 p:nth-child(3),
.form-3 p:nth-child(4) {
    float: left;
    width: 50%;
}

.form-3 label[for=remember] {
    width: auto;
    float: none;
    display: inline-block;
    text-transform: capitalize;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0px;
    text-indent: 2px;
}

.form-3 input[type=checkbox] {
    margin-left: 10px;
    vertical-align: middle;
}

.form-3 input[type=submit] {
    /* Width and position LOGIN BUTTON*/
    width: 35%;
    padding: 8px 5px;
  
    /* Styles */
    border: 1px solid #0273dd; /* Fallback */
    border: 1px solid rgba(0,0,0,0.4);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 10px 10px rgba(255,255,255,0.1);
    border-radius: 3px;
    background: #6C2866;
    cursor:pointer;
  
    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
}

.form-3 input[value=Register] {
    /* Width and position REGISTER BUTTON*/
    width: 35%;
    padding: 8px 5px;
  
    /* Styles */
    border: 1px solid #0273dd; /* Fallback */
    border: 1px solid rgba(0,0,0,0.4);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 10px 10px rgba(255,255,255,0.1);
    border-radius: 3px;
    background: #6C2866;
    cursor:pointer;
  
    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
}

.form-3 .Reset {
    /* Width and position REGISTER BUTTON*/
    width: 40%;
    padding: 8px 5px;
  
    /* Styles */
    border: 1px solid #0273dd; /* Fallback */
    border: 1px solid rgba(0,0,0,0.4);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 10px 10px rgba(255,255,255,0.1);
    border-radius: 3px;
    background: #6C2866;
    cursor:pointer;
  
    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
}



.form-3 input[type=submit]:hover { 
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.form-3 input[type=submit]:active { 
    background: #287db5;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.6);
    border-color: #000; /* Fallback */
    border-color: rgba(0,0,0,0.9);
}

.no-boxshadow .form-3 input[type=submit]:hover {
    background: #2a92d8;
}

.form-3:after {
    /* Size and position */
    content: "";
    height: 1px;
    width: 33%;
    position: absolute;
    left: 20%;
    top: 0;

    /* Styles */
    background: -moz-linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
    background: -ms-linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
    background: -o-linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
    background: -webkit-gradient(linear, 0 0, 100% 0, from(transparent), color-stop(0.25, #444), color-stop(0.5, #b6b6b8), color-stop(0.75, #444), to(transparent));
    background: -webkit-linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
    background: linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
}

.form-3:before {
    /* Size and position */
    content: "";
    width: 8px;
    height: 5px;
    position: absolute;
    left: 34%;
    top: -7px;
    
    /* Styles */
    border-radius: 50%;
    box-shadow: 0 0 6px 4px #fff;
}

.form-3 p:nth-child(1):before{
    /* Size and position */
    content:"";
    width:250px;
    height:100px;
    position:absolute;
    top:0;
    left:45px;

    /* Styles */
    -webkit-transform: rotate(75deg);
    -moz-transform: rotate(75deg);
    -ms-transform: rotate(75deg);
    -o-transform: rotate(75deg);
    transform: rotate(75deg);
    background: -moz-linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    background: -ms-linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    background: -o-linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    background: -webkit-linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    background: linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    pointer-events:none;
}

.no-pointerevents .form-3 p:nth-child(1):before {
    display: none;
}

/* FORM 4 DENIED PAGE CODE */

.form-4 {
    font-family: 'Ubuntu', 'Lato', sans-serif;
    font-weight: 400;
    /* Size and position */
    width: 500px;
    position: relative;
    margin: 20px auto 30px;
    padding: 10px;
    overflow: hidden;

    /* Styles */
    background: #111; 
    border-radius: 0.4em;
    border: 1px solid #191919;
    box-shadow: 
        inset 0 0 2px 1px rgba(255,255,255,0.08), 
        0 16px 10px -8px rgba(0, 0, 0, 0.6);
}

.form-4 label {
    /* Size and position */
    width: 30%;
    float: left;
    padding-top: 9px;

    /* Styles */
    color: #ddd;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 0 #000;
    text-indent: 10px;
    font-weight: 700;
    cursor: pointer;
}

.form-4 input[type=text],
.form-4 input[type=password] {
    /* Size and position */
    width: 60%;
    float: left;
    padding: 8px 5px;
    margin-bottom: 10px;
    font-size: 12px;

    /* Styles */
    background: #1f2124; /* Fallback */
    background: -moz-linear-gradient(#1f2124, #27292c);
    background: -ms-linear-gradient(#1f2124, #27292c);
    background: -o-linear-gradient(#1f2124, #27292c);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#1f2124), to(#27292c));
    background: -webkit-linear-gradient(#1f2124, #27292c);
    background: linear-gradient(#1f2124, #27292c);    
    border: 1px solid #000;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.1);
    border-radius: 3px;

    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: #fff;

}

.form-4 input[type=text]:hover,
.form-4 input[type=password]:hover,
.form-4 label:hover ~ input[type=text],
.form-4 label:hover ~ input[type=password] {
    background: #27292c;
}

.form-4 input[type=text]:focus, 
.form-4 input[type=password]:focus {
    box-shadow: inset 0 0 2px #000;
    background: #494d54;
    border-color: #986893;
	border-width: 2px;
    outline: none; /* Remove Chrome outline */
}

.form-4 p:nth-child(3),
.form-4 p:nth-child(4) {
    float: left;
    width: 50%;
}

.form-4 label[for=remember] {
    width: auto;
    float: none;
    display: inline-block;
    text-transform: capitalize;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0px;
    text-indent: 2px;
}

.form-4 input[type=checkbox] {
    margin-left: 10px;
    vertical-align: middle;
}

.form-4 input[type=submit] {
    /* Width and position LOGIN BUTTON*/
    width: 35%;
    padding: 8px 5px;
  
    /* Styles */
    border: 1px solid #0273dd; /* Fallback */
    border: 1px solid rgba(0,0,0,0.4);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 10px 10px rgba(255,255,255,0.1);
    border-radius: 3px;
    background: #6C2866;
    cursor:pointer;
  
    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
}

.form-4 input[value=Register] {
    /* Width and position REGISTER BUTTON*/
    width: 35%;
    padding: 8px 5px;
  
    /* Styles */
    border: 1px solid #0273dd; /* Fallback */
    border: 1px solid rgba(0,0,0,0.4);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 10px 10px rgba(255,255,255,0.1);
    border-radius: 3px;
    background: #6C2866;
    cursor:pointer;
  
    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
}

.form-4 .Reset {
    /* Width and position REGISTER BUTTON*/
    width: 40%;
    padding: 8px 5px;
  
    /* Styles */
    border: 1px solid #0273dd; /* Fallback */
    border: 1px solid rgba(0,0,0,0.4);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 10px 10px rgba(255,255,255,0.1);
    border-radius: 3px;
    background: #6C2866;
    cursor:pointer;
  
    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
}



.form-4 input[type=submit]:hover { 
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.form-4 input[type=submit]:active { 
    background: #287db5;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.6);
    border-color: #000; /* Fallback */
    border-color: rgba(0,0,0,0.9);
}

.no-boxshadow .form-4 input[type=submit]:hover {
    background: #2a92d8;
}

.form-4:after {
    /* Size and position */
    content: "";
    height: 1px;
    width: 33%;
    position: absolute;
    left: 20%;
    top: 0;

    /* Styles */
    background: -moz-linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
    background: -ms-linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
    background: -o-linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
    background: -webkit-gradient(linear, 0 0, 100% 0, from(transparent), color-stop(0.25, #444), color-stop(0.5, #b6b6b8), color-stop(0.75, #444), to(transparent));
    background: -webkit-linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
    background: linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
}

.form-4:before {
    /* Size and position */
    content: "";
    width: 8px;
    height: 5px;
    position: absolute;
    left: 34%;
    top: -7px;
    
    /* Styles */
    border-radius: 50%;
    box-shadow: 0 0 6px 4px #fff;
}

.form-4 p:nth-child(1):before{
    /* Size and position */
    content:"";
    width:250px;
    height:100px;
    position:absolute;
    top:0;
    left:45px;

    /* Styles */
    -webkit-transform: rotate(75deg);
    -moz-transform: rotate(75deg);
    -ms-transform: rotate(75deg);
    -o-transform: rotate(75deg);
    transform: rotate(75deg);
    background: -moz-linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    background: -ms-linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    background: -o-linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    background: -webkit-linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    background: linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    pointer-events:none;
}

.no-pointerevents .form-4 p:nth-child(1):before {
    display: none;
}

/* FORM 2 REGISTRATION PAGE CODE */

.form-2 {
    font-family: 'Ubuntu', 'Lato', sans-serif;
    font-weight: 400;
    /* Size and position */
    width: 650px;
    position: relative;
    margin: 20px auto 30px;
    padding: 10px;
    overflow: hidden;

    /* Styles */
    background: #111; 
    border-radius: 0.4em;
    border: 1px solid #191919;
    box-shadow: 
        inset 0 0 2px 1px rgba(255,255,255,0.08), 
        0 16px 10px -8px rgba(0, 0, 0, 0.6);
}

.form-2 label {
    /* Size and position WIDTH BETWEEN TEXT AND BOX*/
    width: 33%;
    float: left;
    padding-top: 9px;

    /* Styles */
    color: #ddd;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 0 #000;
    text-indent: 10px;
    font-weight: 700;
    cursor: pointer;
}

.form-2 input[type=text],
.form-2 input[type=password] {
    /* Size and position */
    width: 60%;
    float: left;
    padding: 8px 5px;
    margin-bottom: 10px;
    font-size: 12px;

    /* Styles */
    background: #1f2124; /* Fallback */
    background: -moz-linear-gradient(#1f2124, #27292c);
    background: -ms-linear-gradient(#1f2124, #27292c);
    background: -o-linear-gradient(#1f2124, #27292c);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#1f2124), to(#27292c));
    background: -webkit-linear-gradient(#1f2124, #27292c);
    background: linear-gradient(#1f2124, #27292c);    
    border: 1px solid #000;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.1);
    border-radius: 3px;

    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: #fff;

}

.form-2 input[type=text]:hover,
.form-2 input[type=password]:hover,
.form-2 label:hover ~ input[type=text],
.form-2 label:hover ~ input[type=password] {
    background: #27292c;
}

.form-2 input[type=text]:focus, 
.form-2 input[type=password]:focus {
    box-shadow: inset 0 0 2px #000;
    background: #494d54;
    border-color: #986893;
	border-width: 2px;
    outline: none; /* Remove Chrome outline */
/*}

.form-2 p:nth-child(3),
.form-2 p:nth-child(4) {
    float: left;
    width: 50%;
}*/

.form-2 label[for=remember] {
    width: auto;
    float: none;
    display: inline-block;
    text-transform: capitalize;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0px;
    text-indent: 2px;
}

.form-2 input[type=checkbox] {
    margin-left: 10px;
    vertical-align: middle;
}

.form-2 input[type=submit] {
    /* Width and position LOGIN BUTTON*/
    width: 35%;
    padding: 8px 5px;
  
    /* Styles */
    border: 1px solid #0273dd; /* Fallback */
    border: 1px solid rgba(0,0,0,0.4);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 10px 10px rgba(255,255,255,0.1);
    border-radius: 3px;
    background: #6C2866;
    cursor:pointer;
  
    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
}

.form-2 input[value=Register] {
    /* Width and position REGISTER BUTTON*/
    width: 35%;
    padding: 8px 5px;
  
    /* Styles */
    border: 1px solid #0273dd; /* Fallback */
    border: 1px solid rgba(0,0,0,0.4);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 10px 10px rgba(255,255,255,0.1);
    border-radius: 3px;
    background: #6C2866;
    cursor:pointer;
  
    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
}

.form-2 .Reset {
    /* Width and position REGISTER BUTTON*/
    width: 40%;
    padding: 8px 5px;
  
    /* Styles */
    border: 1px solid #0273dd; /* Fallback */
    border: 1px solid rgba(0,0,0,0.4);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 0 10px 10px rgba(255,255,255,0.1);
    border-radius: 3px;
    background: #6C2866;
    cursor:pointer;
  
    /* Font styles */
    font-family: 'Ubuntu', 'Lato', sans-serif;
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.8);
}



.form-2 input[type=submit]:hover { 
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.form-2 input[type=submit]:active { 
    background: #287db5;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.6);
    border-color: #000; /* Fallback */
    border-color: rgba(0,0,0,0.9);
}

.no-boxshadow .form-2 input[type=submit]:hover {
    background: #2a92d8;
}

.form-2:after {
    /* Size and position */
    content: "";
    height: 1px;
    width: 33%;
    position: absolute;
    left: 20%;
    top: 0;

    /* Styles */
    background: -moz-linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
    background: -ms-linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
    background: -o-linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
    background: -webkit-gradient(linear, 0 0, 100% 0, from(transparent), color-stop(0.25, #444), color-stop(0.5, #b6b6b8), color-stop(0.75, #444), to(transparent));
    background: -webkit-linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
    background: linear-gradient(left, transparent, #444, #b6b6b8, #444, transparent);
}

.form-2:before {
    /* Size and position */
    content: "";
    width: 8px;
    height: 5px;
    position: absolute;
    left: 34%;
    top: -7px;
    
    /* Styles */
    border-radius: 50%;
    box-shadow: 0 0 6px 4px #fff;
}

.form-2 p:nth-child(1):before{
    /* Size and position */
    content:"";
    width:250px;
    height:100px;
    position:absolute;
    top:0;
    left:45px;

    /* Styles */
    -webkit-transform: rotate(75deg);
    -moz-transform: rotate(75deg);
    -ms-transform: rotate(75deg);
    -o-transform: rotate(75deg);
    transform: rotate(75deg);
    background: -moz-linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    background: -ms-linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    background: -o-linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    background: -webkit-linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    background: linear-gradient(50deg, rgba(255,255,255,0.15), rgba(0,0,0,0));
    pointer-events:none;
}

.no-pointerevents .form-2 p:nth-child(1):before {
    display: none;
}

