#loadingscreen
{
	background-color: rgb(10, 10, 10);
}

#loadingscreen::before
{
	content: none;
}

.main_div
{
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	overflow-y: auto;
	overflow-x: hidden;
}

::-webkit-scrollbar
{
    width: 10px;
}

::-webkit-scrollbar-track
{
    background: rgb(40, 40, 40);
}

::-webkit-scrollbar-thumb
{
    background: rgb(90, 90, 90);
}

::-webkit-scrollbar-thumb:hover
{
    background: rgb(120, 120, 120);
}

::-webkit-scrollbar-thumb:active
{
    background: rgb(140, 140, 140);
}

.main_div > .background
{
	pointer-events: none;
	position: fixed;
	background-image: url("../gfx/backgrounds/indexbackground.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
	filter: brightness(0.7);
	box-shadow: inset 0 0 100px 30px black;
	z-index: -1;
}

.content_container
{
	display: flex;
	align-items: center;
	flex-direction: column;
}

.content_container > .welcome
{
	position: absolute;
	width: 100%;
	height: 110%;
	z-index: 10;
	border-bottom: 2px solid dimgray;
	overflow: hidden;
	background-color: black;
	transform: translateY(calc(var(--scroll_y) / -4));
	will-change: transform;
}

.content_container > .welcome .logo
{
	background-image: url("../gfx/logotype.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	filter: drop-shadow(0 0 4px dimgray) drop-shadow(0 0 10px black);
	width: 200px;
	aspect-ratio: 2/1;
	z-index: 2;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	animation: showlogo 0.6s 0.6s forwards;
}

@keyframes showlogo
{
	from
	{
		opacity: 0;
		top: -20%;
	}
	to
	{
		opacity: 1;
		top: calc(30% - 140px);
	}
}

.content_container > .welcome > .background_left, .content_container > .welcome > .background_right
{
	position: absolute;
	background-image: url("../gfx/backgrounds/welcomebackground.jpg");
	background-repeat: no-repeat;
	background-size: auto 100%;
	width: 50%;
	height: 100%;
	top: 0;
	filter: brightness(0);
	animation: showbackground 0.6s 0.2s forwards;
}

.content_container > .welcome > .background_left
{
	background-position: center left;
	left: calc(0% - var(--scroll_y) * 0.15);
	transform: translate(-100%, 20%) scale(0.5);
	mask-image: linear-gradient(to right, black, transparent 75%);
	-webkit-mask-image: linear-gradient(to right, black, transparent 75%);
}

.content_container > .welcome > .background_right
{
	background-position: center right;
	right: calc(0% - var(--scroll_y) * 0.15);
	transform: translate(100%, 20%) scale(0.5);
	mask-image: linear-gradient(to left, black, transparent 75%);
	-webkit-mask-image: linear-gradient(to left, black, transparent 75%);
}

@keyframes showbackground
{
	to
	{
		scale: 1;
		filter: brightness(0.85);
		transform: none;
	}
}

.content_container > .welcome > .arrow_down
{
	position: absolute;
	top: 90vh;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	aspect-ratio: 1/1;
	background-image: url("../gfx/ui/icons/arrowdown.svg");
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	animation: showarrow 1s 1.5s forwards, arrowbounce 2s 2.5s ease infinite;
	pointer-events: none;
}

@keyframes showarrow
{
	from
	{
		opacity: 0;
	}
	to
	{
		opacity: 0.75;
	}
}

@keyframes arrowbounce
{
	0%
	{
		transform: translateX(-50%) translateY(0);
		opacity: 0.75;
	}
	50%
	{
		transform: translateX(-50%) translateY(5px);
		opacity: 0.5;
	}
	100%
	{
		transform: translateX(-50%) translateY(0);
		opacity: 0.75;
	}
}

#login_div
{
	position: absolute;
	width: 300px;
	left: 50%;
	top: 30%;
	transform: translateX(-50%);
	border-radius: 5px;
	transition: 0.3s;
	border: 1px solid gray;
	background-color: rgba(10, 10, 10, 0.94);
	box-shadow: 0 0 20px 3px black, inset 0 0 20px 5px black, 0 0 5px -2px darkgray;
	color: white;
	text-shadow: 0 0 3px black, 0 0 8px black;
	padding: 10px;
	z-index: 20;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
	flex-direction: column;
	opacity: 0;
	animation: showlogin 0.7s 0.7s forwards;
}

#login_div:has(.login_button[opened="true"])
{
	height: 360px;
}

#login_div:has(.signup_button[opened="true"])
{
	height: 460px;
}

@keyframes showlogin
{
	from
	{
		opacity: 0;
		transform: translateX(-50%) scale(0);
	}
	to
	{
		opacity: 1;
		transform: translateX(-50%) scale(1);
	}
}

#login_div::before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-image: url("../gfx/backgrounds/uibackground.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	pointer-events: none;
	opacity: 0.1;
}

#login_div:has(.verify_message)
{
	height: 280px;
}

#login_div > .verify_message
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
	box-sizing: border-box;
	text-align: center;
	padding: 40px;
}

#login_div > .verify_message a
{
	color: skyblue;
}

#login_div > .verify_message a:hover
{
	color: steelblue;
	text-decoration: none;
}

#login_div > .verify_message > div:nth-child(1)
{
	font-size: larger;
	font-weight: bold;
	margin-bottom: 10px;
}

#login_div > .verify_message > div:nth-child(3)
{
	position: absolute;
	top: 135px;
	width: 40px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	display: inline-block;
	border-top: 3px solid ghostwhite;
	border-right: 3px solid transparent;
	box-sizing: border-box;
	animation: verifyspinnerrotation 1.5s linear infinite;
}

@keyframes verifyspinnerrotation
{
	from
	{
		transform: rotate(0deg);
	}
	to
	{
		transform: rotate(360deg);
	}
}

#login_div > .verify_message > div:nth-child(4)
{
	font-family: serif;
	font-size: smaller;
	position: absolute;
	bottom: 10%;
	max-width: 80%;
}

form
{
	display: none;
}

#login_div:has( > .change_forms > .login_button[opened="true"]) > #login_form,
#login_div:has( > .change_forms > .signup_button[opened="true"]) > #signup_form,
#forgot_password_form.opened
{
	display: block;
	animation: showform 0.3s ease-in-out forwards;
}

@keyframes showform
{
	0%
	{
		opacity: 0;
	}
	100%
	{
		opacity: 1;
	}
}

.hr
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: calc(100% - 20px);
	border-style: inset;
	border-width: 1px;
	transform: scaleY(0.5);
	border-color: lightgray;
	position: relative;
	mask-image: linear-gradient(to right, transparent -10%, black 30%, black 70%, transparent 110%);
}

.change_forms
{
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-top: 10px;
	gap: 12px;
	padding: 1px 0;
}

.change_forms > div:nth-child(3)
{
	position: absolute;
	width: 100px;
	margin-top: 2px;
	box-sizing: border-box;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 1), rgba(0, 0, 0, 0));
	border-bottom: 1px solid white;
	box-shadow: inset 0 -12px 10px -15px white;
	pointer-events: none;
	left: 0;
}

.change_forms:has( > div.signup_button[opened="true"]) > div:nth-child(3)
{
	left: calc(100% - 100px);
}

.change_forms > div, .change_forms > div > div
{
	transition: 0.3s;
}

.change_forms > div
{
	position: relative;
	width: 100px;
	height: 30px;
	display: grid;
	place-items: center;
	overflow: visible;
	user-select: none;
	text-shadow: 0 0 10px black;
}

.change_forms > div:active > div
{
	border-bottom: 1px solid transparent;
	box-shadow: none;
}

.change_forms > div:hover
{
	cursor: pointer;
	text-shadow: 0 0 6px darkgray, 0 0 12px darkgray;
}

.change_forms > div:active
{
	text-shadow: 0 0 5px white;
}

.change_forms > div[opened="true"] > div
{
	border-bottom: 1px solid white;
	box-shadow: inset 0 -12px 10px -15px white;
}

.submitcontainer
{
	position: absolute;
	left: 50%;
	bottom: 25px;
	transform: translateX(-50%);
}

.submitcontainer *
{
	transition: 0.3s;
}

.submitcontainer > div
{
	pointer-events: none;
}

input[type="submit"]
{
	width: 140px;
	height: 30px;
	color: white;
	background-color: transparent;
	border: none;
	font-family: MedievalSharp;
	font-size: 15px;
	text-shadow: 0 0 10px black;
}

.submitcontainer > div:nth-child(2), .submitcontainer > div:nth-child(3)
{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 1), rgba(0, 0, 0, 0));
	border-bottom: 1px solid white;
}

.submitcontainer > div:nth-child(2)
{
	border-bottom: 1px solid white;
}

.submitcontainer > div:nth-child(4)
{
	position: absolute;
	left: 50%;
	transform: translate(-50%, -100%);
	margin: 0 auto;
	top: 0;
	width: 0;
	height: 0;
	border-bottom: 5px solid white;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	opacity: 0;
	transition: border 0.2s, opacity 0.3s;
}

.submitcontainer > div:nth-child(5)
{
	position: absolute;
	left: 50%;
	transform: translate(-50%, 100%);
	margin: 0 auto;
	bottom: 0;
	width: 0;
	height: 0;
	border-top: 5px solid white;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	opacity: 0;
	transition: border 0.2s, opacity 0.3s;
}

.submitcontainer > div:nth-child(3)
{
	border-top: 1px solid white;
}

.submitcontainer:has(input[type="submit"]:hover) > div:nth-child(2)
{
	box-shadow: inset 0 -12px 10px -15px white;
}

.submitcontainer:has(input[type="submit"]:active) > div:nth-child(2)
{
	box-shadow: inset 0 -12px 13px -15px white;
}

.submitcontainer:has(input[type="submit"]:hover) > div:nth-child(4), .submitcontainer:has(input[type="submit"]:hover) > div:nth-child(5)
{
	opacity: 1;
}

.submitcontainer:has(input[type="submit"]:active) > div:nth-child(4)
{
	border-bottom: 0 solid white;
}

.submitcontainer:has(input[type="submit"]:active) > div:nth-child(5)
{
	border-top: 0 solid white;
}

.submitcontainer:has(input[type="submit"]:hover) > div:nth-child(3)
{
	box-shadow: inset 0 12px 10px -15px white;
}

.submitcontainer:has(input[type="submit"]:active) > div:nth-child(3)
{
	box-shadow: inset 0 12px 13px -15px white;
}

input[type="submit"]:hover
{
	cursor: pointer;
	text-shadow: 0 0 5px lightgray;
}

input[type="submit"]:active
{
	text-shadow: 0 0 4px white;
}

.forgot_password
{
	font-weight: normal;
	text-decoration: underline;
	color: lightgray;
	transition: 0.2s;
	user-select: none;
}

.forgot_password:hover
{
	cursor: pointer;
	color: white;
	text-shadow: 0 0 5px darkgray;
}

h3
{
	text-align: center;
}

input:not([type="submit"])
{
	background-color: rgba(255, 255, 255, 0.03);
	color: white;
	border: 1px solid dimgray;
	box-sizing: border-box;
	outline: none;
	padding: 4px 8px;
	margin-bottom: 10px;
	font-family: "Times New Roman", Times, serif;
	transition: 0.3s;
}

:-webkit-autofill
{
    filter: none;
    box-shadow: 0 0 0 100px var(--lightgreen) inset;
}

input:not([type="submit"]):hover
{
	border: 1px solid lightgray;
}

input:not([type="submit"]):focus
{
	background-color: rgba(255, 255, 255, 0.1);
}

form > div
{
	font-size: 12px;
	font-weight: bold;
	margin-left: 4px;
	margin-bottom: 1px;
}

#formal_shit
{
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-bottom: -15px;
	color: gray;
	font-size: 12px;
	font-style: italic;
	text-wrap: nowrap;
	transform: translate(-50%, 100%);
	opacity: 0;
	animation: showformalshit 0.5s 1s ease-in-out forwards;
}

@keyframes showformalshit
{
	from
	{
		opacity: 0;
	}
	to
	{
		opacity: 1;
	}
}

#formal_shit > a
{
	color: gray;
}

#formal_shit > a:hover
{
	color: darkgray;
}

#login_div .g_id_signin
{
	text-shadow: none !important;
	margin-top: -14px;
	margin-bottom: -8px;
}

#login_div .g_id_signin > div > div > div > div > span
{
	overflow: visible !important;
}

#login_div .or_hr
{
	color: darkgray;
	width: 100%;
	text-align: center;
	font-size: 14px;
	margin-bottom: -20px;
	display: flex;
	align-items: center;
	text-align: center;
	mask-image: linear-gradient(to right, transparent 20%, black 30%, black 70%, transparent 80%);
}

#login_div .or_hr::before, #login_div .or_hr::after
{
	content: "";
	flex: 1;
	border-bottom: 1px solid gray;
}

#login_div .or_hr::before
{
	margin-left: 50px;
	margin-right: 5px;
}

#login_div .or_hr::after
{
	margin-left: 5px;
	margin-right: 50px;
}

.content_container > .presentation
{
	position: absolute;
	width: 100%;
	height: 90%;
	top: 110%;
	left: 0;
}

.presentation > div
{
	position: relative;
}

.strategy
{
	height: 110%;
	padding-top: 100px;
	margin-top: -130px;
	mask-image: linear-gradient(to bottom, transparent 0%, black 200px);
}

.strategy > .background
{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	mask-image: linear-gradient(to top, transparent 0%, black 15%, black 90%, transparent 105%);
	background-image: url("../gfx/backgrounds/battlefieldbackground.jpg");
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: brightness(0.5);
}

@supports (-webkit-touch-callout: none)
{
	.strategy > .background
	{
		background-attachment: scroll !important;
	}
}

@keyframes cameramovement
{
	0%
	{
		scale: 1;
	}
	50%
	{
		scale: 1.4;
	}
	100%
	{
		scale: 1;
	}
}

.presentation > div > .title
{
	padding-top: 80px;
	padding-bottom: 80px;
	font-size: 40px;
	font-weight: bold;
	display: flex;
	align-items: center;
	text-align: center;
	filter: drop-shadow(0 0 6px black) drop-shadow(0 0 2px black);
	mask-image: linear-gradient(to right, transparent 10%, black 30%, black 70%, transparent 90%);
}

.presentation > div > .title::before, .presentation > div > .title::after
{
	content: "";
	flex: 1;
	border-bottom: 1px solid white;
	margin: 0 25px;
}

.presentation > div > .text
{
	width: 100%;
	margin-top: -65px;
	font-size: 18px;
	text-align: center;
	filter: drop-shadow(0 0 3px black) drop-shadow(0 0 2px black);
}

.strategy > .cards, .collect > .boosters
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -25%);
	width: 100%;
	height: 150px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.strategy > .cards > card
{
	filter: drop-shadow(0 0 15px black);
	transform-style: preserve-3d;
	transition: none !important;
	transition: scale 0.3s !important;
	margin-top: 100px;
	scale: 0.75;
}

.strategy > .cards > card:hover
{
	z-index: 10 !important;
	scale: 1;
}

.collect
{
	height: 110%;
	margin-top: -1%;
	border-bottom: 2px solid #463a24;
}

.collect > .background
{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 90%, transparent 100%);
	background-image: url("../gfx/backgrounds/deckbackground.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: brightness(0.5);
}

.collect > .boosters > boosterpack
{
	display: block;
	position: relative;
	aspect-ratio: 3/4;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform-style: preserve-3d;
	transition: none !important;
}

@keyframes boosterfloat
{
	from
	{
		transform: translateY(0);
	}
	50%
	{
		transform: translateY(-10px);
	}
	to
	{
		transform: translateY(0);
	}
}

.showcase
{
	position: relative;
	height: 200vh;
	width: 100%;
	padding-top: 4px;
	padding-bottom: 4px;
	display: flex;
	flex-direction: column;
}

.showcase::before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-image: url("../gfx/backgrounds/uibackground.jpg");
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	pointer-events: none;
	opacity: 0.1;
	z-index: -1;
}

.showcase > .lightnings
{
	position: absolute;
	width: 50%;
	height: 50%;
	background-image: url("../gfx/backgrounds/lightnings.jpg");
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.6;
	z-index: -1;
	mask-image: radial-gradient(circle, black 0%, transparent 60%);
	animation: resourcesbackgroundmove 2s ease-in-out infinite;
}

@keyframes resourcesbackgroundmove
{
	0%
	{
		opacity: 0.6;
	}
	50%
	{
		opacity: 0.4;
	}
	100%
	{
		opacity: 0.6;
	}
}

.showcase > .text
{
	position: absolute;
	top: 52.5%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	text-shadow: 0 0 3px black, 0 0 6px white;
}

@supports (animation-timeline: view())
{
	.showcase > .text
	{
		animation: showcasetextscroll both;
		animation-timeline: view();
		animation-range-end: cover 115%;
	}

	.scrollshow
	{
		animation: scrollshow both;
		animation-timeline: view();
		animation-range: entry 40% cover 70%;
	}
}

@keyframes showcasetextscroll
{
	from
	{
		transform: translate(-50%, calc(-50% - 50px)) scale(0.8);
		opacity: 0;
	}
	50%
	{
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
	}
	to
	{
		transform: translate(-50%, calc(-50% + 75px));
		opacity: 0;
	}
}

@keyframes scrollshow
{
	from
	{
		opacity: 0;
		transform: scale(0.9) translateY(50px);
	}
	to
	{
		opacity: 1;
	}
}

.showcase > .resources_circle
{
	position: absolute;
	width: 40%;
	height: 100%;
	left: 30%;
}

.showcase > .resources_circle > .resources
{
	position: relative;
	width: 100%;
	height: 100%;
}

.showcase > .resources_circle > .resources::before
{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 300px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	border: 1px solid lightgray;
	box-shadow: inset 0 0 20px -10px white, 0 0 20px -10px white;
}

.showcase > .resources_circle > .text
{
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 16px;
	text-align: center;
	transform: translate(-50%, -50%);
	color: white;
	text-shadow: 0 0 12px lightgray;
}

.showcase > .resources_circle > .resources > div
{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 50px;
	aspect-ratio: 1/1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transform-origin: center;
	border-radius: 50%;
	border: 2px solid;
	background-color: black;
	filter: drop-shadow(0 0 8px black);
	--starting_rotation: 0deg;
	--items_in_circle: 5;
	transform: translate(-50%, -50%) rotate(calc(var(--i) * calc(360deg / var(--items_in_circle)) - var(--starting_rotation))) translate(105px, 105px) rotate(calc(-1 * var(--i) * calc(360deg / var(--items_in_circle)) + var(--starting_rotation)));
	animation: resourcesrotate 26s linear infinite;
}

@keyframes resourcesrotate
{
	from
	{
		transform: translate(-50%, -50%) rotate(calc(var(--i) * calc(360deg / var(--items_in_circle)) - var(--starting_rotation))) translate(105px, 105px) rotate(calc(-1 * var(--i) * calc(360deg / var(--items_in_circle)) + var(--starting_rotation)));
	}
	to
	{
		transform: translate(-50%, -50%) rotate(calc(var(--i) * calc(360deg / var(--items_in_circle)) - var(--starting_rotation) - 360deg)) translate(105px, 105px) rotate(calc(-1 * var(--i) * calc(360deg / var(--items_in_circle)) + var(--starting_rotation) + 360deg));
	}
}

.updates
{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 110%;
	background-image: url("../gfx/backgrounds/indexbackground.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-top: 2px solid #585f31;
	border-bottom: 2px solid #585f31;
	box-shadow: inset 0 80px 80px -60px black, inset 0 -80px 80px -60px black;
}

.updates::before
{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.55);
	z-index: -1;
}

.updates > .articles
{
	position: absolute;
	left: 50%;
	top: 170px;
	width: 60%;
	max-height: calc(80% - 180px);
	padding: 30px;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	overflow-y: auto;
	gap: 20px;
}

.updates > .articles > article
{
	position: relative;
	width: 100%;
	box-sizing: border-box;
	background-color: rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 15px black;
	border-radius: 5px;
	border: 1px solid dimgray;
	box-sizing: border-box;
	padding: 10px;
	transition: 0.3s;
}

.updates > .articles > article:hover
{
	cursor: help;
	border: 1px solid gray;
	box-shadow: 0 0 15px black, inset 0 0 15px -5px darkgray;
}

.updates > .articles > article > .image
{
	height: 150px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	float: left;
	margin-right: 12px;
	border-radius: 1px;
}

.updates > .articles > article > .date
{
	float: right;
	font-size: small;
	color: lightgray;
	font-family: serif;
}

.updates > .articles > article > .title
{
	font-size: 30px;
	font-weight: bold;
	margin: 5px 0;
	text-shadow: 0 0 5px dimgray;
}

.updates > .articles > article > .content
{
	font-size: 15px;
}

.privacypolicy_nav
{
	display: block;
	position: absolute;
	right: 20px;
	bottom: 20px;
	color: lightgray;
	font-size: 12px;
	text-align: center;
	z-index: 100;
}

.privacypolicy_nav:hover
{
	color: white;
}