/*-----------------------------------------------------------------------------
Surge Solutions Screen Stylesheet

version:   2.0
date:      11/06/2019
author:    Tariq Aziz

/* Remove margin, padding and border from everything
-----------------------------------------------------------------------------*/

@font-face
{
    font-family:FuturaBook;
    src:url("/css/fonts/futurabook.otf"), url("/css/fonts/futurabook.ttf");
}

@font-face
{
    font-family:ReRoman;
    src:url("/css/fonts/requiemroman.otf"), url("/css/fonts/requiemroman.ttf");
}

@font-face
{
    font-family:RePark;
    src:url("/css/fonts/requiempark.otf"), url("/css/fonts/requiempark.ttf");
}


@font-face
{
    font-family:LightRegular;
    src:url("/css/fonts/1906-Light.ttf");
}


*
{
	font-family:inherit;
	font-size:inherit;
	color:inherit;	
	margin:0;
	padding:0;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Styles for layout
-----------------------------------------------------------------------------*/

.clear
{
	clear:both;
}


/* Set up the document
-----------------------------------------------------------------------------*/

body
{
	font-family: Helvetica, Arial, Verdana, sans-serif;
	font-size:80%;
	background:#000;
	color:#000;
	padding:0;	




}

/* Typography
-----------------------------------------------------------------------------*/

ul, ol, dl
{
	list-style: none;	
}

#ctl00_textPL_maintext ul
{
	list-style:disc;
	padding-left:15px;
}

#ctl00_textPL_maintext ol
{
	list-style:decimal;
	padding-left:15px;
}

td
{
	text-align:left;
	vertical-align:top;
}

img
{
	border:0;
}

input, select, textarea
{
	color:#000;
}

a 
{	
	text-decoration:none;
}

/* always Show vertical scrollbar
-----------------------------------------------------------------------------*/


html {height:100vh !important; overflow:hidden; position:fixed; width:100vw;}