/* ----------------------------------------------------------------------------- */
/*  SeaExperience : Cascading Style Sheet                                        */
/*                                                                               */
/*                                                                               */
/* The ID selector is used to specify a style for a single, unique element.      */
/*                                                                               */
/*  #main { }                                                                    */
/*                                                                               */
/* The CLASS selector is used to specify a style for a group of elements. Unlike */
/* the id selector, the class selector is most often used on several elements.   */
/*                                                                               */
/*  .main { }                                                                    */
/* ----------------------------------------------------------------------------- */

.ad_font1 {
    font-family:  Verdana, Arial, Helvetica, sans-serif;
    font-size: 12pt;
    color: #000080;
}

.ad_font2 {
    font-family:  Arial, Helvetica, sans-serif;
    font-size: 10pt;
    color: #303030;
}

#ad_1 {
    padding: 5px 5px 5px 5px;
    text-align: left;
    width: 184px;
    height: 160px;
    border-right: solid 2px #0008cf;
    border-bottom: solid 2px #0008cf;
    border-top: solid 0px #0008cf;
}

#ad_2 {
    padding: 5px 5px 5px 5px;
    text-align: left;
    width: 184px;
    height: 160px;
    border-right: solid 2px #0008cf;
    border-bottom: solid 2px #0008cf;
    border-top: solid 0px #0008cf;
}

#ad_3 {
    padding: 5px 5px 5px 5px;
    text-align: left;
    width: 184px;
    height: 160px;
    border-right: solid 2px #0008cf;
    border-bottom: solid 2px #0008cf;
    border-top: solid 0px #0008cf;
}

#ad_4 {
    padding: 5px 5px 5px 5px;
    text-align: left;
    width: 184px;
    height: 160px;
    border-bottom: solid 2px #0008cf;
    border-top: solid 0px #0008cf;
}


.title_font {
    font-family: Tahoma, Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
}

.footer_font { 
    font-family:  Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #303030;
}

.myfont1 { 
    font-family:  Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: normal;
}

.myfont2 {
    font-family:  Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
}

.myfont3 {
    font-family:  Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
}

.myfont4 {
    font-family:  Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: normal;
}

.schedule_font {
    font-family: "Comic Sans MS", Arial, Helvetica;
    font-size: 16pt;
}

.schedule_font2 {
    font-family: "Comic Sans MS", Arial, Helvetica;
    font-size: 13pt;
}

.ymca_font {
    font-family: Georgia, "Times New Roman", Times, Arial;
    font-size: 16px;
}

.maintext {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 14px;
    font-weight: normal;
    color: #303030;
}

.maintext_big {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 18px;
    font-weight: normal;
    color: #303030;
}

.small_font { 
    font-family:  Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
}

a.mylink         { text-decoration: none; color: #cd2222; }
a.mylink:hover   { text-decoration: underline; color: #008b8b; }

a.mylink2        { text-decoration: none; color: #cd00cd; }
a.mylink2:hover  { text-decoration: underline; color: #008b8b; }

a.mylink3        { text-decoration: none; color: #0000cd; }
a.mylink3:hover  { text-decoration: underline; color: #008b8b; }


.border { border-collapse: collapse; }

body {
    margin: 0;
    border: 0;
    text-align: center;
    background: url(images/bg-blue1.gif) center repeat-y #22304E;
}



/* +++++++++++++++++++++++++++++++ */
/* BEGIN: Menu-HorizDropDown - MDB */
/* +++++++++++++++++++++++++++++++ */

#menu {
    width: 100%;
    height: 30px;
    background: url(images/bg_blue_bar.jpg) repeat-x;
    border-bottom: 1px solid #0008cf;

    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    z-index: 300;
}

#menu li {
    width: 131px;
    height: 30px;
    border-top: 1px solid #0000cd;


    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    list-style: none;
    float: left;
    font: normal 12px Verdana, Arial, Helvetica, sans-serif;
}

#menu li a {
    font: normal 12px Verdana, Arial, Helvetica, sans-serif;

    width: 131px;
    display: block;
    margin: 0px 0px 0px 0px;
    padding: 9px 0px 6px 0px;  /* top right bottom left */
    color: #ffffff;

    text-align: center;
    text-decoration: none;
}

#menu li a:hover {
    background: #49A3FF;
}

#menu div {
    position: absolute;
    visibility: hidden;
    margin: 0;
    padding: 0;
    background: #EAEBD8;
    border-top: 1px solid #000080;  /*#5970B2; */
    border-right: 1px solid #5970B2;
    border-bottom: 1px solid #5970B2;
    border-left: 1px solid #5970B2;
}

#menu div a {
    position: relative;
    display: block;
    width: 145px;
    margin: 0px 0px 0px 0px;
    padding: 5px 10px;

    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    background: #008fcf;  /*#EAEBD8;*/
    color: #ffffff;  /*#2875DE;*/        /* color of the font */
    font: normal 11px arial;
}


#menu div a:hover {
    width: 145px;
    background: #49A3FF;
    color: #FFF;
}

/* +++++++++++++++++++++++++++++++ */
/* END: Menu-HorizDropDown   - MDB */
/* +++++++++++++++++++++++++++++++ */




