table
{
    width: 100%;
    font-style: italic;
}

table thead tr th img[src$='#center']
{
    display: block; 
    margin: auto; 
}

img[src$='#center']
{
    display: block;
    margin: 0.7rem auto; /* you can replace the vertical '0.7rem' by
                            whatever floats your boat, but keep the
                            horizontal 'auto' for this to work */
    /* whatever else styles you fancy here */
}

img[src$='#floatleft']
{
    float:left;
    margin: 0.7rem;      /* this margin is totally up to you */
    /* whatever else styles you fancy here */
}

img[src$='#floatright']
{
    float:right;
    margin: 0.7rem;      /* this margin is totally up to you */
    /* whatever else styles you fancy here */
}

.responsive_div_top
{
	float: left;
}

.responsive_div_bottom
{
	text-align: right;
}

@media (max-width: 480px) {
	.responsive_div_top
	{
		text-align: center;
		float: none;
	}

	.responsive_div_bottom
	{
		text-align: center;
	}
}

