/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/


/* Table of Content
==================================================
    #Reset & Basics
    #Basic Styles
    #Site Styles
    #Typography
    #Links
    #Lists
    #Images
    #Buttons
    #Forms
    #Misc */


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
/*เอาออกไปก่อน ยังไม่สามารถ overwrite ได้*/
/*remove table, tbody, th, tr, td,h1, h2, h3, h4, h5, h6,*/
    html, body, div, span, applet, object, iframe, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, 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, caption, tfoot, thead, 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-size: 100%;
        font: inherit;
        vertical-align: baseline; }
    article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
        display: block; }
/*  ol, ul {
        list-style: none; } */
    blockquote, q {
        quotes: none; }
    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none; }
    table {
        border-collapse: collapse;
        border-spacing: 0;
        /*table-layout: fixed;*/
        /*แก้ปัญหา firefox และ chrome แสดง img size แตกต่างกัน*/
    }


/* #Typography
================================================== */
/*
    h1, h2, h3, h4, h5, h6 { font-weight: normal; }
    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
    h1 { line-height: 50px; margin-bottom: 14px;}
    h2 { line-height: 40px; margin-bottom: 10px; }
    h3 { line-height: 34px; margin-bottom: 8px; }
    h4 { line-height: 30px; margin-bottom: 4px; }
    h5 { line-height: 24px; }
    h6 { line-height: 21px; }
*/
    p{
        word-wrap:break-word;
    }

    i,
    em,
    dfn,
    cite{
        font-style:italic;
    }
    
    tt,
    var,
    pre,
    kbd,
    samp,
    code{
        font-family:monospace, serif;
        font-style:normal;
    }
    
    b,
    strong{
        font-weight:700;
    }
    
    pre{
        -moz-box-sizing:border-box;
        -moz-border-radius:2px;
        -moz-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0,0,0,0.2);
        -webkit-border-radius:2px;
        -webkit-box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0,0,0,0.2);
        -webkit-box-sizing: border-box;
        box-shadow: 0 1px 0 #fff, inset 0 1px 1px rgba(0,0,0,0.2);
        box-sizing: border-box;
        background: #f4f4f4;
        border:1px solid #aaa;
        border-bottom-color: #ccc;
        border-radius:2px;
        height:auto;
        margin:0;
        outline:none;
        padding:6px 10px;
        vertical-align:middle;
        width:100%;
        word-wrap:break-word;
        white-space: pre-wrap;
    }
    
    del{
        text-decoration:line-through;
    }
    
    ins,
    dfn{
        border-bottom:1px solid #ccc;
    }
    
    sup,
    sub,
    small{
        font-size:85%;
    }
    
    abbr,
    acronym{
        font-size:85%;
        letter-spacing: .1em;
        text-transform: uppercase;
    }
    
    a abbr,
    a acronym{
        border:none;
    }
    
    dfn[title],
    abbr[title],
    acronym[title]{
        border-bottom: 1px solid #ccc;
        cursor:help;
    }
    
    sup{
        vertical-align:super;
    }
    
    sub{
        vertical-align:sub;
    }
    
    /* Blockquotes */
    blockquote, blockquote p { font-size:17px; line-height: 24px; font-style: italic; }
    blockquote { margin: 0 0 20px; padding: 9px 20px 0 19px; border-left:1px solid #ddd; }
    blockquote cite { display:block; font-size:12px; }
    blockquote cite:before { content: "\2014 \0022"; }
    
    hr{border: solid #ddd; border-width:1px 0 0; clear:both; margin:10px 0 30px; height:0; }
    
    
/* #Lists
================================================== */
    ul, ol { margin-bottom: 20px; }
    ul { list-style: none outside;}
    ol { list-style: decimal; }
    ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
    ul.square { list-style: square outside; }
    ul.circle { list-style: circle outside; }
    ul.disc { list-style: disc outside; padding:0;}
    ul ul, ul ol,
    ol ol, ol ul { margin: 4px 0 5px 30px; font-size: 90%;  }
    ul ul li, ul ol li,
    ol ol li, ol ul li { margin-bottom: 6px; }
    li { line-height: 18px; margin-bottom: 12px; }
    ul.large li { line-height: 21px; }
    li p { line-height: 21px; }
    


/* #Images
================================================== */
    
img { max-width: 100%; height: auto; }
/*ไม่เอาออกเพราะ จะมีปัญหากับ คนที่เคยสร้างโปรเจค 5.2.x - 5.4.1 
  กรณีที่ผู้ใช้ มีปัญหาการใช้งาน tag figure ให้ใส่ style inline เพื่อ overwrite
  ค่าใน tag นี้แทน
*/
figure { display:inline-block; float:left; margin-right:5px; max-width: 100%; }              

/* auto width file media */
iframe, object, embed, video {
        max-width: 100%;
}

/* #Misc
================================================== */
    .remove-bottom { margin-bottom: 0 !important; }
    .half-bottom { margin-bottom: 10px !important; }
    .add-bottom { margin-bottom: 20px !important; }
/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/


/* Table of Contents
==================================================
    #Base 960 Grid
    #Tablet (Portrait)
    #Mobile (Portrait)
    #Mobile (Landscape)
    #Clearing */



/* #Base 960 Grid
================================================== */

    .container                                  { position: relative; width: 960px; margin: 0 auto; padding: 0; word-wrap:break-word;}
    .container .column,
    .container .columns                         { float: left; display: inline; margin-left: 10px; margin-right: 10px; }
    .row                                        { margin-bottom: 20px; }

    /* Nested Column Classes */
    .column.alpha, .columns.alpha               { margin-left: 0; }
    .column.omega, .columns.omega               { margin-right: 0; }

    /* Base Grid */
    .container .one.column,
    .container .one.columns                     { width: 40px;  }
    .container .two.columns                     { width: 100px; }
    .container .three.columns                   { width: 160px; }
    .container .four.columns                    { width: 220px; }
    .container .five.columns                    { width: 280px; }
    .container .six.columns                     { width: 340px; }
    .container .seven.columns                   { width: 400px; }
    .container .eight.columns                   { width: 460px; }
    .container .nine.columns                    { width: 520px; }
    .container .ten.columns                     { width: 580px; }
    .container .eleven.columns                  { width: 640px; }
    .container .twelve.columns                  { width: 700px; }
    .container .thirteen.columns                { width: 760px; }
    .container .fourteen.columns                { width: 820px; }
    .container .fifteen.columns                 { width: 880px; }
    .container .sixteen.columns                 { width: 940px; }

    .container .one-third.column                { width: 300px; }
    .container .two-thirds.column               { width: 620px; }

    /* Offsets */
    .container .offset-by-one                   { padding-left: 60px;  }
    .container .offset-by-two                   { padding-left: 120px; }
    .container .offset-by-three                 { padding-left: 180px; }
    .container .offset-by-four                  { padding-left: 240px; }
    .container .offset-by-five                  { padding-left: 300px; }
    .container .offset-by-six                   { padding-left: 360px; }
    .container .offset-by-seven                 { padding-left: 420px; }
    .container .offset-by-eight                 { padding-left: 480px; }
    .container .offset-by-nine                  { padding-left: 540px; }
    .container .offset-by-ten                   { padding-left: 600px; }
    .container .offset-by-eleven                { padding-left: 660px; }
    .container .offset-by-twelve                { padding-left: 720px; }
    .container .offset-by-thirteen              { padding-left: 780px; }
    .container .offset-by-fourteen              { padding-left: 840px; }
    .container .offset-by-fifteen               { padding-left: 900px; }



/* Large Screen */
/*
    @media (min-width: 1200px) {
    .container                                  { width: 1200px;}
    .container .column,
    .container .columns                         { margin-left: 0px; margin-right: 0px;  }
    .column.alpha, .columns.alpha          { margin-left: 0; margin-right: 10px; }
    .column.omega, .columns.omega       { margin-right: 0; margin-left: 10px; }
    .alpha.omega                                  { margin-left: 0; margin-right: 0; }
        
    .container .one.column,
    .container .one.columns                     { width: 55px;  }
    .container .two.columns                     { width: 130px; }
    .container .three.columns                   { width: 205px; }
    .container .four.columns                    { width: 280px; }
    .container .five.columns                    { width: 355px; }
    .container .six.columns                     { width: 430px; }
    .container .seven.columns                   { width: 505px; }
    .container .eight.columns                   { width: 580px; }
    .container .nine.columns                    { width: 655px; }
    .container .ten.columns                     { width: 730px; }
    .container .eleven.columns                  { width: 805px; }
    .container .twelve.columns                  { width: 880px; }
    .container .thirteen.columns                { width: 955px; }
    .container .fourteen.columns                { width: 1030px; }
    .container .fifteen.columns                 { width: 1105px; }
    .container .sixteen.columns                 { width: 1180px; }
    
    .container .one-third.column                { width: 382.5px; }
    .container .two-thirds.column               { width: 777.5px; }     
        
    .container .offset-by-one                   { padding-left: 75px;  }
    .container .offset-by-two                   { padding-left: 150px; }
    .container .offset-by-three                 { padding-left: 225px; }
    .container .offset-by-four                  { padding-left: 300px; }
    .container .offset-by-five                  { padding-left: 375px; }
    .container .offset-by-six                   { padding-left: 450px; }
    .container .offset-by-seven                 { padding-left: 525px; }
    .container .offset-by-eight                 { padding-left: 600px; }
    .container .offset-by-nine                  { padding-left: 675px; }
    .container .offset-by-ten                   { padding-left: 750px; }
    .container .offset-by-eleven                { padding-left: 825px; }
    .container .offset-by-twelve                { padding-left: 900px; }
    .container .offset-by-thirteen              { padding-left: 975px; }
    .container .offset-by-fourteen              { padding-left: 1050px; }
    .container .offset-by-fifteen               { padding-left: 1125px; }
        }
*/
/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

    @media only screen and (min-width: 768px) and (max-width: 959px) {
        .container                                  { width: 768px; }
        .container .column,
        .container .columns                         { margin-left: 10px; margin-right: 10px;  }
        .column.alpha, .columns.alpha               { margin-left: 0; margin-right: 10px; }
        .column.omega, .columns.omega               { margin-right: 0; margin-left: 10px; }
        .alpha.omega                                { margin-left: 0; margin-right: 0; }

        .container .one.column,
        .container .one.columns                     { width: 28px; }
        .container .two.columns                     { width: 76px; }
        .container .three.columns                   { width: 124px; }
        .container .four.columns                    { width: 172px; }
        .container .five.columns                    { width: 220px; }
        .container .six.columns                     { width: 268px; }
        .container .seven.columns                   { width: 316px; }
        .container .eight.columns                   { width: 364px; }
        .container .nine.columns                    { width: 412px; }
        .container .ten.columns                     { width: 460px; }
        .container .eleven.columns                  { width: 508px; }
        .container .twelve.columns                  { width: 556px; }
        .container .thirteen.columns                { width: 604px; }
        .container .fourteen.columns                { width: 652px; }
        .container .fifteen.columns                 { width: 700px; }
        .container .sixteen.columns                 { width: 748px; }

        .container .one-third.column                { width: 236px; }
        .container .two-thirds.column               { width: 492px; }

        .container .offset-by-one                   { padding-left: 48px; }
        .container .offset-by-two                   { padding-left: 96px; }
        .container .offset-by-three                 { padding-left: 144px; }
        .container .offset-by-four                  { padding-left: 192px; }
        .container .offset-by-five                  { padding-left: 240px; }
        .container .offset-by-six                   { padding-left: 288px; }
        .container .offset-by-seven                 { padding-left: 336px; }
        .container .offset-by-eight                 { padding-left: 384px; }
        .container .offset-by-nine                  { padding-left: 432px; }
        .container .offset-by-ten                   { padding-left: 480px; }
        .container .offset-by-eleven                { padding-left: 528px; }
        .container .offset-by-twelve                { padding-left: 576px; }
        .container .offset-by-thirteen              { padding-left: 624px; }
        .container .offset-by-fourteen              { padding-left: 672px; }
        .container .offset-by-fifteen               { padding-left: 720px; }
    }


/*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

    @media only screen and (max-width: 767px) {
        .container { width: 300px; }
        .container .columns,
        .container .column { margin: 0; }

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .one-third.column,
        .container .two-thirds.column  { width: 300px; }

        .container .offset-by-one,
        .container .offset-by-two,
        .container .offset-by-three,
        .container .offset-by-four,
        .container .offset-by-five,
        .container .offset-by-six,
        .container .offset-by-seven,
        .container .offset-by-eight,
        .container .offset-by-nine,
        .container .offset-by-ten,
        .container .offset-by-eleven,
        .container .offset-by-twelve,
        .container .offset-by-thirteen,
        .container .offset-by-fourteen,
        .container .offset-by-fifteen { padding-left: 0; }

    }


/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

    @media only screen and (min-width: 480px) and (max-width: 767px) {
        .container { width: 420px; }
        .container .columns,
        .container .column { margin: 0; }

        .container .one.column,
        .container .one.columns,
        .container .two.columns,
        .container .three.columns,
        .container .four.columns,
        .container .five.columns,
        .container .six.columns,
        .container .seven.columns,
        .container .eight.columns,
        .container .nine.columns,
        .container .ten.columns,
        .container .eleven.columns,
        .container .twelve.columns,
        .container .thirteen.columns,
        .container .fourteen.columns,
        .container .fifteen.columns,
        .container .sixteen.columns,
        .container .one-third.column,
        .container .two-thirds.column { width: 420px; }
    }


/* #Clearing
================================================== */

    /* Self Clearing Goodness */
    .container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

    /* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
    .clearfix:before,
    .clearfix:after,
    .row:before,
    .row:after {
      content: '\0020';
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0; }
    .row:after,
    .clearfix:after {
      clear: both; }
    .row,
    .clearfix {
      zoom: 1; }

    /* You can also use a <br class="clear" /> to clear columns */
    .clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
    }
body {
	background-color: #8f8f8f;
	line-height: 1;
	background-image: ;
	background-repeat: repeat;
	font-family: Verdana;
	color: #000;
	font-size: 12px;
}
a:link {
	color: #006FDD;
	text-decoration: none;
	font-family: Verdana;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
}
a:visited {
	color: #006FDD;
	text-decoration: none;
	font-family: Verdana;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
}
a:hover {
	color: #004EDD;
	text-decoration: none;
	font-family: Verdana;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
}
a:active {
	color: #004EDD;
	text-decoration: none;
	font-family: Verdana;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
}
.content_margin_top {
	padding: 0 10px;
}
.content_margin_bottom {
	padding: 0 10px;
}
.content_margin_left {
	padding-left: 10px;
}
.content_margin_right {
	padding-right: 10px;
}
.bgmenu {
	background-color: #c2ffd0;
	width: 100%;
	display: inline-block;
}
.rs_body_bgcolor {
	background-color: #fff;
}
.rs_footer_bgcolor {
	background-color: #fff;
}
.rs_header_banner img {
	margin-bottom: -6px;
}
.rs_body_pathway {
	display: block;
	margin-bottom: 10px;
}
.rs_header_navigation {
	display: block;
	text-align: center;
}
.rs_footer_banner_powered {
	display: block;
}
.rs_content_footer {
	display: block;
}
@media only screen and (min-width: 960px) {
.rs_header_logo {
	position: absolute;
	z-index: 120;
	top: 20px;
	left: 20px;
}
.rs_header_companyname {
	white-space: nowrap;
	position: absolute;
	z-index: 121;
	color: #000000;
	font-size: 24px;
	top: 336px;
	left: 96px;
}
.rs_header_slogan {
	white-space: nowrap;
	position: absolute;
	z-index: 113;
	color: #000000;
	font-size: 16px;
	top: 50px;
	left: 182px;
}
.rs_header_spacer {
	height: 0px;
	background-color: #D6FFE0;
}
.rs_footer_rvbanner {
	text-align: center;
}
.rs_footer_powered {
	text-align: center;
}
.rs_select_navigation {
	display: none;
}
.rvnavigator {
	display: block;
	line-height: 0;
}
.rs_header_logo img {
	max-width: 100%;
}
.custom_layer img {
	max-width: 100%;
}
.bgmenu {
	width: 100%;
	display: inline-block;
}
.RVS_BlockLogin {
	display: block;
}
.RVS_Newsletter {
	display: block;
}
.m_block_login {
	display: none;
}
.m_block_newsletter {
	display: none;
}
.custom_layer {
	display: block;
}
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
.rs_header_logo {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 120;
}
.rs_header_companyname {
	white-space: nowrap;
	position: absolute;
	color: #000000;
	font-size: 24px;
	top: 269px;
	left: 77px;
	z-index: 121;
}
.rs_header_slogan {
	white-space: nowrap;
	position: absolute;
	color: #000000;
	font-size: 16px;
	top: 40px;
	left: 144px;
	z-index: 113;
}
.rs_header_spacer {
	height: 0px;
	background-color: #D6FFE0;
}
.rs_footer_rvbanner {
	text-align: center;
}
.rs_footer_powered {
	text-align: center;
}
.rs_select_navigation {
	display: block;
	text-align: left;
	padding: 5px;
}
.rvnavigator {
	display: none;
}
.rs_header_logo img {
	max-width: 80%;
}
.custom_layer img {
	max-width: 80%;
}
.custom_layer {
	display: block;
	width: 100%;
}
.RVS_BlockLogin {
	display: block;
}
.RVS_Newsletter {
	display: block;
}
.m_block_login {
	display: none;
}
.m_block_newsletter {
	display: none;
}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
.rs_header_logo {
	text-align: center;
	display: none;
}
.rs_header_slogan {
	text-align: center;
	display: none;
	color: #fff;
	font-family: ;
	font-size: ;
}
.rs_header_companyname {
	color: #fff;
	font-size: ;
	white-space: nowrap;
	text-align: center;
	display: none;
	font-family: ;
}
.rs_header_spacer {
	min-height: 0px;
	height: auto;
	padding: 0px;
	line-height: 15px;
	background-color: #282828 !important;
}
.rs_footer_rvbanner {
	text-align: center;
}
.rs_footer_powered {
	text-align: center;
}
.rs_select_navigation {
	display: block;
	text-align: left;
	padding: 5px;
}
.rvnavigator {
	display: none;
}
.content_margin_top {
	padding: 0;
}
.content_margin_left {
	padding: 0;
}
.content_margin_right {
	padding: 0;
}
.content_margin_bottom {
	padding: 0;
}
.rs_header_logo img {
	max-width: 50%;
}
.custom_layer img {
	max-width: 50%;
}
.RVS_Newsletter {
	display: none;
}
.m_block_newsletter {
	display: block;
}
.custom_layer {
	display: none;
}
.rs_header_banner {
	display: none;
}
}
@media only screen and (max-width: 479px) {
.rs_header_logo {
	text-align: center;
	display: none;
}
.rs_header_slogan {
	text-align: center;
	display: none;
	color: #fff;
	font-family: ;
	font-size: ;
}
.rs_header_companyname {
	color: #fff;
	font-size: ;
	white-space: nowrap;
	text-align: center;
	display: none;
	font-family: ;
}
.rs_header_spacer {
	min-height: 0px;
	height: auto;
	padding: 0px;
	line-height: 15px;
	background-color: #282828 !important;
}
.rs_footer_rvbanner {
	text-align: center;
}
.rs_footer_powered {
	text-align: center;
}
.rs_select_navigation {
	display: block;
	text-align: left;
	padding: 5px;
}
.rvnavigator {
	display: none;
}
.content_margin_top {
	padding: 0;
}
.content_margin_left {
	padding: 0;
}
.content_margin_right {
	padding: 0;
}
.content_margin_bottom {
	padding: 0;
}
.rs_header_logo img {
	max-width: 33%;
}
.custom_layer img {
	max-width: 33%;
}
.RVS_Newsletter {
	display: none;
}
.m_block_newsletter {
	display: block;
}
.rvs_container {
	width: 300px;
}
.custom_layer {
	display: none;
}
.rs_header_banner {
	display: none;
}
}
.rvs-line-height {
	line-height: 15px;
}
.rvs-header1 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 25px;
}
.rvs-header2 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 15px;
}
.rvs-margin5 {
	margin-top: 5px;
}
.rvs-margin-top10 {
	margin-top: 10px;
}
.rvs-margin-bottom10 {
	margin-bottom: 10px;
}
.rvs-margin15 {
	margin-top: 15px;
}
.rvs-margin20 {
	margin-top: 20px;
}
.rvs-margin30 {
	margin-top: 30px;
}
.rvs-padding-top15 {
	padding-top: 15px;
}
.rvs-format-border {
	border-bottom: 1px solid #8e8f8f;
	padding: 8px 0;
}
.rvs-formar-border1 {
	border-bottom: 1px solid #8e8f8f;
	padding: 15px 0;
}
.rvs-format-hr {
	margin: 10px 0;
}
.rvs-block2 {
}
.container .rv-one-third.column {
	width: 290px;
}
.rs_header_spacer {
	background-color: #D6FFE0;
	height: 0px;
}
.rs_header_slogan {
	z-index: 113;
}
.rs_header_companyname {
	top: 269px;
	left: 77px;
	z-index: 121;
}
.rs_header_logo {
	z-index: 120;
}
ul.rvnavigator {
	display: inline-table;
}
/****  Navigator Style1 ****/



ul.rvnavigator {

	margin:0px;

	padding:0px;

    position: relative;

}

ul.rvnavigator li {

	margin:0px 2px 0px 0px;

	padding:0px;

	display:inline;

	float: left;

	text-align: left;

	list-style: none;

	position: relative;

} 

ul.rvnavigator a {

	margin:0px 0px 0px 0px;

	padding:0;

	font-family:Verdana;font-size:12px;font-style:normal;

	text-decoration:none;

	color: #000000;  

	white-space:nowrap; 	

	text-align:center; 

	display:block;

	float:left;

}

ul.rvnavigator a span {

	float:left;

	display:block;

	color: #000000;

	white-space:nowrap;

	padding:12px 15px 12px 15px; 

}

ul.rvnavigator a:hover, ul.rvnavigator .current {

	color: #366f44;

	display:block;

}

ul.rvnavigator a:hover span, ul.rvnavigator .current span{

	color: #366f44;

	background: #9bcca6; 

	padding:12px 15px 12px 15px;

}



/*  css for submenu */

ul.rvnavigator ul {

	left: 0px; 

	top: 100%;

	display: none; /*visibility: hidden;*/

	position: absolute;

	padding:0px; /* Change */

	z-index:25;

	width: auto; 

	margin: 0;

	list-style: none;

	

	border: #799f82 1px solid;

	background-color: #c2ffd0;

	text-indent: 0px; /* Change */

	cursor:pointer;

}

ul.rvnavigator ul ul{

	width: 150px; /* Sub Menu Width */ 

	word-wrap: break-word;

	top: 0; 

	left: 100%; 

	background-color: #c2ffd0;

}

ul.rvnavigator ul li {

	word-wrap: break-word;

	text-align: left;

	border-bottom: 1px solid #799f82;

	margin: 0px;

	padding: 0px;

	width:150px;

	background:none; 

}



/* 1st Submenu */

ul.rvnavigator li:hover li a, ul.rvnavigator li:hover li a span {

	white-space:normal;

	text-decoration: none;

	position: relative;

	display:block;

	padding:2px 3px;

	margin:0;

	width:144px;

	background:none;

    color:#000000; 

	text-align: left;

	border:0; 

	font-family:Verdana;font-size:12px;font-style:normal; 

}

/* 1st Submenu Hover  */

ul.rvnavigator li:hover li a:hover {

	color:#366f44; 

	text-decoration:none; 

	background-color:#9bcca6;

	position: relative;

	display:block;

	padding:2px 3px;

}

ul.rvnavigator li:hover li a:hover span {

	color:#366f44; 

}

/* 2nd Submenu */

ul.rvnavigator li:hover li:hover li a, ul.rvnavigator li:hover li:hover li a span {

	white-space:normal;

	text-decoration: none;

	position: relative;

	display:block;

	padding:2px 3px;

	width:144px;

	background:none;

    color:#000000; 

	font-family:Verdana;font-size:12px;font-style:normal;

}

/* 2nd Submenu Hover  */

ul.rvnavigator li:hover li:hover li a:hover{

	color:#366f44; 

	text-decoration:none; 

	background-color:#9bcca6;

	position: relative;

	display:block;

	padding:2px 3px;

}

ul.rvnavigator li:hover li:hover li a:hover span {

	color:#366f44;  

}

/* Hover Function - Do Not Move */

ul.rvnavigator li:hover ul ul,ul.rvnavigator li:hover ul ul ul {

	 display: none; 

 }

ul.rvnavigator li:hover ul,ul.rvnavigator ul li:hover ul,ul.rvnavigator ul ul li:hover ul { 

	display: block; 

}

.rvarrowsubmenu{ 

	float:right;

	padding-left:5px; 

}

ul.rvnavigator li:hover li a.arrowOne {

	background-image:url(images/blue_arrow.gif); 

	background-position:right bottom; 

	background-repeat:no-repeat;

}

ul.rvnavigator li:hover li a.arrowsubOne {

	background-image:url(images/blue_linkarrow.gif); 

	background-position:right center; 

	background-repeat:no-repeat;

}

.item .fwdarr {

	right: 7px;

	top: 10px; 

	position: absolute;	

}
ul.rvnavigator ul ul { border: #799f82 1px solid; } 
ul.rvnavigator ul ul li { border-bottom:1px solid #799f82; } 
.pathway{	
	background-color:#ffffff; 
	border:2px solid #585858;
	margin:0 3px;  
	width:3px; 
	height:2px;
	padding:0;
}

/******** Photo Album **********/
.imagethumb{
	padding:3px;
	margin:5px;
	border:#BFBFBF solid 1px;  
	background-color:#FFF;
}
.imagethumb:hover{
	padding:3px;
	margin:5px;
	border:#000 solid 1px;  
	background-color:#FFF;
}
/******** Hidden block login **********/
#RVS_hideblock {
    display:none!important;
}