#content {
    font-size: 16px;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

a:hover {
    background-color: #66D9F0;
}

.wow:hover {
    background-color: #65D8F0;
}

.txt-small {
    font-size: 0.85em;
}

.invisible{
    display: none;
}

/**
 * 'inset' is to be used as a formatted set of text that should
 * be emphasized. Best used for shorter text segments.
 **/
.inset {
    margin-left: 50px;
    margin-right: 50px;
}

.inset-styled {
    font-size: 1.2em;
    margin-left: 50px;
    margin-right: 50px;
}

.inset-styled p::first-letter {
    font-size: 1.3em;
    /* font-weight: bold; */
    /* font-family: Cursive; */
    padding-right: 1px; 
}


/**
 * 'aside' is to be used to format text that briefly goes into a
 * related topic, e.g. as an aside, or a tangent.
 **/
.aside {
    font-size: 0.9em;
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: 50px;
    margin-right: 50px;
}
.aside .aside-title {
    font-weight: bold;
    font-style: italic;
    font-size: 1.0em;
}
 
 
.centerme{
    margin-left: auto;
    margin-right: auto;
}

.floatleft {
    float: left;
}

.add_border {
    border: 1px solid black;
}

/**
 * Style a link that re-directs to the home page (eric-kim.net).
 **/
.home_link a {
    margin-left: 15px;
    font-weight: bold;
    font-size: 22px;
    font-style: italic;
    color: rgb(0,136,204)
}
.home_link:visited {
    /* color: #002EB8; */
    color: rgb(0,136,204)
    /* background-color: #66D9FF; */
}

.mydivstyle {
    width: 800px;
    border-style: solid;
    border-width: 1px;
    padding: 10px 10px 10px 10px;
    background-color: #F2F2F2;
    font-family: "Verdana";
    font-size: 18px;
}

/* Remove bullet points from lists <ul> */
.no_bullet {
    list-style-type: none;
}

.div-margin {
    margin-top: 40px;
    margin-bottom: 40px;
}

/**
 * To get figures to properly center, you'll need to wrap all figures
 * in an outer div, e.g.:
 *     <div class="figure_outer">
 *       <div class="figure_inner">
 *         <img src="figure1.png"/>
 *         <p> Figure 1 </p>
 *       </div>
 *     </div>
 *  From: http://stackoverflow.com/questions/114543/how-to-center-a-div-in-a-div
 **/
.figure_outer {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.figure_inner{
    display: inline-block;
    max-width: 500px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: white;
}
.figure_outer_big{
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.figure_inner_big{
    display: inline-block;
    max-width: 900px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: white;
}
