#menu
{
	position: fixed;
	width: 100%;
	height: 0px;
	background: white;
}


ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
}


li {
    float: left;
    border-right: 1px solid #bbb;
}
    li:last-child {
        border-right: none;
    }

    li a {
        display: block;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

        /* Change the link color to #111 (black) on hover */
        li a:hover {
            background-color: #111;
        }

input[type=text], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border-radius: 4px;
    box-sizing: border-box;
    border: 1px solid #555;
}

input[type=email], select {
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border-radius: 4px;
    box-sizing: border-box;
    border: 1px solid #555;
}

input[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
    input[type=submit]:hover {
        background-color: #45a049;
    }

div {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

    div.gallery {
        margin: 5px;
        border: 1px solid #ccc;
        float: left;
        width: 180px;
    }

        div.gallery:hover {
            border: 1px solid #777;
        }

        div.gallery img {
            width: 100%;
            height: auto;
        }

    div.desc {
        padding: 15px;
        text-align: center;
    }

img {
    border-radius: 25px;
    #border: 3px solid black;
}

h1{
    text-align: center;
}

table.paleBlueRows {
    font-family: "Times New Roman", Times, serif;
    border: 2px solid #FFFFFF;
    width: 350px;
    height: 200px;
    text-align: center;
    border-collapse: collapse;
}

    table.paleBlueRows td, table.paleBlueRows th {
        border: 1px solid #FFFFFF;
        padding: 3px 2px;
    }

    table.paleBlueRows tbody td {
        font-size: 16px;
    }

    table.paleBlueRows tr:nth-child(even) {
        background: #D0E4F5;
    }

    table.paleBlueRows thead {
        background: #0B6FA4;
        background: -moz-linear-gradient(top, #4893bb 0%, #237dad 66%, #0B6FA4 100%);
        background: -webkit-linear-gradient(top, #4893bb 0%, #237dad 66%, #0B6FA4 100%);
        background: linear-gradient(to bottom, #4893bb 0%, #237dad 66%, #0B6FA4 100%);
        border-bottom: 5px solid #FFFFFF;
    }

        table.paleBlueRows thead th {
            font-size: 21px;
            font-weight: bold;
            color: #FFFFFF;
            text-align: center;
            border-left: 2px solid #FFFFFF;
        }

            table.paleBlueRows thead th:first-child {
                border-left: none;
            }

    table.paleBlueRows tfoot td {
        font-size: 23px;
        text-shadow: 6px 8px 2px rgba(28,110,164,0.68);
    }

#titleH {
    text-shadow: 6px 8px 2px rgba(28,110,164,0.68), 6px 8px 2px rgba(28,110,164,0.68), 6px 8px 2px rgba(28,110,164,0.68);
    color: #333333;
    background: #11D3CA;
    font: bold 40px Comic Sans MS;
    text-align: center;
}

#alignH {
    background: #D0E4F5;
    text-align: center;
}

#background_pikachu {
    background: #D0E4F5 repeat scroll 0px 0px;
}