body {
	font-family: robotolight, Arial;
	font-size: 12pt;
	background-color: rgb(244,244,244);
	background-image: url("images/bkg.jpg");
	background-attachment: fixed;
}
@font-face {
	font-family: 'robotolight';
	src: url('fonts/Roboto-Light-webfont.eot');
	src: url('fonts/Roboto-Light-webfont.eot?#iefix') format('embedded-opentype'),
		 url('fonts/Roboto-Light-webfont.woff') format('woff'),
		 url('fonts/Roboto-Light-webfont.ttf') format('truetype'),
		 url('fonts/Roboto-Light-webfont.svg#robotolight') format('svg');
	font-weight: normal;
	font-style: normal;
}

.menubar {
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 100;
	width: 100%;
	border: 1px solid rgb(34,112,201);
	box-shadow: 0px 5px 5px rgb(140,140,140);
	background-color: rgb(54,132,221);
	background: linear-gradient(90deg, rgba(0, 79, 164,1) 0%, rgba(54,132,221,1) 25%, rgba(54,132,221,1) 75%, rgba(0, 79, 164,1) 100%);
}

.menu {
	line-height: 77px;
	height: 77px;
	width: 980px;
	margin: 0px auto;
}

.logo {
	width: 250px;
	height: 77px;
	background-image: url('images/felcad.png');
	background-repeat: no-repeat;
}

.menuitem {
	float: left;
}

.button {
	min-width: 75px;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center;
	text-shadow: 1px 1px 2px #000;
	color: white;
	cursor: pointer;
	transition-property: background-color, border-radius;
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
}

.button:hover {
	background-color: rgb(255,255,255, 0.17);
	border-radius: 5px;
	position: relative;
	left: -1px;
	top: -1px;
	text-decoration: none;
	text-shadow: 2px 2px 2px #000;
}

.selected {
	font-weight: bold;
}

.content {
	font-size: 11pt;
	background-color: white;
	width: 920px;
	margin-top: 100px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid rgb(192,192,192);
	box-shadow: 5px 5px 5px rgb(140,140,140);
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-image: url('images/bkg2.jpg');
	background-repeat: repeat-y;
}

.footer {
	line-height: 20px;
	color: rgb(160,160,160);
	text-align: center;
	font-size: 10pt;
}

a {
	text-decoration: none;
	color: rgb(54,132,221);
	transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
}

a:hover {
	text-decoration: underline;
	text-shadow: 1px 1px 0px #3684dd44;
}

.indent {
	position: relative;
	left: 10px;
}

/* old styles */

p.Header {
	font-weight: bold;
	color: rgb(254,152,0);
	position: relative;
	left: -10px;
	text-shadow: 1px 1px rgba(0, 0, 0, 0.25);
}

table.PriceList
{
	margin: 0px;
	padding: 0px;
	text-align: center;
	border-collapse: collapse; 
	width: 720px;
}

td.PriceListHeader
{
	margin: 0px;
	padding: 0px;
	border: 1px solid #FFFFFF;
	background-color: #999999;
	color: #FFFFFF;
	font-weight: bold;
	height: 40px;
}

td.PriceListRow
{
	margin: 0px;
	padding: 0px;
	border: 1px solid #FFFFFF;
	background-color: #E6E6E6;
	height: 40px;
}

td.PriceListRowBold
{
	margin: 0px;
	padding: 0px;
	border: 1px solid #FFFFFF;
	background-color: #E6E6E6;
	font-weight: bold;
	height: 40px;
}

p.VersionHeader
{
	font-size: 14pt;
	font-weight: bold;
	color: rgb(254,152,0);
	text-shadow: 1px 1px rgba(0, 0, 0, 0.25)
}

p.MovieHeader
{
	font-size: 12pt;
	font-weight: bold;
	color: #FE8E00;
}

.GalleryItem
{
	box-shadow: 3px 3px 5px rgb(140,140,140);
}

.GalleryItem:hover
{
	position: relative;
	left: -2px;
	top: -2px;
	box-shadow: 5px 5px 5px rgb(140,140,140);
}

.GalleryImage
{
	margin-top: 50px;
	margin-bottom: 50px;
}

.opinion {
	font-style: italic;
}

p.WarningBox
{
     -moz-border-radius: 6px;
     -webkit-border-radius: 6px;
     background-color: rgb(227,240,251);
     border: solid 1px rgb(185,216,244);
     border-radius: 6px;
     line-height: 18px;
     overflow: hidden;
     padding: 12px;
     animation-name: WarningBox-animation;
     animation-duration: 2s;
     animation-iteration-count: infinite;
}

@keyframes WarningBox-animation {
  0% {
    background-color: rgb(227,240,251);
  }
  50% {
    background-color: rgb(185,216,244);
  }
  100 {
    background-color: rgb(227,240,251);
  }
}
