/*
 * This file contains base style sheets that apply to all skins
 */


/* Things that should have no margin by default */
form, div, object, embed {
    margin: 0px;
    padding: 0px;
    border: 0px;
}

/* Get rid of those pesky borders around linked images */
img {
    border: 0px;
}

/* To use if you need an image to be a block-level element
 * instead of inline */
img.Block {
    display: block;
    margin: 0px;
}


div.ClearFloats {
	clear: both;
}

/* Just to make it a little more intuitive for the user */
input.Button, button {
    cursor: pointer;
}


/* Used for containers (though, ideally not at all :-) */
table.Layout {
    margin: 0px;
    padding: 0px;
    border: 0px;
}
td.Layout {
    padding: 0px;
}

