﻿/* floats */
.Left { float: left; }
.Right { float: right; }
.ClearBoth { clear: both; }

/* widths */
.OneHundredPercent { width: 100%; }
.NinetyFivePercent { width: 95%; }
.NinetyPercent { width: 90%; }
.EightyFivePercent { width: 85%; }
.EightyPercent { width: 80%; }
.SeventyFivePercent { width: 75%; }
.SeventyPercent { width: 70%; }
.sixtyFivePercent { width: 65%; }
.SixtyPercent { width: 60%; }
.FiftyFivePercent { width: 55%; }
.FiftyPercent { width: 50%; }
.FortyFivePercent { width: 45%; }
.FortyPercent { width: 40%; }
.ThirtyFivePercent { width: 35%; }
.ThirtyPercent { width: 30%; }
.TwentyFivePercent { width: 25%; }
.TwentyPercent { width: 20%; }
.FifteenPercent { width: 15%; }
.TenPercent { width: 10%; }
.FivePercent { width: 5%; }

/* paddings */
.PaddingFivePixel { padding: 5px; }
.PaddingFivePixelLeft { padding-left: 5px; }
.PaddingFivePixelRight { padding-right: 5px; }

/* margins */
.MarginFivePixel { margin: 5px; }
.BottomMarginFivePixel { margin-bottom: 5px; }
.TopMarginFivePixel { margin-top: 5px; }

/* borders */
BorderBlack { border: Solid 1px Black; }

/* text */
.TextBold { font-weight: bold; }
.TextCenter { text-align: center; }
.VerticalAlignMiddle { vertical-align: middle; }
.Italic { font-style: italic; }
.AllCaps { text-transform: uppercase; }