/*
 * Basic formating and structuring rules:
 * - With styles follow this structure, order:
 *   + Position, Coords (top, left, bottom, right), Float, Clear
 *   + Display, Width, Height, Margin, Padding, list
 *   + Background details, Border
 *   + Text, font details
 * - Start CSS files with Basic styles for different elements
 * - Follow with structure, box-model styles
 * - Continue with Menu, and custom element styles. (i.e. news-box)
 * - Always section different styles to groups of sets, which could be extracted to
 *   an external file.
 * - Follow CSS 2.1 standard and validify your styles
 * - Test with at least IE6, FF2 and newer.
 */
 

div.block1 div.flashBanner {
  margin-bottom:20px;
}

div.block1 div.menu {
  float:left;
  clear:both;
  padding-left:15px;
  background-image: url('../../resources/kuvat/menu-bar.png');
  background-repeat:repeat-y;
  position:relative;
  width: 180px;
  display:inline;
}
div.block1 div.menu.removeBackground {
  background: none;
  padding-left:0px;
}
div.block1 div.menu.secondary {
  background:none;
  margin-top:20px;
}
div.block1 div.menu.scard {
  background-image: url('../../resources/kuvat/scard_menu_bgr_harmaa.jpg');
  background-repeat: no-repeat;
  width: 160px;
  /* height: 280px; */
}
div.block1 div.menu.articleHasImages {
  margin-top: 145px;
}
div.block1 div.menu ul.menu {
  list-style-type:none;
  margin:0px;
  padding:0px;
}
div.block1 ul.menu li {
  line-height:12px;
  margin-bottom:5px;
}
div.block1 ul.menu li a, div.block1 ul.menu li a:visited {
  font-size:8pt;
  text-decoration:none;
  color: #C5141E;
}
div.block1 ul.menu li a:hover, div.block1 ul.menu li.selected a {
  color:black;
}

div.block1 div.content {
  float:right;
  width:430px;
  margin-right:20px;
}
div.block1 div.images {
  float:right;
  width:430px;
  margin-right:20px;
}
div.block1 div.images img.small {
  width:213px;
  height:119px;
  margin-bottom:20px;
}
div.block1 div.images img.wide {
  width: 443px;
  height: 119px;
  margin-bottom: 20px;
}

div.scard div.naviinner {
  font-size: 8pt;
  margin-bottom:45px;
}
div.scard div.naviinner b {
  font-size: 10pt;
}
div.scard div.navilogout {
  position:absolute;
  bottom:5px;
  right:5px;
}
