@font-face
{
	/*font-family: "PT Sans"; src: url(fonts/PT_Sans-Web-Regular.ttf);*/
}

@font-face
{
	/*font-family: "PT Sans"; font-weight: bold; src: url(fonts/PT_Sans-Web-Bold.ttf);*/
}

/* Browser-reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}

body {
	font-family: "Arial", sans-serif; background-color: #AAAAAA;
}


/* General container */
#general_container {
    width: 960px; height:720px; margin: 0 auto;
}

/* nyroModalCont iframe override */
.nyroModalCont iframe {
	width: 750px;
	height: 500px;
}
.nyroModalCloseButton {
    z-index: 40000;
}

/* Footer */
#footer {
    position: absolute; top: 730px;
}
#footer ul {
    float: right; list-style: none; border-top: 1px solid #484848; padding: 10px; width: 940px; /* 960 - padding */
}
#footer ul li {
    font-size: 12px; float: right; padding: 5px 20px; border-right: 1px solid #484848;
}
/* usual selectors */
.center{
	text-align: center;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
a:visited {
    text-decoration: none;
}

b {
    font-weight: bold;
}

h1 {
    font-size: 22px;
}

h2, h2 a {
    font-size: 21px;
}

h3 {
    font-size: 18px;
}

h4 {
    font-size: 15px;
}

h5 {
    font-size: 13px;
}

p {
    font-size: 13px;
}

.font_72 {
    font-size: 72px;
}
.font_64 {
    font-size: 64px;
}
.font_60 {
    font-size: 60px;
}
.font_50 {
    font-size: 50px;
}
.font_40 {
    font-size: 40px;
}
.font_36 {
    font-size: 36px;
}
.font_32 {
    font-size: 32px;
}
.font_30 {
    font-size: 30px;
}
.font_28 {
    font-size: 28px;
}
.font_26 {
    font-size: 26px;
}
.font_25 {
    font-size: 25px;
}
.font_24 {
    font-size: 24px;
}
.font_22 {
    font-size: 22px;
}
.font_20 {
    font-size: 20px;
}
.font_18 {
    font-size: 18px;
}
.font_16 {
    font-size: 16px;
}
.font_15 {
    font-size: 15px;
}
.font_14 {
    font-size: 14px;
}
.font_13 {
    font-size: 13px;
}
.font_12 {
    font-size: 12px;
}
.font_11 {
    font-size: 11px;
}
.font_10 {
    font-size: 10px;
}
.font_9 {
    font-size: 9px;
}
.font_8 {
    font-size: 8px;
}
.font_7 {
    font-size: 7px;
}
.font_6 {
    font-size: 6px;
}
.font_5 {
    font-size: 5px;
}
.font_4 {
    font-size: 4px;
}


@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to { 
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0deg);
  }
  to { 
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate-inverse {
  from {
    -webkit-transform: rotate(0deg);
  }
  to { 
    -webkit-transform: rotate(-360deg);
  }
}
@-moz-keyframes rotate-inverse {
  from {
    -moz-transform: rotate(0deg);
  }
  to { 
    -moz-transform: rotate(-360deg);
  }
}
@-o-keyframes rotate-inverse {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(-360deg);
  }
}
@keyframes rotate-inverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
  

.rotate
{
  -webkit-animation-name:             rotate; 
  -moz-animation-name:             rotate; 
  -o-animation-name:             rotate; 
  animation-name:             rotate; 
  -webkit-animation-duration:         2s; 
  -moz-animation-duration:         2s; 
  -o-animation-duration:         2s; 
  animation-duration:         2s; 
  -webkit-animation-iteration-count:  infinite;
  -moz-animation-iteration-count:  infinite;
  -o-animation-iteration-count:  infinite;
  animation-iteration-count:  infinite;
  -webkit-animation-timing-function:  linear;
  -moz-animation-timing-function:   linear;
  -o-animation-timing-function:   linear;
  animation-timing-function:  linear;
}
.rotate-inverse
{
  -webkit-animation-name:             rotate-inverse; 
  -moz-animation-name:             rotate-inverse; 
  -o-animation-name:             rotate-inverse; 
  animation-name:             rotate-inverse; 
  -webkit-animation-duration:         2s; 
  -moz-animation-duration:         2s; 
  -o-animation-duration:         2s; 
  animation-duration:         2s; 
  -webkit-animation-iteration-count:  infinite;
  -moz-animation-iteration-count:  infinite;
  -o-animation-iteration-count:  infinite;
  animation-iteration-count:  infinite;
  -webkit-animation-timing-function:  linear;
  -moz-animation-timing-function:   linear;
  -o-animation-timing-function:   linear;
  animation-timing-function:  linear;
}


