/*
    Set all HTML elements to include padding and borders
*/
* {
    box-sizing: border-box;
}
/*
    Default body styles
*/
body{
    font-family:Arial, Helvetica, sans-serif;
    background-color:white;
}
/*
    Set images to only expand to actual size and remain with the correct aspect ratio
*/
img {
    max-width: 100%;
    height: auto;
}
/* 
    YouTube Video classes
*/
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/*
    Default Classes - for Very large screens
*/
/*
    Main body
*/
.main   {
    width: 85%;
    float: left;
/*
    border: 1px solid blue;
*/
    padding:0.5em; 
}
.coltext   {
    width: 70%;
    float: left;
/*
    border: 1px solid green;
*/
    padding-top:0em;
    padding-left:0.25em;
    margin-top:0em;
   
}
.rightpictures{
    width: 30%;
    float: right;
/*
    border: 1px solid red;
*/
}
.picturesinmain{
         margin-right: auto;
     }

/*
    Default Header styles
*/
.clublogo{
    width:  15%;
    float:  left;
    /*border: 1px solid darkorange;*/
}
.titleblock{
    width:  70%;
    height:100%;
    float:  left;
    text-align:center;
    vertical-align:central;
    font-size: xx-large;
    /*border: 1px solid darkorange;*/
}
.titletext1{
    width:50%;
    text-align:right;
    padding-right: 0.25em;
    float:left;
}
.titletext2{
    width:50%;
    text-align:left;
    float:right;

}
.bsaclogo   {
    width:  15%;
    float:  left;
    /*border: 1px solid darkgreen;*/
}
/*
    Default Menu
*/

.fixedmenu{
    padding-right:0.5em;
    /*border-bottom:1px solid #3399ff;*/
   /* border:1px;*/
    text-align:left;
}
.fixedmenu a:hover {background-color: #ddd}

/*
#fixedmenu {
    border-radius: 15px 50px;
    padding: 5px; 
    border: 2px solid #73AD21;
    border-style: double;
}
    */

/*
    menu
*/
.menu   {
    width: 15%;
    float: left;
    /*border: 1px solid red;*/
}
.menuheader{
    text-align:Left;
}
.menublock{
    
}
.menubutton{
    width:100%;
    text-align:center;
    /*padding: 5px;*/
    /* 
    border: 2px ;
    border-radius: 5px;
    border-style: double;
    border-color:darkgray;
    */
}
/* Calendar titles */
.calendar th{
    background-color: #999999;
}

/*
    Facebook
*/
.linkFB {
padding-left: 20px;
background: url(../assets/fb16x16.png) no-repeat left center;
}
.buttonFB {
padding: 32px;
background: url(../assets/fb32x32.png) no-repeat left center;
}

.row::after {
    content: "";
    clear: both;
    display: table;
} 

/*
    Drop down button 
    ****************************************************************************************
*/
.dropbtn {
    background-color:darkgray;
    display:none;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #ddd}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

.message {
    border: orangered;
    border-style: solid;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    padding-left:0.25em;
    padding-right:0.25em;

    margin-right: 16px;

}
/*
    Size dependent CSS
    ******************
*/
/*
    Large Screens
*/
@media only screen and (max-width: 1000px) {
    body {
/*
        background-color: lightcyan;
*/
    }
    .titleblock{
        width:  60%;
        /*border: 1px dashed darkorange;*/
    }
    .bsaclogo   {
       width:  20%;
        /*border: 1px dashed darkgreen;*/
}
    .titletext1{
        width:100%;
        text-align:center;
    }
    .titletext2{
        width:100%;
        text-align:center;
    }
    .main {
        width: 80%;
        float: left;
        /*border: 1px dashed blue;*/
        padding: 0.5em;
    }
    .menu   {
        width: 20%;
        float: left;
        /*border: 1px dashed red;*/
    }
    .clublogo{
        width:  20%;
        float:  left;
        /*border: 1px dashed darkorange;*/
    }
    .coltext {
        width: 60%;
    }
    .rightpictures{
        width: 40%;
    }
}
/*
    Medium screens
*/
@media only screen and (max-width: 800px) {
     body {
/*
        background-color: lightgreen;
*/
    }
     .main{
         width: 100%
     }
     .coltext{
         width:75%;
     }
     .rightpictures{
         width:25%
     }
     .menu{
         width:100%
     }
     .titleblock{
         font-size:x-large;
         /*background-color: lightgreen;*/
     }
     .dropbtn{
         display:block
     }
     .fixedmenu{
         display:none;
     }
}
/*
    Reduce title font size at screen=720px
*/
@media only screen and (max-width: 720px) {
         .titleblock{
         font-size:large;
/*
         background-color: lightblue;
*/
     }
}
/*
    Small screens
*/
@media only screen and (max-width: 560px) {
     body {
/*
        background-color: lightblue;
*/
    }
     .menu{
         width:100%
     }
     .main{
         width:100%;
     }
     .coltext{
         width:100%;
     }
     .rightpictures{
         width:100%;
     }
     .picturesinmain{
         display:block;
         margin-left: auto;
         margin-right: auto;
         width:50%;
     }
     .titleblock{
         font-size:large;
/*
         background-color: lightblue;
*/
     }
     .dropbtn{
         display:inline
     }
     .fixedmenu{
         display:none;
     }
}
/*
    Very small screens
*/
@media only screen and (max-width: 400px) {
    body {
/*
        background-color: lightsalmon;
*/
    }
         .titleblock{
         font-size:large;
/*
         background-color: lightsalmon;
*/
     }

}

