@charset "utf-8";
/* CSS Document */

@font-face { font-family: Alien; src: url('images/Alien.otf'); }  


body {
	background-image: url(images/bg.jpg);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #000000;
	color: #ffffff;
	font-family: "Oswald", sans-serif;
	font-style: normal;
	font-size: 21px;
	border: 0px;
}

img { border: 0px; }


/* TEXT */

.text-white-large{
	color: #ffffff;
	font-family: "Alien", sans-serif;
	font-size: 45px;
	line-height: 1.4;
	text-transform: uppercase;
}

.text-white-med{
	color: #ffffff;
	font-family: "Oswald", sans-serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.4;
}

.text-white-small{
	color: #ffffff;
	font-family: "Oswald", sans-serif;
	font-size: 21px;
	font-weight: 300;
	line-height: 1.4;
}


.text-purple-large{
	color: #9158A2;
	font-family: "Alien", sans-serif;
	font-size: 45px;
	line-height: 1.4;
	text-transform: uppercase;
}

.text-purple-med{
	color: #9158A2;
	font-family: "Oswald", sans-serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.4;
}

.text-purple-small{
	color: #9158A2;
	font-family: "Oswald", sans-serif;
	font-size: 21px;
	font-weight: 300;
	line-height: 1.4;
}


/* ND */

.znd{
	background-color: #000000;
	width: 950px;
	color: #ffffff;
	font-family: "Oswald", sans-serif;
	font-size: 15px;
    text-transform: uppercase;
	font-weight: 300;
	letter-spacing: 0.1em;
	padding-top: 10px;
	padding-bottom: 10px;
}

.znd a{
	color: #9158A2;
	text-decoration: none;
}


/* MENU */

.menu {
    background-image: url("images/index2024_04.jpg");
    width: 246px;
    height: 299px;
    color: #cacbcb;
    font-family: "Alien", sans-serif;
    font-size: 30px;
    text-transform: uppercase;
	margin-bottom: 0px;
	padding-bottom: 0px;
	line-height: 1.0;
}

.menu a {
    color: #cacbcb;
    text-decoration: none;
    transition: color 0.4s ease, transform 0.2s ease;
    padding: 20px;
}

.menu a:hover {
    color: #7609FE;
}


.menu-subpage {
    background-image: url("images/subpage2024_04.jpg");
    width: 246px;
    height: 299px;
    color: #cacbcb;
    font-family: "Alien", sans-serif;
    font-size: 30px;
    text-transform: uppercase;
	margin-bottom: 0px;
	padding-bottom: 0px;
	line-height: 1.0;
}

.menu-subpage a {
    color: #cacbcb;
    text-decoration: none;
    transition: color 0.4s ease, transform 0.2s ease;
    padding: 20px;
}

.menu-subpage a:hover {
    color: #7609FE;
}


/* LINKS AND BORDER */

a {
	color: #9158A2;
}

.border {
	border: 3px solid #6115DE;
}
.pageborder {
	box-shadow: 0px 10px 25px 10px rgba(0,0,0,0.65); }



/* HOMEPAGE */

.index-footer {
	background-image: url("images/index2024_14.jpg");
	width: 950px;
	height: 113px;
}


.index-footer table {
	color: #ffffff;
	font-family: "Oswald", sans-serif;
	font-size: 25px;
	text-transform: uppercase;
	line-height: 1.4;
	
}

.index-footer table a {
	color: #ffffff;
	text-decoration: none;
}


.subpage-footer {
	background-image: url("images/subpage2024_09.jpg");
	width: 950px;
	height: 113px;
}


.subpage-footer table {
	color: #ffffff;
	font-family: "Oswald", sans-serif;
	font-size: 25px;
	text-transform: uppercase;
	line-height: 1.4;
	
}

.subpage-footer table a {
	color: #ffffff;
	text-decoration: none;
}

.footer-email {
	color: #000000;
	font-family: "Oswald", sans-serif;
	font-size: 17px;
	text-transform: uppercase;
}

.footer-names {
	color: #cacbcb;
	font-family: "Alien", sans-serif;
	font-size: 21px;
	text-transform: uppercase;
}



/* BACKGROUNDS */

.sub-bg {
	background-color: #000000;
	padding: 30px 35px 10px 35px;
}



/* HOMEPAGE ROTATION */


.slideshow-container {
            width: 333px;
            height: 263px;
            position: relative;
            overflow: hidden;
        }

        /* Styling for each image */
        .slideshow-image {
            width: 100%;
            height: 100%;
            position: absolute;
            opacity: 0;
            transition: opacity 1s ease;
        }

        /* Class to show the current image */
        .active {
            opacity: 1;
        }

 