/* Make links orange */
a {
	color: #cc6204;
}

img[src$='#center']
{
    display: block;
	width: 40em;
    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$='#size-mid']
{
	width: 18em;
}

img[src$='#size-big']
{
	width: 26em;
}

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

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

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

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

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

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


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

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

.floatright figure {
	max-width: 30%;
	width: auto\9*0.3; /* ie8 */
	height: auto;
	float: right;
}

.floatleft figure {
	max-width: 30%;
	width: auto\9*0.3; /* ie8 */
	height: auto;
	float: left;
}

.floatleft-small figure {
    float:left;
    margin: 0.7rem;      /* this margin is totally up to you */
	width: 4em;
}
