﻿/*	404 page
 ---------------------------------------------------------------------------- */

* {
    margin: 0 0;
    padding: 0 0;
    border: none;
    outline: none;
}

h1 {
    width: auto;
    font-family: 'Consolas', 'Courier New', 'Lucida Console',monospace;
    font-size: 12px;
    text-align: center;
    text-transform: uppercase;
    color: #093a96;
    margin-bottom: 30px;
    padding: 9px 12px;
    background: rgba(255,255,255,.8);
    display: inline-block;
}

a {
    color: #fff;
}

a:hover {
    color: #d4d4d2;
}

p,li {
    max-width: 600px;
    font-family: 'Consolas', 'Courier New', 'Lucida Console',monospace;
    font-weight: bold;
    text-align: left;
    color: #dfdfdf;
    display: block;
    margin-bottom: 30px;
}

ul {
    text-align: left;
    list-style-type:none;
	list-style-position:inside;
}

li:before{
	content:"*  "; 
}

html {
    
    width: 100%;
	height: 100%;
    background: url('../img/error_bg.png') #072760;
}

body {
    width: 100%;
	height: 100%;
	margin: 0 auto;
	text-align: center;	
    background: -moz-radial-gradient(center, ellipse cover, rgba(30,112,255,.2) 0%, rgba(30,112,255,0) 100%) no-repeat; /* FF3.6+ */
    background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(30,112,255,.2)), color-stop(100%,rgba30,112,255,0))) no-repeat; /* Chrome,Safari4+ */
    background: -webkit-radial-gradient(center, ellipse cover, rgba(30,112,255,.2) 0%,rgba(30,112,255,0) 100%) no-repeat; /* Chrome10+,Safari5.1+ */
    background: -o-radial-gradient(center, ellipse cover, rgba(30,112,255,.2) 0%,rgba(30,112,255,0) 100%) no-repeat; /* Opera 12+ */
    background: -ms-radial-gradient(center, ellipse cover, rgba(30,112,255,.2) 0%,rgba(30,112,2555,0) 100%) no-repeat; /* IE10+ */
    background: radial-gradient(ellipse at center, rgba(30,112,255,.2) 0%,rgba(30,112,255,0) 100%) no-repeat; /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc1d70f8', endColorstr='#001d70f8',GradientType=1 ) no-repeat; /* IE6-9 fallback on horizontal gradient */
    background-position: center center;
}

#error-wrap {
    min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -45px;
	
	/* WebKit (Chrome & Safari) */
    display: -webkit-box;
    -webkit-box-pack: center;
    -webkit-box-align: center;
    
    /* Firefox */
    display: -moz-box;
    -moz-box-pack: center;
    -moz-box-align: center;
    
    /* IE */
    display: -ms-box;
    -ms-box-pack: center;
    -ms-box-align: center;
    
     /* Native CSS */
    display: box;
    box-pack: center;
    box-align: center;
}

#error-container {
    
}

#error-push {
	height: 45px;
}