/*RP Account
Author: Deidara
Date: 09-03-16*/

/*The cursor, scroll bar, and decor were easy to do after googling some tips*/
/*CURSOR*/
html, body, a, a:hover {
	cursor: url('qtrdcrsr.png'), auto;
}

a:hover {
	cursor: url('qtrdhrt.png'), auto;
}
/*END CURSOR*/

/*SCROLL BAR*/
::-webkit-scrollbar {
	width: 9px;
}

::-webkit-scrollbar-track {
	background: #52527A;
	border: 4px solid #FFCCFF;
}

::-webkit-scrollbar-thumb {
	background: #A3A3C2;
	border-radius: 5px;
}
/*END SCROLL BAR*/

/*DECOR*/
a, a:link, a:active, a:visited {
    color: #47476B;
	text-shadow: 1px 1px 0px #FFFFFF;
    text-decoration: none;
}
    
a:hover {
    color: #e0e0eb;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
}

img a {
    border: 0px;
}
    
b, strong{
    font-weight: bold;
    color: #666699;
    letter-spacing: 0px;
}
    
i, em {
    font-style: oblique;
	font-weight: bold;
    color: #666699;
    font-family: Georgia, serif;
	font-size: 12px;
}
    
s, strike, del {
    color: #666699;
}

h2 {
	border-top: 5px double #ffccff; 
	border-bottom: 5px double #ffccff; 
	color: #FFCCFF;
	font-family: Verdana;
	font-size: 15px;
	font-weight: 700;
	margin-left: 5%;
	margin-right: 5%;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	text-transform: capitalize;
	width: 90%;
}
	
small {
    color: #666699;
    font-size: 10px;
}

big {
    color: #FFCCFF;
    font-size: 18px;
}
    
p {
    margin: 10px 10px 10px 10px;
	text-align: justify;
	text-indent: 30px;
	line-height: 1.5em;
}
    
blockquote {
    padding: 1px 0 1px 5px;
    margin: 2px 0px 2px 3px;
    border-left: 1px dotted #FFCCFF;
    word-wrap: break-word;
}
    
blockquote img {
    max-width: 450px;
}
    
lilbox {
    font-family: Verdana;
    font-size: 12px;
	line-height: 2em;
	color: #14141f;
    word-wrap: break-word;
}

.lilbox {
	background: #A3A3C2;
	border: 5px double #FFCCFF;
	padding: 10px;
	height: 100%;
	font-size: 12px;
	text-align: justify;
	text-indent: 20px;
	margin-top: 10px;
	margin-left: 40px;
	margin-right: 40px;
	margin-bottom: 10px;
	overflow: auto;
	opacity: .7;
}

.floatL {
	float: left;
	margin-left: 5%;
}

.floatR {
    float: right;
	margin-right: 5%;
}

.clearR {
	clear: right;
}

.clearL {
	clear: left;
}

.clear {
	clear: both;
}
/*END DECOR*/

/*Aside the decor, the description was the easiest to do. Any fixes I had to do were quickly solved*/
/*DESCRIPTION*/
#left {
	width: 140px;
	margin-top: 10%;
	left: 10%;
	position: fixed;
}

.portrait img {
	z-index: 3;
	width: 200px;
	border: 8px solid #FFCCFF;
	border-radius: 80px 0px 80px 0px;
		-moz-border-radius: 80px 0px 80px 0px;
		-webkit-border-radius: 80px 0px 80px 0px;
		-o-border-radius: 80px 0px 80px 0px;
	transition: all 2s ease;
		-webkit-transition: all 2s ease;
		-moz-transition: all 2s ease;
		-o-transition: all 2s ease;
	margin: auto;
	display: block;
}

.portrait img:hover{
	z-index: 3;
	width: 200px;
	border: 6x solid;
	border-radius: 0px 80px 0px 80px;
		-moz-border-radius: 0px 80px 0px 80px;
		-webkit-border-radius: 0px 80px 0px 80px;
		-o-border-radius: 0px 80px 0px 80px;
	transition: all 2s ease;
		-webkit-transition: all 2s ease;
		-moz-transition: all 2s ease;
		-o-transition: all 2s ease;
}

.base {
	z-index: 2;
	width: 200px;
	background: #A3A3C2;
	font-family: Verdana;
	font-size: 12px;
	border: 8px solid #FFCCFF;
	border-radius: 0px 40px 0px 40px;
		-moz-border-radius: 0px 40px 0px 40px;
		-webkit-border-radius: 0px 40px 0px 40px;
		-o-border-radius: 0px 40px 0px 40px;
	transition: all 1s ease;
		-webkit-transition: all 1s ease;
		-moz-transition: all 1s ease;
		-o-transition: all 1s ease;
	color: #47476B;
	text-align: justify;
}

.base:hover{
	width: 200px;
	border: 8px solid #FFCCFF;
	border-radius: 40px 0px 40px 0px;
		-moz-border-radius: 40px 0px 40px 0px;
		-webkit-border-radius: 40px 0px 40px 0px;
		-o-border-radius: 40px 0px 40px 0px;
	transition: all 1s ease;
		-webkit-transition: all 1s ease;
		-moz-transition: all 1s ease;
		-o-transition: all 1s ease;
	text-align: justify;
}

.desc {
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 10px;
	padding-bottom: 20px;
	margin-left: 10px;
}
/*END DESCRIPTION*/

/*Doing the navigation was HARD, but well worth it in the end after carefully watching my process on it*/
/*NAVIGATION*/
#nav {
	background-color: #52527A;
	position: fixed;
	top: 0;
	z-index: 3;
	font-family: Verdana;
	font-size: 11px;
	font-weight: none;
	text-align: center;
}

#nav a {
	font-family: Verdana;
	font-size: 20px;
	font-weight: none;
	text-transform: uppercase;
	letter-spacing: 1;
	margin: 10px;
	padding: 5px 2px 5px 2px;
	border-bottom: 1px solid #FFCCFF;
	color: #47476B;
}

#nav a:hover {
	color: #9494B8;
	text-shadow: 1px 3px 2px #FFFFFF;
	border-bottom: 1px solid #FFCCFF;
	padding-bottom: 2px;
}

.navbar {
	padding: 5px 10px 10px 5px;
	background: #A3A3C2;
	border-left: 5px solid #FFCCFF;
	border-right: 5px solid #FFCCFF;
	border-bottom: 5px solid #FFCCFF;
	border-radius: 0 0 20px 20px;
		-moz-border-radius: 0 0 20px 20px;
		-webkit-border-radius: 0 0 20px 20px;
		-o-border-radius: 0 0 20px 20px;
	position: static;
	right: 10%;
	z-index: 1;
	position: fixed;
	max-width: 300px;
	height: auto;
}

.updates {
	color: #47476B;
	text-align: center;
	font-family: Verdana;
	font-size: 12px;
	overflow: auto;
	margin-left: auto;
	margin-right: auto;
	height: auto;
	width: 90%;
}

/*END NAVIGATION*/

/*I had to restart this final 2 times because the body, wrapper, and main codes were jerks to each other*/
/*That said, I was really meticulous about those sections*/
/*BODY*/
body {
	color: #47476B;
	font-family: Tahoma, Geneva, sans-serif;
	letter-spacing: -1;
	z-index: 3;
}
/*END BODY*/

/*WRAPPER*/
#wrapper {
	background-image: url("city.png");
	background-size: cover;
	position: fixed;
	overflow: scroll;
	width: 100%;
	height: 100%;
	top: 0;
	z-index:-4;
}
/*END WRAPPER*/

/*MAIN*/
#main {
	background: #52527A; 
	border: 10px double #FFCCFF;
	margin-left: auto;
	margin-right: auto;
	padding: 20px 18px 50px;
	width: 500px;
	z-index: 3;
}

.post {
	background: #A3A3A2;
	border: 1px solid #FFCCFF;
	padding: 10px;
	height: 500%;
	font-size: 12px;
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	overflow: auto;
}

.post img {
    margin-left: 2%;
	margin-right: 2%;
	margin-top: 1%;
	margin-bottom: 1%;
}

/*END MAIN*/

/*FOOTER*/
#footer {
	background-color: #A3A3A2;
	border: 1px solid #FFCCFF;
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	color: #47476B;
	font-size: .60em;
	font-style: italic;
	text-align: center;
	clear: none;
}

/*FOOTER*/
#footer a {
	line-height: 15px;
	color: #666699;
}
/*END FOOTER*/

/*VIDEO*/
.video {
	position: relative;
	width: 100%;
	height: auto;
}
/*END VIDEO*/

/*ICONS*/
[class*="entypo-"]:before {
  font-family: 'entypo', sans-serif;
  font-size: auto;
}
/*END ICONS*/

/*FORM*/
form {
	font-family: "Courier New", Courier, monospace;
	font-size: 15px;
	line-height: .5;
	padding: 10px;
	height: 190px;
}

label {
	float: left;
	display: block;
	width: 8em;
	clear: left;
	text-align: right;
	padding-right: 10px;
	margin-top: 10px;
}

input, textarea {
	margin-bottom: 1em;
	display: block;
	border: 1px dotted #FFCCFF;
	background-color: #9494B8;
	color: #47476B;
}

#mySubmit {
	font-family: "Courier New", Courier, monospace;
	font-size: 15px;
	font-weight: bold;
	text-align: center;
	letter-spacing: -1px;
	line-height: 50%;
	margin-left: 40%;
	padding-top: 25px;
	padding-bottom: 25px;
	background-color: #A3A3C2;
	color: #47476B;
	border: 1px solid #FFCCFF;
	border-radius: 40px 0px 40px 0px;
		-moz-border-radius: 40px 0px 40px 0px;
		-webkit-border-radius: 40px 0px 40px 0px;
		-o-border-radius: 40px 0px 40px 0px;
	box-shadow: 1px 2px 3px #47476B;
		-moz-box-shadow: 1px 2px 3px #47476B;
		-webkit-box-shadow: 1px 2px 3px #47476B;
	transition: all 0.5s ease-in-out;
		-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
}

#mySubmit:hover {
	background-color: #9494B8;
	color: #47476B;
	text-align: center;
	border-radius: 0px 40px 0px 40px;
		-moz-border-radius: 0px 40px 0px 40px;
		-webkit-border-radius: 0px 40px 0px 40px;
		-o-border-radius: 0px 40px 0px 40px;
	box-shadow: 1px 2px 3px #47476B;
		-moz-box-shadow: 1px 2px 3px #47476B;
		-webkit-box-shadow: 1px 2px 3px #47476B;
	transition: all 0.5s ease-in-out;
		-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		-ms-transition: all 0.5s ease-in-out;
}

.placeholder {
	font-family: "Courier New", Courier, monospace;
}

.redtext {
	color: #FFCCFF;
	font-size: 12px;
	text-indent: 20px;
	line-height: .5px;
}
/*END FORM*/

/*TABLE*/
#table{
    border-collapse: collapse;
    width: 98.4%;
	margin-top: 1%;
	margin-bottom: 1%;
	margin-left: 1%;
	margin-right: 1%;
	overflow: auto;
}

#table td, #table th {
    border: 1px dashed #FFCCFF;
    text-align: left;
    padding: 6px;
	font-size: 12px;
	word-wrap: word-break;
	overflow: hidden;
}

#table th {
	font-family: Georgia, serif;
	font-style: oblique;
	font-size: 14px;
	text-align: center;
}

#table td {
	font-size: 12px;
	text-align: right;
}

#table tr:nth-child(even){
	background-color: #A3A3C2;
}

#table tr:hover {
	background-color: #9494B8;
}

#table th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #666699;
    color: #9494B8;
	text-shadow: 1px 2px 3px #47476B;
}
/*END TABLE*/

/*BARS*/
/*This part took FOREVER cause of that snaggy z-index and knowing where to put it in the html. NOT FUN*/
#laceborder {
    top: 0px;
    height: 50px;
    width: 100%;
    position: fixed;
    z-index: 1;
    opacity: 1;
    left: 0px;
    background-image: url('020-b.gif');
    background-repeat: repeat-x;
}
        
#topcorner {
    position: fixed;
    top: -300px;
    left: -300px;
    width: 535px;
    height: 535px;
    z-index: -2;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    background-image: url('pinkgem.png');
}
		
#bottomcorner {
    position: fixed;
    bottom: -300px;
    right: -300px;
    width: 520px;
    height: 520px;
    z-index: -1;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    background-image: url('pinkgem.png');
}

#bar1{
    position: fixed;
    height: 5px;
    width: 100%;
    margin-top: 165px;
    background-color: #000000;
    z-index: -3;
	left: 0;
}

#bar2{
    position: fixed;
    height: 5px;
    width: 100%;
    margin-top: 225px;
    background-color: #000000;
    z-index: -3;
	left: 0;
}

#bar3{
    position: fixed;
    height: 5px;
    width: 100%;
    margin-top: 255px;
    background-color: #000000;
    z-index: -3;
	left: 0;
}

#bar4{
    position: fixed;
    height: 5px;
    width: 100%;
    bottom: 70px;
    background-color: #000000;
    z-index: -3;
	left: 0;
}

#bar5{
    position: fixed;
    height: 5px;
    width: 100%;
    bottom: 90px;
    background-color: #000000;
    z-index: -3;
	left: 0;
}

#bar6{
    position: fixed;
    height: 5px;
    width: 100%;
    bottom: 160px;
    background-color: #000000;
    z-index: -3;
	left: 0;
}

#bar7{
    position: fixed;
    height: 5px;
    width: 100%;
    bottom: 140px;
    background-color: #000000;
    z-index: -3;
	left: 0;
}

#bottom_bar{
    position: fixed;
    height: 30px;
    width: 100%;
    bottom: 101px;
    background-image: url('pinkstal.png');
    background-attachment: fixed;
    background-repeat: repeat;
    z-index: -4;
	left: 0;
}

#bottom {
    z-index: 2;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
	height: 40px;
    background-image: url('020-b.gif');
}

#leftlace {
    z-index: 2;
    position: fixed;
	top: 0;
    left: 0;
	width: 45px;
	height: 100%;
    background-image: url('024-c.png');
}

#rightlace {
    z-index: 2;
    position: fixed;
	top: 0;
    right: 0;
	width: 45px;
	height: 100%;
    background-image: url('024-d.png');
}

/*END BARS*/