/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #FFFFFF;
  background-position: top;
  color: #000;
  font-family: "Comic Sans MS", Lucida, Georgia, Sans-Serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}

ol {
   list-style-image: url(img/smkoru.gif);
}
   
/* Sets the style for unvisited links. */
a,  a:link {
  color: #0000FF;
  font-weight: bold;
  text-decoration: none;
  border: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #CC0000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #006633;
  font-family: "Comic Sans MS", cursive;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #CC0000;
}

.img a {
  border: none;
  }
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 95%;
}
#outerWrapper #header {
  background-color: #fff;
  color: #000000;
  font-family: "Comic Sans MS", cursive;
  font-size: 18px;
  font-weight: bold;
  line-height: 15px;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #rightColumn1 {
  background-color: #FFFFFF;
  float: right;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 22%;
}
#outerWrapper #contentWrapper #rightColumn1 a, #outerWrapper #contentWrapper #rightColumn1 a:link {
  color: #0000FF;
  font-family: "Comic Sans MS", cursive;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  text-transform: lowercase;
}
#outerWrapper #contentWrapper #rightColumn1 a:visited {
  color: #CC3300;
  font-family: "Comic Sans MS", cursive;
  font-size: 12px;
  font-weight: normal;
  text-decoration: underline;
  text-transform: lowercase;
}
#outerWrapper #contentWrapper #rightColumn1 a:hover {
  color: #006633;
  font-family: "Comic Sans MS", cursive;
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #FFFFFF;
  float: left;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 22%;
}
#outerWrapper #contentWrapper #leftColumn1 a, #outerWrapper #contentWrapper #leftColumn1 a:link {
  color: #0000FF;
  font-family: "Comic Sans MS", cursive;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  text-transform: lowercase;
}
#outerWrapper #contentWrapper #leftColumn1 a:visited {
  color: #CC3300;
  font-family: "Comic Sans MS", cursive;
  font-size: 12px;
  font-weight: normal;
  text-decoration: underline;
  text-transform: lowercase;
}
#outerWrapper #contentWrapper #leftColumn1 a:hover {
  color: #006633;
  font-family: "Comic Sans MS", cursive;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  background-color: #FFFFFF;
  color: #000000;
  font-family: "Comic Sans MS", cursive;
  font-size: 16px;
  line-height: 1.2em;
  margin: 0 26% 0 26%; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#outerWrapper #footer {
  background-color: #FFFFFF;
  background-image: url("img/footer.gif");
  background-position: top;
  background-repeat: repeat-x;
  border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
  color: #000000;
  font-family: "Comic Sans MS", cursive;
  height: 100px;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #footer a:hover {
  color: #000000;
  font-family: "Comic Sans MS", cursive;
  font-size: 10px;
}
a img {
  border: none;

}

.sp {
  font-family: "Comic Sans MS", cursive;
  font-size: 12px;
  text-transform:lowercase;
}
.size {
font-size: 12px;
}

.detail {
  padding-bottom: 3px;
  
}
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px #000000 solid;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid blue;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: -1000px;
border: 1px gray solid;
visibility: hidden;
color: black;
text-decoration: none;
font-size: 14px;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 2px;
left: 250px; /*position where enlarged image should offset horizontally */
z-index: 100;
background-color: #FFFFFF;
}

.gallerycontainer1{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail1 img{
border: 1px #000000 solid;
margin: 0 5px 5px 0;
}

.thumbnail1:hover{
background-color: transparent;
}

.thumbnail1:hover img{
border: 1px solid blue;
}

.thumbnail1 span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: -1000px;
border: 1px gray solid;
visibility: hidden;
color: black;
text-decoration: none;
font-size: 14px;
}

.thumbnail1 span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail1:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: -100px;
left: 250px; /*position where enlarged image should offset horizontally */
z-index: 100;
background-color: #FFFFFF;
}

.gallerycontainer2{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail2 img{
border: 1px #000000 solid;
margin: 0 5px 5px 0;
}

.thumbnail2:hover{
background-color: transparent;
}

.thumbnail2:hover img{
border: 1px solid blue;
}

.thumbnail2 span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: -1000px;
border: 1px gray solid;
visibility: hidden;
color: black;
text-decoration: none;
font-size: 14px;
}

.thumbnail2 span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail2:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: -250px;
left: 250px; /*position where enlarged image should offset horizontally */
z-index: 100;
background-color: #FFFFFF;
}

.gallerycontainer3{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail3 img{
border: 1px #000000 solid;
margin: 0 5px 5px 0;
}

.thumbnail3:hover{
background-color: transparent;
}

.thumbnail3:hover img{
border: 1px solid blue;
}

.thumbnail3 span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: -1000px;
border: 1px gray solid;
visibility: hidden;
color: black;
text-decoration: none;
font-size: 14px;
}

.thumbnail3 span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail3:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: -300px;
left: 250px; /*position where enlarged image should offset horizontally */
z-index: 100;
background-color: #FFFFFF;
}

.gallerycontainer4{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail4 img{
border: 1px #000000 solid;
margin: 0 5px 5px 0;
}

.thumbnail4:hover{
background-color: transparent;
}

.thumbnail4:hover img{
border: 1px solid blue;
}

.thumbnail4 span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: -1000px;
border: 1px gray solid;
visibility: hidden;
color: black;
text-decoration: none;
font-size: 14px;
}

.thumbnail4 span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail4:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: -390px;
left: 250px; /*position where enlarged image should offset horizontally */
z-index: 100;
background-color: #FFFFFF;
}
.gallerycontainer5{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail5 img{
border: 1px #000000 solid;
margin: 0 5px 5px 0;
}

.thumbnail5:hover{
background-color: transparent;
}

.thumbnail5:hover img{
border: 1px solid blue;
}

.thumbnail5 span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: -1000px;
border: 1px gray solid;
visibility: hidden;
color: black;
text-decoration: none;
font-size: 14px;
}

.thumbnail5 span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail5:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: -450px;
left: -50px; /*position where enlarged image should offset horizontally */
z-index: 100;
background-color: #FFFFFF;
}
.gallerycontainer6{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail6 img{
border: 1px #000000 solid;
margin: 0 5px 5px 0;
}

.thumbnail6:hover{
background-color: transparent;
}

.thumbnail6:hover img{
border: 1px solid blue;
}

.thumbnail6 span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: -1000px;
border: 1px gray solid;
visibility: hidden;
color: black;
text-decoration: none;
font-size: 14px;
}

.thumbnail6 span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail6:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: -450px;
left: -100px; /*position where enlarged image should offset horizontally */
z-index: 100;
background-color: #FFFFFF;
}

.gallerycontainer7{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail7 img{
border: 1px #000000 solid;
margin: 0 5px 5px 0;
}

.thumbnail7:hover{
background-color: transparent;
}

.thumbnail7:hover img{
border: 1px solid blue;
}

.thumbnail7 span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: -1000px;
border: 1px gray solid;
visibility: hidden;
color: black;
text-decoration: none;
font-size: 14px;
}

.thumbnail7 span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail7:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 2px;
left: -550px; /*position where enlarged image should offset horizontally */
z-index: 100;
background-color: #FFFFFF;
}

.gallerycontainer8{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail8 img{
border: 1px #000000 solid;
margin: 0 5px 5px 0;
}

.thumbnail8:hover{
background-color: transparent;
}

.thumbnail8:hover img{
border: 1px solid blue;
}

.thumbnail8 span{ /*CSS for enlarged image*/
position: absolute;
padding: 5px;
left: -1000px;
border: 1px gray solid;
visibility: hidden;
color: black;
text-decoration: none;
font-size: 14px;
}

.thumbnail8 span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail8:hover span{ /*CSS for enlarged image*/
visibility: visible;
top: 2px;
left: -250px; /*position where enlarged image should offset horizontally */
z-index: 100;
background-color: #FFFFFF;
}