/* ----------------------------------------------------------------
POSITION CLASSES
----------------------------------------------------------------
*/

.absolute, .abs {
  position: absolute;
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
}

.static {
  position: static;
}

.sticky {
  position: sticky;
}
.sticky-top {
  top: 0;
  position: sticky;
}









// USEFULL CLASSES
.l- {
	&inherit {
		left: inherit;
	}

	&auto {
		left: auto;
	}

	&initial {
		left: initial;
	}

	&unset {
		left: unset;
	}


	// USUALL CLASSES
	&xxs {
		left: 0.125rem;
	}

	&xs,
	&tiny {
		left: 0.25rem;
	}

	&sm,
	&small {
		left: 0.5rem;
	}

	&md,
	&normal {
		left: 1rem;
	}

	&lg,
	&big {
		left: 1.5rem;
	}

	&xl,
	&bigger {
		left: 2rem;
	}

	&xxl,
	&biggest {
		left: 2.5rem;
	}

	&xxxl,
	&gient {
		left: 3rem;
	}
}

.r- {
	&inherit {
		right: inherit;
	}

	&auto {
		right: auto;
	}

	&initial {
		right: initial;
	}

	&unset {
		right: unset;
	}


	// USUALL CLASSES
	&xxs {
		right: 0.125rem;
	}

	&xs,
	&tiny {
		right: 0.25rem;
	}

	&sm,
	&small {
		right: 0.5rem;
	}

	&md,
	&normal {
		right: 1rem;
	}

	&lg,
	&big {
		right: 1.5rem;
	}

	&xl,
	&bigger {
		right: 2rem;
	}

	&xxl,
	&biggest {
		right: 2.5rem;
	}

	&xxxl,
	&gient {
		right: 3rem;
	}
}

.t- {
	&inherit {
		top: inherit;
	}

	&auto {
		top: auto;
	}

	&initial {
		top: initial;
	}

	&unset {
		top: unset;
	}


	// USUALL CLASSES
	&xxs {
		top: 0.125rem;
	}

	&xs,
	&tiny {
		top: 0.25rem;
	}

	&sm,
	&small {
		top: 0.5rem;
	}

	&md,
	&normal {
		top: 1rem;
	}

	&lg,
	&big {
		top: 1.5rem;
	}

	&xl,
	&bigger {
		top: 2rem;
	}

	&xxl,
	&biggest {
		top: 2.5rem;
	}

	&xxxl,
	&gient {
		top: 3rem;
	}
}

.b- {
	&inherit {
		bottom: inherit;
	}

	&auto {
		bottom: auto;
	}

	&initial {
		bottom: initial;
	}

	&unset {
		bottom: unset;
	}


	// USUALL CLASSES
	&xxs {
		bottom: 0.125rem;
	}

	&xs,
	&tiny {
		bottom: 0.25rem;
	}

	&sm,
	&small {
		bottom: 0.5rem;
	}

	&md,
	&normal {
		bottom: 1rem;
	}

	&lg,
	&big {
		bottom: 1.5rem;
	}

	&xl,
	&bigger {
		bottom: 2rem;
	}

	&xxl,
	&biggest {
		bottom: 2.5rem;
	}

	&xxxl,
	&gient {
		bottom: 3rem;
	}
}











/* ----------------------------------------------------------------
POSITION CENTER CLASSES
----------------------------------------------------------------*/

/* Center-Center */
.pos-center-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Left-Center */
.pos-left-center {
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

/* Right-Center */
.pos-right-center {
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

/* Top-Center */
.pos-top-center {
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
}

/* Bottom-Center */
.pos-bottom-center {
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

/* Top-Left */
.pos-top-left {
  left: 0;
  top: 0;
  transform: translate(0, 0);
}

/* Top-Right */
.pos-top-right {
  right: 0;
  top: 0;
  transform: translate(0, 0);
}

/* Bottom-Left */
.pos-bottom-left {
  left: 0;
  bottom: 0;
  transform: translate(0, 0);
}

/* Bottom-Right */
.pos-bottom-right {
  right: 0;
  bottom: 0;
  transform: translate(0, 0);
}




// ABSOLUTE POSIITON LEFT
.pos-l-, .left-, .l- {
	&00 {
		left: 00%;
	}

	&01 {
		left: 01%;
	}

	&02 {
		left: 02%;
	}

	&03 {
		left: 03%;
	}

	&04 {
		left: 04%;
	}

	&05 {
		left: 05%;
	}

	&06 {
		left: 06%;
	}

	&07 {
		left: 07%;
	}

	&08 {
		left: 08%;
	}

	&09 {
		left: 09%;
	}

	&10 {
		left: 10%;
	}

	&11 {
		left: 11%;
	}

	&12 {
		left: 12%;
	}

	&13 {
		left: 13%;
	}

	&14 {
		left: 14%;
	}

	&15 {
		left: 15%;
	}

	&16 {
		left: 16%;
	}

	&17 {
		left: 17%;
	}

	&18 {
		left: 18%;
	}

	&19 {
		left: 19%;
	}

	&20 {
		left: 20%;
	}

	&21 {
		left: 21%;
	}

	&22 {
		left: 22%;
	}

	&23 {
		left: 23%;
	}

	&24 {
		left: 24%;
	}

	&25 {
		left: 25%;
	}

	&26 {
		left: 26%;
	}

	&27 {
		left: 27%;
	}

	&28 {
		left: 28%;
	}

	&29 {
		left: 29%;
	}

	&30 {
		left: 30%;
	}

	&31 {
		left: 31%;
	}

	&32 {
		left: 32%;
	}

	&33 {
		left: 33%;
	}

	&34 {
		left: 34%;
	}

	&35 {
		left: 35%;
	}

	&36 {
		left: 36%;
	}

	&37 {
		left: 37%;
	}

	&38 {
		left: 38%;
	}

	&39 {
		left: 39%;
	}

	&40 {
		left: 40%;
	}

	&41 {
		left: 41%;
	}

	&42 {
		left: 42%;
	}

	&43 {
		left: 43%;
	}

	&44 {
		left: 44%;
	}

	&45 {
		left: 45%;
	}

	&46 {
		left: 46%;
	}

	&47 {
		left: 47%;
	}

	&48 {
		left: 48%;
	}

	&49 {
		left: 49%;
	}

	&50 {
		left: 50%;
	}

	&51 {
		left: 51%;
	}

	&52 {
		left: 52%;
	}

	&53 {
		left: 53%;
	}

	&54 {
		left: 54%;
	}

	&55 {
		left: 55%;
	}

	&56 {
		left: 56%;
	}

	&57 {
		left: 57%;
	}

	&58 {
		left: 58%;
	}

	&59 {
		left: 59%;
	}

	&60 {
		left: 60%;
	}

	&61 {
		left: 61%;
	}

	&62 {
		left: 62%;
	}

	&63 {
		left: 63%;
	}

	&64 {
		left: 64%;
	}

	&65 {
		left: 65%;
	}

	&66 {
		left: 66%;
	}

	&67 {
		left: 67%;
	}

	&68 {
		left: 68%;
	}

	&69 {
		left: 69%;
	}

	&70 {
		left: 70%;
	}

	&71 {
		left: 71%;
	}

	&72 {
		left: 72%;
	}

	&73 {
		left: 73%;
	}

	&74 {
		left: 74%;
	}

	&75 {
		left: 75%;
	}

	&76 {
		left: 76%;
	}

	&77 {
		left: 77%;
	}

	&78 {
		left: 78%;
	}

	&79 {
		left: 79%;
	}

	&80 {
		left: 80%;
	}

	&81 {
		left: 81%;
	}

	&82 {
		left: 82%;
	}

	&83 {
		left: 83%;
	}

	&84 {
		left: 84%;
	}

	&85 {
		left: 85%;
	}

	&86 {
		left: 86%;
	}

	&87 {
		left: 87%;
	}

	&88 {
		left: 88%;
	}

	&89 {
		left: 89%;
	}

	&90 {
		left: 90%;
	}

	&91 {
		left: 91%;
	}

	&92 {
		left: 92%;
	}

	&93 {
		left: 93%;
	}

	&94 {
		left: 94%;
	}

	&95 {
		left: 95%;
	}

	&96 {
		left: 96%;
	}

	&97 {
		left: 97%;
	}

	&98 {
		left: 98%;
	}

	&99 {
		left: 99%;
	}

	&100 {
		left: 100%;
	}

	&101 {
		left: 101%;
	}

	&102 {
		left: 102%;
	}

	&103 {
		left: 103%;
	}

	&104 {
		left: 104%;
	}

	&105 {
		left: 105%;
	}

	&106 {
		left: 106%;
	}

	&107 {
		left: 107%;
	}

	&108 {
		left: 108%;
	}

	&109 {
		left: 109%;
	}

	&110 {
		left: 110%;
	}

	&111 {
		left: 111%;
	}

	&112 {
		left: 112%;
	}

	&113 {
		left: 113%;
	}

	&114 {
		left: 114%;
	}

	&115 {
		left: 115%;
	}

	&116 {
		left: 116%;
	}

	&117 {
		left: 117%;
	}

	&118 {
		left: 118%;
	}

	&119 {
		left: 119%;
	}

	&120 {
		left: 120%;
	}

	&121 {
		left: 121%;
	}

	&122 {
		left: 122%;
	}

	&123 {
		left: 123%;
	}

	&124 {
		left: 124%;
	}

	&125 {
		left: 125%;
	}

	&126 {
		left: 126%;
	}

	&127 {
		left: 127%;
	}

	&128 {
		left: 128%;
	}

	&129 {
		left: 129%;
	}

	&130 {
		left: 130%;
	}

	&131 {
		left: 131%;
	}

	&132 {
		left: 132%;
	}

	&133 {
		left: 133%;
	}

	&134 {
		left: 134%;
	}

	&135 {
		left: 135%;
	}

	&136 {
		left: 136%;
	}

	&137 {
		left: 137%;
	}

	&138 {
		left: 138%;
	}

	&139 {
		left: 139%;
	}

	&140 {
		left: 140%;
	}

	&141 {
		left: 141%;
	}

	&142 {
		left: 142%;
	}

	&143 {
		left: 143%;
	}

	&144 {
		left: 144%;
	}

	&145 {
		left: 145%;
	}

	&146 {
		left: 146%;
	}

	&147 {
		left: 147%;
	}

	&148 {
		left: 148%;
	}

	&149 {
		left: 149%;
	}

	&150 {
		left: 150%;
	}

	&151 {
		left: 151%;
	}

	&152 {
		left: 152%;
	}

	&153 {
		left: 153%;
	}

	&154 {
		left: 154%;
	}

	&155 {
		left: 155%;
	}

	&156 {
		left: 156%;
	}

	&157 {
		left: 157%;
	}

	&158 {
		left: 158%;
	}

	&159 {
		left: 159%;
	}

	&160 {
		left: 160%;
	}

	&161 {
		left: 161%;
	}

	&162 {
		left: 162%;
	}

	&163 {
		left: 163%;
	}

	&164 {
		left: 164%;
	}

	&165 {
		left: 165%;
	}

	&166 {
		left: 166%;
	}

	&167 {
		left: 167%;
	}

	&168 {
		left: 168%;
	}

	&169 {
		left: 169%;
	}

	&170 {
		left: 170%;
	}

	&171 {
		left: 171%;
	}

	&172 {
		left: 172%;
	}

	&173 {
		left: 173%;
	}

	&174 {
		left: 174%;
	}

	&175 {
		left: 175%;
	}

	&176 {
		left: 176%;
	}

	&177 {
		left: 177%;
	}

	&178 {
		left: 178%;
	}

	&179 {
		left: 179%;
	}

	&180 {
		left: 180%;
	}

	&181 {
		left: 181%;
	}

	&182 {
		left: 182%;
	}

	&183 {
		left: 183%;
	}

	&184 {
		left: 184%;
	}

	&185 {
		left: 185%;
	}

	&186 {
		left: 186%;
	}

	&187 {
		left: 187%;
	}

	&188 {
		left: 188%;
	}

	&189 {
		left: 189%;
	}

	&190 {
		left: 190%;
	}

	&191 {
		left: 191%;
	}

	&192 {
		left: 192%;
	}

	&193 {
		left: 193%;
	}

	&194 {
		left: 194%;
	}

	&195 {
		left: 195%;
	}

	&196 {
		left: 196%;
	}

	&197 {
		left: 197%;
	}

	&198 {
		left: 198%;
	}

	&199 {
		left: 199%;
	}

	&200 {
		left: 200%;
	}
}




// ABSOLUTE POSIITON TOP
.pos-t-, .top-, .t- {
	&00 {
		top: 00%;
	}

	&01 {
		top: 01%;
	}

	&02 {
		top: 02%;
	}

	&03 {
		top: 03%;
	}

	&04 {
		top: 04%;
	}

	&05 {
		top: 05%;
	}

	&06 {
		top: 06%;
	}

	&07 {
		top: 07%;
	}

	&08 {
		top: 08%;
	}

	&09 {
		top: 09%;
	}

	&10 {
		top: 10%;
	}

	&11 {
		top: 11%;
	}

	&12 {
		top: 12%;
	}

	&13 {
		top: 13%;
	}

	&14 {
		top: 14%;
	}

	&15 {
		top: 15%;
	}

	&16 {
		top: 16%;
	}

	&17 {
		top: 17%;
	}

	&18 {
		top: 18%;
	}

	&19 {
		top: 19%;
	}

	&20 {
		top: 20%;
	}

	&21 {
		top: 21%;
	}

	&22 {
		top: 22%;
	}

	&23 {
		top: 23%;
	}

	&24 {
		top: 24%;
	}

	&25 {
		top: 25%;
	}

	&26 {
		top: 26%;
	}

	&27 {
		top: 27%;
	}

	&28 {
		top: 28%;
	}

	&29 {
		top: 29%;
	}

	&30 {
		top: 30%;
	}

	&31 {
		top: 31%;
	}

	&32 {
		top: 32%;
	}

	&33 {
		top: 33%;
	}

	&34 {
		top: 34%;
	}

	&35 {
		top: 35%;
	}

	&36 {
		top: 36%;
	}

	&37 {
		top: 37%;
	}

	&38 {
		top: 38%;
	}

	&39 {
		top: 39%;
	}

	&40 {
		top: 40%;
	}

	&41 {
		top: 41%;
	}

	&42 {
		top: 42%;
	}

	&43 {
		top: 43%;
	}

	&44 {
		top: 44%;
	}

	&45 {
		top: 45%;
	}

	&46 {
		top: 46%;
	}

	&47 {
		top: 47%;
	}

	&48 {
		top: 48%;
	}

	&49 {
		top: 49%;
	}

	&50 {
		top: 50%;
	}

	&51 {
		top: 51%;
	}

	&52 {
		top: 52%;
	}

	&53 {
		top: 53%;
	}

	&54 {
		top: 54%;
	}

	&55 {
		top: 55%;
	}

	&56 {
		top: 56%;
	}

	&57 {
		top: 57%;
	}

	&58 {
		top: 58%;
	}

	&59 {
		top: 59%;
	}

	&60 {
		top: 60%;
	}

	&61 {
		top: 61%;
	}

	&62 {
		top: 62%;
	}

	&63 {
		top: 63%;
	}

	&64 {
		top: 64%;
	}

	&65 {
		top: 65%;
	}

	&66 {
		top: 66%;
	}

	&67 {
		top: 67%;
	}

	&68 {
		top: 68%;
	}

	&69 {
		top: 69%;
	}

	&70 {
		top: 70%;
	}

	&71 {
		top: 71%;
	}

	&72 {
		top: 72%;
	}

	&73 {
		top: 73%;
	}

	&74 {
		top: 74%;
	}

	&75 {
		top: 75%;
	}

	&76 {
		top: 76%;
	}

	&77 {
		top: 77%;
	}

	&78 {
		top: 78%;
	}

	&79 {
		top: 79%;
	}

	&80 {
		top: 80%;
	}

	&81 {
		top: 81%;
	}

	&82 {
		top: 82%;
	}

	&83 {
		top: 83%;
	}

	&84 {
		top: 84%;
	}

	&85 {
		top: 85%;
	}

	&86 {
		top: 86%;
	}

	&87 {
		top: 87%;
	}

	&88 {
		top: 88%;
	}

	&89 {
		top: 89%;
	}

	&90 {
		top: 90%;
	}

	&91 {
		top: 91%;
	}

	&92 {
		top: 92%;
	}

	&93 {
		top: 93%;
	}

	&94 {
		top: 94%;
	}

	&95 {
		top: 95%;
	}

	&96 {
		top: 96%;
	}

	&97 {
		top: 97%;
	}

	&98 {
		top: 98%;
	}

	&99 {
		top: 99%;
	}

	&100 {
		top: 100%;
	}

	&101 {
		top: 101%;
	}

	&102 {
		top: 102%;
	}

	&103 {
		top: 103%;
	}

	&104 {
		top: 104%;
	}

	&105 {
		top: 105%;
	}

	&106 {
		top: 106%;
	}

	&107 {
		top: 107%;
	}

	&108 {
		top: 108%;
	}

	&109 {
		top: 109%;
	}

	&110 {
		top: 110%;
	}

	&111 {
		top: 111%;
	}

	&112 {
		top: 112%;
	}

	&113 {
		top: 113%;
	}

	&114 {
		top: 114%;
	}

	&115 {
		top: 115%;
	}

	&116 {
		top: 116%;
	}

	&117 {
		top: 117%;
	}

	&118 {
		top: 118%;
	}

	&119 {
		top: 119%;
	}

	&120 {
		top: 120%;
	}

	&121 {
		top: 121%;
	}

	&122 {
		top: 122%;
	}

	&123 {
		top: 123%;
	}

	&124 {
		top: 124%;
	}

	&125 {
		top: 125%;
	}

	&126 {
		top: 126%;
	}

	&127 {
		top: 127%;
	}

	&128 {
		top: 128%;
	}

	&129 {
		top: 129%;
	}

	&130 {
		top: 130%;
	}

	&131 {
		top: 131%;
	}

	&132 {
		top: 132%;
	}

	&133 {
		top: 133%;
	}

	&134 {
		top: 134%;
	}

	&135 {
		top: 135%;
	}

	&136 {
		top: 136%;
	}

	&137 {
		top: 137%;
	}

	&138 {
		top: 138%;
	}

	&139 {
		top: 139%;
	}

	&140 {
		top: 140%;
	}

	&141 {
		top: 141%;
	}

	&142 {
		top: 142%;
	}

	&143 {
		top: 143%;
	}

	&144 {
		top: 144%;
	}

	&145 {
		top: 145%;
	}

	&146 {
		top: 146%;
	}

	&147 {
		top: 147%;
	}

	&148 {
		top: 148%;
	}

	&149 {
		top: 149%;
	}

	&150 {
		top: 150%;
	}

	&151 {
		top: 151%;
	}

	&152 {
		top: 152%;
	}

	&153 {
		top: 153%;
	}

	&154 {
		top: 154%;
	}

	&155 {
		top: 155%;
	}

	&156 {
		top: 156%;
	}

	&157 {
		top: 157%;
	}

	&158 {
		top: 158%;
	}

	&159 {
		top: 159%;
	}

	&160 {
		top: 160%;
	}

	&161 {
		top: 161%;
	}

	&162 {
		top: 162%;
	}

	&163 {
		top: 163%;
	}

	&164 {
		top: 164%;
	}

	&165 {
		top: 165%;
	}

	&166 {
		top: 166%;
	}

	&167 {
		top: 167%;
	}

	&168 {
		top: 168%;
	}

	&169 {
		top: 169%;
	}

	&170 {
		top: 170%;
	}

	&171 {
		top: 171%;
	}

	&172 {
		top: 172%;
	}

	&173 {
		top: 173%;
	}

	&174 {
		top: 174%;
	}

	&175 {
		top: 175%;
	}

	&176 {
		top: 176%;
	}

	&177 {
		top: 177%;
	}

	&178 {
		top: 178%;
	}

	&179 {
		top: 179%;
	}

	&180 {
		top: 180%;
	}

	&181 {
		top: 181%;
	}

	&182 {
		top: 182%;
	}

	&183 {
		top: 183%;
	}

	&184 {
		top: 184%;
	}

	&185 {
		top: 185%;
	}

	&186 {
		top: 186%;
	}

	&187 {
		top: 187%;
	}

	&188 {
		top: 188%;
	}

	&189 {
		top: 189%;
	}

	&190 {
		top: 190%;
	}

	&191 {
		top: 191%;
	}

	&192 {
		top: 192%;
	}

	&193 {
		top: 193%;
	}

	&194 {
		top: 194%;
	}

	&195 {
		top: 195%;
	}

	&196 {
		top: 196%;
	}

	&197 {
		top: 197%;
	}

	&198 {
		top: 198%;
	}

	&199 {
		top: 199%;
	}

	&200 {
		top: 200%;
	}
}




// ABSOLUTE POSIITON RIGHT
.pos-r-, .right-, .r- {
	&00 {
		right: 00%;
	}

	&01 {
		right: 01%;
	}

	&02 {
		right: 02%;
	}

	&03 {
		right: 03%;
	}

	&04 {
		right: 04%;
	}

	&05 {
		right: 05%;
	}

	&06 {
		right: 06%;
	}

	&07 {
		right: 07%;
	}

	&08 {
		right: 08%;
	}

	&09 {
		right: 09%;
	}

	&10 {
		right: 10%;
	}

	&11 {
		right: 11%;
	}

	&12 {
		right: 12%;
	}

	&13 {
		right: 13%;
	}

	&14 {
		right: 14%;
	}

	&15 {
		right: 15%;
	}

	&16 {
		right: 16%;
	}

	&17 {
		right: 17%;
	}

	&18 {
		right: 18%;
	}

	&19 {
		right: 19%;
	}

	&20 {
		right: 20%;
	}

	&21 {
		right: 21%;
	}

	&22 {
		right: 22%;
	}

	&23 {
		right: 23%;
	}

	&24 {
		right: 24%;
	}

	&25 {
		right: 25%;
	}

	&26 {
		right: 26%;
	}

	&27 {
		right: 27%;
	}

	&28 {
		right: 28%;
	}

	&29 {
		right: 29%;
	}

	&30 {
		right: 30%;
	}

	&31 {
		right: 31%;
	}

	&32 {
		right: 32%;
	}

	&33 {
		right: 33%;
	}

	&34 {
		right: 34%;
	}

	&35 {
		right: 35%;
	}

	&36 {
		right: 36%;
	}

	&37 {
		right: 37%;
	}

	&38 {
		right: 38%;
	}

	&39 {
		right: 39%;
	}

	&40 {
		right: 40%;
	}

	&41 {
		right: 41%;
	}

	&42 {
		right: 42%;
	}

	&43 {
		right: 43%;
	}

	&44 {
		right: 44%;
	}

	&45 {
		right: 45%;
	}

	&46 {
		right: 46%;
	}

	&47 {
		right: 47%;
	}

	&48 {
		right: 48%;
	}

	&49 {
		right: 49%;
	}

	&50 {
		right: 50%;
	}

	&51 {
		right: 51%;
	}

	&52 {
		right: 52%;
	}

	&53 {
		right: 53%;
	}

	&54 {
		right: 54%;
	}

	&55 {
		right: 55%;
	}

	&56 {
		right: 56%;
	}

	&57 {
		right: 57%;
	}

	&58 {
		right: 58%;
	}

	&59 {
		right: 59%;
	}

	&60 {
		right: 60%;
	}

	&61 {
		right: 61%;
	}

	&62 {
		right: 62%;
	}

	&63 {
		right: 63%;
	}

	&64 {
		right: 64%;
	}

	&65 {
		right: 65%;
	}

	&66 {
		right: 66%;
	}

	&67 {
		right: 67%;
	}

	&68 {
		right: 68%;
	}

	&69 {
		right: 69%;
	}

	&70 {
		right: 70%;
	}

	&71 {
		right: 71%;
	}

	&72 {
		right: 72%;
	}

	&73 {
		right: 73%;
	}

	&74 {
		right: 74%;
	}

	&75 {
		right: 75%;
	}

	&76 {
		right: 76%;
	}

	&77 {
		right: 77%;
	}

	&78 {
		right: 78%;
	}

	&79 {
		right: 79%;
	}

	&80 {
		right: 80%;
	}

	&81 {
		right: 81%;
	}

	&82 {
		right: 82%;
	}

	&83 {
		right: 83%;
	}

	&84 {
		right: 84%;
	}

	&85 {
		right: 85%;
	}

	&86 {
		right: 86%;
	}

	&87 {
		right: 87%;
	}

	&88 {
		right: 88%;
	}

	&89 {
		right: 89%;
	}

	&90 {
		right: 90%;
	}

	&91 {
		right: 91%;
	}

	&92 {
		right: 92%;
	}

	&93 {
		right: 93%;
	}

	&94 {
		right: 94%;
	}

	&95 {
		right: 95%;
	}

	&96 {
		right: 96%;
	}

	&97 {
		right: 97%;
	}

	&98 {
		right: 98%;
	}

	&99 {
		right: 99%;
	}

	&100 {
		right: 100%;
	}

	&101 {
		right: 101%;
	}

	&102 {
		right: 102%;
	}

	&103 {
		right: 103%;
	}

	&104 {
		right: 104%;
	}

	&105 {
		right: 105%;
	}

	&106 {
		right: 106%;
	}

	&107 {
		right: 107%;
	}

	&108 {
		right: 108%;
	}

	&109 {
		right: 109%;
	}

	&110 {
		right: 110%;
	}

	&111 {
		right: 111%;
	}

	&112 {
		right: 112%;
	}

	&113 {
		right: 113%;
	}

	&114 {
		right: 114%;
	}

	&115 {
		right: 115%;
	}

	&116 {
		right: 116%;
	}

	&117 {
		right: 117%;
	}

	&118 {
		right: 118%;
	}

	&119 {
		right: 119%;
	}

	&120 {
		right: 120%;
	}

	&121 {
		right: 121%;
	}

	&122 {
		right: 122%;
	}

	&123 {
		right: 123%;
	}

	&124 {
		right: 124%;
	}

	&125 {
		right: 125%;
	}

	&126 {
		right: 126%;
	}

	&127 {
		right: 127%;
	}

	&128 {
		right: 128%;
	}

	&129 {
		right: 129%;
	}

	&130 {
		right: 130%;
	}

	&131 {
		right: 131%;
	}

	&132 {
		right: 132%;
	}

	&133 {
		right: 133%;
	}

	&134 {
		right: 134%;
	}

	&135 {
		right: 135%;
	}

	&136 {
		right: 136%;
	}

	&137 {
		right: 137%;
	}

	&138 {
		right: 138%;
	}

	&139 {
		right: 139%;
	}

	&140 {
		right: 140%;
	}

	&141 {
		right: 141%;
	}

	&142 {
		right: 142%;
	}

	&143 {
		right: 143%;
	}

	&144 {
		right: 144%;
	}

	&145 {
		right: 145%;
	}

	&146 {
		right: 146%;
	}

	&147 {
		right: 147%;
	}

	&148 {
		right: 148%;
	}

	&149 {
		right: 149%;
	}

	&150 {
		right: 150%;
	}

	&151 {
		right: 151%;
	}

	&152 {
		right: 152%;
	}

	&153 {
		right: 153%;
	}

	&154 {
		right: 154%;
	}

	&155 {
		right: 155%;
	}

	&156 {
		right: 156%;
	}

	&157 {
		right: 157%;
	}

	&158 {
		right: 158%;
	}

	&159 {
		right: 159%;
	}

	&160 {
		right: 160%;
	}

	&161 {
		right: 161%;
	}

	&162 {
		right: 162%;
	}

	&163 {
		right: 163%;
	}

	&164 {
		right: 164%;
	}

	&165 {
		right: 165%;
	}

	&166 {
		right: 166%;
	}

	&167 {
		right: 167%;
	}

	&168 {
		right: 168%;
	}

	&169 {
		right: 169%;
	}

	&170 {
		right: 170%;
	}

	&171 {
		right: 171%;
	}

	&172 {
		right: 172%;
	}

	&173 {
		right: 173%;
	}

	&174 {
		right: 174%;
	}

	&175 {
		right: 175%;
	}

	&176 {
		right: 176%;
	}

	&177 {
		right: 177%;
	}

	&178 {
		right: 178%;
	}

	&179 {
		right: 179%;
	}

	&180 {
		right: 180%;
	}

	&181 {
		right: 181%;
	}

	&182 {
		right: 182%;
	}

	&183 {
		right: 183%;
	}

	&184 {
		right: 184%;
	}

	&185 {
		right: 185%;
	}

	&186 {
		right: 186%;
	}

	&187 {
		right: 187%;
	}

	&188 {
		right: 188%;
	}

	&189 {
		right: 189%;
	}

	&190 {
		right: 190%;
	}

	&191 {
		right: 191%;
	}

	&192 {
		right: 192%;
	}

	&193 {
		right: 193%;
	}

	&194 {
		right: 194%;
	}

	&195 {
		right: 195%;
	}

	&196 {
		right: 196%;
	}

	&197 {
		right: 197%;
	}

	&198 {
		right: 198%;
	}

	&199 {
		right: 199%;
	}

	&200 {
		right: 200%;
	}

}




// ABSOLUTE POSIITON BOTTOM
.pos-b-, .bottom-, .b- {
	&00 {
		bottom: 00%;
	}

	&01 {
		bottom: 01%;
	}

	&02 {
		bottom: 02%;
	}

	&03 {
		bottom: 03%;
	}

	&04 {
		bottom: 04%;
	}

	&05 {
		bottom: 05%;
	}

	&06 {
		bottom: 06%;
	}

	&07 {
		bottom: 07%;
	}

	&08 {
		bottom: 08%;
	}

	&09 {
		bottom: 09%;
	}

	&10 {
		bottom: 10%;
	}

	&11 {
		bottom: 11%;
	}

	&12 {
		bottom: 12%;
	}

	&13 {
		bottom: 13%;
	}

	&14 {
		bottom: 14%;
	}

	&15 {
		bottom: 15%;
	}

	&16 {
		bottom: 16%;
	}

	&17 {
		bottom: 17%;
	}

	&18 {
		bottom: 18%;
	}

	&19 {
		bottom: 19%;
	}

	&20 {
		bottom: 20%;
	}

	&21 {
		bottom: 21%;
	}

	&22 {
		bottom: 22%;
	}

	&23 {
		bottom: 23%;
	}

	&24 {
		bottom: 24%;
	}

	&25 {
		bottom: 25%;
	}

	&26 {
		bottom: 26%;
	}

	&27 {
		bottom: 27%;
	}

	&28 {
		bottom: 28%;
	}

	&29 {
		bottom: 29%;
	}

	&30 {
		bottom: 30%;
	}

	&31 {
		bottom: 31%;
	}

	&32 {
		bottom: 32%;
	}

	&33 {
		bottom: 33%;
	}

	&34 {
		bottom: 34%;
	}

	&35 {
		bottom: 35%;
	}

	&36 {
		bottom: 36%;
	}

	&37 {
		bottom: 37%;
	}

	&38 {
		bottom: 38%;
	}

	&39 {
		bottom: 39%;
	}

	&40 {
		bottom: 40%;
	}

	&41 {
		bottom: 41%;
	}

	&42 {
		bottom: 42%;
	}

	&43 {
		bottom: 43%;
	}

	&44 {
		bottom: 44%;
	}

	&45 {
		bottom: 45%;
	}

	&46 {
		bottom: 46%;
	}

	&47 {
		bottom: 47%;
	}

	&48 {
		bottom: 48%;
	}

	&49 {
		bottom: 49%;
	}

	&50 {
		bottom: 50%;
	}

	&51 {
		bottom: 51%;
	}

	&52 {
		bottom: 52%;
	}

	&53 {
		bottom: 53%;
	}

	&54 {
		bottom: 54%;
	}

	&55 {
		bottom: 55%;
	}

	&56 {
		bottom: 56%;
	}

	&57 {
		bottom: 57%;
	}

	&58 {
		bottom: 58%;
	}

	&59 {
		bottom: 59%;
	}

	&60 {
		bottom: 60%;
	}

	&61 {
		bottom: 61%;
	}

	&62 {
		bottom: 62%;
	}

	&63 {
		bottom: 63%;
	}

	&64 {
		bottom: 64%;
	}

	&65 {
		bottom: 65%;
	}

	&66 {
		bottom: 66%;
	}

	&67 {
		bottom: 67%;
	}

	&68 {
		bottom: 68%;
	}

	&69 {
		bottom: 69%;
	}

	&70 {
		bottom: 70%;
	}

	&71 {
		bottom: 71%;
	}

	&72 {
		bottom: 72%;
	}

	&73 {
		bottom: 73%;
	}

	&74 {
		bottom: 74%;
	}

	&75 {
		bottom: 75%;
	}

	&76 {
		bottom: 76%;
	}

	&77 {
		bottom: 77%;
	}

	&78 {
		bottom: 78%;
	}

	&79 {
		bottom: 79%;
	}

	&80 {
		bottom: 80%;
	}

	&81 {
		bottom: 81%;
	}

	&82 {
		bottom: 82%;
	}

	&83 {
		bottom: 83%;
	}

	&84 {
		bottom: 84%;
	}

	&85 {
		bottom: 85%;
	}

	&86 {
		bottom: 86%;
	}

	&87 {
		bottom: 87%;
	}

	&88 {
		bottom: 88%;
	}

	&89 {
		bottom: 89%;
	}

	&90 {
		bottom: 90%;
	}

	&91 {
		bottom: 91%;
	}

	&92 {
		bottom: 92%;
	}

	&93 {
		bottom: 93%;
	}

	&94 {
		bottom: 94%;
	}

	&95 {
		bottom: 95%;
	}

	&96 {
		bottom: 96%;
	}

	&97 {
		bottom: 97%;
	}

	&98 {
		bottom: 98%;
	}

	&99 {
		bottom: 99%;
	}

	&100 {
		bottom: 100%;
	}

	&101 {
		bottom: 101%;
	}

	&102 {
		bottom: 102%;
	}

	&103 {
		bottom: 103%;
	}

	&104 {
		bottom: 104%;
	}

	&105 {
		bottom: 105%;
	}

	&106 {
		bottom: 106%;
	}

	&107 {
		bottom: 107%;
	}

	&108 {
		bottom: 108%;
	}

	&109 {
		bottom: 109%;
	}

	&110 {
		bottom: 110%;
	}

	&111 {
		bottom: 111%;
	}

	&112 {
		bottom: 112%;
	}

	&113 {
		bottom: 113%;
	}

	&114 {
		bottom: 114%;
	}

	&115 {
		bottom: 115%;
	}

	&116 {
		bottom: 116%;
	}

	&117 {
		bottom: 117%;
	}

	&118 {
		bottom: 118%;
	}

	&119 {
		bottom: 119%;
	}

	&120 {
		bottom: 120%;
	}

	&121 {
		bottom: 121%;
	}

	&122 {
		bottom: 122%;
	}

	&123 {
		bottom: 123%;
	}

	&124 {
		bottom: 124%;
	}

	&125 {
		bottom: 125%;
	}

	&126 {
		bottom: 126%;
	}

	&127 {
		bottom: 127%;
	}

	&128 {
		bottom: 128%;
	}

	&129 {
		bottom: 129%;
	}

	&130 {
		bottom: 130%;
	}

	&131 {
		bottom: 131%;
	}

	&132 {
		bottom: 132%;
	}

	&133 {
		bottom: 133%;
	}

	&134 {
		bottom: 134%;
	}

	&135 {
		bottom: 135%;
	}

	&136 {
		bottom: 136%;
	}

	&137 {
		bottom: 137%;
	}

	&138 {
		bottom: 138%;
	}

	&139 {
		bottom: 139%;
	}

	&140 {
		bottom: 140%;
	}

	&141 {
		bottom: 141%;
	}

	&142 {
		bottom: 142%;
	}

	&143 {
		bottom: 143%;
	}

	&144 {
		bottom: 144%;
	}

	&145 {
		bottom: 145%;
	}

	&146 {
		bottom: 146%;
	}

	&147 {
		bottom: 147%;
	}

	&148 {
		bottom: 148%;
	}

	&149 {
		bottom: 149%;
	}

	&150 {
		bottom: 150%;
	}

	&151 {
		bottom: 151%;
	}

	&152 {
		bottom: 152%;
	}

	&153 {
		bottom: 153%;
	}

	&154 {
		bottom: 154%;
	}

	&155 {
		bottom: 155%;
	}

	&156 {
		bottom: 156%;
	}

	&157 {
		bottom: 157%;
	}

	&158 {
		bottom: 158%;
	}

	&159 {
		bottom: 159%;
	}

	&160 {
		bottom: 160%;
	}

	&161 {
		bottom: 161%;
	}

	&162 {
		bottom: 162%;
	}

	&163 {
		bottom: 163%;
	}

	&164 {
		bottom: 164%;
	}

	&165 {
		bottom: 165%;
	}

	&166 {
		bottom: 166%;
	}

	&167 {
		bottom: 167%;
	}

	&168 {
		bottom: 168%;
	}

	&169 {
		bottom: 169%;
	}

	&170 {
		bottom: 170%;
	}

	&171 {
		bottom: 171%;
	}

	&172 {
		bottom: 172%;
	}

	&173 {
		bottom: 173%;
	}

	&174 {
		bottom: 174%;
	}

	&175 {
		bottom: 175%;
	}

	&176 {
		bottom: 176%;
	}

	&177 {
		bottom: 177%;
	}

	&178 {
		bottom: 178%;
	}

	&179 {
		bottom: 179%;
	}

	&180 {
		bottom: 180%;
	}

	&181 {
		bottom: 181%;
	}

	&182 {
		bottom: 182%;
	}

	&183 {
		bottom: 183%;
	}

	&184 {
		bottom: 184%;
	}

	&185 {
		bottom: 185%;
	}

	&186 {
		bottom: 186%;
	}

	&187 {
		bottom: 187%;
	}

	&188 {
		bottom: 188%;
	}

	&189 {
		bottom: 189%;
	}

	&190 {
		bottom: 190%;
	}

	&191 {
		bottom: 191%;
	}

	&192 {
		bottom: 192%;
	}

	&193 {
		bottom: 193%;
	}

	&194 {
		bottom: 194%;
	}

	&195 {
		bottom: 195%;
	}

	&196 {
		bottom: 196%;
	}

	&197 {
		bottom: 197%;
	}

	&198 {
		bottom: 198%;
	}

	&199 {
		bottom: 199%;
	}

	&200 {
		bottom: 200%;
	}

}



// ABSOLUTE POSIITON LEFT TOP
.pos-lt-,
.pos-tl-,
.lt-,
.tl- {
	&00 {
		left: 00%;
		top: 00%;
	}

	&01 {
		left: 01%;
		top: 01%;
	}

	&02 {
		left: 02%;
		top: 02%;
	}

	&03 {
		left: 03%;
		top: 03%;
	}

	&04 {
		left: 04%;
		top: 04%;
	}

	&05 {
		left: 05%;
		top: 05%;
	}

	&06 {
		left: 06%;
		top: 06%;
	}

	&07 {
		left: 07%;
		top: 07%;
	}

	&08 {
		left: 08%;
		top: 08%;
	}

	&09 {
		left: 09%;
		top: 09%;
	}

	&10 {
		left: 10%;
		top: 10%;
	}

	&11 {
		left: 11%;
		top: 11%;
	}

	&12 {
		left: 12%;
		top: 12%;
	}

	&13 {
		left: 13%;
		top: 13%;
	}

	&14 {
		left: 14%;
		top: 14%;
	}

	&15 {
		left: 15%;
		top: 15%;
	}

	&16 {
		left: 16%;
		top: 16%;
	}

	&17 {
		left: 17%;
		top: 17%;
	}

	&18 {
		left: 18%;
		top: 18%;
	}

	&19 {
		left: 19%;
		top: 19%;
	}

	&20 {
		left: 20%;
		top: 20%;
	}

	&21 {
		left: 21%;
		top: 21%;
	}

	&22 {
		left: 22%;
		top: 22%;
	}

	&23 {
		left: 23%;
		top: 23%;
	}

	&24 {
		left: 24%;
		top: 24%;
	}

	&25 {
		left: 25%;
		top: 25%;
	}

	&26 {
		left: 26%;
		top: 26%;
	}

	&27 {
		left: 27%;
		top: 27%;
	}

	&28 {
		left: 28%;
		top: 28%;
	}

	&29 {
		left: 29%;
		top: 29%;
	}

	&30 {
		left: 30%;
		top: 30%;
	}

	&31 {
		left: 31%;
		top: 31%;
	}

	&32 {
		left: 32%;
		top: 32%;
	}

	&33 {
		left: 33%;
		top: 33%;
	}

	&34 {
		left: 34%;
		top: 34%;
	}

	&35 {
		left: 35%;
		top: 35%;
	}

	&36 {
		left: 36%;
		top: 36%;
	}

	&37 {
		left: 37%;
		top: 37%;
	}

	&38 {
		left: 38%;
		top: 38%;
	}

	&39 {
		left: 39%;
		top: 39%;
	}

	&40 {
		left: 40%;
		top: 40%;
	}

	&41 {
		left: 41%;
		top: 41%;
	}

	&42 {
		left: 42%;
		top: 42%;
	}

	&43 {
		left: 43%;
		top: 43%;
	}

	&44 {
		left: 44%;
		top: 44%;
	}

	&45 {
		left: 45%;
		top: 45%;
	}

	&46 {
		left: 46%;
		top: 46%;
	}

	&47 {
		left: 47%;
		top: 47%;
	}

	&48 {
		left: 48%;
		top: 48%;
	}

	&49 {
		left: 49%;
		top: 49%;
	}

	&50 {
		left: 50%;
		top: 50%;
	}

	&51 {
		left: 51%;
		top: 51%;
	}

	&52 {
		left: 52%;
		top: 52%;
	}

	&53 {
		left: 53%;
		top: 53%;
	}

	&54 {
		left: 54%;
		top: 54%;
	}

	&55 {
		left: 55%;
		top: 55%;
	}

	&56 {
		left: 56%;
		top: 56%;
	}

	&57 {
		left: 57%;
		top: 57%;
	}

	&58 {
		left: 58%;
		top: 58%;
	}

	&59 {
		left: 59%;
		top: 59%;
	}

	&60 {
		left: 60%;
		top: 60%;
	}

	&61 {
		left: 61%;
		top: 61%;
	}

	&62 {
		left: 62%;
		top: 62%;
	}

	&63 {
		left: 63%;
		top: 63%;
	}

	&64 {
		left: 64%;
		top: 64%;
	}

	&65 {
		left: 65%;
		top: 65%;
	}

	&66 {
		left: 66%;
		top: 66%;
	}

	&67 {
		left: 67%;
		top: 67%;
	}

	&68 {
		left: 68%;
		top: 68%;
	}

	&69 {
		left: 69%;
		top: 69%;
	}

	&70 {
		left: 70%;
		top: 70%;
	}

	&71 {
		left: 71%;
		top: 71%;
	}

	&72 {
		left: 72%;
		top: 72%;
	}

	&73 {
		left: 73%;
		top: 73%;
	}

	&74 {
		left: 74%;
		top: 74%;
	}

	&75 {
		left: 75%;
		top: 75%;
	}

	&76 {
		left: 76%;
		top: 76%;
	}

	&77 {
		left: 77%;
		top: 77%;
	}

	&78 {
		left: 78%;
		top: 78%;
	}

	&79 {
		left: 79%;
		top: 79%;
	}

	&80 {
		left: 80%;
		top: 80%;
	}

	&81 {
		left: 81%;
		top: 81%;
	}

	&82 {
		left: 82%;
		top: 82%;
	}

	&83 {
		left: 83%;
		top: 83%;
	}

	&84 {
		left: 84%;
		top: 84%;
	}

	&85 {
		left: 85%;
		top: 85%;
	}

	&86 {
		left: 86%;
		top: 86%;
	}

	&87 {
		left: 87%;
		top: 87%;
	}

	&88 {
		left: 88%;
		top: 88%;
	}

	&89 {
		left: 89%;
		top: 89%;
	}

	&90 {
		left: 90%;
		top: 90%;
	}

	&91 {
		left: 91%;
		top: 91%;
	}

	&92 {
		left: 92%;
		top: 92%;
	}

	&93 {
		left: 93%;
		top: 93%;
	}

	&94 {
		left: 94%;
		top: 94%;
	}

	&95 {
		left: 95%;
		top: 95%;
	}

	&96 {
		left: 96%;
		top: 96%;
	}

	&97 {
		left: 97%;
		top: 97%;
	}

	&98 {
		left: 98%;
		top: 98%;
	}

	&99 {
		left: 99%;
		top: 99%;
	}

	&100 {
		left: 100%;
		top: 100%;
	}

	&101 {
		left: 101%;
		top: 101%;
	}

	&102 {
		left: 102%;
		top: 102%;
	}

	&103 {
		left: 103%;
		top: 103%;
	}

	&104 {
		left: 104%;
		top: 104%;
	}

	&105 {
		left: 105%;
		top: 105%;
	}

	&106 {
		left: 106%;
		top: 106%;
	}

	&107 {
		left: 107%;
		top: 107%;
	}

	&108 {
		left: 108%;
		top: 108%;
	}

	&109 {
		left: 109%;
		top: 109%;
	}

	&110 {
		left: 110%;
		top: 110%;
	}

	&111 {
		left: 111%;
		top: 111%;
	}

	&112 {
		left: 112%;
		top: 112%;
	}

	&113 {
		left: 113%;
		top: 113%;
	}

	&114 {
		left: 114%;
		top: 114%;
	}

	&115 {
		left: 115%;
		top: 115%;
	}

	&116 {
		left: 116%;
		top: 116%;
	}

	&117 {
		left: 117%;
		top: 117%;
	}

	&118 {
		left: 118%;
		top: 118%;
	}

	&119 {
		left: 119%;
		top: 119%;
	}

	&120 {
		left: 120%;
		top: 120%;
	}

	&121 {
		left: 121%;
		top: 121%;
	}

	&122 {
		left: 122%;
		top: 122%;
	}

	&123 {
		left: 123%;
		top: 123%;
	}

	&124 {
		left: 124%;
		top: 124%;
	}

	&125 {
		left: 125%;
		top: 125%;
	}

	&126 {
		left: 126%;
		top: 126%;
	}

	&127 {
		left: 127%;
		top: 127%;
	}

	&128 {
		left: 128%;
		top: 128%;
	}

	&129 {
		left: 129%;
		top: 129%;
	}

	&130 {
		left: 130%;
		top: 130%;
	}

	&131 {
		left: 131%;
		top: 131%;
	}

	&132 {
		left: 132%;
		top: 132%;
	}

	&133 {
		left: 133%;
		top: 133%;
	}

	&134 {
		left: 134%;
		top: 134%;
	}

	&135 {
		left: 135%;
		top: 135%;
	}

	&136 {
		left: 136%;
		top: 136%;
	}

	&137 {
		left: 137%;
		top: 137%;
	}

	&138 {
		left: 138%;
		top: 138%;
	}

	&139 {
		left: 139%;
		top: 139%;
	}

	&140 {
		left: 140%;
		top: 140%;
	}

	&141 {
		left: 141%;
		top: 141%;
	}

	&142 {
		left: 142%;
		top: 142%;
	}

	&143 {
		left: 143%;
		top: 143%;
	}

	&144 {
		left: 144%;
		top: 144%;
	}

	&145 {
		left: 145%;
		top: 145%;
	}

	&146 {
		left: 146%;
		top: 146%;
	}

	&147 {
		left: 147%;
		top: 147%;
	}

	&148 {
		left: 148%;
		top: 148%;
	}

	&149 {
		left: 149%;
		top: 149%;
	}

	&150 {
		left: 150%;
		top: 150%;
	}

	&151 {
		left: 151%;
		top: 151%;
	}

	&152 {
		left: 152%;
		top: 152%;
	}

	&153 {
		left: 153%;
		top: 153%;
	}

	&154 {
		left: 154%;
		top: 154%;
	}

	&155 {
		left: 155%;
		top: 155%;
	}

	&156 {
		left: 156%;
		top: 156%;
	}

	&157 {
		left: 157%;
		top: 157%;
	}

	&158 {
		left: 158%;
		top: 158%;
	}

	&159 {
		left: 159%;
		top: 159%;
	}

	&160 {
		left: 160%;
		top: 160%;
	}

	&161 {
		left: 161%;
		top: 161%;
	}

	&162 {
		left: 162%;
		top: 162%;
	}

	&163 {
		left: 163%;
		top: 163%;
	}

	&164 {
		left: 164%;
		top: 164%;
	}

	&165 {
		left: 165%;
		top: 165%;
	}

	&166 {
		left: 166%;
		top: 166%;
	}

	&167 {
		left: 167%;
		top: 167%;
	}

	&168 {
		left: 168%;
		top: 168%;
	}

	&169 {
		left: 169%;
		top: 169%;
	}

	&170 {
		left: 170%;
		top: 170%;
	}

	&171 {
		left: 171%;
		top: 171%;
	}

	&172 {
		left: 172%;
		top: 172%;
	}

	&173 {
		left: 173%;
		top: 173%;
	}

	&174 {
		left: 174%;
		top: 174%;
	}

	&175 {
		left: 175%;
		top: 175%;
	}

	&176 {
		left: 176%;
		top: 176%;
	}

	&177 {
		left: 177%;
		top: 177%;
	}

	&178 {
		left: 178%;
		top: 178%;
	}

	&179 {
		left: 179%;
		top: 179%;
	}

	&180 {
		left: 180%;
		top: 180%;
	}

	&181 {
		left: 181%;
		top: 181%;
	}

	&182 {
		left: 182%;
		top: 182%;
	}

	&183 {
		left: 183%;
		top: 183%;
	}

	&184 {
		left: 184%;
		top: 184%;
	}

	&185 {
		left: 185%;
		top: 185%;
	}

	&186 {
		left: 186%;
		top: 186%;
	}

	&187 {
		left: 187%;
		top: 187%;
	}

	&188 {
		left: 188%;
		top: 188%;
	}

	&189 {
		left: 189%;
		top: 189%;
	}

	&190 {
		left: 190%;
		top: 190%;
	}

	&191 {
		left: 191%;
		top: 191%;
	}

	&192 {
		left: 192%;
		top: 192%;
	}

	&193 {
		left: 193%;
		top: 193%;
	}

	&194 {
		left: 194%;
		top: 194%;
	}

	&195 {
		left: 195%;
		top: 195%;
	}

	&196 {
		left: 196%;
		top: 196%;
	}

	&197 {
		left: 197%;
		top: 197%;
	}

	&198 {
		left: 198%;
		top: 198%;
	}

	&199 {
		left: 199%;
		top: 199%;
	}

}





// ABSOLUTE POSIITON LEFT RIGHT
.pos-lr-,
.pos-rl-,
.lr-,
.rl- {
	&00 {
		left: 00%;
		right: 00%;
	}

	&01 {
		left: 01%;
		right: 01%;
	}

	&02 {
		left: 02%;
		right: 02%;
	}

	&03 {
		left: 03%;
		right: 03%;
	}

	&04 {
		left: 04%;
		right: 04%;
	}

	&05 {
		left: 05%;
		right: 05%;
	}

	&06 {
		left: 06%;
		right: 06%;
	}

	&07 {
		left: 07%;
		right: 07%;
	}

	&08 {
		left: 08%;
		right: 08%;
	}

	&09 {
		left: 09%;
		right: 09%;
	}

	&10 {
		left: 10%;
		right: 10%;
	}

	&11 {
		left: 11%;
		right: 11%;
	}

	&12 {
		left: 12%;
		right: 12%;
	}

	&13 {
		left: 13%;
		right: 13%;
	}

	&14 {
		left: 14%;
		right: 14%;
	}

	&15 {
		left: 15%;
		right: 15%;
	}

	&16 {
		left: 16%;
		right: 16%;
	}

	&17 {
		left: 17%;
		right: 17%;
	}

	&18 {
		left: 18%;
		right: 18%;
	}

	&19 {
		left: 19%;
		right: 19%;
	}

	&20 {
		left: 20%;
		right: 20%;
	}

	&21 {
		left: 21%;
		right: 21%;
	}

	&22 {
		left: 22%;
		right: 22%;
	}

	&23 {
		left: 23%;
		right: 23%;
	}

	&24 {
		left: 24%;
		right: 24%;
	}

	&25 {
		left: 25%;
		right: 25%;
	}

	&26 {
		left: 26%;
		right: 26%;
	}

	&27 {
		left: 27%;
		right: 27%;
	}

	&28 {
		left: 28%;
		right: 28%;
	}

	&29 {
		left: 29%;
		right: 29%;
	}

	&30 {
		left: 30%;
		right: 30%;
	}

	&31 {
		left: 31%;
		right: 31%;
	}

	&32 {
		left: 32%;
		right: 32%;
	}

	&33 {
		left: 33%;
		right: 33%;
	}

	&34 {
		left: 34%;
		right: 34%;
	}

	&35 {
		left: 35%;
		right: 35%;
	}

	&36 {
		left: 36%;
		right: 36%;
	}

	&37 {
		left: 37%;
		right: 37%;
	}

	&38 {
		left: 38%;
		right: 38%;
	}

	&39 {
		left: 39%;
		right: 39%;
	}

	&40 {
		left: 40%;
		right: 40%;
	}

	&41 {
		left: 41%;
		right: 41%;
	}

	&42 {
		left: 42%;
		right: 42%;
	}

	&43 {
		left: 43%;
		right: 43%;
	}

	&44 {
		left: 44%;
		right: 44%;
	}

	&45 {
		left: 45%;
		right: 45%;
	}

	&46 {
		left: 46%;
		right: 46%;
	}

	&47 {
		left: 47%;
		right: 47%;
	}

	&48 {
		left: 48%;
		right: 48%;
	}

	&49 {
		left: 49%;
		right: 49%;
	}

	&50 {
		left: 50%;
		right: 50%;
	}

	&51 {
		left: 51%;
		right: 51%;
	}

	&52 {
		left: 52%;
		right: 52%;
	}

	&53 {
		left: 53%;
		right: 53%;
	}

	&54 {
		left: 54%;
		right: 54%;
	}

	&55 {
		left: 55%;
		right: 55%;
	}

	&56 {
		left: 56%;
		right: 56%;
	}

	&57 {
		left: 57%;
		right: 57%;
	}

	&58 {
		left: 58%;
		right: 58%;
	}

	&59 {
		left: 59%;
		right: 59%;
	}

	&60 {
		left: 60%;
		right: 60%;
	}

	&61 {
		left: 61%;
		right: 61%;
	}

	&62 {
		left: 62%;
		right: 62%;
	}

	&63 {
		left: 63%;
		right: 63%;
	}

	&64 {
		left: 64%;
		right: 64%;
	}

	&65 {
		left: 65%;
		right: 65%;
	}

	&66 {
		left: 66%;
		right: 66%;
	}

	&67 {
		left: 67%;
		right: 67%;
	}

	&68 {
		left: 68%;
		right: 68%;
	}

	&69 {
		left: 69%;
		right: 69%;
	}

	&70 {
		left: 70%;
		right: 70%;
	}

	&71 {
		left: 71%;
		right: 71%;
	}

	&72 {
		left: 72%;
		right: 72%;
	}

	&73 {
		left: 73%;
		right: 73%;
	}

	&74 {
		left: 74%;
		right: 74%;
	}

	&75 {
		left: 75%;
		right: 75%;
	}

	&76 {
		left: 76%;
		right: 76%;
	}

	&77 {
		left: 77%;
		right: 77%;
	}

	&78 {
		left: 78%;
		right: 78%;
	}

	&79 {
		left: 79%;
		right: 79%;
	}

	&80 {
		left: 80%;
		right: 80%;
	}

	&81 {
		left: 81%;
		right: 81%;
	}

	&82 {
		left: 82%;
		right: 82%;
	}

	&83 {
		left: 83%;
		right: 83%;
	}

	&84 {
		left: 84%;
		right: 84%;
	}

	&85 {
		left: 85%;
		right: 85%;
	}

	&86 {
		left: 86%;
		right: 86%;
	}

	&87 {
		left: 87%;
		right: 87%;
	}

	&88 {
		left: 88%;
		right: 88%;
	}

	&89 {
		left: 89%;
		right: 89%;
	}

	&90 {
		left: 90%;
		right: 90%;
	}

	&91 {
		left: 91%;
		right: 91%;
	}

	&92 {
		left: 92%;
		right: 92%;
	}

	&93 {
		left: 93%;
		right: 93%;
	}

	&94 {
		left: 94%;
		right: 94%;
	}

	&95 {
		left: 95%;
		right: 95%;
	}

	&96 {
		left: 96%;
		right: 96%;
	}

	&97 {
		left: 97%;
		right: 97%;
	}

	&98 {
		left: 98%;
		right: 98%;
	}

	&99 {
		left: 99%;
		right: 99%;
	}

	&100 {
		left: 100%;
		right: 100%;
	}

	&101 {
		left: 101%;
		right: 101%;
	}

	&102 {
		left: 102%;
		right: 102%;
	}

	&103 {
		left: 103%;
		right: 103%;
	}

	&104 {
		left: 104%;
		right: 104%;
	}

	&105 {
		left: 105%;
		right: 105%;
	}

	&106 {
		left: 106%;
		right: 106%;
	}

	&107 {
		left: 107%;
		right: 107%;
	}

	&108 {
		left: 108%;
		right: 108%;
	}

	&109 {
		left: 109%;
		right: 109%;
	}

	&110 {
		left: 110%;
		right: 110%;
	}

	&111 {
		left: 111%;
		right: 111%;
	}

	&112 {
		left: 112%;
		right: 112%;
	}

	&113 {
		left: 113%;
		right: 113%;
	}

	&114 {
		left: 114%;
		right: 114%;
	}

	&115 {
		left: 115%;
		right: 115%;
	}

	&116 {
		left: 116%;
		right: 116%;
	}

	&117 {
		left: 117%;
		right: 117%;
	}

	&118 {
		left: 118%;
		right: 118%;
	}

	&119 {
		left: 119%;
		right: 119%;
	}

	&120 {
		left: 120%;
		right: 120%;
	}

	&121 {
		left: 121%;
		right: 121%;
	}

	&122 {
		left: 122%;
		right: 122%;
	}

	&123 {
		left: 123%;
		right: 123%;
	}

	&124 {
		left: 124%;
		right: 124%;
	}

	&125 {
		left: 125%;
		right: 125%;
	}

	&126 {
		left: 126%;
		right: 126%;
	}

	&127 {
		left: 127%;
		right: 127%;
	}

	&128 {
		left: 128%;
		right: 128%;
	}

	&129 {
		left: 129%;
		right: 129%;
	}

	&130 {
		left: 130%;
		right: 130%;
	}

	&131 {
		left: 131%;
		right: 131%;
	}

	&132 {
		left: 132%;
		right: 132%;
	}

	&133 {
		left: 133%;
		right: 133%;
	}

	&134 {
		left: 134%;
		right: 134%;
	}

	&135 {
		left: 135%;
		right: 135%;
	}

	&136 {
		left: 136%;
		right: 136%;
	}

	&137 {
		left: 137%;
		right: 137%;
	}

	&138 {
		left: 138%;
		right: 138%;
	}

	&139 {
		left: 139%;
		right: 139%;
	}

	&140 {
		left: 140%;
		right: 140%;
	}

	&141 {
		left: 141%;
		right: 141%;
	}

	&142 {
		left: 142%;
		right: 142%;
	}

	&143 {
		left: 143%;
		right: 143%;
	}

	&144 {
		left: 144%;
		right: 144%;
	}

	&145 {
		left: 145%;
		right: 145%;
	}

	&146 {
		left: 146%;
		right: 146%;
	}

	&147 {
		left: 147%;
		right: 147%;
	}

	&148 {
		left: 148%;
		right: 148%;
	}

	&149 {
		left: 149%;
		right: 149%;
	}

	&150 {
		left: 150%;
		right: 150%;
	}

	&151 {
		left: 151%;
		right: 151%;
	}

	&152 {
		left: 152%;
		right: 152%;
	}

	&153 {
		left: 153%;
		right: 153%;
	}

	&154 {
		left: 154%;
		right: 154%;
	}

	&155 {
		left: 155%;
		right: 155%;
	}

	&156 {
		left: 156%;
		right: 156%;
	}

	&157 {
		left: 157%;
		right: 157%;
	}

	&158 {
		left: 158%;
		right: 158%;
	}

	&159 {
		left: 159%;
		right: 159%;
	}

	&160 {
		left: 160%;
		right: 160%;
	}

	&161 {
		left: 161%;
		right: 161%;
	}

	&162 {
		left: 162%;
		right: 162%;
	}

	&163 {
		left: 163%;
		right: 163%;
	}

	&164 {
		left: 164%;
		right: 164%;
	}

	&165 {
		left: 165%;
		right: 165%;
	}

	&166 {
		left: 166%;
		right: 166%;
	}

	&167 {
		left: 167%;
		right: 167%;
	}

	&168 {
		left: 168%;
		right: 168%;
	}

	&169 {
		left: 169%;
		right: 169%;
	}

	&170 {
		left: 170%;
		right: 170%;
	}

	&171 {
		left: 171%;
		right: 171%;
	}

	&172 {
		left: 172%;
		right: 172%;
	}

	&173 {
		left: 173%;
		right: 173%;
	}

	&174 {
		left: 174%;
		right: 174%;
	}

	&175 {
		left: 175%;
		right: 175%;
	}

	&176 {
		left: 176%;
		right: 176%;
	}

	&177 {
		left: 177%;
		right: 177%;
	}

	&178 {
		left: 178%;
		right: 178%;
	}

	&179 {
		left: 179%;
		right: 179%;
	}

	&180 {
		left: 180%;
		right: 180%;
	}

	&181 {
		left: 181%;
		right: 181%;
	}

	&182 {
		left: 182%;
		right: 182%;
	}

	&183 {
		left: 183%;
		right: 183%;
	}

	&184 {
		left: 184%;
		right: 184%;
	}

	&185 {
		left: 185%;
		right: 185%;
	}

	&186 {
		left: 186%;
		right: 186%;
	}

	&187 {
		left: 187%;
		right: 187%;
	}

	&188 {
		left: 188%;
		right: 188%;
	}

	&189 {
		left: 189%;
		right: 189%;
	}

	&190 {
		left: 190%;
		right: 190%;
	}

	&191 {
		left: 191%;
		right: 191%;
	}

	&192 {
		left: 192%;
		right: 192%;
	}

	&193 {
		left: 193%;
		right: 193%;
	}

	&194 {
		left: 194%;
		right: 194%;
	}

	&195 {
		left: 195%;
		right: 195%;
	}

	&196 {
		left: 196%;
		right: 196%;
	}

	&197 {
		left: 197%;
		right: 197%;
	}

	&198 {
		left: 198%;
		right: 198%;
	}

	&199 {
		left: 199%;
		right: 199%;
	}

	&200 {
		left: 200%;
		right: 200%;
	}

}







// ABSOLUTE POSIITON LEFT BOTTOM
.pos-lb-,
.pos-bl-,
.lb-,
.bl- {
	&00 {
		left: 00%;
		bottom: 00%;
	}

	&01 {
		left: 01%;
		bottom: 01%;
	}

	&02 {
		left: 02%;
		bottom: 02%;
	}

	&03 {
		left: 03%;
		bottom: 03%;
	}

	&04 {
		left: 04%;
		bottom: 04%;
	}

	&05 {
		left: 05%;
		bottom: 05%;
	}

	&06 {
		left: 06%;
		bottom: 06%;
	}

	&07 {
		left: 07%;
		bottom: 07%;
	}

	&08 {
		left: 08%;
		bottom: 08%;
	}

	&09 {
		left: 09%;
		bottom: 09%;
	}

	&10 {
		left: 10%;
		bottom: 10%;
	}

	&11 {
		left: 11%;
		bottom: 11%;
	}

	&12 {
		left: 12%;
		bottom: 12%;
	}

	&13 {
		left: 13%;
		bottom: 13%;
	}

	&14 {
		left: 14%;
		bottom: 14%;
	}

	&15 {
		left: 15%;
		bottom: 15%;
	}

	&16 {
		left: 16%;
		bottom: 16%;
	}

	&17 {
		left: 17%;
		bottom: 17%;
	}

	&18 {
		left: 18%;
		bottom: 18%;
	}

	&19 {
		left: 19%;
		bottom: 19%;
	}

	&20 {
		left: 20%;
		bottom: 20%;
	}

	&21 {
		left: 21%;
		bottom: 21%;
	}

	&22 {
		left: 22%;
		bottom: 22%;
	}

	&23 {
		left: 23%;
		bottom: 23%;
	}

	&24 {
		left: 24%;
		bottom: 24%;
	}

	&25 {
		left: 25%;
		bottom: 25%;
	}

	&26 {
		left: 26%;
		bottom: 26%;
	}

	&27 {
		left: 27%;
		bottom: 27%;
	}

	&28 {
		left: 28%;
		bottom: 28%;
	}

	&29 {
		left: 29%;
		bottom: 29%;
	}

	&30 {
		left: 30%;
		bottom: 30%;
	}

	&31 {
		left: 31%;
		bottom: 31%;
	}

	&32 {
		left: 32%;
		bottom: 32%;
	}

	&33 {
		left: 33%;
		bottom: 33%;
	}

	&34 {
		left: 34%;
		bottom: 34%;
	}

	&35 {
		left: 35%;
		bottom: 35%;
	}

	&36 {
		left: 36%;
		bottom: 36%;
	}

	&37 {
		left: 37%;
		bottom: 37%;
	}

	&38 {
		left: 38%;
		bottom: 38%;
	}

	&39 {
		left: 39%;
		bottom: 39%;
	}

	&40 {
		left: 40%;
		bottom: 40%;
	}

	&41 {
		left: 41%;
		bottom: 41%;
	}

	&42 {
		left: 42%;
		bottom: 42%;
	}

	&43 {
		left: 43%;
		bottom: 43%;
	}

	&44 {
		left: 44%;
		bottom: 44%;
	}

	&45 {
		left: 45%;
		bottom: 45%;
	}

	&46 {
		left: 46%;
		bottom: 46%;
	}

	&47 {
		left: 47%;
		bottom: 47%;
	}

	&48 {
		left: 48%;
		bottom: 48%;
	}

	&49 {
		left: 49%;
		bottom: 49%;
	}

	&50 {
		left: 50%;
		bottom: 50%;
	}

	&51 {
		left: 51%;
		bottom: 51%;
	}

	&52 {
		left: 52%;
		bottom: 52%;
	}

	&53 {
		left: 53%;
		bottom: 53%;
	}

	&54 {
		left: 54%;
		bottom: 54%;
	}

	&55 {
		left: 55%;
		bottom: 55%;
	}

	&56 {
		left: 56%;
		bottom: 56%;
	}

	&57 {
		left: 57%;
		bottom: 57%;
	}

	&58 {
		left: 58%;
		bottom: 58%;
	}

	&59 {
		left: 59%;
		bottom: 59%;
	}

	&60 {
		left: 60%;
		bottom: 60%;
	}

	&61 {
		left: 61%;
		bottom: 61%;
	}

	&62 {
		left: 62%;
		bottom: 62%;
	}

	&63 {
		left: 63%;
		bottom: 63%;
	}

	&64 {
		left: 64%;
		bottom: 64%;
	}

	&65 {
		left: 65%;
		bottom: 65%;
	}

	&66 {
		left: 66%;
		bottom: 66%;
	}

	&67 {
		left: 67%;
		bottom: 67%;
	}

	&68 {
		left: 68%;
		bottom: 68%;
	}

	&69 {
		left: 69%;
		bottom: 69%;
	}

	&70 {
		left: 70%;
		bottom: 70%;
	}

	&71 {
		left: 71%;
		bottom: 71%;
	}

	&72 {
		left: 72%;
		bottom: 72%;
	}

	&73 {
		left: 73%;
		bottom: 73%;
	}

	&74 {
		left: 74%;
		bottom: 74%;
	}

	&75 {
		left: 75%;
		bottom: 75%;
	}

	&76 {
		left: 76%;
		bottom: 76%;
	}

	&77 {
		left: 77%;
		bottom: 77%;
	}

	&78 {
		left: 78%;
		bottom: 78%;
	}

	&79 {
		left: 79%;
		bottom: 79%;
	}

	&80 {
		left: 80%;
		bottom: 80%;
	}

	&81 {
		left: 81%;
		bottom: 81%;
	}

	&82 {
		left: 82%;
		bottom: 82%;
	}

	&83 {
		left: 83%;
		bottom: 83%;
	}

	&84 {
		left: 84%;
		bottom: 84%;
	}

	&85 {
		left: 85%;
		bottom: 85%;
	}

	&86 {
		left: 86%;
		bottom: 86%;
	}

	&87 {
		left: 87%;
		bottom: 87%;
	}

	&88 {
		left: 88%;
		bottom: 88%;
	}

	&89 {
		left: 89%;
		bottom: 89%;
	}

	&90 {
		left: 90%;
		bottom: 90%;
	}

	&91 {
		left: 91%;
		bottom: 91%;
	}

	&92 {
		left: 92%;
		bottom: 92%;
	}

	&93 {
		left: 93%;
		bottom: 93%;
	}

	&94 {
		left: 94%;
		bottom: 94%;
	}

	&95 {
		left: 95%;
		bottom: 95%;
	}

	&96 {
		left: 96%;
		bottom: 96%;
	}

	&97 {
		left: 97%;
		bottom: 97%;
	}

	&98 {
		left: 98%;
		bottom: 98%;
	}

	&99 {
		left: 99%;
		bottom: 99%;
	}

	&100 {
		left: 100%;
		bottom: 100%;
	}

	&101 {
		left: 101%;
		bottom: 101%;
	}

	&102 {
		left: 102%;
		bottom: 102%;
	}

	&103 {
		left: 103%;
		bottom: 103%;
	}

	&104 {
		left: 104%;
		bottom: 104%;
	}

	&105 {
		left: 105%;
		bottom: 105%;
	}

	&106 {
		left: 106%;
		bottom: 106%;
	}

	&107 {
		left: 107%;
		bottom: 107%;
	}

	&108 {
		left: 108%;
		bottom: 108%;
	}

	&109 {
		left: 109%;
		bottom: 109%;
	}

	&110 {
		left: 110%;
		bottom: 110%;
	}

	&111 {
		left: 111%;
		bottom: 111%;
	}

	&112 {
		left: 112%;
		bottom: 112%;
	}

	&113 {
		left: 113%;
		bottom: 113%;
	}

	&114 {
		left: 114%;
		bottom: 114%;
	}

	&115 {
		left: 115%;
		bottom: 115%;
	}

	&116 {
		left: 116%;
		bottom: 116%;
	}

	&117 {
		left: 117%;
		bottom: 117%;
	}

	&118 {
		left: 118%;
		bottom: 118%;
	}

	&119 {
		left: 119%;
		bottom: 119%;
	}

	&120 {
		left: 120%;
		bottom: 120%;
	}

	&121 {
		left: 121%;
		bottom: 121%;
	}

	&122 {
		left: 122%;
		bottom: 122%;
	}

	&123 {
		left: 123%;
		bottom: 123%;
	}

	&124 {
		left: 124%;
		bottom: 124%;
	}

	&125 {
		left: 125%;
		bottom: 125%;
	}

	&126 {
		left: 126%;
		bottom: 126%;
	}

	&127 {
		left: 127%;
		bottom: 127%;
	}

	&128 {
		left: 128%;
		bottom: 128%;
	}

	&129 {
		left: 129%;
		bottom: 129%;
	}

	&130 {
		left: 130%;
		bottom: 130%;
	}

	&131 {
		left: 131%;
		bottom: 131%;
	}

	&132 {
		left: 132%;
		bottom: 132%;
	}

	&133 {
		left: 133%;
		bottom: 133%;
	}

	&134 {
		left: 134%;
		bottom: 134%;
	}

	&135 {
		left: 135%;
		bottom: 135%;
	}

	&136 {
		left: 136%;
		bottom: 136%;
	}

	&137 {
		left: 137%;
		bottom: 137%;
	}

	&138 {
		left: 138%;
		bottom: 138%;
	}

	&139 {
		left: 139%;
		bottom: 139%;
	}

	&140 {
		left: 140%;
		bottom: 140%;
	}

	&141 {
		left: 141%;
		bottom: 141%;
	}

	&142 {
		left: 142%;
		bottom: 142%;
	}

	&143 {
		left: 143%;
		bottom: 143%;
	}

	&144 {
		left: 144%;
		bottom: 144%;
	}

	&145 {
		left: 145%;
		bottom: 145%;
	}

	&146 {
		left: 146%;
		bottom: 146%;
	}

	&147 {
		left: 147%;
		bottom: 147%;
	}

	&148 {
		left: 148%;
		bottom: 148%;
	}

	&149 {
		left: 149%;
		bottom: 149%;
	}

	&150 {
		left: 150%;
		bottom: 150%;
	}

	&151 {
		left: 151%;
		bottom: 151%;
	}

	&152 {
		left: 152%;
		bottom: 152%;
	}

	&153 {
		left: 153%;
		bottom: 153%;
	}

	&154 {
		left: 154%;
		bottom: 154%;
	}

	&155 {
		left: 155%;
		bottom: 155%;
	}

	&156 {
		left: 156%;
		bottom: 156%;
	}

	&157 {
		left: 157%;
		bottom: 157%;
	}

	&158 {
		left: 158%;
		bottom: 158%;
	}

	&159 {
		left: 159%;
		bottom: 159%;
	}

	&160 {
		left: 160%;
		bottom: 160%;
	}

	&161 {
		left: 161%;
		bottom: 161%;
	}

	&162 {
		left: 162%;
		bottom: 162%;
	}

	&163 {
		left: 163%;
		bottom: 163%;
	}

	&164 {
		left: 164%;
		bottom: 164%;
	}

	&165 {
		left: 165%;
		bottom: 165%;
	}

	&166 {
		left: 166%;
		bottom: 166%;
	}

	&167 {
		left: 167%;
		bottom: 167%;
	}

	&168 {
		left: 168%;
		bottom: 168%;
	}

	&169 {
		left: 169%;
		bottom: 169%;
	}

	&170 {
		left: 170%;
		bottom: 170%;
	}

	&171 {
		left: 171%;
		bottom: 171%;
	}

	&172 {
		left: 172%;
		bottom: 172%;
	}

	&173 {
		left: 173%;
		bottom: 173%;
	}

	&174 {
		left: 174%;
		bottom: 174%;
	}

	&175 {
		left: 175%;
		bottom: 175%;
	}

	&176 {
		left: 176%;
		bottom: 176%;
	}

	&177 {
		left: 177%;
		bottom: 177%;
	}

	&178 {
		left: 178%;
		bottom: 178%;
	}

	&179 {
		left: 179%;
		bottom: 179%;
	}

	&180 {
		left: 180%;
		bottom: 180%;
	}

	&181 {
		left: 181%;
		bottom: 181%;
	}

	&182 {
		left: 182%;
		bottom: 182%;
	}

	&183 {
		left: 183%;
		bottom: 183%;
	}

	&184 {
		left: 184%;
		bottom: 184%;
	}

	&185 {
		left: 185%;
		bottom: 185%;
	}

	&186 {
		left: 186%;
		bottom: 186%;
	}

	&187 {
		left: 187%;
		bottom: 187%;
	}

	&188 {
		left: 188%;
		bottom: 188%;
	}

	&189 {
		left: 189%;
		bottom: 189%;
	}

	&190 {
		left: 190%;
		bottom: 190%;
	}

	&191 {
		left: 191%;
		bottom: 191%;
	}

	&192 {
		left: 192%;
		bottom: 192%;
	}

	&193 {
		left: 193%;
		bottom: 193%;
	}

	&194 {
		left: 194%;
		bottom: 194%;
	}

	&195 {
		left: 195%;
		bottom: 195%;
	}

	&196 {
		left: 196%;
		bottom: 196%;
	}

	&197 {
		left: 197%;
		bottom: 197%;
	}

	&198 {
		left: 198%;
		bottom: 198%;
	}

	&199 {
		left: 199%;
		bottom: 199%;
	}

	&200 {
		left: 200%;
		bottom: 200%;
	}
}






// ABSOLUTE POSIITON TOP RIGHT
.pos-tr-,
.pos-rt-,
.tr-,
.rt- {
	&00 {
		top: 00%;
		right: 00%;
	}

	&01 {
		top: 01%;
		right: 01%;
	}

	&02 {
		top: 02%;
		right: 02%;
	}

	&03 {
		top: 03%;
		right: 03%;
	}

	&04 {
		top: 04%;
		right: 04%;
	}

	&05 {
		top: 05%;
		right: 05%;
	}

	&06 {
		top: 06%;
		right: 06%;
	}

	&07 {
		top: 07%;
		right: 07%;
	}

	&08 {
		top: 08%;
		right: 08%;
	}

	&09 {
		top: 09%;
		right: 09%;
	}

	&10 {
		top: 10%;
		right: 10%;
	}

	&11 {
		top: 11%;
		right: 11%;
	}

	&12 {
		top: 12%;
		right: 12%;
	}

	&13 {
		top: 13%;
		right: 13%;
	}

	&14 {
		top: 14%;
		right: 14%;
	}

	&15 {
		top: 15%;
		right: 15%;
	}

	&16 {
		top: 16%;
		right: 16%;
	}

	&17 {
		top: 17%;
		right: 17%;
	}

	&18 {
		top: 18%;
		right: 18%;
	}

	&19 {
		top: 19%;
		right: 19%;
	}

	&20 {
		top: 20%;
		right: 20%;
	}

	&21 {
		top: 21%;
		right: 21%;
	}

	&22 {
		top: 22%;
		right: 22%;
	}

	&23 {
		top: 23%;
		right: 23%;
	}

	&24 {
		top: 24%;
		right: 24%;
	}

	&25 {
		top: 25%;
		right: 25%;
	}

	&26 {
		top: 26%;
		right: 26%;
	}

	&27 {
		top: 27%;
		right: 27%;
	}

	&28 {
		top: 28%;
		right: 28%;
	}

	&29 {
		top: 29%;
		right: 29%;
	}

	&30 {
		top: 30%;
		right: 30%;
	}

	&31 {
		top: 31%;
		right: 31%;
	}

	&32 {
		top: 32%;
		right: 32%;
	}

	&33 {
		top: 33%;
		right: 33%;
	}

	&34 {
		top: 34%;
		right: 34%;
	}

	&35 {
		top: 35%;
		right: 35%;
	}

	&36 {
		top: 36%;
		right: 36%;
	}

	&37 {
		top: 37%;
		right: 37%;
	}

	&38 {
		top: 38%;
		right: 38%;
	}

	&39 {
		top: 39%;
		right: 39%;
	}

	&40 {
		top: 40%;
		right: 40%;
	}

	&41 {
		top: 41%;
		right: 41%;
	}

	&42 {
		top: 42%;
		right: 42%;
	}

	&43 {
		top: 43%;
		right: 43%;
	}

	&44 {
		top: 44%;
		right: 44%;
	}

	&45 {
		top: 45%;
		right: 45%;
	}

	&46 {
		top: 46%;
		right: 46%;
	}

	&47 {
		top: 47%;
		right: 47%;
	}

	&48 {
		top: 48%;
		right: 48%;
	}

	&49 {
		top: 49%;
		right: 49%;
	}

	&50 {
		top: 50%;
		right: 50%;
	}

	&51 {
		top: 51%;
		right: 51%;
	}

	&52 {
		top: 52%;
		right: 52%;
	}

	&53 {
		top: 53%;
		right: 53%;
	}

	&54 {
		top: 54%;
		right: 54%;
	}

	&55 {
		top: 55%;
		right: 55%;
	}

	&56 {
		top: 56%;
		right: 56%;
	}

	&57 {
		top: 57%;
		right: 57%;
	}

	&58 {
		top: 58%;
		right: 58%;
	}

	&59 {
		top: 59%;
		right: 59%;
	}

	&60 {
		top: 60%;
		right: 60%;
	}

	&61 {
		top: 61%;
		right: 61%;
	}

	&62 {
		top: 62%;
		right: 62%;
	}

	&63 {
		top: 63%;
		right: 63%;
	}

	&64 {
		top: 64%;
		right: 64%;
	}

	&65 {
		top: 65%;
		right: 65%;
	}

	&66 {
		top: 66%;
		right: 66%;
	}

	&67 {
		top: 67%;
		right: 67%;
	}

	&68 {
		top: 68%;
		right: 68%;
	}

	&69 {
		top: 69%;
		right: 69%;
	}

	&70 {
		top: 70%;
		right: 70%;
	}

	&71 {
		top: 71%;
		right: 71%;
	}

	&72 {
		top: 72%;
		right: 72%;
	}

	&73 {
		top: 73%;
		right: 73%;
	}

	&74 {
		top: 74%;
		right: 74%;
	}

	&75 {
		top: 75%;
		right: 75%;
	}

	&76 {
		top: 76%;
		right: 76%;
	}

	&77 {
		top: 77%;
		right: 77%;
	}

	&78 {
		top: 78%;
		right: 78%;
	}

	&79 {
		top: 79%;
		right: 79%;
	}

	&80 {
		top: 80%;
		right: 80%;
	}

	&81 {
		top: 81%;
		right: 81%;
	}

	&82 {
		top: 82%;
		right: 82%;
	}

	&83 {
		top: 83%;
		right: 83%;
	}

	&84 {
		top: 84%;
		right: 84%;
	}

	&85 {
		top: 85%;
		right: 85%;
	}

	&86 {
		top: 86%;
		right: 86%;
	}

	&87 {
		top: 87%;
		right: 87%;
	}

	&88 {
		top: 88%;
		right: 88%;
	}

	&89 {
		top: 89%;
		right: 89%;
	}

	&90 {
		top: 90%;
		right: 90%;
	}

	&91 {
		top: 91%;
		right: 91%;
	}

	&92 {
		top: 92%;
		right: 92%;
	}

	&93 {
		top: 93%;
		right: 93%;
	}

	&94 {
		top: 94%;
		right: 94%;
	}

	&95 {
		top: 95%;
		right: 95%;
	}

	&96 {
		top: 96%;
		right: 96%;
	}

	&97 {
		top: 97%;
		right: 97%;
	}

	&98 {
		top: 98%;
		right: 98%;
	}

	&99 {
		top: 99%;
		right: 99%;
	}

	&100 {
		top: 100%;
		right: 100%;
	}

	&101 {
		top: 101%;
		right: 101%;
	}

	&102 {
		top: 102%;
		right: 102%;
	}

	&103 {
		top: 103%;
		right: 103%;
	}

	&104 {
		top: 104%;
		right: 104%;
	}

	&105 {
		top: 105%;
		right: 105%;
	}

	&106 {
		top: 106%;
		right: 106%;
	}

	&107 {
		top: 107%;
		right: 107%;
	}

	&108 {
		top: 108%;
		right: 108%;
	}

	&109 {
		top: 109%;
		right: 109%;
	}

	&110 {
		top: 110%;
		right: 110%;
	}

	&111 {
		top: 111%;
		right: 111%;
	}

	&112 {
		top: 112%;
		right: 112%;
	}

	&113 {
		top: 113%;
		right: 113%;
	}

	&114 {
		top: 114%;
		right: 114%;
	}

	&115 {
		top: 115%;
		right: 115%;
	}

	&116 {
		top: 116%;
		right: 116%;
	}

	&117 {
		top: 117%;
		right: 117%;
	}

	&118 {
		top: 118%;
		right: 118%;
	}

	&119 {
		top: 119%;
		right: 119%;
	}

	&120 {
		top: 120%;
		right: 120%;
	}

	&121 {
		top: 121%;
		right: 121%;
	}

	&122 {
		top: 122%;
		right: 122%;
	}

	&123 {
		top: 123%;
		right: 123%;
	}

	&124 {
		top: 124%;
		right: 124%;
	}

	&125 {
		top: 125%;
		right: 125%;
	}

	&126 {
		top: 126%;
		right: 126%;
	}

	&127 {
		top: 127%;
		right: 127%;
	}

	&128 {
		top: 128%;
		right: 128%;
	}

	&129 {
		top: 129%;
		right: 129%;
	}

	&130 {
		top: 130%;
		right: 130%;
	}

	&131 {
		top: 131%;
		right: 131%;
	}

	&132 {
		top: 132%;
		right: 132%;
	}

	&133 {
		top: 133%;
		right: 133%;
	}

	&134 {
		top: 134%;
		right: 134%;
	}

	&135 {
		top: 135%;
		right: 135%;
	}

	&136 {
		top: 136%;
		right: 136%;
	}

	&137 {
		top: 137%;
		right: 137%;
	}

	&138 {
		top: 138%;
		right: 138%;
	}

	&139 {
		top: 139%;
		right: 139%;
	}

	&140 {
		top: 140%;
		right: 140%;
	}

	&141 {
		top: 141%;
		right: 141%;
	}

	&142 {
		top: 142%;
		right: 142%;
	}

	&143 {
		top: 143%;
		right: 143%;
	}

	&144 {
		top: 144%;
		right: 144%;
	}

	&145 {
		top: 145%;
		right: 145%;
	}

	&146 {
		top: 146%;
		right: 146%;
	}

	&147 {
		top: 147%;
		right: 147%;
	}

	&148 {
		top: 148%;
		right: 148%;
	}

	&149 {
		top: 149%;
		right: 149%;
	}

	&150 {
		top: 150%;
		right: 150%;
	}

	&151 {
		top: 151%;
		right: 151%;
	}

	&152 {
		top: 152%;
		right: 152%;
	}

	&153 {
		top: 153%;
		right: 153%;
	}

	&154 {
		top: 154%;
		right: 154%;
	}

	&155 {
		top: 155%;
		right: 155%;
	}

	&156 {
		top: 156%;
		right: 156%;
	}

	&157 {
		top: 157%;
		right: 157%;
	}

	&158 {
		top: 158%;
		right: 158%;
	}

	&159 {
		top: 159%;
		right: 159%;
	}

	&160 {
		top: 160%;
		right: 160%;
	}

	&161 {
		top: 161%;
		right: 161%;
	}

	&162 {
		top: 162%;
		right: 162%;
	}

	&163 {
		top: 163%;
		right: 163%;
	}

	&164 {
		top: 164%;
		right: 164%;
	}

	&165 {
		top: 165%;
		right: 165%;
	}

	&166 {
		top: 166%;
		right: 166%;
	}

	&167 {
		top: 167%;
		right: 167%;
	}

	&168 {
		top: 168%;
		right: 168%;
	}

	&169 {
		top: 169%;
		right: 169%;
	}

	&170 {
		top: 170%;
		right: 170%;
	}

	&171 {
		top: 171%;
		right: 171%;
	}

	&172 {
		top: 172%;
		right: 172%;
	}

	&173 {
		top: 173%;
		right: 173%;
	}

	&174 {
		top: 174%;
		right: 174%;
	}

	&175 {
		top: 175%;
		right: 175%;
	}

	&176 {
		top: 176%;
		right: 176%;
	}

	&177 {
		top: 177%;
		right: 177%;
	}

	&178 {
		top: 178%;
		right: 178%;
	}

	&179 {
		top: 179%;
		right: 179%;
	}

	&180 {
		top: 180%;
		right: 180%;
	}

	&181 {
		top: 181%;
		right: 181%;
	}

	&182 {
		top: 182%;
		right: 182%;
	}

	&183 {
		top: 183%;
		right: 183%;
	}

	&184 {
		top: 184%;
		right: 184%;
	}

	&185 {
		top: 185%;
		right: 185%;
	}

	&186 {
		top: 186%;
		right: 186%;
	}

	&187 {
		top: 187%;
		right: 187%;
	}

	&188 {
		top: 188%;
		right: 188%;
	}

	&189 {
		top: 189%;
		right: 189%;
	}

	&190 {
		top: 190%;
		right: 190%;
	}

	&191 {
		top: 191%;
		right: 191%;
	}

	&192 {
		top: 192%;
		right: 192%;
	}

	&193 {
		top: 193%;
		right: 193%;
	}

	&194 {
		top: 194%;
		right: 194%;
	}

	&195 {
		top: 195%;
		right: 195%;
	}

	&196 {
		top: 196%;
		right: 196%;
	}

	&197 {
		top: 197%;
		right: 197%;
	}

	&198 {
		top: 198%;
		right: 198%;
	}

	&199 {
		top: 199%;
		right: 199%;
	}

	&200 {
		top: 200%;
		right: 200%;
	}

}





// ABSOLUTE POSIITON TOP BOTTOM
.pos-tb-,
.pos-bt-,
.tb-,
.bt- {
	&00 {
		top: 00%;
		bottom: 00%;
	}

	&01 {
		top: 01%;
		bottom: 01%;
	}

	&02 {
		top: 02%;
		bottom: 02%;
	}

	&03 {
		top: 03%;
		bottom: 03%;
	}

	&04 {
		top: 04%;
		bottom: 04%;
	}

	&05 {
		top: 05%;
		bottom: 05%;
	}

	&06 {
		top: 06%;
		bottom: 06%;
	}

	&07 {
		top: 07%;
		bottom: 07%;
	}

	&08 {
		top: 08%;
		bottom: 08%;
	}

	&09 {
		top: 09%;
		bottom: 09%;
	}

	&10 {
		top: 10%;
		bottom: 10%;
	}

	&11 {
		top: 11%;
		bottom: 11%;
	}

	&12 {
		top: 12%;
		bottom: 12%;
	}

	&13 {
		top: 13%;
		bottom: 13%;
	}

	&14 {
		top: 14%;
		bottom: 14%;
	}

	&15 {
		top: 15%;
		bottom: 15%;
	}

	&16 {
		top: 16%;
		bottom: 16%;
	}

	&17 {
		top: 17%;
		bottom: 17%;
	}

	&18 {
		top: 18%;
		bottom: 18%;
	}

	&19 {
		top: 19%;
		bottom: 19%;
	}

	&20 {
		top: 20%;
		bottom: 20%;
	}

	&21 {
		top: 21%;
		bottom: 21%;
	}

	&22 {
		top: 22%;
		bottom: 22%;
	}

	&23 {
		top: 23%;
		bottom: 23%;
	}

	&24 {
		top: 24%;
		bottom: 24%;
	}

	&25 {
		top: 25%;
		bottom: 25%;
	}

	&26 {
		top: 26%;
		bottom: 26%;
	}

	&27 {
		top: 27%;
		bottom: 27%;
	}

	&28 {
		top: 28%;
		bottom: 28%;
	}

	&29 {
		top: 29%;
		bottom: 29%;
	}

	&30 {
		top: 30%;
		bottom: 30%;
	}

	&31 {
		top: 31%;
		bottom: 31%;
	}

	&32 {
		top: 32%;
		bottom: 32%;
	}

	&33 {
		top: 33%;
		bottom: 33%;
	}

	&34 {
		top: 34%;
		bottom: 34%;
	}

	&35 {
		top: 35%;
		bottom: 35%;
	}

	&36 {
		top: 36%;
		bottom: 36%;
	}

	&37 {
		top: 37%;
		bottom: 37%;
	}

	&38 {
		top: 38%;
		bottom: 38%;
	}

	&39 {
		top: 39%;
		bottom: 39%;
	}

	&40 {
		top: 40%;
		bottom: 40%;
	}

	&41 {
		top: 41%;
		bottom: 41%;
	}

	&42 {
		top: 42%;
		bottom: 42%;
	}

	&43 {
		top: 43%;
		bottom: 43%;
	}

	&44 {
		top: 44%;
		bottom: 44%;
	}

	&45 {
		top: 45%;
		bottom: 45%;
	}

	&46 {
		top: 46%;
		bottom: 46%;
	}

	&47 {
		top: 47%;
		bottom: 47%;
	}

	&48 {
		top: 48%;
		bottom: 48%;
	}

	&49 {
		top: 49%;
		bottom: 49%;
	}

	&50 {
		top: 50%;
		bottom: 50%;
	}

	&51 {
		top: 51%;
		bottom: 51%;
	}

	&52 {
		top: 52%;
		bottom: 52%;
	}

	&53 {
		top: 53%;
		bottom: 53%;
	}

	&54 {
		top: 54%;
		bottom: 54%;
	}

	&55 {
		top: 55%;
		bottom: 55%;
	}

	&56 {
		top: 56%;
		bottom: 56%;
	}

	&57 {
		top: 57%;
		bottom: 57%;
	}

	&58 {
		top: 58%;
		bottom: 58%;
	}

	&59 {
		top: 59%;
		bottom: 59%;
	}

	&60 {
		top: 60%;
		bottom: 60%;
	}

	&61 {
		top: 61%;
		bottom: 61%;
	}

	&62 {
		top: 62%;
		bottom: 62%;
	}

	&63 {
		top: 63%;
		bottom: 63%;
	}

	&64 {
		top: 64%;
		bottom: 64%;
	}

	&65 {
		top: 65%;
		bottom: 65%;
	}

	&66 {
		top: 66%;
		bottom: 66%;
	}

	&67 {
		top: 67%;
		bottom: 67%;
	}

	&68 {
		top: 68%;
		bottom: 68%;
	}

	&69 {
		top: 69%;
		bottom: 69%;
	}

	&70 {
		top: 70%;
		bottom: 70%;
	}

	&71 {
		top: 71%;
		bottom: 71%;
	}

	&72 {
		top: 72%;
		bottom: 72%;
	}

	&73 {
		top: 73%;
		bottom: 73%;
	}

	&74 {
		top: 74%;
		bottom: 74%;
	}

	&75 {
		top: 75%;
		bottom: 75%;
	}

	&76 {
		top: 76%;
		bottom: 76%;
	}

	&77 {
		top: 77%;
		bottom: 77%;
	}

	&78 {
		top: 78%;
		bottom: 78%;
	}

	&79 {
		top: 79%;
		bottom: 79%;
	}

	&80 {
		top: 80%;
		bottom: 80%;
	}

	&81 {
		top: 81%;
		bottom: 81%;
	}

	&82 {
		top: 82%;
		bottom: 82%;
	}

	&83 {
		top: 83%;
		bottom: 83%;
	}

	&84 {
		top: 84%;
		bottom: 84%;
	}

	&85 {
		top: 85%;
		bottom: 85%;
	}

	&86 {
		top: 86%;
		bottom: 86%;
	}

	&87 {
		top: 87%;
		bottom: 87%;
	}

	&88 {
		top: 88%;
		bottom: 88%;
	}

	&89 {
		top: 89%;
		bottom: 89%;
	}

	&90 {
		top: 90%;
		bottom: 90%;
	}

	&91 {
		top: 91%;
		bottom: 91%;
	}

	&92 {
		top: 92%;
		bottom: 92%;
	}

	&93 {
		top: 93%;
		bottom: 93%;
	}

	&94 {
		top: 94%;
		bottom: 94%;
	}

	&95 {
		top: 95%;
		bottom: 95%;
	}

	&96 {
		top: 96%;
		bottom: 96%;
	}

	&97 {
		top: 97%;
		bottom: 97%;
	}

	&98 {
		top: 98%;
		bottom: 98%;
	}

	&99 {
		top: 99%;
		bottom: 99%;
	}

	&100 {
		top: 100%;
		bottom: 100%;
	}

	&101 {
		top: 101%;
		bottom: 101%;
	}

	&102 {
		top: 102%;
		bottom: 102%;
	}

	&103 {
		top: 103%;
		bottom: 103%;
	}

	&104 {
		top: 104%;
		bottom: 104%;
	}

	&105 {
		top: 105%;
		bottom: 105%;
	}

	&106 {
		top: 106%;
		bottom: 106%;
	}

	&107 {
		top: 107%;
		bottom: 107%;
	}

	&108 {
		top: 108%;
		bottom: 108%;
	}

	&109 {
		top: 109%;
		bottom: 109%;
	}

	&110 {
		top: 110%;
		bottom: 110%;
	}

	&111 {
		top: 111%;
		bottom: 111%;
	}

	&112 {
		top: 112%;
		bottom: 112%;
	}

	&113 {
		top: 113%;
		bottom: 113%;
	}

	&114 {
		top: 114%;
		bottom: 114%;
	}

	&115 {
		top: 115%;
		bottom: 115%;
	}

	&116 {
		top: 116%;
		bottom: 116%;
	}

	&117 {
		top: 117%;
		bottom: 117%;
	}

	&118 {
		top: 118%;
		bottom: 118%;
	}

	&119 {
		top: 119%;
		bottom: 119%;
	}

	&120 {
		top: 120%;
		bottom: 120%;
	}

	&121 {
		top: 121%;
		bottom: 121%;
	}

	&122 {
		top: 122%;
		bottom: 122%;
	}

	&123 {
		top: 123%;
		bottom: 123%;
	}

	&124 {
		top: 124%;
		bottom: 124%;
	}

	&125 {
		top: 125%;
		bottom: 125%;
	}

	&126 {
		top: 126%;
		bottom: 126%;
	}

	&127 {
		top: 127%;
		bottom: 127%;
	}

	&128 {
		top: 128%;
		bottom: 128%;
	}

	&129 {
		top: 129%;
		bottom: 129%;
	}

	&130 {
		top: 130%;
		bottom: 130%;
	}

	&131 {
		top: 131%;
		bottom: 131%;
	}

	&132 {
		top: 132%;
		bottom: 132%;
	}

	&133 {
		top: 133%;
		bottom: 133%;
	}

	&134 {
		top: 134%;
		bottom: 134%;
	}

	&135 {
		top: 135%;
		bottom: 135%;
	}

	&136 {
		top: 136%;
		bottom: 136%;
	}

	&137 {
		top: 137%;
		bottom: 137%;
	}

	&138 {
		top: 138%;
		bottom: 138%;
	}

	&139 {
		top: 139%;
		bottom: 139%;
	}

	&140 {
		top: 140%;
		bottom: 140%;
	}

	&141 {
		top: 141%;
		bottom: 141%;
	}

	&142 {
		top: 142%;
		bottom: 142%;
	}

	&143 {
		top: 143%;
		bottom: 143%;
	}

	&144 {
		top: 144%;
		bottom: 144%;
	}

	&145 {
		top: 145%;
		bottom: 145%;
	}

	&146 {
		top: 146%;
		bottom: 146%;
	}

	&147 {
		top: 147%;
		bottom: 147%;
	}

	&148 {
		top: 148%;
		bottom: 148%;
	}

	&149 {
		top: 149%;
		bottom: 149%;
	}

	&150 {
		top: 150%;
		bottom: 150%;
	}

	&151 {
		top: 151%;
		bottom: 151%;
	}

	&152 {
		top: 152%;
		bottom: 152%;
	}

	&153 {
		top: 153%;
		bottom: 153%;
	}

	&154 {
		top: 154%;
		bottom: 154%;
	}

	&155 {
		top: 155%;
		bottom: 155%;
	}

	&156 {
		top: 156%;
		bottom: 156%;
	}

	&157 {
		top: 157%;
		bottom: 157%;
	}

	&158 {
		top: 158%;
		bottom: 158%;
	}

	&159 {
		top: 159%;
		bottom: 159%;
	}

	&160 {
		top: 160%;
		bottom: 160%;
	}

	&161 {
		top: 161%;
		bottom: 161%;
	}

	&162 {
		top: 162%;
		bottom: 162%;
	}

	&163 {
		top: 163%;
		bottom: 163%;
	}

	&164 {
		top: 164%;
		bottom: 164%;
	}

	&165 {
		top: 165%;
		bottom: 165%;
	}

	&166 {
		top: 166%;
		bottom: 166%;
	}

	&167 {
		top: 167%;
		bottom: 167%;
	}

	&168 {
		top: 168%;
		bottom: 168%;
	}

	&169 {
		top: 169%;
		bottom: 169%;
	}

	&170 {
		top: 170%;
		bottom: 170%;
	}

	&171 {
		top: 171%;
		bottom: 171%;
	}

	&172 {
		top: 172%;
		bottom: 172%;
	}

	&173 {
		top: 173%;
		bottom: 173%;
	}

	&174 {
		top: 174%;
		bottom: 174%;
	}

	&175 {
		top: 175%;
		bottom: 175%;
	}

	&176 {
		top: 176%;
		bottom: 176%;
	}

	&177 {
		top: 177%;
		bottom: 177%;
	}

	&178 {
		top: 178%;
		bottom: 178%;
	}

	&179 {
		top: 179%;
		bottom: 179%;
	}

	&180 {
		top: 180%;
		bottom: 180%;
	}

	&181 {
		top: 181%;
		bottom: 181%;
	}

	&182 {
		top: 182%;
		bottom: 182%;
	}

	&183 {
		top: 183%;
		bottom: 183%;
	}

	&184 {
		top: 184%;
		bottom: 184%;
	}

	&185 {
		top: 185%;
		bottom: 185%;
	}

	&186 {
		top: 186%;
		bottom: 186%;
	}

	&187 {
		top: 187%;
		bottom: 187%;
	}

	&188 {
		top: 188%;
		bottom: 188%;
	}

	&189 {
		top: 189%;
		bottom: 189%;
	}

	&190 {
		top: 190%;
		bottom: 190%;
	}

	&191 {
		top: 191%;
		bottom: 191%;
	}

	&192 {
		top: 192%;
		bottom: 192%;
	}

	&193 {
		top: 193%;
		bottom: 193%;
	}

	&194 {
		top: 194%;
		bottom: 194%;
	}

	&195 {
		top: 195%;
		bottom: 195%;
	}

	&196 {
		top: 196%;
		bottom: 196%;
	}

	&197 {
		top: 197%;
		bottom: 197%;
	}

	&198 {
		top: 198%;
		bottom: 198%;
	}

	&199 {
		top: 199%;
		bottom: 199%;
	}

	&200 {
		top: 200%;
		bottom: 200%;
	}
}





// ABSOLUTE POSIITON RIGHT BOTTOM
.pos-rb-,
.pos-br-,
.rb-,
.br- {
	&00 {
		right: 00%;
		bottom: 00%;
	}

	&01 {
		right: 01%;
		bottom: 01%;
	}

	&02 {
		right: 02%;
		bottom: 02%;
	}

	&03 {
		right: 03%;
		bottom: 03%;
	}

	&04 {
		right: 04%;
		bottom: 04%;
	}

	&05 {
		right: 05%;
		bottom: 05%;
	}

	&06 {
		right: 06%;
		bottom: 06%;
	}

	&07 {
		right: 07%;
		bottom: 07%;
	}

	&08 {
		right: 08%;
		bottom: 08%;
	}

	&09 {
		right: 09%;
		bottom: 09%;
	}

	&10 {
		right: 10%;
		bottom: 10%;
	}

	&11 {
		right: 11%;
		bottom: 11%;
	}

	&12 {
		right: 12%;
		bottom: 12%;
	}

	&13 {
		right: 13%;
		bottom: 13%;
	}

	&14 {
		right: 14%;
		bottom: 14%;
	}

	&15 {
		right: 15%;
		bottom: 15%;
	}

	&16 {
		right: 16%;
		bottom: 16%;
	}

	&17 {
		right: 17%;
		bottom: 17%;
	}

	&18 {
		right: 18%;
		bottom: 18%;
	}

	&19 {
		right: 19%;
		bottom: 19%;
	}

	&20 {
		right: 20%;
		bottom: 20%;
	}

	&21 {
		right: 21%;
		bottom: 21%;
	}

	&22 {
		right: 22%;
		bottom: 22%;
	}

	&23 {
		right: 23%;
		bottom: 23%;
	}

	&24 {
		right: 24%;
		bottom: 24%;
	}

	&25 {
		right: 25%;
		bottom: 25%;
	}

	&26 {
		right: 26%;
		bottom: 26%;
	}

	&27 {
		right: 27%;
		bottom: 27%;
	}

	&28 {
		right: 28%;
		bottom: 28%;
	}

	&29 {
		right: 29%;
		bottom: 29%;
	}

	&30 {
		right: 30%;
		bottom: 30%;
	}

	&31 {
		right: 31%;
		bottom: 31%;
	}

	&32 {
		right: 32%;
		bottom: 32%;
	}

	&33 {
		right: 33%;
		bottom: 33%;
	}

	&34 {
		right: 34%;
		bottom: 34%;
	}

	&35 {
		right: 35%;
		bottom: 35%;
	}

	&36 {
		right: 36%;
		bottom: 36%;
	}

	&37 {
		right: 37%;
		bottom: 37%;
	}

	&38 {
		right: 38%;
		bottom: 38%;
	}

	&39 {
		right: 39%;
		bottom: 39%;
	}

	&40 {
		right: 40%;
		bottom: 40%;
	}

	&41 {
		right: 41%;
		bottom: 41%;
	}

	&42 {
		right: 42%;
		bottom: 42%;
	}

	&43 {
		right: 43%;
		bottom: 43%;
	}

	&44 {
		right: 44%;
		bottom: 44%;
	}

	&45 {
		right: 45%;
		bottom: 45%;
	}

	&46 {
		right: 46%;
		bottom: 46%;
	}

	&47 {
		right: 47%;
		bottom: 47%;
	}

	&48 {
		right: 48%;
		bottom: 48%;
	}

	&49 {
		right: 49%;
		bottom: 49%;
	}

	&50 {
		right: 50%;
		bottom: 50%;
	}

	&51 {
		right: 51%;
		bottom: 51%;
	}

	&52 {
		right: 52%;
		bottom: 52%;
	}

	&53 {
		right: 53%;
		bottom: 53%;
	}

	&54 {
		right: 54%;
		bottom: 54%;
	}

	&55 {
		right: 55%;
		bottom: 55%;
	}

	&56 {
		right: 56%;
		bottom: 56%;
	}

	&57 {
		right: 57%;
		bottom: 57%;
	}

	&58 {
		right: 58%;
		bottom: 58%;
	}

	&59 {
		right: 59%;
		bottom: 59%;
	}

	&60 {
		right: 60%;
		bottom: 60%;
	}

	&61 {
		right: 61%;
		bottom: 61%;
	}

	&62 {
		right: 62%;
		bottom: 62%;
	}

	&63 {
		right: 63%;
		bottom: 63%;
	}

	&64 {
		right: 64%;
		bottom: 64%;
	}

	&65 {
		right: 65%;
		bottom: 65%;
	}

	&66 {
		right: 66%;
		bottom: 66%;
	}

	&67 {
		right: 67%;
		bottom: 67%;
	}

	&68 {
		right: 68%;
		bottom: 68%;
	}

	&69 {
		right: 69%;
		bottom: 69%;
	}

	&70 {
		right: 70%;
		bottom: 70%;
	}

	&71 {
		right: 71%;
		bottom: 71%;
	}

	&72 {
		right: 72%;
		bottom: 72%;
	}

	&73 {
		right: 73%;
		bottom: 73%;
	}

	&74 {
		right: 74%;
		bottom: 74%;
	}

	&75 {
		right: 75%;
		bottom: 75%;
	}

	&76 {
		right: 76%;
		bottom: 76%;
	}

	&77 {
		right: 77%;
		bottom: 77%;
	}

	&78 {
		right: 78%;
		bottom: 78%;
	}

	&79 {
		right: 79%;
		bottom: 79%;
	}

	&80 {
		right: 80%;
		bottom: 80%;
	}

	&81 {
		right: 81%;
		bottom: 81%;
	}

	&82 {
		right: 82%;
		bottom: 82%;
	}

	&83 {
		right: 83%;
		bottom: 83%;
	}

	&84 {
		right: 84%;
		bottom: 84%;
	}

	&85 {
		right: 85%;
		bottom: 85%;
	}

	&86 {
		right: 86%;
		bottom: 86%;
	}

	&87 {
		right: 87%;
		bottom: 87%;
	}

	&88 {
		right: 88%;
		bottom: 88%;
	}

	&89 {
		right: 89%;
		bottom: 89%;
	}

	&90 {
		right: 90%;
		bottom: 90%;
	}

	&91 {
		right: 91%;
		bottom: 91%;
	}

	&92 {
		right: 92%;
		bottom: 92%;
	}

	&93 {
		right: 93%;
		bottom: 93%;
	}

	&94 {
		right: 94%;
		bottom: 94%;
	}

	&95 {
		right: 95%;
		bottom: 95%;
	}

	&96 {
		right: 96%;
		bottom: 96%;
	}

	&97 {
		right: 97%;
		bottom: 97%;
	}

	&98 {
		right: 98%;
		bottom: 98%;
	}

	&99 {
		right: 99%;
		bottom: 99%;
	}

	&100 {
		right: 100%;
		bottom: 100%;
	}

	&101 {
		right: 101%;
		bottom: 101%;
	}

	&102 {
		right: 102%;
		bottom: 102%;
	}

	&103 {
		right: 103%;
		bottom: 103%;
	}

	&104 {
		right: 104%;
		bottom: 104%;
	}

	&105 {
		right: 105%;
		bottom: 105%;
	}

	&106 {
		right: 106%;
		bottom: 106%;
	}

	&107 {
		right: 107%;
		bottom: 107%;
	}

	&108 {
		right: 108%;
		bottom: 108%;
	}

	&109 {
		right: 109%;
		bottom: 109%;
	}

	&110 {
		right: 110%;
		bottom: 110%;
	}

	&111 {
		right: 111%;
		bottom: 111%;
	}

	&112 {
		right: 112%;
		bottom: 112%;
	}

	&113 {
		right: 113%;
		bottom: 113%;
	}

	&114 {
		right: 114%;
		bottom: 114%;
	}

	&115 {
		right: 115%;
		bottom: 115%;
	}

	&116 {
		right: 116%;
		bottom: 116%;
	}

	&117 {
		right: 117%;
		bottom: 117%;
	}

	&118 {
		right: 118%;
		bottom: 118%;
	}

	&119 {
		right: 119%;
		bottom: 119%;
	}

	&120 {
		right: 120%;
		bottom: 120%;
	}

	&121 {
		right: 121%;
		bottom: 121%;
	}

	&122 {
		right: 122%;
		bottom: 122%;
	}

	&123 {
		right: 123%;
		bottom: 123%;
	}

	&124 {
		right: 124%;
		bottom: 124%;
	}

	&125 {
		right: 125%;
		bottom: 125%;
	}

	&126 {
		right: 126%;
		bottom: 126%;
	}

	&127 {
		right: 127%;
		bottom: 127%;
	}

	&128 {
		right: 128%;
		bottom: 128%;
	}

	&129 {
		right: 129%;
		bottom: 129%;
	}

	&130 {
		right: 130%;
		bottom: 130%;
	}

	&131 {
		right: 131%;
		bottom: 131%;
	}

	&132 {
		right: 132%;
		bottom: 132%;
	}

	&133 {
		right: 133%;
		bottom: 133%;
	}

	&134 {
		right: 134%;
		bottom: 134%;
	}

	&135 {
		right: 135%;
		bottom: 135%;
	}

	&136 {
		right: 136%;
		bottom: 136%;
	}

	&137 {
		right: 137%;
		bottom: 137%;
	}

	&138 {
		right: 138%;
		bottom: 138%;
	}

	&139 {
		right: 139%;
		bottom: 139%;
	}

	&140 {
		right: 140%;
		bottom: 140%;
	}

	&141 {
		right: 141%;
		bottom: 141%;
	}

	&142 {
		right: 142%;
		bottom: 142%;
	}

	&143 {
		right: 143%;
		bottom: 143%;
	}

	&144 {
		right: 144%;
		bottom: 144%;
	}

	&145 {
		right: 145%;
		bottom: 145%;
	}

	&146 {
		right: 146%;
		bottom: 146%;
	}

	&147 {
		right: 147%;
		bottom: 147%;
	}

	&148 {
		right: 148%;
		bottom: 148%;
	}

	&149 {
		right: 149%;
		bottom: 149%;
	}

	&150 {
		right: 150%;
		bottom: 150%;
	}

	&151 {
		right: 151%;
		bottom: 151%;
	}

	&152 {
		right: 152%;
		bottom: 152%;
	}

	&153 {
		right: 153%;
		bottom: 153%;
	}

	&154 {
		right: 154%;
		bottom: 154%;
	}

	&155 {
		right: 155%;
		bottom: 155%;
	}

	&156 {
		right: 156%;
		bottom: 156%;
	}

	&157 {
		right: 157%;
		bottom: 157%;
	}

	&158 {
		right: 158%;
		bottom: 158%;
	}

	&159 {
		right: 159%;
		bottom: 159%;
	}

	&160 {
		right: 160%;
		bottom: 160%;
	}

	&161 {
		right: 161%;
		bottom: 161%;
	}

	&162 {
		right: 162%;
		bottom: 162%;
	}

	&163 {
		right: 163%;
		bottom: 163%;
	}

	&164 {
		right: 164%;
		bottom: 164%;
	}

	&165 {
		right: 165%;
		bottom: 165%;
	}

	&166 {
		right: 166%;
		bottom: 166%;
	}

	&167 {
		right: 167%;
		bottom: 167%;
	}

	&168 {
		right: 168%;
		bottom: 168%;
	}

	&169 {
		right: 169%;
		bottom: 169%;
	}

	&170 {
		right: 170%;
		bottom: 170%;
	}

	&171 {
		right: 171%;
		bottom: 171%;
	}

	&172 {
		right: 172%;
		bottom: 172%;
	}

	&173 {
		right: 173%;
		bottom: 173%;
	}

	&174 {
		right: 174%;
		bottom: 174%;
	}

	&175 {
		right: 175%;
		bottom: 175%;
	}

	&176 {
		right: 176%;
		bottom: 176%;
	}

	&177 {
		right: 177%;
		bottom: 177%;
	}

	&178 {
		right: 178%;
		bottom: 178%;
	}

	&179 {
		right: 179%;
		bottom: 179%;
	}

	&180 {
		right: 180%;
		bottom: 180%;
	}

	&181 {
		right: 181%;
		bottom: 181%;
	}

	&182 {
		right: 182%;
		bottom: 182%;
	}

	&183 {
		right: 183%;
		bottom: 183%;
	}

	&184 {
		right: 184%;
		bottom: 184%;
	}

	&185 {
		right: 185%;
		bottom: 185%;
	}

	&186 {
		right: 186%;
		bottom: 186%;
	}

	&187 {
		right: 187%;
		bottom: 187%;
	}

	&188 {
		right: 188%;
		bottom: 188%;
	}

	&189 {
		right: 189%;
		bottom: 189%;
	}

	&190 {
		right: 190%;
		bottom: 190%;
	}

	&191 {
		right: 191%;
		bottom: 191%;
	}

	&192 {
		right: 192%;
		bottom: 192%;
	}

	&193 {
		right: 193%;
		bottom: 193%;
	}

	&194 {
		right: 194%;
		bottom: 194%;
	}

	&195 {
		right: 195%;
		bottom: 195%;
	}

	&196 {
		right: 196%;
		bottom: 196%;
	}

	&197 {
		right: 197%;
		bottom: 197%;
	}

	&198 {
		right: 198%;
		bottom: 198%;
	}

	&199 {
		right: 199%;
		bottom: 199%;
	}

	&200 {
		right: 200%;
		bottom: 200%;
	}
}






// ABSOLUTE POSIITON LEFT TOP RIGHT

.pos-ltr-,
.pos-lrt-,
.pos-tlr-,
.pos-trl-,
.pos-rlt-,
.pos-rtl-,
.ltr-,
.lrt-,
.tlr-,
.trl-,
.rlt-,
.rtl- {
	&00 {
		left: 00%;
		top: 00%;
		right: 00%;
	}

	&01 {
		left: 01%;
		top: 01%;
		right: 01%;
	}

	&02 {
		left: 02%;
		top: 02%;
		right: 02%;
	}

	&03 {
		left: 03%;
		top: 03%;
		right: 03%;
	}

	&04 {
		left: 04%;
		top: 04%;
		right: 04%;
	}

	&05 {
		left: 05%;
		top: 05%;
		right: 05%;
	}

	&06 {
		left: 06%;
		top: 06%;
		right: 06%;
	}

	&07 {
		left: 07%;
		top: 07%;
		right: 07%;
	}

	&08 {
		left: 08%;
		top: 08%;
		right: 08%;
	}

	&09 {
		left: 09%;
		top: 09%;
		right: 09%;
	}

	&10 {
		left: 10%;
		top: 10%;
		right: 10%;
	}

	&11 {
		left: 11%;
		top: 11%;
		right: 11%;
	}

	&12 {
		left: 12%;
		top: 12%;
		right: 12%;
	}

	&13 {
		left: 13%;
		top: 13%;
		right: 13%;
	}

	&14 {
		left: 14%;
		top: 14%;
		right: 14%;
	}

	&15 {
		left: 15%;
		top: 15%;
		right: 15%;
	}

	&16 {
		left: 16%;
		top: 16%;
		right: 16%;
	}

	&17 {
		left: 17%;
		top: 17%;
		right: 17%;
	}

	&18 {
		left: 18%;
		top: 18%;
		right: 18%;
	}

	&19 {
		left: 19%;
		top: 19%;
		right: 19%;
	}

	&20 {
		left: 20%;
		top: 20%;
		right: 20%;
	}

	&21 {
		left: 21%;
		top: 21%;
		right: 21%;
	}

	&22 {
		left: 22%;
		top: 22%;
		right: 22%;
	}

	&23 {
		left: 23%;
		top: 23%;
		right: 23%;
	}

	&24 {
		left: 24%;
		top: 24%;
		right: 24%;
	}

	&25 {
		left: 25%;
		top: 25%;
		right: 25%;
	}

	&26 {
		left: 26%;
		top: 26%;
		right: 26%;
	}

	&27 {
		left: 27%;
		top: 27%;
		right: 27%;
	}

	&28 {
		left: 28%;
		top: 28%;
		right: 28%;
	}

	&29 {
		left: 29%;
		top: 29%;
		right: 29%;
	}

	&30 {
		left: 30%;
		top: 30%;
		right: 30%;
	}

	&31 {
		left: 31%;
		top: 31%;
		right: 31%;
	}

	&32 {
		left: 32%;
		top: 32%;
		right: 32%;
	}

	&33 {
		left: 33%;
		top: 33%;
		right: 33%;
	}

	&34 {
		left: 34%;
		top: 34%;
		right: 34%;
	}

	&35 {
		left: 35%;
		top: 35%;
		right: 35%;
	}

	&36 {
		left: 36%;
		top: 36%;
		right: 36%;
	}

	&37 {
		left: 37%;
		top: 37%;
		right: 37%;
	}

	&38 {
		left: 38%;
		top: 38%;
		right: 38%;
	}

	&39 {
		left: 39%;
		top: 39%;
		right: 39%;
	}

	&40 {
		left: 40%;
		top: 40%;
		right: 40%;
	}

	&41 {
		left: 41%;
		top: 41%;
		right: 41%;
	}

	&42 {
		left: 42%;
		top: 42%;
		right: 42%;
	}

	&43 {
		left: 43%;
		top: 43%;
		right: 43%;
	}

	&44 {
		left: 44%;
		top: 44%;
		right: 44%;
	}

	&45 {
		left: 45%;
		top: 45%;
		right: 45%;
	}

	&46 {
		left: 46%;
		top: 46%;
		right: 46%;
	}

	&47 {
		left: 47%;
		top: 47%;
		right: 47%;
	}

	&48 {
		left: 48%;
		top: 48%;
		right: 48%;
	}

	&49 {
		left: 49%;
		top: 49%;
		right: 49%;
	}

	&50 {
		left: 50%;
		top: 50%;
		right: 50%;
	}

	&51 {
		left: 51%;
		top: 51%;
		right: 51%;
	}

	&52 {
		left: 52%;
		top: 52%;
		right: 52%;
	}

	&53 {
		left: 53%;
		top: 53%;
		right: 53%;
	}

	&54 {
		left: 54%;
		top: 54%;
		right: 54%;
	}

	&55 {
		left: 55%;
		top: 55%;
		right: 55%;
	}

	&56 {
		left: 56%;
		top: 56%;
		right: 56%;
	}

	&57 {
		left: 57%;
		top: 57%;
		right: 57%;
	}

	&58 {
		left: 58%;
		top: 58%;
		right: 58%;
	}

	&59 {
		left: 59%;
		top: 59%;
		right: 59%;
	}

	&60 {
		left: 60%;
		top: 60%;
		right: 60%;
	}

	&61 {
		left: 61%;
		top: 61%;
		right: 61%;
	}

	&62 {
		left: 62%;
		top: 62%;
		right: 62%;
	}

	&63 {
		left: 63%;
		top: 63%;
		right: 63%;
	}

	&64 {
		left: 64%;
		top: 64%;
		right: 64%;
	}

	&65 {
		left: 65%;
		top: 65%;
		right: 65%;
	}

	&66 {
		left: 66%;
		top: 66%;
		right: 66%;
	}

	&67 {
		left: 67%;
		top: 67%;
		right: 67%;
	}

	&68 {
		left: 68%;
		top: 68%;
		right: 68%;
	}

	&69 {
		left: 69%;
		top: 69%;
		right: 69%;
	}

	&70 {
		left: 70%;
		top: 70%;
		right: 70%;
	}

	&71 {
		left: 71%;
		top: 71%;
		right: 71%;
	}

	&72 {
		left: 72%;
		top: 72%;
		right: 72%;
	}

	&73 {
		left: 73%;
		top: 73%;
		right: 73%;
	}

	&74 {
		left: 74%;
		top: 74%;
		right: 74%;
	}

	&75 {
		left: 75%;
		top: 75%;
		right: 75%;
	}

	&76 {
		left: 76%;
		top: 76%;
		right: 76%;
	}

	&77 {
		left: 77%;
		top: 77%;
		right: 77%;
	}

	&78 {
		left: 78%;
		top: 78%;
		right: 78%;
	}

	&79 {
		left: 79%;
		top: 79%;
		right: 79%;
	}

	&80 {
		left: 80%;
		top: 80%;
		right: 80%;
	}

	&81 {
		left: 81%;
		top: 81%;
		right: 81%;
	}

	&82 {
		left: 82%;
		top: 82%;
		right: 82%;
	}

	&83 {
		left: 83%;
		top: 83%;
		right: 83%;
	}

	&84 {
		left: 84%;
		top: 84%;
		right: 84%;
	}

	&85 {
		left: 85%;
		top: 85%;
		right: 85%;
	}

	&86 {
		left: 86%;
		top: 86%;
		right: 86%;
	}

	&87 {
		left: 87%;
		top: 87%;
		right: 87%;
	}

	&88 {
		left: 88%;
		top: 88%;
		right: 88%;
	}

	&89 {
		left: 89%;
		top: 89%;
		right: 89%;
	}

	&90 {
		left: 90%;
		top: 90%;
		right: 90%;
	}

	&91 {
		left: 91%;
		top: 91%;
		right: 91%;
	}

	&92 {
		left: 92%;
		top: 92%;
		right: 92%;
	}

	&93 {
		left: 93%;
		top: 93%;
		right: 93%;
	}

	&94 {
		left: 94%;
		top: 94%;
		right: 94%;
	}

	&95 {
		left: 95%;
		top: 95%;
		right: 95%;
	}

	&96 {
		left: 96%;
		top: 96%;
		right: 96%;
	}

	&97 {
		left: 97%;
		top: 97%;
		right: 97%;
	}

	&98 {
		left: 98%;
		top: 98%;
		right: 98%;
	}

	&99 {
		left: 99%;
		top: 99%;
		right: 99%;
	}

	&100 {
		left: 100%;
		top: 100%;
		right: 100%;
	}

	&101 {
		left: 101%;
		top: 101%;
		right: 101%;
	}

	&102 {
		left: 102%;
		top: 102%;
		right: 102%;
	}

	&103 {
		left: 103%;
		top: 103%;
		right: 103%;
	}

	&104 {
		left: 104%;
		top: 104%;
		right: 104%;
	}

	&105 {
		left: 105%;
		top: 105%;
		right: 105%;
	}

	&106 {
		left: 106%;
		top: 106%;
		right: 106%;
	}

	&107 {
		left: 107%;
		top: 107%;
		right: 107%;
	}

	&108 {
		left: 108%;
		top: 108%;
		right: 108%;
	}

	&109 {
		left: 109%;
		top: 109%;
		right: 109%;
	}

	&110 {
		left: 110%;
		top: 110%;
		right: 110%;
	}

	&111 {
		left: 111%;
		top: 111%;
		right: 111%;
	}

	&112 {
		left: 112%;
		top: 112%;
		right: 112%;
	}

	&113 {
		left: 113%;
		top: 113%;
		right: 113%;
	}

	&114 {
		left: 114%;
		top: 114%;
		right: 114%;
	}

	&115 {
		left: 115%;
		top: 115%;
		right: 115%;
	}

	&116 {
		left: 116%;
		top: 116%;
		right: 116%;
	}

	&117 {
		left: 117%;
		top: 117%;
		right: 117%;
	}

	&118 {
		left: 118%;
		top: 118%;
		right: 118%;
	}

	&119 {
		left: 119%;
		top: 119%;
		right: 119%;
	}

	&120 {
		left: 120%;
		top: 120%;
		right: 120%;
	}

	&121 {
		left: 121%;
		top: 121%;
		right: 121%;
	}

	&122 {
		left: 122%;
		top: 122%;
		right: 122%;
	}

	&123 {
		left: 123%;
		top: 123%;
		right: 123%;
	}

	&124 {
		left: 124%;
		top: 124%;
		right: 124%;
	}

	&125 {
		left: 125%;
		top: 125%;
		right: 125%;
	}

	&126 {
		left: 126%;
		top: 126%;
		right: 126%;
	}

	&127 {
		left: 127%;
		top: 127%;
		right: 127%;
	}

	&128 {
		left: 128%;
		top: 128%;
		right: 128%;
	}

	&129 {
		left: 129%;
		top: 129%;
		right: 129%;
	}

	&130 {
		left: 130%;
		top: 130%;
		right: 130%;
	}

	&131 {
		left: 131%;
		top: 131%;
		right: 131%;
	}

	&132 {
		left: 132%;
		top: 132%;
		right: 132%;
	}

	&133 {
		left: 133%;
		top: 133%;
		right: 133%;
	}

	&134 {
		left: 134%;
		top: 134%;
		right: 134%;
	}

	&135 {
		left: 135%;
		top: 135%;
		right: 135%;
	}

	&136 {
		left: 136%;
		top: 136%;
		right: 136%;
	}

	&137 {
		left: 137%;
		top: 137%;
		right: 137%;
	}

	&138 {
		left: 138%;
		top: 138%;
		right: 138%;
	}

	&139 {
		left: 139%;
		top: 139%;
		right: 139%;
	}

	&140 {
		left: 140%;
		top: 140%;
		right: 140%;
	}

	&141 {
		left: 141%;
		top: 141%;
		right: 141%;
	}

	&142 {
		left: 142%;
		top: 142%;
		right: 142%;
	}

	&143 {
		left: 143%;
		top: 143%;
		right: 143%;
	}

	&144 {
		left: 144%;
		top: 144%;
		right: 144%;
	}

	&145 {
		left: 145%;
		top: 145%;
		right: 145%;
	}

	&146 {
		left: 146%;
		top: 146%;
		right: 146%;
	}

	&147 {
		left: 147%;
		top: 147%;
		right: 147%;
	}

	&148 {
		left: 148%;
		top: 148%;
		right: 148%;
	}

	&149 {
		left: 149%;
		top: 149%;
		right: 149%;
	}

	&150 {
		left: 150%;
		top: 150%;
		right: 150%;
	}

	&151 {
		left: 151%;
		top: 151%;
		right: 151%;
	}

	&152 {
		left: 152%;
		top: 152%;
		right: 152%;
	}

	&153 {
		left: 153%;
		top: 153%;
		right: 153%;
	}

	&154 {
		left: 154%;
		top: 154%;
		right: 154%;
	}

	&155 {
		left: 155%;
		top: 155%;
		right: 155%;
	}

	&156 {
		left: 156%;
		top: 156%;
		right: 156%;
	}

	&157 {
		left: 157%;
		top: 157%;
		right: 157%;
	}

	&158 {
		left: 158%;
		top: 158%;
		right: 158%;
	}

	&159 {
		left: 159%;
		top: 159%;
		right: 159%;
	}

	&160 {
		left: 160%;
		top: 160%;
		right: 160%;
	}

	&161 {
		left: 161%;
		top: 161%;
		right: 161%;
	}

	&162 {
		left: 162%;
		top: 162%;
		right: 162%;
	}

	&163 {
		left: 163%;
		top: 163%;
		right: 163%;
	}

	&164 {
		left: 164%;
		top: 164%;
		right: 164%;
	}

	&165 {
		left: 165%;
		top: 165%;
		right: 165%;
	}

	&166 {
		left: 166%;
		top: 166%;
		right: 166%;
	}

	&167 {
		left: 167%;
		top: 167%;
		right: 167%;
	}

	&168 {
		left: 168%;
		top: 168%;
		right: 168%;
	}

	&169 {
		left: 169%;
		top: 169%;
		right: 169%;
	}

	&170 {
		left: 170%;
		top: 170%;
		right: 170%;
	}

	&171 {
		left: 171%;
		top: 171%;
		right: 171%;
	}

	&172 {
		left: 172%;
		top: 172%;
		right: 172%;
	}

	&173 {
		left: 173%;
		top: 173%;
		right: 173%;
	}

	&174 {
		left: 174%;
		top: 174%;
		right: 174%;
	}

	&175 {
		left: 175%;
		top: 175%;
		right: 175%;
	}

	&176 {
		left: 176%;
		top: 176%;
		right: 176%;
	}

	&177 {
		left: 177%;
		top: 177%;
		right: 177%;
	}

	&178 {
		left: 178%;
		top: 178%;
		right: 178%;
	}

	&179 {
		left: 179%;
		top: 179%;
		right: 179%;
	}

	&180 {
		left: 180%;
		top: 180%;
		right: 180%;
	}

	&181 {
		left: 181%;
		top: 181%;
		right: 181%;
	}

	&182 {
		left: 182%;
		top: 182%;
		right: 182%;
	}

	&183 {
		left: 183%;
		top: 183%;
		right: 183%;
	}

	&184 {
		left: 184%;
		top: 184%;
		right: 184%;
	}

	&185 {
		left: 185%;
		top: 185%;
		right: 185%;
	}

	&186 {
		left: 186%;
		top: 186%;
		right: 186%;
	}

	&187 {
		left: 187%;
		top: 187%;
		right: 187%;
	}

	&188 {
		left: 188%;
		top: 188%;
		right: 188%;
	}

	&189 {
		left: 189%;
		top: 189%;
		right: 189%;
	}

	&190 {
		left: 190%;
		top: 190%;
		right: 190%;
	}

	&191 {
		left: 191%;
		top: 191%;
		right: 191%;
	}

	&192 {
		left: 192%;
		top: 192%;
		right: 192%;
	}

	&193 {
		left: 193%;
		top: 193%;
		right: 193%;
	}

	&194 {
		left: 194%;
		top: 194%;
		right: 194%;
	}

	&195 {
		left: 195%;
		top: 195%;
		right: 195%;
	}

	&196 {
		left: 196%;
		top: 196%;
		right: 196%;
	}

	&197 {
		left: 197%;
		top: 197%;
		right: 197%;
	}

	&198 {
		left: 198%;
		top: 198%;
		right: 198%;
	}

	&199 {
		left: 199%;
		top: 199%;
		right: 199%;
	}

	&200 {
		left: 200%;
		top: 200%;
		right: 200%;
	}
}






// ABSOLUTE POSIITON LEFT TOP BOTTOM

.pos-ltb-,
.pos-lbt-,
.pos-tlb-,
.pos-tbl-,
.pos-blt-,
.pos-btl-,
.ltb-,
.lbt-,
.tlb-,
.tbl-,
.blt-,
.btl- {
	&00 {
		left: 00%;
		top: 00%;
		bottom: 00%;
	}

	&01 {
		left: 01%;
		top: 01%;
		bottom: 01%;
	}

	&02 {
		left: 02%;
		top: 02%;
		bottom: 02%;
	}

	&03 {
		left: 03%;
		top: 03%;
		bottom: 03%;
	}

	&04 {
		left: 04%;
		top: 04%;
		bottom: 04%;
	}

	&05 {
		left: 05%;
		top: 05%;
		bottom: 05%;
	}

	&06 {
		left: 06%;
		top: 06%;
		bottom: 06%;
	}

	&07 {
		left: 07%;
		top: 07%;
		bottom: 07%;
	}

	&08 {
		left: 08%;
		top: 08%;
		bottom: 08%;
	}

	&09 {
		left: 09%;
		top: 09%;
		bottom: 09%;
	}

	&10 {
		left: 10%;
		top: 10%;
		bottom: 10%;
	}

	&11 {
		left: 11%;
		top: 11%;
		bottom: 11%;
	}

	&12 {
		left: 12%;
		top: 12%;
		bottom: 12%;
	}

	&13 {
		left: 13%;
		top: 13%;
		bottom: 13%;
	}

	&14 {
		left: 14%;
		top: 14%;
		bottom: 14%;
	}

	&15 {
		left: 15%;
		top: 15%;
		bottom: 15%;
	}

	&16 {
		left: 16%;
		top: 16%;
		bottom: 16%;
	}

	&17 {
		left: 17%;
		top: 17%;
		bottom: 17%;
	}

	&18 {
		left: 18%;
		top: 18%;
		bottom: 18%;
	}

	&19 {
		left: 19%;
		top: 19%;
		bottom: 19%;
	}

	&20 {
		left: 20%;
		top: 20%;
		bottom: 20%;
	}

	&21 {
		left: 21%;
		top: 21%;
		bottom: 21%;
	}

	&22 {
		left: 22%;
		top: 22%;
		bottom: 22%;
	}

	&23 {
		left: 23%;
		top: 23%;
		bottom: 23%;
	}

	&24 {
		left: 24%;
		top: 24%;
		bottom: 24%;
	}

	&25 {
		left: 25%;
		top: 25%;
		bottom: 25%;
	}

	&26 {
		left: 26%;
		top: 26%;
		bottom: 26%;
	}

	&27 {
		left: 27%;
		top: 27%;
		bottom: 27%;
	}

	&28 {
		left: 28%;
		top: 28%;
		bottom: 28%;
	}

	&29 {
		left: 29%;
		top: 29%;
		bottom: 29%;
	}

	&30 {
		left: 30%;
		top: 30%;
		bottom: 30%;
	}

	&31 {
		left: 31%;
		top: 31%;
		bottom: 31%;
	}

	&32 {
		left: 32%;
		top: 32%;
		bottom: 32%;
	}

	&33 {
		left: 33%;
		top: 33%;
		bottom: 33%;
	}

	&34 {
		left: 34%;
		top: 34%;
		bottom: 34%;
	}

	&35 {
		left: 35%;
		top: 35%;
		bottom: 35%;
	}

	&36 {
		left: 36%;
		top: 36%;
		bottom: 36%;
	}

	&37 {
		left: 37%;
		top: 37%;
		bottom: 37%;
	}

	&38 {
		left: 38%;
		top: 38%;
		bottom: 38%;
	}

	&39 {
		left: 39%;
		top: 39%;
		bottom: 39%;
	}

	&40 {
		left: 40%;
		top: 40%;
		bottom: 40%;
	}

	&41 {
		left: 41%;
		top: 41%;
		bottom: 41%;
	}

	&42 {
		left: 42%;
		top: 42%;
		bottom: 42%;
	}

	&43 {
		left: 43%;
		top: 43%;
		bottom: 43%;
	}

	&44 {
		left: 44%;
		top: 44%;
		bottom: 44%;
	}

	&45 {
		left: 45%;
		top: 45%;
		bottom: 45%;
	}

	&46 {
		left: 46%;
		top: 46%;
		bottom: 46%;
	}

	&47 {
		left: 47%;
		top: 47%;
		bottom: 47%;
	}

	&48 {
		left: 48%;
		top: 48%;
		bottom: 48%;
	}

	&49 {
		left: 49%;
		top: 49%;
		bottom: 49%;
	}

	&50 {
		left: 50%;
		top: 50%;
		bottom: 50%;
	}

	&51 {
		left: 51%;
		top: 51%;
		bottom: 51%;
	}

	&52 {
		left: 52%;
		top: 52%;
		bottom: 52%;
	}

	&53 {
		left: 53%;
		top: 53%;
		bottom: 53%;
	}

	&54 {
		left: 54%;
		top: 54%;
		bottom: 54%;
	}

	&55 {
		left: 55%;
		top: 55%;
		bottom: 55%;
	}

	&56 {
		left: 56%;
		top: 56%;
		bottom: 56%;
	}

	&57 {
		left: 57%;
		top: 57%;
		bottom: 57%;
	}

	&58 {
		left: 58%;
		top: 58%;
		bottom: 58%;
	}

	&59 {
		left: 59%;
		top: 59%;
		bottom: 59%;
	}

	&60 {
		left: 60%;
		top: 60%;
		bottom: 60%;
	}

	&61 {
		left: 61%;
		top: 61%;
		bottom: 61%;
	}

	&62 {
		left: 62%;
		top: 62%;
		bottom: 62%;
	}

	&63 {
		left: 63%;
		top: 63%;
		bottom: 63%;
	}

	&64 {
		left: 64%;
		top: 64%;
		bottom: 64%;
	}

	&65 {
		left: 65%;
		top: 65%;
		bottom: 65%;
	}

	&66 {
		left: 66%;
		top: 66%;
		bottom: 66%;
	}

	&67 {
		left: 67%;
		top: 67%;
		bottom: 67%;
	}

	&68 {
		left: 68%;
		top: 68%;
		bottom: 68%;
	}

	&69 {
		left: 69%;
		top: 69%;
		bottom: 69%;
	}

	&70 {
		left: 70%;
		top: 70%;
		bottom: 70%;
	}

	&71 {
		left: 71%;
		top: 71%;
		bottom: 71%;
	}

	&72 {
		left: 72%;
		top: 72%;
		bottom: 72%;
	}

	&73 {
		left: 73%;
		top: 73%;
		bottom: 73%;
	}

	&74 {
		left: 74%;
		top: 74%;
		bottom: 74%;
	}

	&75 {
		left: 75%;
		top: 75%;
		bottom: 75%;
	}

	&76 {
		left: 76%;
		top: 76%;
		bottom: 76%;
	}

	&77 {
		left: 77%;
		top: 77%;
		bottom: 77%;
	}

	&78 {
		left: 78%;
		top: 78%;
		bottom: 78%;
	}

	&79 {
		left: 79%;
		top: 79%;
		bottom: 79%;
	}

	&80 {
		left: 80%;
		top: 80%;
		bottom: 80%;
	}

	&81 {
		left: 81%;
		top: 81%;
		bottom: 81%;
	}

	&82 {
		left: 82%;
		top: 82%;
		bottom: 82%;
	}

	&83 {
		left: 83%;
		top: 83%;
		bottom: 83%;
	}

	&84 {
		left: 84%;
		top: 84%;
		bottom: 84%;
	}

	&85 {
		left: 85%;
		top: 85%;
		bottom: 85%;
	}

	&86 {
		left: 86%;
		top: 86%;
		bottom: 86%;
	}

	&87 {
		left: 87%;
		top: 87%;
		bottom: 87%;
	}

	&88 {
		left: 88%;
		top: 88%;
		bottom: 88%;
	}

	&89 {
		left: 89%;
		top: 89%;
		bottom: 89%;
	}

	&90 {
		left: 90%;
		top: 90%;
		bottom: 90%;
	}

	&91 {
		left: 91%;
		top: 91%;
		bottom: 91%;
	}

	&92 {
		left: 92%;
		top: 92%;
		bottom: 92%;
	}

	&93 {
		left: 93%;
		top: 93%;
		bottom: 93%;
	}

	&94 {
		left: 94%;
		top: 94%;
		bottom: 94%;
	}

	&95 {
		left: 95%;
		top: 95%;
		bottom: 95%;
	}

	&96 {
		left: 96%;
		top: 96%;
		bottom: 96%;
	}

	&97 {
		left: 97%;
		top: 97%;
		bottom: 97%;
	}

	&98 {
		left: 98%;
		top: 98%;
		bottom: 98%;
	}

	&99 {
		left: 99%;
		top: 99%;
		bottom: 99%;
	}

	&100 {
		left: 100%;
		top: 100%;
		bottom: 100%;
	}

	&101 {
		left: 101%;
		top: 101%;
		bottom: 101%;
	}

	&102 {
		left: 102%;
		top: 102%;
		bottom: 102%;
	}

	&103 {
		left: 103%;
		top: 103%;
		bottom: 103%;
	}

	&104 {
		left: 104%;
		top: 104%;
		bottom: 104%;
	}

	&105 {
		left: 105%;
		top: 105%;
		bottom: 105%;
	}

	&106 {
		left: 106%;
		top: 106%;
		bottom: 106%;
	}

	&107 {
		left: 107%;
		top: 107%;
		bottom: 107%;
	}

	&108 {
		left: 108%;
		top: 108%;
		bottom: 108%;
	}

	&109 {
		left: 109%;
		top: 109%;
		bottom: 109%;
	}

	&110 {
		left: 110%;
		top: 110%;
		bottom: 110%;
	}

	&111 {
		left: 111%;
		top: 111%;
		bottom: 111%;
	}

	&112 {
		left: 112%;
		top: 112%;
		bottom: 112%;
	}

	&113 {
		left: 113%;
		top: 113%;
		bottom: 113%;
	}

	&114 {
		left: 114%;
		top: 114%;
		bottom: 114%;
	}

	&115 {
		left: 115%;
		top: 115%;
		bottom: 115%;
	}

	&116 {
		left: 116%;
		top: 116%;
		bottom: 116%;
	}

	&117 {
		left: 117%;
		top: 117%;
		bottom: 117%;
	}

	&118 {
		left: 118%;
		top: 118%;
		bottom: 118%;
	}

	&119 {
		left: 119%;
		top: 119%;
		bottom: 119%;
	}

	&120 {
		left: 120%;
		top: 120%;
		bottom: 120%;
	}

	&121 {
		left: 121%;
		top: 121%;
		bottom: 121%;
	}

	&122 {
		left: 122%;
		top: 122%;
		bottom: 122%;
	}

	&123 {
		left: 123%;
		top: 123%;
		bottom: 123%;
	}

	&124 {
		left: 124%;
		top: 124%;
		bottom: 124%;
	}

	&125 {
		left: 125%;
		top: 125%;
		bottom: 125%;
	}

	&126 {
		left: 126%;
		top: 126%;
		bottom: 126%;
	}

	&127 {
		left: 127%;
		top: 127%;
		bottom: 127%;
	}

	&128 {
		left: 128%;
		top: 128%;
		bottom: 128%;
	}

	&129 {
		left: 129%;
		top: 129%;
		bottom: 129%;
	}

	&130 {
		left: 130%;
		top: 130%;
		bottom: 130%;
	}

	&131 {
		left: 131%;
		top: 131%;
		bottom: 131%;
	}

	&132 {
		left: 132%;
		top: 132%;
		bottom: 132%;
	}

	&133 {
		left: 133%;
		top: 133%;
		bottom: 133%;
	}

	&134 {
		left: 134%;
		top: 134%;
		bottom: 134%;
	}

	&135 {
		left: 135%;
		top: 135%;
		bottom: 135%;
	}

	&136 {
		left: 136%;
		top: 136%;
		bottom: 136%;
	}

	&137 {
		left: 137%;
		top: 137%;
		bottom: 137%;
	}

	&138 {
		left: 138%;
		top: 138%;
		bottom: 138%;
	}

	&139 {
		left: 139%;
		top: 139%;
		bottom: 139%;
	}

	&140 {
		left: 140%;
		top: 140%;
		bottom: 140%;
	}

	&141 {
		left: 141%;
		top: 141%;
		bottom: 141%;
	}

	&142 {
		left: 142%;
		top: 142%;
		bottom: 142%;
	}

	&143 {
		left: 143%;
		top: 143%;
		bottom: 143%;
	}

	&144 {
		left: 144%;
		top: 144%;
		bottom: 144%;
	}

	&145 {
		left: 145%;
		top: 145%;
		bottom: 145%;
	}

	&146 {
		left: 146%;
		top: 146%;
		bottom: 146%;
	}

	&147 {
		left: 147%;
		top: 147%;
		bottom: 147%;
	}

	&148 {
		left: 148%;
		top: 148%;
		bottom: 148%;
	}

	&149 {
		left: 149%;
		top: 149%;
		bottom: 149%;
	}

	&150 {
		left: 150%;
		top: 150%;
		bottom: 150%;
	}

	&151 {
		left: 151%;
		top: 151%;
		bottom: 151%;
	}

	&152 {
		left: 152%;
		top: 152%;
		bottom: 152%;
	}

	&153 {
		left: 153%;
		top: 153%;
		bottom: 153%;
	}

	&154 {
		left: 154%;
		top: 154%;
		bottom: 154%;
	}

	&155 {
		left: 155%;
		top: 155%;
		bottom: 155%;
	}

	&156 {
		left: 156%;
		top: 156%;
		bottom: 156%;
	}

	&157 {
		left: 157%;
		top: 157%;
		bottom: 157%;
	}

	&158 {
		left: 158%;
		top: 158%;
		bottom: 158%;
	}

	&159 {
		left: 159%;
		top: 159%;
		bottom: 159%;
	}

	&160 {
		left: 160%;
		top: 160%;
		bottom: 160%;
	}

	&161 {
		left: 161%;
		top: 161%;
		bottom: 161%;
	}

	&162 {
		left: 162%;
		top: 162%;
		bottom: 162%;
	}

	&163 {
		left: 163%;
		top: 163%;
		bottom: 163%;
	}

	&164 {
		left: 164%;
		top: 164%;
		bottom: 164%;
	}

	&165 {
		left: 165%;
		top: 165%;
		bottom: 165%;
	}

	&166 {
		left: 166%;
		top: 166%;
		bottom: 166%;
	}

	&167 {
		left: 167%;
		top: 167%;
		bottom: 167%;
	}

	&168 {
		left: 168%;
		top: 168%;
		bottom: 168%;
	}

	&169 {
		left: 169%;
		top: 169%;
		bottom: 169%;
	}

	&170 {
		left: 170%;
		top: 170%;
		bottom: 170%;
	}

	&171 {
		left: 171%;
		top: 171%;
		bottom: 171%;
	}

	&172 {
		left: 172%;
		top: 172%;
		bottom: 172%;
	}

	&173 {
		left: 173%;
		top: 173%;
		bottom: 173%;
	}

	&174 {
		left: 174%;
		top: 174%;
		bottom: 174%;
	}

	&175 {
		left: 175%;
		top: 175%;
		bottom: 175%;
	}

	&176 {
		left: 176%;
		top: 176%;
		bottom: 176%;
	}

	&177 {
		left: 177%;
		top: 177%;
		bottom: 177%;
	}

	&178 {
		left: 178%;
		top: 178%;
		bottom: 178%;
	}

	&179 {
		left: 179%;
		top: 179%;
		bottom: 179%;
	}

	&180 {
		left: 180%;
		top: 180%;
		bottom: 180%;
	}

	&181 {
		left: 181%;
		top: 181%;
		bottom: 181%;
	}

	&182 {
		left: 182%;
		top: 182%;
		bottom: 182%;
	}

	&183 {
		left: 183%;
		top: 183%;
		bottom: 183%;
	}

	&184 {
		left: 184%;
		top: 184%;
		bottom: 184%;
	}

	&185 {
		left: 185%;
		top: 185%;
		bottom: 185%;
	}

	&186 {
		left: 186%;
		top: 186%;
		bottom: 186%;
	}

	&187 {
		left: 187%;
		top: 187%;
		bottom: 187%;
	}

	&188 {
		left: 188%;
		top: 188%;
		bottom: 188%;
	}

	&189 {
		left: 189%;
		top: 189%;
		bottom: 189%;
	}

	&190 {
		left: 190%;
		top: 190%;
		bottom: 190%;
	}

	&191 {
		left: 191%;
		top: 191%;
		bottom: 191%;
	}

	&192 {
		left: 192%;
		top: 192%;
		bottom: 192%;
	}

	&193 {
		left: 193%;
		top: 193%;
		bottom: 193%;
	}

	&194 {
		left: 194%;
		top: 194%;
		bottom: 194%;
	}

	&195 {
		left: 195%;
		top: 195%;
		bottom: 195%;
	}

	&196 {
		left: 196%;
		top: 196%;
		bottom: 196%;
	}

	&197 {
		left: 197%;
		top: 197%;
		bottom: 197%;
	}

	&198 {
		left: 198%;
		top: 198%;
		bottom: 198%;
	}

	&199 {
		left: 199%;
		top: 199%;
		bottom: 199%;
	}

	&200 {
		left: 200%;
		top: 200%;
		bottom: 200%;
	}
}






// ABSOLUTE POSIITON LEFT RIGHT BOTTOM

.pos-lrb-,
.pos-lbr-,
.pos-rlb-,
.pos-rbl-,
.pos-blr-,
.pos-brl-,
.lrb-,
.lbr-,
.rlb-,
.rbl-,
.blr-,
.brl- {
	&00 {
		left: 00%;
		right: 00%;
		bottom: 00%;
	}

	&01 {
		left: 01%;
		right: 01%;
		bottom: 01%;
	}

	&02 {
		left: 02%;
		right: 02%;
		bottom: 02%;
	}

	&03 {
		left: 03%;
		right: 03%;
		bottom: 03%;
	}

	&04 {
		left: 04%;
		right: 04%;
		bottom: 04%;
	}

	&05 {
		left: 05%;
		right: 05%;
		bottom: 05%;
	}

	&06 {
		left: 06%;
		right: 06%;
		bottom: 06%;
	}

	&07 {
		left: 07%;
		right: 07%;
		bottom: 07%;
	}

	&08 {
		left: 08%;
		right: 08%;
		bottom: 08%;
	}

	&09 {
		left: 09%;
		right: 09%;
		bottom: 09%;
	}

	&10 {
		left: 10%;
		right: 10%;
		bottom: 10%;
	}

	&11 {
		left: 11%;
		right: 11%;
		bottom: 11%;
	}

	&12 {
		left: 12%;
		right: 12%;
		bottom: 12%;
	}

	&13 {
		left: 13%;
		right: 13%;
		bottom: 13%;
	}

	&14 {
		left: 14%;
		right: 14%;
		bottom: 14%;
	}

	&15 {
		left: 15%;
		right: 15%;
		bottom: 15%;
	}

	&16 {
		left: 16%;
		right: 16%;
		bottom: 16%;
	}

	&17 {
		left: 17%;
		right: 17%;
		bottom: 17%;
	}

	&18 {
		left: 18%;
		right: 18%;
		bottom: 18%;
	}

	&19 {
		left: 19%;
		right: 19%;
		bottom: 19%;
	}

	&20 {
		left: 20%;
		right: 20%;
		bottom: 20%;
	}

	&21 {
		left: 21%;
		right: 21%;
		bottom: 21%;
	}

	&22 {
		left: 22%;
		right: 22%;
		bottom: 22%;
	}

	&23 {
		left: 23%;
		right: 23%;
		bottom: 23%;
	}

	&24 {
		left: 24%;
		right: 24%;
		bottom: 24%;
	}

	&25 {
		left: 25%;
		right: 25%;
		bottom: 25%;
	}

	&26 {
		left: 26%;
		right: 26%;
		bottom: 26%;
	}

	&27 {
		left: 27%;
		right: 27%;
		bottom: 27%;
	}

	&28 {
		left: 28%;
		right: 28%;
		bottom: 28%;
	}

	&29 {
		left: 29%;
		right: 29%;
		bottom: 29%;
	}

	&30 {
		left: 30%;
		right: 30%;
		bottom: 30%;
	}

	&31 {
		left: 31%;
		right: 31%;
		bottom: 31%;
	}

	&32 {
		left: 32%;
		right: 32%;
		bottom: 32%;
	}

	&33 {
		left: 33%;
		right: 33%;
		bottom: 33%;
	}

	&34 {
		left: 34%;
		right: 34%;
		bottom: 34%;
	}

	&35 {
		left: 35%;
		right: 35%;
		bottom: 35%;
	}

	&36 {
		left: 36%;
		right: 36%;
		bottom: 36%;
	}

	&37 {
		left: 37%;
		right: 37%;
		bottom: 37%;
	}

	&38 {
		left: 38%;
		right: 38%;
		bottom: 38%;
	}

	&39 {
		left: 39%;
		right: 39%;
		bottom: 39%;
	}

	&40 {
		left: 40%;
		right: 40%;
		bottom: 40%;
	}

	&41 {
		left: 41%;
		right: 41%;
		bottom: 41%;
	}

	&42 {
		left: 42%;
		right: 42%;
		bottom: 42%;
	}

	&43 {
		left: 43%;
		right: 43%;
		bottom: 43%;
	}

	&44 {
		left: 44%;
		right: 44%;
		bottom: 44%;
	}

	&45 {
		left: 45%;
		right: 45%;
		bottom: 45%;
	}

	&46 {
		left: 46%;
		right: 46%;
		bottom: 46%;
	}

	&47 {
		left: 47%;
		right: 47%;
		bottom: 47%;
	}

	&48 {
		left: 48%;
		right: 48%;
		bottom: 48%;
	}

	&49 {
		left: 49%;
		right: 49%;
		bottom: 49%;
	}

	&50 {
		left: 50%;
		right: 50%;
		bottom: 50%;
	}

	&51 {
		left: 51%;
		right: 51%;
		bottom: 51%;
	}

	&52 {
		left: 52%;
		right: 52%;
		bottom: 52%;
	}

	&53 {
		left: 53%;
		right: 53%;
		bottom: 53%;
	}

	&54 {
		left: 54%;
		right: 54%;
		bottom: 54%;
	}

	&55 {
		left: 55%;
		right: 55%;
		bottom: 55%;
	}

	&56 {
		left: 56%;
		right: 56%;
		bottom: 56%;
	}

	&57 {
		left: 57%;
		right: 57%;
		bottom: 57%;
	}

	&58 {
		left: 58%;
		right: 58%;
		bottom: 58%;
	}

	&59 {
		left: 59%;
		right: 59%;
		bottom: 59%;
	}

	&60 {
		left: 60%;
		right: 60%;
		bottom: 60%;
	}

	&61 {
		left: 61%;
		right: 61%;
		bottom: 61%;
	}

	&62 {
		left: 62%;
		right: 62%;
		bottom: 62%;
	}

	&63 {
		left: 63%;
		right: 63%;
		bottom: 63%;
	}

	&64 {
		left: 64%;
		right: 64%;
		bottom: 64%;
	}

	&65 {
		left: 65%;
		right: 65%;
		bottom: 65%;
	}

	&66 {
		left: 66%;
		right: 66%;
		bottom: 66%;
	}

	&67 {
		left: 67%;
		right: 67%;
		bottom: 67%;
	}

	&68 {
		left: 68%;
		right: 68%;
		bottom: 68%;
	}

	&69 {
		left: 69%;
		right: 69%;
		bottom: 69%;
	}

	&70 {
		left: 70%;
		right: 70%;
		bottom: 70%;
	}

	&71 {
		left: 71%;
		right: 71%;
		bottom: 71%;
	}

	&72 {
		left: 72%;
		right: 72%;
		bottom: 72%;
	}

	&73 {
		left: 73%;
		right: 73%;
		bottom: 73%;
	}

	&74 {
		left: 74%;
		right: 74%;
		bottom: 74%;
	}

	&75 {
		left: 75%;
		right: 75%;
		bottom: 75%;
	}

	&76 {
		left: 76%;
		right: 76%;
		bottom: 76%;
	}

	&77 {
		left: 77%;
		right: 77%;
		bottom: 77%;
	}

	&78 {
		left: 78%;
		right: 78%;
		bottom: 78%;
	}

	&79 {
		left: 79%;
		right: 79%;
		bottom: 79%;
	}

	&80 {
		left: 80%;
		right: 80%;
		bottom: 80%;
	}

	&81 {
		left: 81%;
		right: 81%;
		bottom: 81%;
	}

	&82 {
		left: 82%;
		right: 82%;
		bottom: 82%;
	}

	&83 {
		left: 83%;
		right: 83%;
		bottom: 83%;
	}

	&84 {
		left: 84%;
		right: 84%;
		bottom: 84%;
	}

	&85 {
		left: 85%;
		right: 85%;
		bottom: 85%;
	}

	&86 {
		left: 86%;
		right: 86%;
		bottom: 86%;
	}

	&87 {
		left: 87%;
		right: 87%;
		bottom: 87%;
	}

	&88 {
		left: 88%;
		right: 88%;
		bottom: 88%;
	}

	&89 {
		left: 89%;
		right: 89%;
		bottom: 89%;
	}

	&90 {
		left: 90%;
		right: 90%;
		bottom: 90%;
	}

	&91 {
		left: 91%;
		right: 91%;
		bottom: 91%;
	}

	&92 {
		left: 92%;
		right: 92%;
		bottom: 92%;
	}

	&93 {
		left: 93%;
		right: 93%;
		bottom: 93%;
	}

	&94 {
		left: 94%;
		right: 94%;
		bottom: 94%;
	}

	&95 {
		left: 95%;
		right: 95%;
		bottom: 95%;
	}

	&96 {
		left: 96%;
		right: 96%;
		bottom: 96%;
	}

	&97 {
		left: 97%;
		right: 97%;
		bottom: 97%;
	}

	&98 {
		left: 98%;
		right: 98%;
		bottom: 98%;
	}

	&99 {
		left: 99%;
		right: 99%;
		bottom: 99%;
	}

	&100 {
		left: 100%;
		right: 100%;
		bottom: 100%;
	}

	&101 {
		left: 101%;
		right: 101%;
		bottom: 101%;
	}

	&102 {
		left: 102%;
		right: 102%;
		bottom: 102%;
	}

	&103 {
		left: 103%;
		right: 103%;
		bottom: 103%;
	}

	&104 {
		left: 104%;
		right: 104%;
		bottom: 104%;
	}

	&105 {
		left: 105%;
		right: 105%;
		bottom: 105%;
	}

	&106 {
		left: 106%;
		right: 106%;
		bottom: 106%;
	}

	&107 {
		left: 107%;
		right: 107%;
		bottom: 107%;
	}

	&108 {
		left: 108%;
		right: 108%;
		bottom: 108%;
	}

	&109 {
		left: 109%;
		right: 109%;
		bottom: 109%;
	}

	&110 {
		left: 110%;
		right: 110%;
		bottom: 110%;
	}

	&111 {
		left: 111%;
		right: 111%;
		bottom: 111%;
	}

	&112 {
		left: 112%;
		right: 112%;
		bottom: 112%;
	}

	&113 {
		left: 113%;
		right: 113%;
		bottom: 113%;
	}

	&114 {
		left: 114%;
		right: 114%;
		bottom: 114%;
	}

	&115 {
		left: 115%;
		right: 115%;
		bottom: 115%;
	}

	&116 {
		left: 116%;
		right: 116%;
		bottom: 116%;
	}

	&117 {
		left: 117%;
		right: 117%;
		bottom: 117%;
	}

	&118 {
		left: 118%;
		right: 118%;
		bottom: 118%;
	}

	&119 {
		left: 119%;
		right: 119%;
		bottom: 119%;
	}

	&120 {
		left: 120%;
		right: 120%;
		bottom: 120%;
	}

	&121 {
		left: 121%;
		right: 121%;
		bottom: 121%;
	}

	&122 {
		left: 122%;
		right: 122%;
		bottom: 122%;
	}

	&123 {
		left: 123%;
		right: 123%;
		bottom: 123%;
	}

	&124 {
		left: 124%;
		right: 124%;
		bottom: 124%;
	}

	&125 {
		left: 125%;
		right: 125%;
		bottom: 125%;
	}

	&126 {
		left: 126%;
		right: 126%;
		bottom: 126%;
	}

	&127 {
		left: 127%;
		right: 127%;
		bottom: 127%;
	}

	&128 {
		left: 128%;
		right: 128%;
		bottom: 128%;
	}

	&129 {
		left: 129%;
		right: 129%;
		bottom: 129%;
	}

	&130 {
		left: 130%;
		right: 130%;
		bottom: 130%;
	}

	&131 {
		left: 131%;
		right: 131%;
		bottom: 131%;
	}

	&132 {
		left: 132%;
		right: 132%;
		bottom: 132%;
	}

	&133 {
		left: 133%;
		right: 133%;
		bottom: 133%;
	}

	&134 {
		left: 134%;
		right: 134%;
		bottom: 134%;
	}

	&135 {
		left: 135%;
		right: 135%;
		bottom: 135%;
	}

	&136 {
		left: 136%;
		right: 136%;
		bottom: 136%;
	}

	&137 {
		left: 137%;
		right: 137%;
		bottom: 137%;
	}

	&138 {
		left: 138%;
		right: 138%;
		bottom: 138%;
	}

	&139 {
		left: 139%;
		right: 139%;
		bottom: 139%;
	}

	&140 {
		left: 140%;
		right: 140%;
		bottom: 140%;
	}

	&141 {
		left: 141%;
		right: 141%;
		bottom: 141%;
	}

	&142 {
		left: 142%;
		right: 142%;
		bottom: 142%;
	}

	&143 {
		left: 143%;
		right: 143%;
		bottom: 143%;
	}

	&144 {
		left: 144%;
		right: 144%;
		bottom: 144%;
	}

	&145 {
		left: 145%;
		right: 145%;
		bottom: 145%;
	}

	&146 {
		left: 146%;
		right: 146%;
		bottom: 146%;
	}

	&147 {
		left: 147%;
		right: 147%;
		bottom: 147%;
	}

	&148 {
		left: 148%;
		right: 148%;
		bottom: 148%;
	}

	&149 {
		left: 149%;
		right: 149%;
		bottom: 149%;
	}

	&150 {
		left: 150%;
		right: 150%;
		bottom: 150%;
	}

	&151 {
		left: 151%;
		right: 151%;
		bottom: 151%;
	}

	&152 {
		left: 152%;
		right: 152%;
		bottom: 152%;
	}

	&153 {
		left: 153%;
		right: 153%;
		bottom: 153%;
	}

	&154 {
		left: 154%;
		right: 154%;
		bottom: 154%;
	}

	&155 {
		left: 155%;
		right: 155%;
		bottom: 155%;
	}

	&156 {
		left: 156%;
		right: 156%;
		bottom: 156%;
	}

	&157 {
		left: 157%;
		right: 157%;
		bottom: 157%;
	}

	&158 {
		left: 158%;
		right: 158%;
		bottom: 158%;
	}

	&159 {
		left: 159%;
		right: 159%;
		bottom: 159%;
	}

	&160 {
		left: 160%;
		right: 160%;
		bottom: 160%;
	}

	&161 {
		left: 161%;
		right: 161%;
		bottom: 161%;
	}

	&162 {
		left: 162%;
		right: 162%;
		bottom: 162%;
	}

	&163 {
		left: 163%;
		right: 163%;
		bottom: 163%;
	}

	&164 {
		left: 164%;
		right: 164%;
		bottom: 164%;
	}

	&165 {
		left: 165%;
		right: 165%;
		bottom: 165%;
	}

	&166 {
		left: 166%;
		right: 166%;
		bottom: 166%;
	}

	&167 {
		left: 167%;
		right: 167%;
		bottom: 167%;
	}

	&168 {
		left: 168%;
		right: 168%;
		bottom: 168%;
	}

	&169 {
		left: 169%;
		right: 169%;
		bottom: 169%;
	}

	&170 {
		left: 170%;
		right: 170%;
		bottom: 170%;
	}

	&171 {
		left: 171%;
		right: 171%;
		bottom: 171%;
	}

	&172 {
		left: 172%;
		right: 172%;
		bottom: 172%;
	}

	&173 {
		left: 173%;
		right: 173%;
		bottom: 173%;
	}

	&174 {
		left: 174%;
		right: 174%;
		bottom: 174%;
	}

	&175 {
		left: 175%;
		right: 175%;
		bottom: 175%;
	}

	&176 {
		left: 176%;
		right: 176%;
		bottom: 176%;
	}

	&177 {
		left: 177%;
		right: 177%;
		bottom: 177%;
	}

	&178 {
		left: 178%;
		right: 178%;
		bottom: 178%;
	}

	&179 {
		left: 179%;
		right: 179%;
		bottom: 179%;
	}

	&180 {
		left: 180%;
		right: 180%;
		bottom: 180%;
	}

	&181 {
		left: 181%;
		right: 181%;
		bottom: 181%;
	}

	&182 {
		left: 182%;
		right: 182%;
		bottom: 182%;
	}

	&183 {
		left: 183%;
		right: 183%;
		bottom: 183%;
	}

	&184 {
		left: 184%;
		right: 184%;
		bottom: 184%;
	}

	&185 {
		left: 185%;
		right: 185%;
		bottom: 185%;
	}

	&186 {
		left: 186%;
		right: 186%;
		bottom: 186%;
	}

	&187 {
		left: 187%;
		right: 187%;
		bottom: 187%;
	}

	&188 {
		left: 188%;
		right: 188%;
		bottom: 188%;
	}

	&189 {
		left: 189%;
		right: 189%;
		bottom: 189%;
	}

	&190 {
		left: 190%;
		right: 190%;
		bottom: 190%;
	}

	&191 {
		left: 191%;
		right: 191%;
		bottom: 191%;
	}

	&192 {
		left: 192%;
		right: 192%;
		bottom: 192%;
	}

	&193 {
		left: 193%;
		right: 193%;
		bottom: 193%;
	}

	&194 {
		left: 194%;
		right: 194%;
		bottom: 194%;
	}

	&195 {
		left: 195%;
		right: 195%;
		bottom: 195%;
	}

	&196 {
		left: 196%;
		right: 196%;
		bottom: 196%;
	}

	&197 {
		left: 197%;
		right: 197%;
		bottom: 197%;
	}

	&198 {
		left: 198%;
		right: 198%;
		bottom: 198%;
	}

	&199 {
		left: 199%;
		right: 199%;
		bottom: 199%;
	}

	&200 {
		left: 200%;
		right: 200%;
		bottom: 200%;
	}
}








// ABSOLUTE POSIITON TOP RIGHT BOTTOM

.pos-trb-,
.pos-tbr-,
.pos-rtb-,
.pos-rbt-,
.pos-btr-,
.pos-brt-,
.trb-,
.tbr-,
.rtb-,
.rbt-,
.btr-,
.brt- {
	&00 {
		top: 00%;
		right: 00%;
		bottom: 00%;
	}

	&01 {
		top: 01%;
		right: 01%;
		bottom: 01%;
	}

	&02 {
		top: 02%;
		right: 02%;
		bottom: 02%;
	}

	&03 {
		top: 03%;
		right: 03%;
		bottom: 03%;
	}

	&04 {
		top: 04%;
		right: 04%;
		bottom: 04%;
	}

	&05 {
		top: 05%;
		right: 05%;
		bottom: 05%;
	}

	&06 {
		top: 06%;
		right: 06%;
		bottom: 06%;
	}

	&07 {
		top: 07%;
		right: 07%;
		bottom: 07%;
	}

	&08 {
		top: 08%;
		right: 08%;
		bottom: 08%;
	}

	&09 {
		top: 09%;
		right: 09%;
		bottom: 09%;
	}

	&10 {
		top: 10%;
		right: 10%;
		bottom: 10%;
	}

	&11 {
		top: 11%;
		right: 11%;
		bottom: 11%;
	}

	&12 {
		top: 12%;
		right: 12%;
		bottom: 12%;
	}

	&13 {
		top: 13%;
		right: 13%;
		bottom: 13%;
	}

	&14 {
		top: 14%;
		right: 14%;
		bottom: 14%;
	}

	&15 {
		top: 15%;
		right: 15%;
		bottom: 15%;
	}

	&16 {
		top: 16%;
		right: 16%;
		bottom: 16%;
	}

	&17 {
		top: 17%;
		right: 17%;
		bottom: 17%;
	}

	&18 {
		top: 18%;
		right: 18%;
		bottom: 18%;
	}

	&19 {
		top: 19%;
		right: 19%;
		bottom: 19%;
	}

	&20 {
		top: 20%;
		right: 20%;
		bottom: 20%;
	}

	&21 {
		top: 21%;
		right: 21%;
		bottom: 21%;
	}

	&22 {
		top: 22%;
		right: 22%;
		bottom: 22%;
	}

	&23 {
		top: 23%;
		right: 23%;
		bottom: 23%;
	}

	&24 {
		top: 24%;
		right: 24%;
		bottom: 24%;
	}

	&25 {
		top: 25%;
		right: 25%;
		bottom: 25%;
	}

	&26 {
		top: 26%;
		right: 26%;
		bottom: 26%;
	}

	&27 {
		top: 27%;
		right: 27%;
		bottom: 27%;
	}

	&28 {
		top: 28%;
		right: 28%;
		bottom: 28%;
	}

	&29 {
		top: 29%;
		right: 29%;
		bottom: 29%;
	}

	&30 {
		top: 30%;
		right: 30%;
		bottom: 30%;
	}

	&31 {
		top: 31%;
		right: 31%;
		bottom: 31%;
	}

	&32 {
		top: 32%;
		right: 32%;
		bottom: 32%;
	}

	&33 {
		top: 33%;
		right: 33%;
		bottom: 33%;
	}

	&34 {
		top: 34%;
		right: 34%;
		bottom: 34%;
	}

	&35 {
		top: 35%;
		right: 35%;
		bottom: 35%;
	}

	&36 {
		top: 36%;
		right: 36%;
		bottom: 36%;
	}

	&37 {
		top: 37%;
		right: 37%;
		bottom: 37%;
	}

	&38 {
		top: 38%;
		right: 38%;
		bottom: 38%;
	}

	&39 {
		top: 39%;
		right: 39%;
		bottom: 39%;
	}

	&40 {
		top: 40%;
		right: 40%;
		bottom: 40%;
	}

	&41 {
		top: 41%;
		right: 41%;
		bottom: 41%;
	}

	&42 {
		top: 42%;
		right: 42%;
		bottom: 42%;
	}

	&43 {
		top: 43%;
		right: 43%;
		bottom: 43%;
	}

	&44 {
		top: 44%;
		right: 44%;
		bottom: 44%;
	}

	&45 {
		top: 45%;
		right: 45%;
		bottom: 45%;
	}

	&46 {
		top: 46%;
		right: 46%;
		bottom: 46%;
	}

	&47 {
		top: 47%;
		right: 47%;
		bottom: 47%;
	}

	&48 {
		top: 48%;
		right: 48%;
		bottom: 48%;
	}

	&49 {
		top: 49%;
		right: 49%;
		bottom: 49%;
	}

	&50 {
		top: 50%;
		right: 50%;
		bottom: 50%;
	}

	&51 {
		top: 51%;
		right: 51%;
		bottom: 51%;
	}

	&52 {
		top: 52%;
		right: 52%;
		bottom: 52%;
	}

	&53 {
		top: 53%;
		right: 53%;
		bottom: 53%;
	}

	&54 {
		top: 54%;
		right: 54%;
		bottom: 54%;
	}

	&55 {
		top: 55%;
		right: 55%;
		bottom: 55%;
	}

	&56 {
		top: 56%;
		right: 56%;
		bottom: 56%;
	}

	&57 {
		top: 57%;
		right: 57%;
		bottom: 57%;
	}

	&58 {
		top: 58%;
		right: 58%;
		bottom: 58%;
	}

	&59 {
		top: 59%;
		right: 59%;
		bottom: 59%;
	}

	&60 {
		top: 60%;
		right: 60%;
		bottom: 60%;
	}

	&61 {
		top: 61%;
		right: 61%;
		bottom: 61%;
	}

	&62 {
		top: 62%;
		right: 62%;
		bottom: 62%;
	}

	&63 {
		top: 63%;
		right: 63%;
		bottom: 63%;
	}

	&64 {
		top: 64%;
		right: 64%;
		bottom: 64%;
	}

	&65 {
		top: 65%;
		right: 65%;
		bottom: 65%;
	}

	&66 {
		top: 66%;
		right: 66%;
		bottom: 66%;
	}

	&67 {
		top: 67%;
		right: 67%;
		bottom: 67%;
	}

	&68 {
		top: 68%;
		right: 68%;
		bottom: 68%;
	}

	&69 {
		top: 69%;
		right: 69%;
		bottom: 69%;
	}

	&70 {
		top: 70%;
		right: 70%;
		bottom: 70%;
	}

	&71 {
		top: 71%;
		right: 71%;
		bottom: 71%;
	}

	&72 {
		top: 72%;
		right: 72%;
		bottom: 72%;
	}

	&73 {
		top: 73%;
		right: 73%;
		bottom: 73%;
	}

	&74 {
		top: 74%;
		right: 74%;
		bottom: 74%;
	}

	&75 {
		top: 75%;
		right: 75%;
		bottom: 75%;
	}

	&76 {
		top: 76%;
		right: 76%;
		bottom: 76%;
	}

	&77 {
		top: 77%;
		right: 77%;
		bottom: 77%;
	}

	&78 {
		top: 78%;
		right: 78%;
		bottom: 78%;
	}

	&79 {
		top: 79%;
		right: 79%;
		bottom: 79%;
	}

	&80 {
		top: 80%;
		right: 80%;
		bottom: 80%;
	}

	&81 {
		top: 81%;
		right: 81%;
		bottom: 81%;
	}

	&82 {
		top: 82%;
		right: 82%;
		bottom: 82%;
	}

	&83 {
		top: 83%;
		right: 83%;
		bottom: 83%;
	}

	&84 {
		top: 84%;
		right: 84%;
		bottom: 84%;
	}

	&85 {
		top: 85%;
		right: 85%;
		bottom: 85%;
	}

	&86 {
		top: 86%;
		right: 86%;
		bottom: 86%;
	}

	&87 {
		top: 87%;
		right: 87%;
		bottom: 87%;
	}

	&88 {
		top: 88%;
		right: 88%;
		bottom: 88%;
	}

	&89 {
		top: 89%;
		right: 89%;
		bottom: 89%;
	}

	&90 {
		top: 90%;
		right: 90%;
		bottom: 90%;
	}

	&91 {
		top: 91%;
		right: 91%;
		bottom: 91%;
	}

	&92 {
		top: 92%;
		right: 92%;
		bottom: 92%;
	}

	&93 {
		top: 93%;
		right: 93%;
		bottom: 93%;
	}

	&94 {
		top: 94%;
		right: 94%;
		bottom: 94%;
	}

	&95 {
		top: 95%;
		right: 95%;
		bottom: 95%;
	}

	&96 {
		top: 96%;
		right: 96%;
		bottom: 96%;
	}

	&97 {
		top: 97%;
		right: 97%;
		bottom: 97%;
	}

	&98 {
		top: 98%;
		right: 98%;
		bottom: 98%;
	}

	&99 {
		top: 99%;
		right: 99%;
		bottom: 99%;
	}

	&100 {
		top: 100%;
		right: 100%;
		bottom: 100%;
	}

	&101 {
		top: 101%;
		right: 101%;
		bottom: 101%;
	}

	&102 {
		top: 102%;
		right: 102%;
		bottom: 102%;
	}

	&103 {
		top: 103%;
		right: 103%;
		bottom: 103%;
	}

	&104 {
		top: 104%;
		right: 104%;
		bottom: 104%;
	}

	&105 {
		top: 105%;
		right: 105%;
		bottom: 105%;
	}

	&106 {
		top: 106%;
		right: 106%;
		bottom: 106%;
	}

	&107 {
		top: 107%;
		right: 107%;
		bottom: 107%;
	}

	&108 {
		top: 108%;
		right: 108%;
		bottom: 108%;
	}

	&109 {
		top: 109%;
		right: 109%;
		bottom: 109%;
	}

	&110 {
		top: 110%;
		right: 110%;
		bottom: 110%;
	}

	&111 {
		top: 111%;
		right: 111%;
		bottom: 111%;
	}

	&112 {
		top: 112%;
		right: 112%;
		bottom: 112%;
	}

	&113 {
		top: 113%;
		right: 113%;
		bottom: 113%;
	}

	&114 {
		top: 114%;
		right: 114%;
		bottom: 114%;
	}

	&115 {
		top: 115%;
		right: 115%;
		bottom: 115%;
	}

	&116 {
		top: 116%;
		right: 116%;
		bottom: 116%;
	}

	&117 {
		top: 117%;
		right: 117%;
		bottom: 117%;
	}

	&118 {
		top: 118%;
		right: 118%;
		bottom: 118%;
	}

	&119 {
		top: 119%;
		right: 119%;
		bottom: 119%;
	}

	&120 {
		top: 120%;
		right: 120%;
		bottom: 120%;
	}

	&121 {
		top: 121%;
		right: 121%;
		bottom: 121%;
	}

	&122 {
		top: 122%;
		right: 122%;
		bottom: 122%;
	}

	&123 {
		top: 123%;
		right: 123%;
		bottom: 123%;
	}

	&124 {
		top: 124%;
		right: 124%;
		bottom: 124%;
	}

	&125 {
		top: 125%;
		right: 125%;
		bottom: 125%;
	}

	&126 {
		top: 126%;
		right: 126%;
		bottom: 126%;
	}

	&127 {
		top: 127%;
		right: 127%;
		bottom: 127%;
	}

	&128 {
		top: 128%;
		right: 128%;
		bottom: 128%;
	}

	&129 {
		top: 129%;
		right: 129%;
		bottom: 129%;
	}

	&130 {
		top: 130%;
		right: 130%;
		bottom: 130%;
	}

	&131 {
		top: 131%;
		right: 131%;
		bottom: 131%;
	}

	&132 {
		top: 132%;
		right: 132%;
		bottom: 132%;
	}

	&133 {
		top: 133%;
		right: 133%;
		bottom: 133%;
	}

	&134 {
		top: 134%;
		right: 134%;
		bottom: 134%;
	}

	&135 {
		top: 135%;
		right: 135%;
		bottom: 135%;
	}

	&136 {
		top: 136%;
		right: 136%;
		bottom: 136%;
	}

	&137 {
		top: 137%;
		right: 137%;
		bottom: 137%;
	}

	&138 {
		top: 138%;
		right: 138%;
		bottom: 138%;
	}

	&139 {
		top: 139%;
		right: 139%;
		bottom: 139%;
	}

	&140 {
		top: 140%;
		right: 140%;
		bottom: 140%;
	}

	&141 {
		top: 141%;
		right: 141%;
		bottom: 141%;
	}

	&142 {
		top: 142%;
		right: 142%;
		bottom: 142%;
	}

	&143 {
		top: 143%;
		right: 143%;
		bottom: 143%;
	}

	&144 {
		top: 144%;
		right: 144%;
		bottom: 144%;
	}

	&145 {
		top: 145%;
		right: 145%;
		bottom: 145%;
	}

	&146 {
		top: 146%;
		right: 146%;
		bottom: 146%;
	}

	&147 {
		top: 147%;
		right: 147%;
		bottom: 147%;
	}

	&148 {
		top: 148%;
		right: 148%;
		bottom: 148%;
	}

	&149 {
		top: 149%;
		right: 149%;
		bottom: 149%;
	}

	&150 {
		top: 150%;
		right: 150%;
		bottom: 150%;
	}

	&151 {
		top: 151%;
		right: 151%;
		bottom: 151%;
	}

	&152 {
		top: 152%;
		right: 152%;
		bottom: 152%;
	}

	&153 {
		top: 153%;
		right: 153%;
		bottom: 153%;
	}

	&154 {
		top: 154%;
		right: 154%;
		bottom: 154%;
	}

	&155 {
		top: 155%;
		right: 155%;
		bottom: 155%;
	}

	&156 {
		top: 156%;
		right: 156%;
		bottom: 156%;
	}

	&157 {
		top: 157%;
		right: 157%;
		bottom: 157%;
	}

	&158 {
		top: 158%;
		right: 158%;
		bottom: 158%;
	}

	&159 {
		top: 159%;
		right: 159%;
		bottom: 159%;
	}

	&160 {
		top: 160%;
		right: 160%;
		bottom: 160%;
	}

	&161 {
		top: 161%;
		right: 161%;
		bottom: 161%;
	}

	&162 {
		top: 162%;
		right: 162%;
		bottom: 162%;
	}

	&163 {
		top: 163%;
		right: 163%;
		bottom: 163%;
	}

	&164 {
		top: 164%;
		right: 164%;
		bottom: 164%;
	}

	&165 {
		top: 165%;
		right: 165%;
		bottom: 165%;
	}

	&166 {
		top: 166%;
		right: 166%;
		bottom: 166%;
	}

	&167 {
		top: 167%;
		right: 167%;
		bottom: 167%;
	}

	&168 {
		top: 168%;
		right: 168%;
		bottom: 168%;
	}

	&169 {
		top: 169%;
		right: 169%;
		bottom: 169%;
	}

	&170 {
		top: 170%;
		right: 170%;
		bottom: 170%;
	}

	&171 {
		top: 171%;
		right: 171%;
		bottom: 171%;
	}

	&172 {
		top: 172%;
		right: 172%;
		bottom: 172%;
	}

	&173 {
		top: 173%;
		right: 173%;
		bottom: 173%;
	}

	&174 {
		top: 174%;
		right: 174%;
		bottom: 174%;
	}

	&175 {
		top: 175%;
		right: 175%;
		bottom: 175%;
	}

	&176 {
		top: 176%;
		right: 176%;
		bottom: 176%;
	}

	&177 {
		top: 177%;
		right: 177%;
		bottom: 177%;
	}

	&178 {
		top: 178%;
		right: 178%;
		bottom: 178%;
	}

	&179 {
		top: 179%;
		right: 179%;
		bottom: 179%;
	}

	&180 {
		top: 180%;
		right: 180%;
		bottom: 180%;
	}

	&181 {
		top: 181%;
		right: 181%;
		bottom: 181%;
	}

	&182 {
		top: 182%;
		right: 182%;
		bottom: 182%;
	}

	&183 {
		top: 183%;
		right: 183%;
		bottom: 183%;
	}

	&184 {
		top: 184%;
		right: 184%;
		bottom: 184%;
	}

	&185 {
		top: 185%;
		right: 185%;
		bottom: 185%;
	}

	&186 {
		top: 186%;
		right: 186%;
		bottom: 186%;
	}

	&187 {
		top: 187%;
		right: 187%;
		bottom: 187%;
	}

	&188 {
		top: 188%;
		right: 188%;
		bottom: 188%;
	}

	&189 {
		top: 189%;
		right: 189%;
		bottom: 189%;
	}

	&190 {
		top: 190%;
		right: 190%;
		bottom: 190%;
	}

	&191 {
		top: 191%;
		right: 191%;
		bottom: 191%;
	}

	&192 {
		top: 192%;
		right: 192%;
		bottom: 192%;
	}

	&193 {
		top: 193%;
		right: 193%;
		bottom: 193%;
	}

	&194 {
		top: 194%;
		right: 194%;
		bottom: 194%;
	}

	&195 {
		top: 195%;
		right: 195%;
		bottom: 195%;
	}

	&196 {
		top: 196%;
		right: 196%;
		bottom: 196%;
	}

	&197 {
		top: 197%;
		right: 197%;
		bottom: 197%;
	}

	&198 {
		top: 198%;
		right: 198%;
		bottom: 198%;
	}

	&199 {
		top: 199%;
		right: 199%;
		bottom: 199%;
	}

	&200 {
		top: 200%;
		right: 200%;
		bottom: 200%;
	}
}






// ABSOLUTE POSIITON TOP RIGHT BOTTOM LEFT

.pos-,
.position- {
	&00 {
		top: 00%;
		right: 00%;
		bottom: 00%;
	}

	&01 {
		top: 01%;
		right: 01%;
		bottom: 01%;
	}

	&02 {
		top: 02%;
		right: 02%;
		bottom: 02%;
	}

	&03 {
		top: 03%;
		right: 03%;
		bottom: 03%;
	}

	&04 {
		top: 04%;
		right: 04%;
		bottom: 04%;
	}

	&05 {
		top: 05%;
		right: 05%;
		bottom: 05%;
	}

	&06 {
		top: 06%;
		right: 06%;
		bottom: 06%;
	}

	&07 {
		top: 07%;
		right: 07%;
		bottom: 07%;
	}

	&08 {
		top: 08%;
		right: 08%;
		bottom: 08%;
	}

	&09 {
		top: 09%;
		right: 09%;
		bottom: 09%;
	}

	&10 {
		top: 10%;
		right: 10%;
		bottom: 10%;
	}

	&11 {
		top: 11%;
		right: 11%;
		bottom: 11%;
	}

	&12 {
		top: 12%;
		right: 12%;
		bottom: 12%;
	}

	&13 {
		top: 13%;
		right: 13%;
		bottom: 13%;
	}

	&14 {
		top: 14%;
		right: 14%;
		bottom: 14%;
	}

	&15 {
		top: 15%;
		right: 15%;
		bottom: 15%;
	}

	&16 {
		top: 16%;
		right: 16%;
		bottom: 16%;
	}

	&17 {
		top: 17%;
		right: 17%;
		bottom: 17%;
	}

	&18 {
		top: 18%;
		right: 18%;
		bottom: 18%;
	}

	&19 {
		top: 19%;
		right: 19%;
		bottom: 19%;
	}

	&20 {
		top: 20%;
		right: 20%;
		bottom: 20%;
	}

	&21 {
		top: 21%;
		right: 21%;
		bottom: 21%;
	}

	&22 {
		top: 22%;
		right: 22%;
		bottom: 22%;
	}

	&23 {
		top: 23%;
		right: 23%;
		bottom: 23%;
	}

	&24 {
		top: 24%;
		right: 24%;
		bottom: 24%;
	}

	&25 {
		top: 25%;
		right: 25%;
		bottom: 25%;
	}

	&26 {
		top: 26%;
		right: 26%;
		bottom: 26%;
	}

	&27 {
		top: 27%;
		right: 27%;
		bottom: 27%;
	}

	&28 {
		top: 28%;
		right: 28%;
		bottom: 28%;
	}

	&29 {
		top: 29%;
		right: 29%;
		bottom: 29%;
	}

	&30 {
		top: 30%;
		right: 30%;
		bottom: 30%;
	}

	&31 {
		top: 31%;
		right: 31%;
		bottom: 31%;
	}

	&32 {
		top: 32%;
		right: 32%;
		bottom: 32%;
	}

	&33 {
		top: 33%;
		right: 33%;
		bottom: 33%;
	}

	&34 {
		top: 34%;
		right: 34%;
		bottom: 34%;
	}

	&35 {
		top: 35%;
		right: 35%;
		bottom: 35%;
	}

	&36 {
		top: 36%;
		right: 36%;
		bottom: 36%;
	}

	&37 {
		top: 37%;
		right: 37%;
		bottom: 37%;
	}

	&38 {
		top: 38%;
		right: 38%;
		bottom: 38%;
	}

	&39 {
		top: 39%;
		right: 39%;
		bottom: 39%;
	}

	&40 {
		top: 40%;
		right: 40%;
		bottom: 40%;
	}

	&41 {
		top: 41%;
		right: 41%;
		bottom: 41%;
	}

	&42 {
		top: 42%;
		right: 42%;
		bottom: 42%;
	}

	&43 {
		top: 43%;
		right: 43%;
		bottom: 43%;
	}

	&44 {
		top: 44%;
		right: 44%;
		bottom: 44%;
	}

	&45 {
		top: 45%;
		right: 45%;
		bottom: 45%;
	}

	&46 {
		top: 46%;
		right: 46%;
		bottom: 46%;
	}

	&47 {
		top: 47%;
		right: 47%;
		bottom: 47%;
	}

	&48 {
		top: 48%;
		right: 48%;
		bottom: 48%;
	}

	&49 {
		top: 49%;
		right: 49%;
		bottom: 49%;
	}

	&50 {
		top: 50%;
		right: 50%;
		bottom: 50%;
	}

	&51 {
		top: 51%;
		right: 51%;
		bottom: 51%;
	}

	&52 {
		top: 52%;
		right: 52%;
		bottom: 52%;
	}

	&53 {
		top: 53%;
		right: 53%;
		bottom: 53%;
	}

	&54 {
		top: 54%;
		right: 54%;
		bottom: 54%;
	}

	&55 {
		top: 55%;
		right: 55%;
		bottom: 55%;
	}

	&56 {
		top: 56%;
		right: 56%;
		bottom: 56%;
	}

	&57 {
		top: 57%;
		right: 57%;
		bottom: 57%;
	}

	&58 {
		top: 58%;
		right: 58%;
		bottom: 58%;
	}

	&59 {
		top: 59%;
		right: 59%;
		bottom: 59%;
	}

	&60 {
		top: 60%;
		right: 60%;
		bottom: 60%;
	}

	&61 {
		top: 61%;
		right: 61%;
		bottom: 61%;
	}

	&62 {
		top: 62%;
		right: 62%;
		bottom: 62%;
	}

	&63 {
		top: 63%;
		right: 63%;
		bottom: 63%;
	}

	&64 {
		top: 64%;
		right: 64%;
		bottom: 64%;
	}

	&65 {
		top: 65%;
		right: 65%;
		bottom: 65%;
	}

	&66 {
		top: 66%;
		right: 66%;
		bottom: 66%;
	}

	&67 {
		top: 67%;
		right: 67%;
		bottom: 67%;
	}

	&68 {
		top: 68%;
		right: 68%;
		bottom: 68%;
	}

	&69 {
		top: 69%;
		right: 69%;
		bottom: 69%;
	}

	&70 {
		top: 70%;
		right: 70%;
		bottom: 70%;
	}

	&71 {
		top: 71%;
		right: 71%;
		bottom: 71%;
	}

	&72 {
		top: 72%;
		right: 72%;
		bottom: 72%;
	}

	&73 {
		top: 73%;
		right: 73%;
		bottom: 73%;
	}

	&74 {
		top: 74%;
		right: 74%;
		bottom: 74%;
	}

	&75 {
		top: 75%;
		right: 75%;
		bottom: 75%;
	}

	&76 {
		top: 76%;
		right: 76%;
		bottom: 76%;
	}

	&77 {
		top: 77%;
		right: 77%;
		bottom: 77%;
	}

	&78 {
		top: 78%;
		right: 78%;
		bottom: 78%;
	}

	&79 {
		top: 79%;
		right: 79%;
		bottom: 79%;
	}

	&80 {
		top: 80%;
		right: 80%;
		bottom: 80%;
	}

	&81 {
		top: 81%;
		right: 81%;
		bottom: 81%;
	}

	&82 {
		top: 82%;
		right: 82%;
		bottom: 82%;
	}

	&83 {
		top: 83%;
		right: 83%;
		bottom: 83%;
	}

	&84 {
		top: 84%;
		right: 84%;
		bottom: 84%;
	}

	&85 {
		top: 85%;
		right: 85%;
		bottom: 85%;
	}

	&86 {
		top: 86%;
		right: 86%;
		bottom: 86%;
	}

	&87 {
		top: 87%;
		right: 87%;
		bottom: 87%;
	}

	&88 {
		top: 88%;
		right: 88%;
		bottom: 88%;
	}

	&89 {
		top: 89%;
		right: 89%;
		bottom: 89%;
	}

	&90 {
		top: 90%;
		right: 90%;
		bottom: 90%;
	}

	&91 {
		top: 91%;
		right: 91%;
		bottom: 91%;
	}

	&92 {
		top: 92%;
		right: 92%;
		bottom: 92%;
	}

	&93 {
		top: 93%;
		right: 93%;
		bottom: 93%;
	}

	&94 {
		top: 94%;
		right: 94%;
		bottom: 94%;
	}

	&95 {
		top: 95%;
		right: 95%;
		bottom: 95%;
	}

	&96 {
		top: 96%;
		right: 96%;
		bottom: 96%;
	}

	&97 {
		top: 97%;
		right: 97%;
		bottom: 97%;
	}

	&98 {
		top: 98%;
		right: 98%;
		bottom: 98%;
	}

	&99 {
		top: 99%;
		right: 99%;
		bottom: 99%;
	}

	&100 {
		top: 100%;
		right: 100%;
		bottom: 100%;
	}

	&101 {
		top: 101%;
		right: 101%;
		bottom: 101%;
	}

	&102 {
		top: 102%;
		right: 102%;
		bottom: 102%;
	}

	&103 {
		top: 103%;
		right: 103%;
		bottom: 103%;
	}

	&104 {
		top: 104%;
		right: 104%;
		bottom: 104%;
	}

	&105 {
		top: 105%;
		right: 105%;
		bottom: 105%;
	}

	&106 {
		top: 106%;
		right: 106%;
		bottom: 106%;
	}

	&107 {
		top: 107%;
		right: 107%;
		bottom: 107%;
	}

	&108 {
		top: 108%;
		right: 108%;
		bottom: 108%;
	}

	&109 {
		top: 109%;
		right: 109%;
		bottom: 109%;
	}

	&110 {
		top: 110%;
		right: 110%;
		bottom: 110%;
	}

	&111 {
		top: 111%;
		right: 111%;
		bottom: 111%;
	}

	&112 {
		top: 112%;
		right: 112%;
		bottom: 112%;
	}

	&113 {
		top: 113%;
		right: 113%;
		bottom: 113%;
	}

	&114 {
		top: 114%;
		right: 114%;
		bottom: 114%;
	}

	&115 {
		top: 115%;
		right: 115%;
		bottom: 115%;
	}

	&116 {
		top: 116%;
		right: 116%;
		bottom: 116%;
	}

	&117 {
		top: 117%;
		right: 117%;
		bottom: 117%;
	}

	&118 {
		top: 118%;
		right: 118%;
		bottom: 118%;
	}

	&119 {
		top: 119%;
		right: 119%;
		bottom: 119%;
	}

	&120 {
		top: 120%;
		right: 120%;
		bottom: 120%;
	}

	&121 {
		top: 121%;
		right: 121%;
		bottom: 121%;
	}

	&122 {
		top: 122%;
		right: 122%;
		bottom: 122%;
	}

	&123 {
		top: 123%;
		right: 123%;
		bottom: 123%;
	}

	&124 {
		top: 124%;
		right: 124%;
		bottom: 124%;
	}

	&125 {
		top: 125%;
		right: 125%;
		bottom: 125%;
	}

	&126 {
		top: 126%;
		right: 126%;
		bottom: 126%;
	}

	&127 {
		top: 127%;
		right: 127%;
		bottom: 127%;
	}

	&128 {
		top: 128%;
		right: 128%;
		bottom: 128%;
	}

	&129 {
		top: 129%;
		right: 129%;
		bottom: 129%;
	}

	&130 {
		top: 130%;
		right: 130%;
		bottom: 130%;
	}

	&131 {
		top: 131%;
		right: 131%;
		bottom: 131%;
	}

	&132 {
		top: 132%;
		right: 132%;
		bottom: 132%;
	}

	&133 {
		top: 133%;
		right: 133%;
		bottom: 133%;
	}

	&134 {
		top: 134%;
		right: 134%;
		bottom: 134%;
	}

	&135 {
		top: 135%;
		right: 135%;
		bottom: 135%;
	}

	&136 {
		top: 136%;
		right: 136%;
		bottom: 136%;
	}

	&137 {
		top: 137%;
		right: 137%;
		bottom: 137%;
	}

	&138 {
		top: 138%;
		right: 138%;
		bottom: 138%;
	}

	&139 {
		top: 139%;
		right: 139%;
		bottom: 139%;
	}

	&140 {
		top: 140%;
		right: 140%;
		bottom: 140%;
	}

	&141 {
		top: 141%;
		right: 141%;
		bottom: 141%;
	}

	&142 {
		top: 142%;
		right: 142%;
		bottom: 142%;
	}

	&143 {
		top: 143%;
		right: 143%;
		bottom: 143%;
	}

	&144 {
		top: 144%;
		right: 144%;
		bottom: 144%;
	}

	&145 {
		top: 145%;
		right: 145%;
		bottom: 145%;
	}

	&146 {
		top: 146%;
		right: 146%;
		bottom: 146%;
	}

	&147 {
		top: 147%;
		right: 147%;
		bottom: 147%;
	}

	&148 {
		top: 148%;
		right: 148%;
		bottom: 148%;
	}

	&149 {
		top: 149%;
		right: 149%;
		bottom: 149%;
	}

	&150 {
		top: 150%;
		right: 150%;
		bottom: 150%;
	}

	&151 {
		top: 151%;
		right: 151%;
		bottom: 151%;
	}

	&152 {
		top: 152%;
		right: 152%;
		bottom: 152%;
	}

	&153 {
		top: 153%;
		right: 153%;
		bottom: 153%;
	}

	&154 {
		top: 154%;
		right: 154%;
		bottom: 154%;
	}

	&155 {
		top: 155%;
		right: 155%;
		bottom: 155%;
	}

	&156 {
		top: 156%;
		right: 156%;
		bottom: 156%;
	}

	&157 {
		top: 157%;
		right: 157%;
		bottom: 157%;
	}

	&158 {
		top: 158%;
		right: 158%;
		bottom: 158%;
	}

	&159 {
		top: 159%;
		right: 159%;
		bottom: 159%;
	}

	&160 {
		top: 160%;
		right: 160%;
		bottom: 160%;
	}

	&161 {
		top: 161%;
		right: 161%;
		bottom: 161%;
	}

	&162 {
		top: 162%;
		right: 162%;
		bottom: 162%;
	}

	&163 {
		top: 163%;
		right: 163%;
		bottom: 163%;
	}

	&164 {
		top: 164%;
		right: 164%;
		bottom: 164%;
	}

	&165 {
		top: 165%;
		right: 165%;
		bottom: 165%;
	}

	&166 {
		top: 166%;
		right: 166%;
		bottom: 166%;
	}

	&167 {
		top: 167%;
		right: 167%;
		bottom: 167%;
	}

	&168 {
		top: 168%;
		right: 168%;
		bottom: 168%;
	}

	&169 {
		top: 169%;
		right: 169%;
		bottom: 169%;
	}

	&170 {
		top: 170%;
		right: 170%;
		bottom: 170%;
	}

	&171 {
		top: 171%;
		right: 171%;
		bottom: 171%;
	}

	&172 {
		top: 172%;
		right: 172%;
		bottom: 172%;
	}

	&173 {
		top: 173%;
		right: 173%;
		bottom: 173%;
	}

	&174 {
		top: 174%;
		right: 174%;
		bottom: 174%;
	}

	&175 {
		top: 175%;
		right: 175%;
		bottom: 175%;
	}

	&176 {
		top: 176%;
		right: 176%;
		bottom: 176%;
	}

	&177 {
		top: 177%;
		right: 177%;
		bottom: 177%;
	}

	&178 {
		top: 178%;
		right: 178%;
		bottom: 178%;
	}

	&179 {
		top: 179%;
		right: 179%;
		bottom: 179%;
	}

	&180 {
		top: 180%;
		right: 180%;
		bottom: 180%;
	}

	&181 {
		top: 181%;
		right: 181%;
		bottom: 181%;
	}

	&182 {
		top: 182%;
		right: 182%;
		bottom: 182%;
	}

	&183 {
		top: 183%;
		right: 183%;
		bottom: 183%;
	}

	&184 {
		top: 184%;
		right: 184%;
		bottom: 184%;
	}

	&185 {
		top: 185%;
		right: 185%;
		bottom: 185%;
	}

	&186 {
		top: 186%;
		right: 186%;
		bottom: 186%;
	}

	&187 {
		top: 187%;
		right: 187%;
		bottom: 187%;
	}

	&188 {
		top: 188%;
		right: 188%;
		bottom: 188%;
	}

	&189 {
		top: 189%;
		right: 189%;
		bottom: 189%;
	}

	&190 {
		top: 190%;
		right: 190%;
		bottom: 190%;
	}

	&191 {
		top: 191%;
		right: 191%;
		bottom: 191%;
	}

	&192 {
		top: 192%;
		right: 192%;
		bottom: 192%;
	}

	&193 {
		top: 193%;
		right: 193%;
		bottom: 193%;
	}

	&194 {
		top: 194%;
		right: 194%;
		bottom: 194%;
	}

	&195 {
		top: 195%;
		right: 195%;
		bottom: 195%;
	}

	&196 {
		top: 196%;
		right: 196%;
		bottom: 196%;
	}

	&197 {
		top: 197%;
		right: 197%;
		bottom: 197%;
	}

	&198 {
		top: 198%;
		right: 198%;
		bottom: 198%;
	}

	&199 {
		top: 199%;
		right: 199%;
		bottom: 199%;
	}

	&200 {
		top: 200%;
		right: 200%;
		bottom: 200%;
	}
}




// ABSOLUTE VALUES IN REM--------------------------------------------------------------






// ABSOLUTE POSIITON LEFT
.pos-l--, .left--, .l-- {
	&00 {
		left: 0.0rem;
	}

	&01 {
		left: 0.1rem;
	}

	&02 {
		left: 0.2rem;
	}

	&03 {
		left: 0.3rem;
	}

	&04 {
		left: 0.4rem;
	}

	&05 {
		left: 0.5rem;
	}

	&06 {
		left: 0.6rem;
	}

	&07 {
		left: 0.7rem;
	}

	&08 {
		left: 0.8rem;
	}

	&09 {
		left: 0.9rem;
	}

	&10 {
		left: 1.0rem;
	}

	&11 {
		left: 1.1rem;
	}

	&12 {
		left: 1.2rem;
	}

	&13 {
		left: 1.3rem;
	}

	&14 {
		left: 1.4rem;
	}

	&15 {
		left: 1.5rem;
	}

	&16 {
		left: 1.6rem;
	}

	&17 {
		left: 1.7rem;
	}

	&18 {
		left: 1.8rem;
	}

	&19 {
		left: 1.9rem;
	}

	&20 {
		left: 2.0rem;
	}

	&21 {
		left: 2.1rem;
	}

	&22 {
		left: 2.2rem;
	}

	&23 {
		left: 2.3rem;
	}

	&24 {
		left: 2.4rem;
	}

	&25 {
		left: 2.5rem;
	}

	&26 {
		left: 2.6rem;
	}

	&27 {
		left: 2.7rem;
	}

	&28 {
		left: 2.8rem;
	}

	&29 {
		left: 2.9rem;
	}

	&30 {
		left: 3.0rem;
	}

	&31 {
		left: 3.1rem;
	}

	&32 {
		left: 3.2rem;
	}

	&33 {
		left: 3.3rem;
	}

	&34 {
		left: 3.4rem;
	}

	&35 {
		left: 3.5rem;
	}

	&36 {
		left: 3.6rem;
	}

	&37 {
		left: 3.7rem;
	}

	&38 {
		left: 3.8rem;
	}

	&39 {
		left: 3.9rem;
	}

	&40 {
		left: 4.0rem;
	}

	&41 {
		left: 4.1rem;
	}

	&42 {
		left: 4.2rem;
	}

	&43 {
		left: 4.3rem;
	}

	&44 {
		left: 4.4rem;
	}

	&45 {
		left: 4.5rem;
	}

	&46 {
		left: 4.6rem;
	}

	&47 {
		left: 4.7rem;
	}

	&48 {
		left: 4.8rem;
	}

	&49 {
		left: 4.9rem;
	}

	&50 {
		left: 5.0rem;
	}

	&51 {
		left: 5.1rem;
	}

	&52 {
		left: 5.2rem;
	}

	&53 {
		left: 5.3rem;
	}

	&54 {
		left: 5.4rem;
	}

	&55 {
		left: 5.5rem;
	}

	&56 {
		left: 5.6rem;
	}

	&57 {
		left: 5.7rem;
	}

	&58 {
		left: 5.8rem;
	}

	&59 {
		left: 5.9rem;
	}

	&60 {
		left: 6.0rem;
	}

	&61 {
		left: 6.1rem;
	}

	&62 {
		left: 6.2rem;
	}

	&63 {
		left: 6.3rem;
	}

	&64 {
		left: 6.4rem;
	}

	&65 {
		left: 6.5rem;
	}

	&66 {
		left: 6.6rem;
	}

	&67 {
		left: 6.7rem;
	}

	&68 {
		left: 6.8rem;
	}

	&69 {
		left: 6.9rem;
	}

	&70 {
		left: 7.0rem;
	}

	&71 {
		left: 7.1rem;
	}

	&72 {
		left: 7.2rem;
	}

	&73 {
		left: 7.3rem;
	}

	&74 {
		left: 7.4rem;
	}

	&75 {
		left: 7.5rem;
	}

	&76 {
		left: 7.6rem;
	}

	&77 {
		left: 7.7rem;
	}

	&78 {
		left: 7.8rem;
	}

	&79 {
		left: 7.9rem;
	}

	&80 {
		left: 8.0rem;
	}

	&81 {
		left: 8.1rem;
	}

	&82 {
		left: 8.2rem;
	}

	&83 {
		left: 8.3rem;
	}

	&84 {
		left: 8.4rem;
	}

	&85 {
		left: 8.5rem;
	}

	&86 {
		left: 8.6rem;
	}

	&87 {
		left: 8.7rem;
	}

	&88 {
		left: 8.8rem;
	}

	&89 {
		left: 8.9rem;
	}

	&90 {
		left: 9.0rem;
	}

	&91 {
		left: 9.1rem;
	}

	&92 {
		left: 9.2rem;
	}

	&93 {
		left: 9.3rem;
	}

	&94 {
		left: 9.4rem;
	}

	&95 {
		left: 9.5rem;
	}

	&96 {
		left: 9.6rem;
	}

	&97 {
		left: 9.7rem;
	}

	&98 {
		left: 9.8rem;
	}

	&99 {
		left: 9.9rem;
	}

	&100 {
		left: 10.0rem;
	}

	&101 {
		left: 10.1rem;
	}

	&102 {
		left: 10.2rem;
	}

	&103 {
		left: 10.3rem;
	}

	&104 {
		left: 10.4rem;
	}

	&105 {
		left: 10.5rem;
	}

	&106 {
		left: 10.6rem;
	}

	&107 {
		left: 10.7rem;
	}

	&108 {
		left: 10.8rem;
	}

	&109 {
		left: 10.9rem;
	}

	&110 {
		left: 11.0rem;
	}

	&111 {
		left: 11.1rem;
	}

	&112 {
		left: 11.2rem;
	}

	&113 {
		left: 11.3rem;
	}

	&114 {
		left: 11.4rem;
	}

	&115 {
		left: 11.5rem;
	}

	&116 {
		left: 11.6rem;
	}

	&117 {
		left: 11.7rem;
	}

	&118 {
		left: 11.8rem;
	}

	&119 {
		left: 11.9rem;
	}

	&120 {
		left: 12.0rem;
	}

	&121 {
		left: 12.1rem;
	}

	&122 {
		left: 12.2rem;
	}

	&123 {
		left: 12.3rem;
	}

	&124 {
		left: 12.4rem;
	}

	&125 {
		left: 12.5rem;
	}

	&126 {
		left: 12.6rem;
	}

	&127 {
		left: 12.7rem;
	}

	&128 {
		left: 12.8rem;
	}

	&129 {
		left: 12.9rem;
	}

	&130 {
		left: 13.0rem;
	}

	&131 {
		left: 13.1rem;
	}

	&132 {
		left: 13.2rem;
	}

	&133 {
		left: 13.3rem;
	}

	&134 {
		left: 13.4rem;
	}

	&135 {
		left: 13.5rem;
	}

	&136 {
		left: 13.6rem;
	}

	&137 {
		left: 13.7rem;
	}

	&138 {
		left: 13.8rem;
	}

	&139 {
		left: 13.9rem;
	}

	&140 {
		left: 14.0rem;
	}

	&141 {
		left: 14.1rem;
	}

	&142 {
		left: 14.2rem;
	}

	&143 {
		left: 14.3rem;
	}

	&144 {
		left: 14.4rem;
	}

	&145 {
		left: 14.5rem;
	}

	&146 {
		left: 14.6rem;
	}

	&147 {
		left: 14.7rem;
	}

	&148 {
		left: 14.8rem;
	}

	&149 {
		left: 14.9rem;
	}

	&150 {
		left: 15.0rem;
	}

	&151 {
		left: 15.1rem;
	}

	&152 {
		left: 15.2rem;
	}

	&153 {
		left: 15.3rem;
	}

	&154 {
		left: 15.4rem;
	}

	&155 {
		left: 15.5rem;
	}

	&156 {
		left: 15.6rem;
	}

	&157 {
		left: 15.7rem;
	}

	&158 {
		left: 15.8rem;
	}

	&159 {
		left: 15.9rem;
	}

	&160 {
		left: 16.0rem;
	}

	&161 {
		left: 16.1rem;
	}

	&162 {
		left: 16.2rem;
	}

	&163 {
		left: 16.3rem;
	}

	&164 {
		left: 16.4rem;
	}

	&165 {
		left: 16.5rem;
	}

	&166 {
		left: 16.6rem;
	}

	&167 {
		left: 16.7rem;
	}

	&168 {
		left: 16.8rem;
	}

	&169 {
		left: 16.9rem;
	}

	&170 {
		left: 17.0rem;
	}

	&171 {
		left: 17.1rem;
	}

	&172 {
		left: 17.2rem;
	}

	&173 {
		left: 17.3rem;
	}

	&174 {
		left: 17.4rem;
	}

	&175 {
		left: 17.5rem;
	}

	&176 {
		left: 17.6rem;
	}

	&177 {
		left: 17.7rem;
	}

	&178 {
		left: 17.8rem;
	}

	&179 {
		left: 17.9rem;
	}

	&180 {
		left: 18.0rem;
	}

	&181 {
		left: 18.1rem;
	}

	&182 {
		left: 18.2rem;
	}

	&183 {
		left: 18.3rem;
	}

	&184 {
		left: 18.4rem;
	}

	&185 {
		left: 18.5rem;
	}

	&186 {
		left: 18.6rem;
	}

	&187 {
		left: 18.7rem;
	}

	&188 {
		left: 18.8rem;
	}

	&189 {
		left: 18.9rem;
	}

	&190 {
		left: 19.0rem;
	}

	&191 {
		left: 19.1rem;
	}

	&192 {
		left: 19.2rem;
	}

	&193 {
		left: 19.3rem;
	}

	&194 {
		left: 19.4rem;
	}

	&195 {
		left: 19.5rem;
	}

	&196 {
		left: 19.6rem;
	}

	&197 {
		left: 19.7rem;
	}

	&198 {
		left: 19.8rem;
	}

	&199 {
		left: 19.9rem;
	}

	&200 {
		left: 20.0rem;
	}
}




// ABSOLUTE POSIITON TOP
.pos-t--, .top--, .t-- {
	&00 {
		top: 0.0rem;
	}

	&01 {
		top: 0.1rem;
	}

	&02 {
		top: 0.2rem;
	}

	&03 {
		top: 0.3rem;
	}

	&04 {
		top: 0.4rem;
	}

	&05 {
		top: 0.5rem;
	}

	&06 {
		top: 0.6rem;
	}

	&07 {
		top: 0.7rem;
	}

	&08 {
		top: 0.8rem;
	}

	&09 {
		top: 0.9rem;
	}

	&10 {
		top: 1.0rem;
	}

	&11 {
		top: 1.1rem;
	}

	&12 {
		top: 1.2rem;
	}

	&13 {
		top: 1.3rem;
	}

	&14 {
		top: 1.4rem;
	}

	&15 {
		top: 1.5rem;
	}

	&16 {
		top: 1.6rem;
	}

	&17 {
		top: 1.7rem;
	}

	&18 {
		top: 1.8rem;
	}

	&19 {
		top: 1.9rem;
	}

	&20 {
		top: 2.0rem;
	}

	&21 {
		top: 2.1rem;
	}

	&22 {
		top: 2.2rem;
	}

	&23 {
		top: 2.3rem;
	}

	&24 {
		top: 2.4rem;
	}

	&25 {
		top: 2.5rem;
	}

	&26 {
		top: 2.6rem;
	}

	&27 {
		top: 2.7rem;
	}

	&28 {
		top: 2.8rem;
	}

	&29 {
		top: 2.9rem;
	}

	&30 {
		top: 3.0rem;
	}

	&31 {
		top: 3.1rem;
	}

	&32 {
		top: 3.2rem;
	}

	&33 {
		top: 3.3rem;
	}

	&34 {
		top: 3.4rem;
	}

	&35 {
		top: 3.5rem;
	}

	&36 {
		top: 3.6rem;
	}

	&37 {
		top: 3.7rem;
	}

	&38 {
		top: 3.8rem;
	}

	&39 {
		top: 3.9rem;
	}

	&40 {
		top: 4.0rem;
	}

	&41 {
		top: 4.1rem;
	}

	&42 {
		top: 4.2rem;
	}

	&43 {
		top: 4.3rem;
	}

	&44 {
		top: 4.4rem;
	}

	&45 {
		top: 4.5rem;
	}

	&46 {
		top: 4.6rem;
	}

	&47 {
		top: 4.7rem;
	}

	&48 {
		top: 4.8rem;
	}

	&49 {
		top: 4.9rem;
	}

	&50 {
		top: 5.0rem;
	}

	&51 {
		top: 5.1rem;
	}

	&52 {
		top: 5.2rem;
	}

	&53 {
		top: 5.3rem;
	}

	&54 {
		top: 5.4rem;
	}

	&55 {
		top: 5.5rem;
	}

	&56 {
		top: 5.6rem;
	}

	&57 {
		top: 5.7rem;
	}

	&58 {
		top: 5.8rem;
	}

	&59 {
		top: 5.9rem;
	}

	&60 {
		top: 6.0rem;
	}

	&61 {
		top: 6.1rem;
	}

	&62 {
		top: 6.2rem;
	}

	&63 {
		top: 6.3rem;
	}

	&64 {
		top: 6.4rem;
	}

	&65 {
		top: 6.5rem;
	}

	&66 {
		top: 6.6rem;
	}

	&67 {
		top: 6.7rem;
	}

	&68 {
		top: 6.8rem;
	}

	&69 {
		top: 6.9rem;
	}

	&70 {
		top: 7.0rem;
	}

	&71 {
		top: 7.1rem;
	}

	&72 {
		top: 7.2rem;
	}

	&73 {
		top: 7.3rem;
	}

	&74 {
		top: 7.4rem;
	}

	&75 {
		top: 7.5rem;
	}

	&76 {
		top: 7.6rem;
	}

	&77 {
		top: 7.7rem;
	}

	&78 {
		top: 7.8rem;
	}

	&79 {
		top: 7.9rem;
	}

	&80 {
		top: 8.0rem;
	}

	&81 {
		top: 8.1rem;
	}

	&82 {
		top: 8.2rem;
	}

	&83 {
		top: 8.3rem;
	}

	&84 {
		top: 8.4rem;
	}

	&85 {
		top: 8.5rem;
	}

	&86 {
		top: 8.6rem;
	}

	&87 {
		top: 8.7rem;
	}

	&88 {
		top: 8.8rem;
	}

	&89 {
		top: 8.9rem;
	}

	&90 {
		top: 9.0rem;
	}

	&91 {
		top: 9.1rem;
	}

	&92 {
		top: 9.2rem;
	}

	&93 {
		top: 9.3rem;
	}

	&94 {
		top: 9.4rem;
	}

	&95 {
		top: 9.5rem;
	}

	&96 {
		top: 9.6rem;
	}

	&97 {
		top: 9.7rem;
	}

	&98 {
		top: 9.8rem;
	}

	&99 {
		top: 9.9rem;
	}

	&100 {
		top: 10.0rem;
	}

	&101 {
		top: 10.1rem;
	}

	&102 {
		top: 10.2rem;
	}

	&103 {
		top: 10.3rem;
	}

	&104 {
		top: 10.4rem;
	}

	&105 {
		top: 10.5rem;
	}

	&106 {
		top: 10.6rem;
	}

	&107 {
		top: 10.7rem;
	}

	&108 {
		top: 10.8rem;
	}

	&109 {
		top: 10.9rem;
	}

	&110 {
		top: 11.0rem;
	}

	&111 {
		top: 11.1rem;
	}

	&112 {
		top: 11.2rem;
	}

	&113 {
		top: 11.3rem;
	}

	&114 {
		top: 11.4rem;
	}

	&115 {
		top: 11.5rem;
	}

	&116 {
		top: 11.6rem;
	}

	&117 {
		top: 11.7rem;
	}

	&118 {
		top: 11.8rem;
	}

	&119 {
		top: 11.9rem;
	}

	&120 {
		top: 12.0rem;
	}

	&121 {
		top: 12.1rem;
	}

	&122 {
		top: 12.2rem;
	}

	&123 {
		top: 12.3rem;
	}

	&124 {
		top: 12.4rem;
	}

	&125 {
		top: 12.5rem;
	}

	&126 {
		top: 12.6rem;
	}

	&127 {
		top: 12.7rem;
	}

	&128 {
		top: 12.8rem;
	}

	&129 {
		top: 12.9rem;
	}

	&130 {
		top: 13.0rem;
	}

	&131 {
		top: 13.1rem;
	}

	&132 {
		top: 13.2rem;
	}

	&133 {
		top: 13.3rem;
	}

	&134 {
		top: 13.4rem;
	}

	&135 {
		top: 13.5rem;
	}

	&136 {
		top: 13.6rem;
	}

	&137 {
		top: 13.7rem;
	}

	&138 {
		top: 13.8rem;
	}

	&139 {
		top: 13.9rem;
	}

	&140 {
		top: 14.0rem;
	}

	&141 {
		top: 14.1rem;
	}

	&142 {
		top: 14.2rem;
	}

	&143 {
		top: 14.3rem;
	}

	&144 {
		top: 14.4rem;
	}

	&145 {
		top: 14.5rem;
	}

	&146 {
		top: 14.6rem;
	}

	&147 {
		top: 14.7rem;
	}

	&148 {
		top: 14.8rem;
	}

	&149 {
		top: 14.9rem;
	}

	&150 {
		top: 15.0rem;
	}

	&151 {
		top: 15.1rem;
	}

	&152 {
		top: 15.2rem;
	}

	&153 {
		top: 15.3rem;
	}

	&154 {
		top: 15.4rem;
	}

	&155 {
		top: 15.5rem;
	}

	&156 {
		top: 15.6rem;
	}

	&157 {
		top: 15.7rem;
	}

	&158 {
		top: 15.8rem;
	}

	&159 {
		top: 15.9rem;
	}

	&160 {
		top: 16.0rem;
	}

	&161 {
		top: 16.1rem;
	}

	&162 {
		top: 16.2rem;
	}

	&163 {
		top: 16.3rem;
	}

	&164 {
		top: 16.4rem;
	}

	&165 {
		top: 16.5rem;
	}

	&166 {
		top: 16.6rem;
	}

	&167 {
		top: 16.7rem;
	}

	&168 {
		top: 16.8rem;
	}

	&169 {
		top: 16.9rem;
	}

	&170 {
		top: 17.0rem;
	}

	&171 {
		top: 17.1rem;
	}

	&172 {
		top: 17.2rem;
	}

	&173 {
		top: 17.3rem;
	}

	&174 {
		top: 17.4rem;
	}

	&175 {
		top: 17.5rem;
	}

	&176 {
		top: 17.6rem;
	}

	&177 {
		top: 17.7rem;
	}

	&178 {
		top: 17.8rem;
	}

	&179 {
		top: 17.9rem;
	}

	&180 {
		top: 18.0rem;
	}

	&181 {
		top: 18.1rem;
	}

	&182 {
		top: 18.2rem;
	}

	&183 {
		top: 18.3rem;
	}

	&184 {
		top: 18.4rem;
	}

	&185 {
		top: 18.5rem;
	}

	&186 {
		top: 18.6rem;
	}

	&187 {
		top: 18.7rem;
	}

	&188 {
		top: 18.8rem;
	}

	&189 {
		top: 18.9rem;
	}

	&190 {
		top: 19.0rem;
	}

	&191 {
		top: 19.1rem;
	}

	&192 {
		top: 19.2rem;
	}

	&193 {
		top: 19.3rem;
	}

	&194 {
		top: 19.4rem;
	}

	&195 {
		top: 19.5rem;
	}

	&196 {
		top: 19.6rem;
	}

	&197 {
		top: 19.7rem;
	}

	&198 {
		top: 19.8rem;
	}

	&199 {
		top: 19.9rem;
	}

	&200 {
		top: 20.0rem;
	}
}




// ABSOLUTE POSIITON RIGHT
.pos-r--, .right--, .r-- {
	&00 {
		right: 0.0rem;
	}

	&01 {
		right: 0.1rem;
	}

	&02 {
		right: 0.2rem;
	}

	&03 {
		right: 0.3rem;
	}

	&04 {
		right: 0.4rem;
	}

	&05 {
		right: 0.5rem;
	}

	&06 {
		right: 0.6rem;
	}

	&07 {
		right: 0.7rem;
	}

	&08 {
		right: 0.8rem;
	}

	&09 {
		right: 0.9rem;
	}

	&10 {
		right: 1.0rem;
	}

	&11 {
		right: 1.1rem;
	}

	&12 {
		right: 1.2rem;
	}

	&13 {
		right: 1.3rem;
	}

	&14 {
		right: 1.4rem;
	}

	&15 {
		right: 1.5rem;
	}

	&16 {
		right: 1.6rem;
	}

	&17 {
		right: 1.7rem;
	}

	&18 {
		right: 1.8rem;
	}

	&19 {
		right: 1.9rem;
	}

	&20 {
		right: 2.0rem;
	}

	&21 {
		right: 2.1rem;
	}

	&22 {
		right: 2.2rem;
	}

	&23 {
		right: 2.3rem;
	}

	&24 {
		right: 2.4rem;
	}

	&25 {
		right: 2.5rem;
	}

	&26 {
		right: 2.6rem;
	}

	&27 {
		right: 2.7rem;
	}

	&28 {
		right: 2.8rem;
	}

	&29 {
		right: 2.9rem;
	}

	&30 {
		right: 3.0rem;
	}

	&31 {
		right: 3.1rem;
	}

	&32 {
		right: 3.2rem;
	}

	&33 {
		right: 3.3rem;
	}

	&34 {
		right: 3.4rem;
	}

	&35 {
		right: 3.5rem;
	}

	&36 {
		right: 3.6rem;
	}

	&37 {
		right: 3.7rem;
	}

	&38 {
		right: 3.8rem;
	}

	&39 {
		right: 3.9rem;
	}

	&40 {
		right: 4.0rem;
	}

	&41 {
		right: 4.1rem;
	}

	&42 {
		right: 4.2rem;
	}

	&43 {
		right: 4.3rem;
	}

	&44 {
		right: 4.4rem;
	}

	&45 {
		right: 4.5rem;
	}

	&46 {
		right: 4.6rem;
	}

	&47 {
		right: 4.7rem;
	}

	&48 {
		right: 4.8rem;
	}

	&49 {
		right: 4.9rem;
	}

	&50 {
		right: 5.0rem;
	}

	&51 {
		right: 5.1rem;
	}

	&52 {
		right: 5.2rem;
	}

	&53 {
		right: 5.3rem;
	}

	&54 {
		right: 5.4rem;
	}

	&55 {
		right: 5.5rem;
	}

	&56 {
		right: 5.6rem;
	}

	&57 {
		right: 5.7rem;
	}

	&58 {
		right: 5.8rem;
	}

	&59 {
		right: 5.9rem;
	}

	&60 {
		right: 6.0rem;
	}

	&61 {
		right: 6.1rem;
	}

	&62 {
		right: 6.2rem;
	}

	&63 {
		right: 6.3rem;
	}

	&64 {
		right: 6.4rem;
	}

	&65 {
		right: 6.5rem;
	}

	&66 {
		right: 6.6rem;
	}

	&67 {
		right: 6.7rem;
	}

	&68 {
		right: 6.8rem;
	}

	&69 {
		right: 6.9rem;
	}

	&70 {
		right: 7.0rem;
	}

	&71 {
		right: 7.1rem;
	}

	&72 {
		right: 7.2rem;
	}

	&73 {
		right: 7.3rem;
	}

	&74 {
		right: 7.4rem;
	}

	&75 {
		right: 7.5rem;
	}

	&76 {
		right: 7.6rem;
	}

	&77 {
		right: 7.7rem;
	}

	&78 {
		right: 7.8rem;
	}

	&79 {
		right: 7.9rem;
	}

	&80 {
		right: 8.0rem;
	}

	&81 {
		right: 8.1rem;
	}

	&82 {
		right: 8.2rem;
	}

	&83 {
		right: 8.3rem;
	}

	&84 {
		right: 8.4rem;
	}

	&85 {
		right: 8.5rem;
	}

	&86 {
		right: 8.6rem;
	}

	&87 {
		right: 8.7rem;
	}

	&88 {
		right: 8.8rem;
	}

	&89 {
		right: 8.9rem;
	}

	&90 {
		right: 9.0rem;
	}

	&91 {
		right: 9.1rem;
	}

	&92 {
		right: 9.2rem;
	}

	&93 {
		right: 9.3rem;
	}

	&94 {
		right: 9.4rem;
	}

	&95 {
		right: 9.5rem;
	}

	&96 {
		right: 9.6rem;
	}

	&97 {
		right: 9.7rem;
	}

	&98 {
		right: 9.8rem;
	}

	&99 {
		right: 9.9rem;
	}

	&100 {
		right: 10.0rem;
	}

	&101 {
		right: 10.1rem;
	}

	&102 {
		right: 10.2rem;
	}

	&103 {
		right: 10.3rem;
	}

	&104 {
		right: 10.4rem;
	}

	&105 {
		right: 10.5rem;
	}

	&106 {
		right: 10.6rem;
	}

	&107 {
		right: 10.7rem;
	}

	&108 {
		right: 10.8rem;
	}

	&109 {
		right: 10.9rem;
	}

	&110 {
		right: 11.0rem;
	}

	&111 {
		right: 11.1rem;
	}

	&112 {
		right: 11.2rem;
	}

	&113 {
		right: 11.3rem;
	}

	&114 {
		right: 11.4rem;
	}

	&115 {
		right: 11.5rem;
	}

	&116 {
		right: 11.6rem;
	}

	&117 {
		right: 11.7rem;
	}

	&118 {
		right: 11.8rem;
	}

	&119 {
		right: 11.9rem;
	}

	&120 {
		right: 12.0rem;
	}

	&121 {
		right: 12.1rem;
	}

	&122 {
		right: 12.2rem;
	}

	&123 {
		right: 12.3rem;
	}

	&124 {
		right: 12.4rem;
	}

	&125 {
		right: 12.5rem;
	}

	&126 {
		right: 12.6rem;
	}

	&127 {
		right: 12.7rem;
	}

	&128 {
		right: 12.8rem;
	}

	&129 {
		right: 12.9rem;
	}

	&130 {
		right: 13.0rem;
	}

	&131 {
		right: 13.1rem;
	}

	&132 {
		right: 13.2rem;
	}

	&133 {
		right: 13.3rem;
	}

	&134 {
		right: 13.4rem;
	}

	&135 {
		right: 13.5rem;
	}

	&136 {
		right: 13.6rem;
	}

	&137 {
		right: 13.7rem;
	}

	&138 {
		right: 13.8rem;
	}

	&139 {
		right: 13.9rem;
	}

	&140 {
		right: 14.0rem;
	}

	&141 {
		right: 14.1rem;
	}

	&142 {
		right: 14.2rem;
	}

	&143 {
		right: 14.3rem;
	}

	&144 {
		right: 14.4rem;
	}

	&145 {
		right: 14.5rem;
	}

	&146 {
		right: 14.6rem;
	}

	&147 {
		right: 14.7rem;
	}

	&148 {
		right: 14.8rem;
	}

	&149 {
		right: 14.9rem;
	}

	&150 {
		right: 15.0rem;
	}

	&151 {
		right: 15.1rem;
	}

	&152 {
		right: 15.2rem;
	}

	&153 {
		right: 15.3rem;
	}

	&154 {
		right: 15.4rem;
	}

	&155 {
		right: 15.5rem;
	}

	&156 {
		right: 15.6rem;
	}

	&157 {
		right: 15.7rem;
	}

	&158 {
		right: 15.8rem;
	}

	&159 {
		right: 15.9rem;
	}

	&160 {
		right: 16.0rem;
	}

	&161 {
		right: 16.1rem;
	}

	&162 {
		right: 16.2rem;
	}

	&163 {
		right: 16.3rem;
	}

	&164 {
		right: 16.4rem;
	}

	&165 {
		right: 16.5rem;
	}

	&166 {
		right: 16.6rem;
	}

	&167 {
		right: 16.7rem;
	}

	&168 {
		right: 16.8rem;
	}

	&169 {
		right: 16.9rem;
	}

	&170 {
		right: 17.0rem;
	}

	&171 {
		right: 17.1rem;
	}

	&172 {
		right: 17.2rem;
	}

	&173 {
		right: 17.3rem;
	}

	&174 {
		right: 17.4rem;
	}

	&175 {
		right: 17.5rem;
	}

	&176 {
		right: 17.6rem;
	}

	&177 {
		right: 17.7rem;
	}

	&178 {
		right: 17.8rem;
	}

	&179 {
		right: 17.9rem;
	}

	&180 {
		right: 18.0rem;
	}

	&181 {
		right: 18.1rem;
	}

	&182 {
		right: 18.2rem;
	}

	&183 {
		right: 18.3rem;
	}

	&184 {
		right: 18.4rem;
	}

	&185 {
		right: 18.5rem;
	}

	&186 {
		right: 18.6rem;
	}

	&187 {
		right: 18.7rem;
	}

	&188 {
		right: 18.8rem;
	}

	&189 {
		right: 18.9rem;
	}

	&190 {
		right: 19.0rem;
	}

	&191 {
		right: 19.1rem;
	}

	&192 {
		right: 19.2rem;
	}

	&193 {
		right: 19.3rem;
	}

	&194 {
		right: 19.4rem;
	}

	&195 {
		right: 19.5rem;
	}

	&196 {
		right: 19.6rem;
	}

	&197 {
		right: 19.7rem;
	}

	&198 {
		right: 19.8rem;
	}

	&199 {
		right: 19.9rem;
	}

	&200 {
		right: 20.0rem;
	}

}




// ABSOLUTE POSIITON BOTTOM
.pos-b--, .bottom--, .b-- {
	&00 {
		bottom: 0.0rem;
	}

	&01 {
		bottom: 0.1rem;
	}

	&02 {
		bottom: 0.2rem;
	}

	&03 {
		bottom: 0.3rem;
	}

	&04 {
		bottom: 0.4rem;
	}

	&05 {
		bottom: 0.5rem;
	}

	&06 {
		bottom: 0.6rem;
	}

	&07 {
		bottom: 0.7rem;
	}

	&08 {
		bottom: 0.8rem;
	}

	&09 {
		bottom: 0.9rem;
	}

	&10 {
		bottom: 1.0rem;
	}

	&11 {
		bottom: 1.1rem;
	}

	&12 {
		bottom: 1.2rem;
	}

	&13 {
		bottom: 1.3rem;
	}

	&14 {
		bottom: 1.4rem;
	}

	&15 {
		bottom: 1.5rem;
	}

	&16 {
		bottom: 1.6rem;
	}

	&17 {
		bottom: 1.7rem;
	}

	&18 {
		bottom: 1.8rem;
	}

	&19 {
		bottom: 1.9rem;
	}

	&20 {
		bottom: 2.0rem;
	}

	&21 {
		bottom: 2.1rem;
	}

	&22 {
		bottom: 2.2rem;
	}

	&23 {
		bottom: 2.3rem;
	}

	&24 {
		bottom: 2.4rem;
	}

	&25 {
		bottom: 2.5rem;
	}

	&26 {
		bottom: 2.6rem;
	}

	&27 {
		bottom: 2.7rem;
	}

	&28 {
		bottom: 2.8rem;
	}

	&29 {
		bottom: 2.9rem;
	}

	&30 {
		bottom: 3.0rem;
	}

	&31 {
		bottom: 3.1rem;
	}

	&32 {
		bottom: 3.2rem;
	}

	&33 {
		bottom: 3.3rem;
	}

	&34 {
		bottom: 3.4rem;
	}

	&35 {
		bottom: 3.5rem;
	}

	&36 {
		bottom: 3.6rem;
	}

	&37 {
		bottom: 3.7rem;
	}

	&38 {
		bottom: 3.8rem;
	}

	&39 {
		bottom: 3.9rem;
	}

	&40 {
		bottom: 4.0rem;
	}

	&41 {
		bottom: 4.1rem;
	}

	&42 {
		bottom: 4.2rem;
	}

	&43 {
		bottom: 4.3rem;
	}

	&44 {
		bottom: 4.4rem;
	}

	&45 {
		bottom: 4.5rem;
	}

	&46 {
		bottom: 4.6rem;
	}

	&47 {
		bottom: 4.7rem;
	}

	&48 {
		bottom: 4.8rem;
	}

	&49 {
		bottom: 4.9rem;
	}

	&50 {
		bottom: 5.0rem;
	}

	&51 {
		bottom: 5.1rem;
	}

	&52 {
		bottom: 5.2rem;
	}

	&53 {
		bottom: 5.3rem;
	}

	&54 {
		bottom: 5.4rem;
	}

	&55 {
		bottom: 5.5rem;
	}

	&56 {
		bottom: 5.6rem;
	}

	&57 {
		bottom: 5.7rem;
	}

	&58 {
		bottom: 5.8rem;
	}

	&59 {
		bottom: 5.9rem;
	}

	&60 {
		bottom: 6.0rem;
	}

	&61 {
		bottom: 6.1rem;
	}

	&62 {
		bottom: 6.2rem;
	}

	&63 {
		bottom: 6.3rem;
	}

	&64 {
		bottom: 6.4rem;
	}

	&65 {
		bottom: 6.5rem;
	}

	&66 {
		bottom: 6.6rem;
	}

	&67 {
		bottom: 6.7rem;
	}

	&68 {
		bottom: 6.8rem;
	}

	&69 {
		bottom: 6.9rem;
	}

	&70 {
		bottom: 7.0rem;
	}

	&71 {
		bottom: 7.1rem;
	}

	&72 {
		bottom: 7.2rem;
	}

	&73 {
		bottom: 7.3rem;
	}

	&74 {
		bottom: 7.4rem;
	}

	&75 {
		bottom: 7.5rem;
	}

	&76 {
		bottom: 7.6rem;
	}

	&77 {
		bottom: 7.7rem;
	}

	&78 {
		bottom: 7.8rem;
	}

	&79 {
		bottom: 7.9rem;
	}

	&80 {
		bottom: 8.0rem;
	}

	&81 {
		bottom: 8.1rem;
	}

	&82 {
		bottom: 8.2rem;
	}

	&83 {
		bottom: 8.3rem;
	}

	&84 {
		bottom: 8.4rem;
	}

	&85 {
		bottom: 8.5rem;
	}

	&86 {
		bottom: 8.6rem;
	}

	&87 {
		bottom: 8.7rem;
	}

	&88 {
		bottom: 8.8rem;
	}

	&89 {
		bottom: 8.9rem;
	}

	&90 {
		bottom: 9.0rem;
	}

	&91 {
		bottom: 9.1rem;
	}

	&92 {
		bottom: 9.2rem;
	}

	&93 {
		bottom: 9.3rem;
	}

	&94 {
		bottom: 9.4rem;
	}

	&95 {
		bottom: 9.5rem;
	}

	&96 {
		bottom: 9.6rem;
	}

	&97 {
		bottom: 9.7rem;
	}

	&98 {
		bottom: 9.8rem;
	}

	&99 {
		bottom: 9.9rem;
	}

	&100 {
		bottom: 10.0rem;
	}

	&101 {
		bottom: 10.1rem;
	}

	&102 {
		bottom: 10.2rem;
	}

	&103 {
		bottom: 10.3rem;
	}

	&104 {
		bottom: 10.4rem;
	}

	&105 {
		bottom: 10.5rem;
	}

	&106 {
		bottom: 10.6rem;
	}

	&107 {
		bottom: 10.7rem;
	}

	&108 {
		bottom: 10.8rem;
	}

	&109 {
		bottom: 10.9rem;
	}

	&110 {
		bottom: 11.0rem;
	}

	&111 {
		bottom: 11.1rem;
	}

	&112 {
		bottom: 11.2rem;
	}

	&113 {
		bottom: 11.3rem;
	}

	&114 {
		bottom: 11.4rem;
	}

	&115 {
		bottom: 11.5rem;
	}

	&116 {
		bottom: 11.6rem;
	}

	&117 {
		bottom: 11.7rem;
	}

	&118 {
		bottom: 11.8rem;
	}

	&119 {
		bottom: 11.9rem;
	}

	&120 {
		bottom: 12.0rem;
	}

	&121 {
		bottom: 12.1rem;
	}

	&122 {
		bottom: 12.2rem;
	}

	&123 {
		bottom: 12.3rem;
	}

	&124 {
		bottom: 12.4rem;
	}

	&125 {
		bottom: 12.5rem;
	}

	&126 {
		bottom: 12.6rem;
	}

	&127 {
		bottom: 12.7rem;
	}

	&128 {
		bottom: 12.8rem;
	}

	&129 {
		bottom: 12.9rem;
	}

	&130 {
		bottom: 13.0rem;
	}

	&131 {
		bottom: 13.1rem;
	}

	&132 {
		bottom: 13.2rem;
	}

	&133 {
		bottom: 13.3rem;
	}

	&134 {
		bottom: 13.4rem;
	}

	&135 {
		bottom: 13.5rem;
	}

	&136 {
		bottom: 13.6rem;
	}

	&137 {
		bottom: 13.7rem;
	}

	&138 {
		bottom: 13.8rem;
	}

	&139 {
		bottom: 13.9rem;
	}

	&140 {
		bottom: 14.0rem;
	}

	&141 {
		bottom: 14.1rem;
	}

	&142 {
		bottom: 14.2rem;
	}

	&143 {
		bottom: 14.3rem;
	}

	&144 {
		bottom: 14.4rem;
	}

	&145 {
		bottom: 14.5rem;
	}

	&146 {
		bottom: 14.6rem;
	}

	&147 {
		bottom: 14.7rem;
	}

	&148 {
		bottom: 14.8rem;
	}

	&149 {
		bottom: 14.9rem;
	}

	&150 {
		bottom: 15.0rem;
	}

	&151 {
		bottom: 15.1rem;
	}

	&152 {
		bottom: 15.2rem;
	}

	&153 {
		bottom: 15.3rem;
	}

	&154 {
		bottom: 15.4rem;
	}

	&155 {
		bottom: 15.5rem;
	}

	&156 {
		bottom: 15.6rem;
	}

	&157 {
		bottom: 15.7rem;
	}

	&158 {
		bottom: 15.8rem;
	}

	&159 {
		bottom: 15.9rem;
	}

	&160 {
		bottom: 16.0rem;
	}

	&161 {
		bottom: 16.1rem;
	}

	&162 {
		bottom: 16.2rem;
	}

	&163 {
		bottom: 16.3rem;
	}

	&164 {
		bottom: 16.4rem;
	}

	&165 {
		bottom: 16.5rem;
	}

	&166 {
		bottom: 16.6rem;
	}

	&167 {
		bottom: 16.7rem;
	}

	&168 {
		bottom: 16.8rem;
	}

	&169 {
		bottom: 16.9rem;
	}

	&170 {
		bottom: 17.0rem;
	}

	&171 {
		bottom: 17.1rem;
	}

	&172 {
		bottom: 17.2rem;
	}

	&173 {
		bottom: 17.3rem;
	}

	&174 {
		bottom: 17.4rem;
	}

	&175 {
		bottom: 17.5rem;
	}

	&176 {
		bottom: 17.6rem;
	}

	&177 {
		bottom: 17.7rem;
	}

	&178 {
		bottom: 17.8rem;
	}

	&179 {
		bottom: 17.9rem;
	}

	&180 {
		bottom: 18.0rem;
	}

	&181 {
		bottom: 18.1rem;
	}

	&182 {
		bottom: 18.2rem;
	}

	&183 {
		bottom: 18.3rem;
	}

	&184 {
		bottom: 18.4rem;
	}

	&185 {
		bottom: 18.5rem;
	}

	&186 {
		bottom: 18.6rem;
	}

	&187 {
		bottom: 18.7rem;
	}

	&188 {
		bottom: 18.8rem;
	}

	&189 {
		bottom: 18.9rem;
	}

	&190 {
		bottom: 19.0rem;
	}

	&191 {
		bottom: 19.1rem;
	}

	&192 {
		bottom: 19.2rem;
	}

	&193 {
		bottom: 19.3rem;
	}

	&194 {
		bottom: 19.4rem;
	}

	&195 {
		bottom: 19.5rem;
	}

	&196 {
		bottom: 19.6rem;
	}

	&197 {
		bottom: 19.7rem;
	}

	&198 {
		bottom: 19.8rem;
	}

	&199 {
		bottom: 19.9rem;
	}

	&200 {
		bottom: 20.0rem;
	}

}



// ABSOLUTE POSIITON LEFT TOP
.pos-lt--,
.pos-tl--,
.lt--,
.tl-- {
	&00 {
		left: 0.0rem;
		top: 0.0rem;
	}

	&01 {
		left: 0.1rem;
		top: 0.1rem;
	}

	&02 {
		left: 0.2rem;
		top: 0.2rem;
	}

	&03 {
		left: 0.3rem;
		top: 0.3rem;
	}

	&04 {
		left: 0.4rem;
		top: 0.4rem;
	}

	&05 {
		left: 0.5rem;
		top: 0.5rem;
	}

	&06 {
		left: 0.6rem;
		top: 0.6rem;
	}

	&07 {
		left: 0.7rem;
		top: 0.7rem;
	}

	&08 {
		left: 0.8rem;
		top: 0.8rem;
	}

	&09 {
		left: 0.9rem;
		top: 0.9rem;
	}

	&10 {
		left: 1.0rem;
		top: 1.0rem;
	}

	&11 {
		left: 1.1rem;
		top: 1.1rem;
	}

	&12 {
		left: 1.2rem;
		top: 1.2rem;
	}

	&13 {
		left: 1.3rem;
		top: 1.3rem;
	}

	&14 {
		left: 1.4rem;
		top: 1.4rem;
	}

	&15 {
		left: 1.5rem;
		top: 1.5rem;
	}

	&16 {
		left: 1.6rem;
		top: 1.6rem;
	}

	&17 {
		left: 1.7rem;
		top: 1.7rem;
	}

	&18 {
		left: 1.8rem;
		top: 1.8rem;
	}

	&19 {
		left: 1.9rem;
		top: 1.9rem;
	}

	&20 {
		left: 2.0rem;
		top: 2.0rem;
	}

	&21 {
		left: 2.1rem;
		top: 2.1rem;
	}

	&22 {
		left: 2.2rem;
		top: 2.2rem;
	}

	&23 {
		left: 2.3rem;
		top: 2.3rem;
	}

	&24 {
		left: 2.4rem;
		top: 2.4rem;
	}

	&25 {
		left: 2.5rem;
		top: 2.5rem;
	}

	&26 {
		left: 2.6rem;
		top: 2.6rem;
	}

	&27 {
		left: 2.7rem;
		top: 2.7rem;
	}

	&28 {
		left: 2.8rem;
		top: 2.8rem;
	}

	&29 {
		left: 2.9rem;
		top: 2.9rem;
	}

	&30 {
		left: 3.0rem;
		top: 3.0rem;
	}

	&31 {
		left: 3.1rem;
		top: 3.1rem;
	}

	&32 {
		left: 3.2rem;
		top: 3.2rem;
	}

	&33 {
		left: 3.3rem;
		top: 3.3rem;
	}

	&34 {
		left: 3.4rem;
		top: 3.4rem;
	}

	&35 {
		left: 3.5rem;
		top: 3.5rem;
	}

	&36 {
		left: 3.6rem;
		top: 3.6rem;
	}

	&37 {
		left: 3.7rem;
		top: 3.7rem;
	}

	&38 {
		left: 3.8rem;
		top: 3.8rem;
	}

	&39 {
		left: 3.9rem;
		top: 3.9rem;
	}

	&40 {
		left: 4.0rem;
		top: 4.0rem;
	}

	&41 {
		left: 4.1rem;
		top: 4.1rem;
	}

	&42 {
		left: 4.2rem;
		top: 4.2rem;
	}

	&43 {
		left: 4.3rem;
		top: 4.3rem;
	}

	&44 {
		left: 4.4rem;
		top: 4.4rem;
	}

	&45 {
		left: 4.5rem;
		top: 4.5rem;
	}

	&46 {
		left: 4.6rem;
		top: 4.6rem;
	}

	&47 {
		left: 4.7rem;
		top: 4.7rem;
	}

	&48 {
		left: 4.8rem;
		top: 4.8rem;
	}

	&49 {
		left: 4.9rem;
		top: 4.9rem;
	}

	&50 {
		left: 5.0rem;
		top: 5.0rem;
	}

	&51 {
		left: 5.1rem;
		top: 5.1rem;
	}

	&52 {
		left: 5.2rem;
		top: 5.2rem;
	}

	&53 {
		left: 5.3rem;
		top: 5.3rem;
	}

	&54 {
		left: 5.4rem;
		top: 5.4rem;
	}

	&55 {
		left: 5.5rem;
		top: 5.5rem;
	}

	&56 {
		left: 5.6rem;
		top: 5.6rem;
	}

	&57 {
		left: 5.7rem;
		top: 5.7rem;
	}

	&58 {
		left: 5.8rem;
		top: 5.8rem;
	}

	&59 {
		left: 5.9rem;
		top: 5.9rem;
	}

	&60 {
		left: 6.0rem;
		top: 6.0rem;
	}

	&61 {
		left: 6.1rem;
		top: 6.1rem;
	}

	&62 {
		left: 6.2rem;
		top: 6.2rem;
	}

	&63 {
		left: 6.3rem;
		top: 6.3rem;
	}

	&64 {
		left: 6.4rem;
		top: 6.4rem;
	}

	&65 {
		left: 6.5rem;
		top: 6.5rem;
	}

	&66 {
		left: 6.6rem;
		top: 6.6rem;
	}

	&67 {
		left: 6.7rem;
		top: 6.7rem;
	}

	&68 {
		left: 6.8rem;
		top: 6.8rem;
	}

	&69 {
		left: 6.9rem;
		top: 6.9rem;
	}

	&70 {
		left: 7.0rem;
		top: 7.0rem;
	}

	&71 {
		left: 7.1rem;
		top: 7.1rem;
	}

	&72 {
		left: 7.2rem;
		top: 7.2rem;
	}

	&73 {
		left: 7.3rem;
		top: 7.3rem;
	}

	&74 {
		left: 7.4rem;
		top: 7.4rem;
	}

	&75 {
		left: 7.5rem;
		top: 7.5rem;
	}

	&76 {
		left: 7.6rem;
		top: 7.6rem;
	}

	&77 {
		left: 7.7rem;
		top: 7.7rem;
	}

	&78 {
		left: 7.8rem;
		top: 7.8rem;
	}

	&79 {
		left: 7.9rem;
		top: 7.9rem;
	}

	&80 {
		left: 8.0rem;
		top: 8.0rem;
	}

	&81 {
		left: 8.1rem;
		top: 8.1rem;
	}

	&82 {
		left: 8.2rem;
		top: 8.2rem;
	}

	&83 {
		left: 8.3rem;
		top: 8.3rem;
	}

	&84 {
		left: 8.4rem;
		top: 8.4rem;
	}

	&85 {
		left: 8.5rem;
		top: 8.5rem;
	}

	&86 {
		left: 8.6rem;
		top: 8.6rem;
	}

	&87 {
		left: 8.7rem;
		top: 8.7rem;
	}

	&88 {
		left: 8.8rem;
		top: 8.8rem;
	}

	&89 {
		left: 8.9rem;
		top: 8.9rem;
	}

	&90 {
		left: 9.0rem;
		top: 9.0rem;
	}

	&91 {
		left: 9.1rem;
		top: 9.1rem;
	}

	&92 {
		left: 9.2rem;
		top: 9.2rem;
	}

	&93 {
		left: 9.3rem;
		top: 9.3rem;
	}

	&94 {
		left: 9.4rem;
		top: 9.4rem;
	}

	&95 {
		left: 9.5rem;
		top: 9.5rem;
	}

	&96 {
		left: 9.6rem;
		top: 9.6rem;
	}

	&97 {
		left: 9.7rem;
		top: 9.7rem;
	}

	&98 {
		left: 9.8rem;
		top: 9.8rem;
	}

	&99 {
		left: 9.9rem;
		top: 9.9rem;
	}

	&100 {
		left: 10.0rem;
		top: 10.0rem;
	}

	&101 {
		left: 10.1rem;
		top: 10.1rem;
	}

	&102 {
		left: 10.2rem;
		top: 10.2rem;
	}

	&103 {
		left: 10.3rem;
		top: 10.3rem;
	}

	&104 {
		left: 10.4rem;
		top: 10.4rem;
	}

	&105 {
		left: 10.5rem;
		top: 10.5rem;
	}

	&106 {
		left: 10.6rem;
		top: 10.6rem;
	}

	&107 {
		left: 10.7rem;
		top: 10.7rem;
	}

	&108 {
		left: 10.8rem;
		top: 10.8rem;
	}

	&109 {
		left: 10.9rem;
		top: 10.9rem;
	}

	&110 {
		left: 11.0rem;
		top: 11.0rem;
	}

	&111 {
		left: 11.1rem;
		top: 11.1rem;
	}

	&112 {
		left: 11.2rem;
		top: 11.2rem;
	}

	&113 {
		left: 11.3rem;
		top: 11.3rem;
	}

	&114 {
		left: 11.4rem;
		top: 11.4rem;
	}

	&115 {
		left: 11.5rem;
		top: 11.5rem;
	}

	&116 {
		left: 11.6rem;
		top: 11.6rem;
	}

	&117 {
		left: 11.7rem;
		top: 11.7rem;
	}

	&118 {
		left: 11.8rem;
		top: 11.8rem;
	}

	&119 {
		left: 11.9rem;
		top: 11.9rem;
	}

	&120 {
		left: 12.0rem;
		top: 12.0rem;
	}

	&121 {
		left: 12.1rem;
		top: 12.1rem;
	}

	&122 {
		left: 12.2rem;
		top: 12.2rem;
	}

	&123 {
		left: 12.3rem;
		top: 12.3rem;
	}

	&124 {
		left: 12.4rem;
		top: 12.4rem;
	}

	&125 {
		left: 12.5rem;
		top: 12.5rem;
	}

	&126 {
		left: 12.6rem;
		top: 12.6rem;
	}

	&127 {
		left: 12.7rem;
		top: 12.7rem;
	}

	&128 {
		left: 12.8rem;
		top: 12.8rem;
	}

	&129 {
		left: 12.9rem;
		top: 12.9rem;
	}

	&130 {
		left: 13.0rem;
		top: 13.0rem;
	}

	&131 {
		left: 13.1rem;
		top: 13.1rem;
	}

	&132 {
		left: 13.2rem;
		top: 13.2rem;
	}

	&133 {
		left: 13.3rem;
		top: 13.3rem;
	}

	&134 {
		left: 13.4rem;
		top: 13.4rem;
	}

	&135 {
		left: 13.5rem;
		top: 13.5rem;
	}

	&136 {
		left: 13.6rem;
		top: 13.6rem;
	}

	&137 {
		left: 13.7rem;
		top: 13.7rem;
	}

	&138 {
		left: 13.8rem;
		top: 13.8rem;
	}

	&139 {
		left: 13.9rem;
		top: 13.9rem;
	}

	&140 {
		left: 14.0rem;
		top: 14.0rem;
	}

	&141 {
		left: 14.1rem;
		top: 14.1rem;
	}

	&142 {
		left: 14.2rem;
		top: 14.2rem;
	}

	&143 {
		left: 14.3rem;
		top: 14.3rem;
	}

	&144 {
		left: 14.4rem;
		top: 14.4rem;
	}

	&145 {
		left: 14.5rem;
		top: 14.5rem;
	}

	&146 {
		left: 14.6rem;
		top: 14.6rem;
	}

	&147 {
		left: 14.7rem;
		top: 14.7rem;
	}

	&148 {
		left: 14.8rem;
		top: 14.8rem;
	}

	&149 {
		left: 14.9rem;
		top: 14.9rem;
	}

	&150 {
		left: 15.0rem;
		top: 15.0rem;
	}

	&151 {
		left: 15.1rem;
		top: 15.1rem;
	}

	&152 {
		left: 15.2rem;
		top: 15.2rem;
	}

	&153 {
		left: 15.3rem;
		top: 15.3rem;
	}

	&154 {
		left: 15.4rem;
		top: 15.4rem;
	}

	&155 {
		left: 15.5rem;
		top: 15.5rem;
	}

	&156 {
		left: 15.6rem;
		top: 15.6rem;
	}

	&157 {
		left: 15.7rem;
		top: 15.7rem;
	}

	&158 {
		left: 15.8rem;
		top: 15.8rem;
	}

	&159 {
		left: 15.9rem;
		top: 15.9rem;
	}

	&160 {
		left: 16.0rem;
		top: 16.0rem;
	}

	&161 {
		left: 16.1rem;
		top: 16.1rem;
	}

	&162 {
		left: 16.2rem;
		top: 16.2rem;
	}

	&163 {
		left: 16.3rem;
		top: 16.3rem;
	}

	&164 {
		left: 16.4rem;
		top: 16.4rem;
	}

	&165 {
		left: 16.5rem;
		top: 16.5rem;
	}

	&166 {
		left: 16.6rem;
		top: 16.6rem;
	}

	&167 {
		left: 16.7rem;
		top: 16.7rem;
	}

	&168 {
		left: 16.8rem;
		top: 16.8rem;
	}

	&169 {
		left: 16.9rem;
		top: 16.9rem;
	}

	&170 {
		left: 17.0rem;
		top: 17.0rem;
	}

	&171 {
		left: 17.1rem;
		top: 17.1rem;
	}

	&172 {
		left: 17.2rem;
		top: 17.2rem;
	}

	&173 {
		left: 17.3rem;
		top: 17.3rem;
	}

	&174 {
		left: 17.4rem;
		top: 17.4rem;
	}

	&175 {
		left: 17.5rem;
		top: 17.5rem;
	}

	&176 {
		left: 17.6rem;
		top: 17.6rem;
	}

	&177 {
		left: 17.7rem;
		top: 17.7rem;
	}

	&178 {
		left: 17.8rem;
		top: 17.8rem;
	}

	&179 {
		left: 17.9rem;
		top: 17.9rem;
	}

	&180 {
		left: 18.0rem;
		top: 18.0rem;
	}

	&181 {
		left: 18.1rem;
		top: 18.1rem;
	}

	&182 {
		left: 18.2rem;
		top: 18.2rem;
	}

	&183 {
		left: 18.3rem;
		top: 18.3rem;
	}

	&184 {
		left: 18.4rem;
		top: 18.4rem;
	}

	&185 {
		left: 18.5rem;
		top: 18.5rem;
	}

	&186 {
		left: 18.6rem;
		top: 18.6rem;
	}

	&187 {
		left: 18.7rem;
		top: 18.7rem;
	}

	&188 {
		left: 18.8rem;
		top: 18.8rem;
	}

	&189 {
		left: 18.9rem;
		top: 18.9rem;
	}

	&190 {
		left: 19.0rem;
		top: 19.0rem;
	}

	&191 {
		left: 19.1rem;
		top: 19.1rem;
	}

	&192 {
		left: 19.2rem;
		top: 19.2rem;
	}

	&193 {
		left: 19.3rem;
		top: 19.3rem;
	}

	&194 {
		left: 19.4rem;
		top: 19.4rem;
	}

	&195 {
		left: 19.5rem;
		top: 19.5rem;
	}

	&196 {
		left: 19.6rem;
		top: 19.6rem;
	}

	&197 {
		left: 19.7rem;
		top: 19.7rem;
	}

	&198 {
		left: 19.8rem;
		top: 19.8rem;
	}

	&199 {
		left: 19.9rem;
		top: 19.9rem;
	}

}





// ABSOLUTE POSIITON LEFT RIGHT
.pos-lr--,
.pos-rl--,
.lr--,
.rl-- {
	&00 {
		left: 0.0rem;
		right: 0.0rem;
	}

	&01 {
		left: 0.1rem;
		right: 0.1rem;
	}

	&02 {
		left: 0.2rem;
		right: 0.2rem;
	}

	&03 {
		left: 0.3rem;
		right: 0.3rem;
	}

	&04 {
		left: 0.4rem;
		right: 0.4rem;
	}

	&05 {
		left: 0.5rem;
		right: 0.5rem;
	}

	&06 {
		left: 0.6rem;
		right: 0.6rem;
	}

	&07 {
		left: 0.7rem;
		right: 0.7rem;
	}

	&08 {
		left: 0.8rem;
		right: 0.8rem;
	}

	&09 {
		left: 0.9rem;
		right: 0.9rem;
	}

	&10 {
		left: 1.0rem;
		right: 1.0rem;
	}

	&11 {
		left: 1.1rem;
		right: 1.1rem;
	}

	&12 {
		left: 1.2rem;
		right: 1.2rem;
	}

	&13 {
		left: 1.3rem;
		right: 1.3rem;
	}

	&14 {
		left: 1.4rem;
		right: 1.4rem;
	}

	&15 {
		left: 1.5rem;
		right: 1.5rem;
	}

	&16 {
		left: 1.6rem;
		right: 1.6rem;
	}

	&17 {
		left: 1.7rem;
		right: 1.7rem;
	}

	&18 {
		left: 1.8rem;
		right: 1.8rem;
	}

	&19 {
		left: 1.9rem;
		right: 1.9rem;
	}

	&20 {
		left: 2.0rem;
		right: 2.0rem;
	}

	&21 {
		left: 2.1rem;
		right: 2.1rem;
	}

	&22 {
		left: 2.2rem;
		right: 2.2rem;
	}

	&23 {
		left: 2.3rem;
		right: 2.3rem;
	}

	&24 {
		left: 2.4rem;
		right: 2.4rem;
	}

	&25 {
		left: 2.5rem;
		right: 2.5rem;
	}

	&26 {
		left: 2.6rem;
		right: 2.6rem;
	}

	&27 {
		left: 2.7rem;
		right: 2.7rem;
	}

	&28 {
		left: 2.8rem;
		right: 2.8rem;
	}

	&29 {
		left: 2.9rem;
		right: 2.9rem;
	}

	&30 {
		left: 3.0rem;
		right: 3.0rem;
	}

	&31 {
		left: 3.1rem;
		right: 3.1rem;
	}

	&32 {
		left: 3.2rem;
		right: 3.2rem;
	}

	&33 {
		left: 3.3rem;
		right: 3.3rem;
	}

	&34 {
		left: 3.4rem;
		right: 3.4rem;
	}

	&35 {
		left: 3.5rem;
		right: 3.5rem;
	}

	&36 {
		left: 3.6rem;
		right: 3.6rem;
	}

	&37 {
		left: 3.7rem;
		right: 3.7rem;
	}

	&38 {
		left: 3.8rem;
		right: 3.8rem;
	}

	&39 {
		left: 3.9rem;
		right: 3.9rem;
	}

	&40 {
		left: 4.0rem;
		right: 4.0rem;
	}

	&41 {
		left: 4.1rem;
		right: 4.1rem;
	}

	&42 {
		left: 4.2rem;
		right: 4.2rem;
	}

	&43 {
		left: 4.3rem;
		right: 4.3rem;
	}

	&44 {
		left: 4.4rem;
		right: 4.4rem;
	}

	&45 {
		left: 4.5rem;
		right: 4.5rem;
	}

	&46 {
		left: 4.6rem;
		right: 4.6rem;
	}

	&47 {
		left: 4.7rem;
		right: 4.7rem;
	}

	&48 {
		left: 4.8rem;
		right: 4.8rem;
	}

	&49 {
		left: 4.9rem;
		right: 4.9rem;
	}

	&50 {
		left: 5.0rem;
		right: 5.0rem;
	}

	&51 {
		left: 5.1rem;
		right: 5.1rem;
	}

	&52 {
		left: 5.2rem;
		right: 5.2rem;
	}

	&53 {
		left: 5.3rem;
		right: 5.3rem;
	}

	&54 {
		left: 5.4rem;
		right: 5.4rem;
	}

	&55 {
		left: 5.5rem;
		right: 5.5rem;
	}

	&56 {
		left: 5.6rem;
		right: 5.6rem;
	}

	&57 {
		left: 5.7rem;
		right: 5.7rem;
	}

	&58 {
		left: 5.8rem;
		right: 5.8rem;
	}

	&59 {
		left: 5.9rem;
		right: 5.9rem;
	}

	&60 {
		left: 6.0rem;
		right: 6.0rem;
	}

	&61 {
		left: 6.1rem;
		right: 6.1rem;
	}

	&62 {
		left: 6.2rem;
		right: 6.2rem;
	}

	&63 {
		left: 6.3rem;
		right: 6.3rem;
	}

	&64 {
		left: 6.4rem;
		right: 6.4rem;
	}

	&65 {
		left: 6.5rem;
		right: 6.5rem;
	}

	&66 {
		left: 6.6rem;
		right: 6.6rem;
	}

	&67 {
		left: 6.7rem;
		right: 6.7rem;
	}

	&68 {
		left: 6.8rem;
		right: 6.8rem;
	}

	&69 {
		left: 6.9rem;
		right: 6.9rem;
	}

	&70 {
		left: 7.0rem;
		right: 7.0rem;
	}

	&71 {
		left: 7.1rem;
		right: 7.1rem;
	}

	&72 {
		left: 7.2rem;
		right: 7.2rem;
	}

	&73 {
		left: 7.3rem;
		right: 7.3rem;
	}

	&74 {
		left: 7.4rem;
		right: 7.4rem;
	}

	&75 {
		left: 7.5rem;
		right: 7.5rem;
	}

	&76 {
		left: 7.6rem;
		right: 7.6rem;
	}

	&77 {
		left: 7.7rem;
		right: 7.7rem;
	}

	&78 {
		left: 7.8rem;
		right: 7.8rem;
	}

	&79 {
		left: 7.9rem;
		right: 7.9rem;
	}

	&80 {
		left: 8.0rem;
		right: 8.0rem;
	}

	&81 {
		left: 8.1rem;
		right: 8.1rem;
	}

	&82 {
		left: 8.2rem;
		right: 8.2rem;
	}

	&83 {
		left: 8.3rem;
		right: 8.3rem;
	}

	&84 {
		left: 8.4rem;
		right: 8.4rem;
	}

	&85 {
		left: 8.5rem;
		right: 8.5rem;
	}

	&86 {
		left: 8.6rem;
		right: 8.6rem;
	}

	&87 {
		left: 8.7rem;
		right: 8.7rem;
	}

	&88 {
		left: 8.8rem;
		right: 8.8rem;
	}

	&89 {
		left: 8.9rem;
		right: 8.9rem;
	}

	&90 {
		left: 9.0rem;
		right: 9.0rem;
	}

	&91 {
		left: 9.1rem;
		right: 9.1rem;
	}

	&92 {
		left: 9.2rem;
		right: 9.2rem;
	}

	&93 {
		left: 9.3rem;
		right: 9.3rem;
	}

	&94 {
		left: 9.4rem;
		right: 9.4rem;
	}

	&95 {
		left: 9.5rem;
		right: 9.5rem;
	}

	&96 {
		left: 9.6rem;
		right: 9.6rem;
	}

	&97 {
		left: 9.7rem;
		right: 9.7rem;
	}

	&98 {
		left: 9.8rem;
		right: 9.8rem;
	}

	&99 {
		left: 9.9rem;
		right: 9.9rem;
	}

	&100 {
		left: 10.0rem;
		right: 10.0rem;
	}

	&101 {
		left: 10.1rem;
		right: 10.1rem;
	}

	&102 {
		left: 10.2rem;
		right: 10.2rem;
	}

	&103 {
		left: 10.3rem;
		right: 10.3rem;
	}

	&104 {
		left: 10.4rem;
		right: 10.4rem;
	}

	&105 {
		left: 10.5rem;
		right: 10.5rem;
	}

	&106 {
		left: 10.6rem;
		right: 10.6rem;
	}

	&107 {
		left: 10.7rem;
		right: 10.7rem;
	}

	&108 {
		left: 10.8rem;
		right: 10.8rem;
	}

	&109 {
		left: 10.9rem;
		right: 10.9rem;
	}

	&110 {
		left: 11.0rem;
		right: 11.0rem;
	}

	&111 {
		left: 11.1rem;
		right: 11.1rem;
	}

	&112 {
		left: 11.2rem;
		right: 11.2rem;
	}

	&113 {
		left: 11.3rem;
		right: 11.3rem;
	}

	&114 {
		left: 11.4rem;
		right: 11.4rem;
	}

	&115 {
		left: 11.5rem;
		right: 11.5rem;
	}

	&116 {
		left: 11.6rem;
		right: 11.6rem;
	}

	&117 {
		left: 11.7rem;
		right: 11.7rem;
	}

	&118 {
		left: 11.8rem;
		right: 11.8rem;
	}

	&119 {
		left: 11.9rem;
		right: 11.9rem;
	}

	&120 {
		left: 12.0rem;
		right: 12.0rem;
	}

	&121 {
		left: 12.1rem;
		right: 12.1rem;
	}

	&122 {
		left: 12.2rem;
		right: 12.2rem;
	}

	&123 {
		left: 12.3rem;
		right: 12.3rem;
	}

	&124 {
		left: 12.4rem;
		right: 12.4rem;
	}

	&125 {
		left: 12.5rem;
		right: 12.5rem;
	}

	&126 {
		left: 12.6rem;
		right: 12.6rem;
	}

	&127 {
		left: 12.7rem;
		right: 12.7rem;
	}

	&128 {
		left: 12.8rem;
		right: 12.8rem;
	}

	&129 {
		left: 12.9rem;
		right: 12.9rem;
	}

	&130 {
		left: 13.0rem;
		right: 13.0rem;
	}

	&131 {
		left: 13.1rem;
		right: 13.1rem;
	}

	&132 {
		left: 13.2rem;
		right: 13.2rem;
	}

	&133 {
		left: 13.3rem;
		right: 13.3rem;
	}

	&134 {
		left: 13.4rem;
		right: 13.4rem;
	}

	&135 {
		left: 13.5rem;
		right: 13.5rem;
	}

	&136 {
		left: 13.6rem;
		right: 13.6rem;
	}

	&137 {
		left: 13.7rem;
		right: 13.7rem;
	}

	&138 {
		left: 13.8rem;
		right: 13.8rem;
	}

	&139 {
		left: 13.9rem;
		right: 13.9rem;
	}

	&140 {
		left: 14.0rem;
		right: 14.0rem;
	}

	&141 {
		left: 14.1rem;
		right: 14.1rem;
	}

	&142 {
		left: 14.2rem;
		right: 14.2rem;
	}

	&143 {
		left: 14.3rem;
		right: 14.3rem;
	}

	&144 {
		left: 14.4rem;
		right: 14.4rem;
	}

	&145 {
		left: 14.5rem;
		right: 14.5rem;
	}

	&146 {
		left: 14.6rem;
		right: 14.6rem;
	}

	&147 {
		left: 14.7rem;
		right: 14.7rem;
	}

	&148 {
		left: 14.8rem;
		right: 14.8rem;
	}

	&149 {
		left: 14.9rem;
		right: 14.9rem;
	}

	&150 {
		left: 15.0rem;
		right: 15.0rem;
	}

	&151 {
		left: 15.1rem;
		right: 15.1rem;
	}

	&152 {
		left: 15.2rem;
		right: 15.2rem;
	}

	&153 {
		left: 15.3rem;
		right: 15.3rem;
	}

	&154 {
		left: 15.4rem;
		right: 15.4rem;
	}

	&155 {
		left: 15.5rem;
		right: 15.5rem;
	}

	&156 {
		left: 15.6rem;
		right: 15.6rem;
	}

	&157 {
		left: 15.7rem;
		right: 15.7rem;
	}

	&158 {
		left: 15.8rem;
		right: 15.8rem;
	}

	&159 {
		left: 15.9rem;
		right: 15.9rem;
	}

	&160 {
		left: 16.0rem;
		right: 16.0rem;
	}

	&161 {
		left: 16.1rem;
		right: 16.1rem;
	}

	&162 {
		left: 16.2rem;
		right: 16.2rem;
	}

	&163 {
		left: 16.3rem;
		right: 16.3rem;
	}

	&164 {
		left: 16.4rem;
		right: 16.4rem;
	}

	&165 {
		left: 16.5rem;
		right: 16.5rem;
	}

	&166 {
		left: 16.6rem;
		right: 16.6rem;
	}

	&167 {
		left: 16.7rem;
		right: 16.7rem;
	}

	&168 {
		left: 16.8rem;
		right: 16.8rem;
	}

	&169 {
		left: 16.9rem;
		right: 16.9rem;
	}

	&170 {
		left: 17.0rem;
		right: 17.0rem;
	}

	&171 {
		left: 17.1rem;
		right: 17.1rem;
	}

	&172 {
		left: 17.2rem;
		right: 17.2rem;
	}

	&173 {
		left: 17.3rem;
		right: 17.3rem;
	}

	&174 {
		left: 17.4rem;
		right: 17.4rem;
	}

	&175 {
		left: 17.5rem;
		right: 17.5rem;
	}

	&176 {
		left: 17.6rem;
		right: 17.6rem;
	}

	&177 {
		left: 17.7rem;
		right: 17.7rem;
	}

	&178 {
		left: 17.8rem;
		right: 17.8rem;
	}

	&179 {
		left: 17.9rem;
		right: 17.9rem;
	}

	&180 {
		left: 18.0rem;
		right: 18.0rem;
	}

	&181 {
		left: 18.1rem;
		right: 18.1rem;
	}

	&182 {
		left: 18.2rem;
		right: 18.2rem;
	}

	&183 {
		left: 18.3rem;
		right: 18.3rem;
	}

	&184 {
		left: 18.4rem;
		right: 18.4rem;
	}

	&185 {
		left: 18.5rem;
		right: 18.5rem;
	}

	&186 {
		left: 18.6rem;
		right: 18.6rem;
	}

	&187 {
		left: 18.7rem;
		right: 18.7rem;
	}

	&188 {
		left: 18.8rem;
		right: 18.8rem;
	}

	&189 {
		left: 18.9rem;
		right: 18.9rem;
	}

	&190 {
		left: 19.0rem;
		right: 19.0rem;
	}

	&191 {
		left: 19.1rem;
		right: 19.1rem;
	}

	&192 {
		left: 19.2rem;
		right: 19.2rem;
	}

	&193 {
		left: 19.3rem;
		right: 19.3rem;
	}

	&194 {
		left: 19.4rem;
		right: 19.4rem;
	}

	&195 {
		left: 19.5rem;
		right: 19.5rem;
	}

	&196 {
		left: 19.6rem;
		right: 19.6rem;
	}

	&197 {
		left: 19.7rem;
		right: 19.7rem;
	}

	&198 {
		left: 19.8rem;
		right: 19.8rem;
	}

	&199 {
		left: 19.9rem;
		right: 19.9rem;
	}

	&200 {
		left: 20.0rem;
		right: 20.0rem;
	}

}







// ABSOLUTE POSIITON LEFT BOTTOM
.pos-lb--,
.pos-bl--,
.lb--,
.bl-- {
	&00 {
		left: 0.0rem;
		bottom: 0.0rem;
	}

	&01 {
		left: 0.1rem;
		bottom: 0.1rem;
	}

	&02 {
		left: 0.2rem;
		bottom: 0.2rem;
	}

	&03 {
		left: 0.3rem;
		bottom: 0.3rem;
	}

	&04 {
		left: 0.4rem;
		bottom: 0.4rem;
	}

	&05 {
		left: 0.5rem;
		bottom: 0.5rem;
	}

	&06 {
		left: 0.6rem;
		bottom: 0.6rem;
	}

	&07 {
		left: 0.7rem;
		bottom: 0.7rem;
	}

	&08 {
		left: 0.8rem;
		bottom: 0.8rem;
	}

	&09 {
		left: 0.9rem;
		bottom: 0.9rem;
	}

	&10 {
		left: 1.0rem;
		bottom: 1.0rem;
	}

	&11 {
		left: 1.1rem;
		bottom: 1.1rem;
	}

	&12 {
		left: 1.2rem;
		bottom: 1.2rem;
	}

	&13 {
		left: 1.3rem;
		bottom: 1.3rem;
	}

	&14 {
		left: 1.4rem;
		bottom: 1.4rem;
	}

	&15 {
		left: 1.5rem;
		bottom: 1.5rem;
	}

	&16 {
		left: 1.6rem;
		bottom: 1.6rem;
	}

	&17 {
		left: 1.7rem;
		bottom: 1.7rem;
	}

	&18 {
		left: 1.8rem;
		bottom: 1.8rem;
	}

	&19 {
		left: 1.9rem;
		bottom: 1.9rem;
	}

	&20 {
		left: 2.0rem;
		bottom: 2.0rem;
	}

	&21 {
		left: 2.1rem;
		bottom: 2.1rem;
	}

	&22 {
		left: 2.2rem;
		bottom: 2.2rem;
	}

	&23 {
		left: 2.3rem;
		bottom: 2.3rem;
	}

	&24 {
		left: 2.4rem;
		bottom: 2.4rem;
	}

	&25 {
		left: 2.5rem;
		bottom: 2.5rem;
	}

	&26 {
		left: 2.6rem;
		bottom: 2.6rem;
	}

	&27 {
		left: 2.7rem;
		bottom: 2.7rem;
	}

	&28 {
		left: 2.8rem;
		bottom: 2.8rem;
	}

	&29 {
		left: 2.9rem;
		bottom: 2.9rem;
	}

	&30 {
		left: 3.0rem;
		bottom: 3.0rem;
	}

	&31 {
		left: 3.1rem;
		bottom: 3.1rem;
	}

	&32 {
		left: 3.2rem;
		bottom: 3.2rem;
	}

	&33 {
		left: 3.3rem;
		bottom: 3.3rem;
	}

	&34 {
		left: 3.4rem;
		bottom: 3.4rem;
	}

	&35 {
		left: 3.5rem;
		bottom: 3.5rem;
	}

	&36 {
		left: 3.6rem;
		bottom: 3.6rem;
	}

	&37 {
		left: 3.7rem;
		bottom: 3.7rem;
	}

	&38 {
		left: 3.8rem;
		bottom: 3.8rem;
	}

	&39 {
		left: 3.9rem;
		bottom: 3.9rem;
	}

	&40 {
		left: 4.0rem;
		bottom: 4.0rem;
	}

	&41 {
		left: 4.1rem;
		bottom: 4.1rem;
	}

	&42 {
		left: 4.2rem;
		bottom: 4.2rem;
	}

	&43 {
		left: 4.3rem;
		bottom: 4.3rem;
	}

	&44 {
		left: 4.4rem;
		bottom: 4.4rem;
	}

	&45 {
		left: 4.5rem;
		bottom: 4.5rem;
	}

	&46 {
		left: 4.6rem;
		bottom: 4.6rem;
	}

	&47 {
		left: 4.7rem;
		bottom: 4.7rem;
	}

	&48 {
		left: 4.8rem;
		bottom: 4.8rem;
	}

	&49 {
		left: 4.9rem;
		bottom: 4.9rem;
	}

	&50 {
		left: 5.0rem;
		bottom: 5.0rem;
	}

	&51 {
		left: 5.1rem;
		bottom: 5.1rem;
	}

	&52 {
		left: 5.2rem;
		bottom: 5.2rem;
	}

	&53 {
		left: 5.3rem;
		bottom: 5.3rem;
	}

	&54 {
		left: 5.4rem;
		bottom: 5.4rem;
	}

	&55 {
		left: 5.5rem;
		bottom: 5.5rem;
	}

	&56 {
		left: 5.6rem;
		bottom: 5.6rem;
	}

	&57 {
		left: 5.7rem;
		bottom: 5.7rem;
	}

	&58 {
		left: 5.8rem;
		bottom: 5.8rem;
	}

	&59 {
		left: 5.9rem;
		bottom: 5.9rem;
	}

	&60 {
		left: 6.0rem;
		bottom: 6.0rem;
	}

	&61 {
		left: 6.1rem;
		bottom: 6.1rem;
	}

	&62 {
		left: 6.2rem;
		bottom: 6.2rem;
	}

	&63 {
		left: 6.3rem;
		bottom: 6.3rem;
	}

	&64 {
		left: 6.4rem;
		bottom: 6.4rem;
	}

	&65 {
		left: 6.5rem;
		bottom: 6.5rem;
	}

	&66 {
		left: 6.6rem;
		bottom: 6.6rem;
	}

	&67 {
		left: 6.7rem;
		bottom: 6.7rem;
	}

	&68 {
		left: 6.8rem;
		bottom: 6.8rem;
	}

	&69 {
		left: 6.9rem;
		bottom: 6.9rem;
	}

	&70 {
		left: 7.0rem;
		bottom: 7.0rem;
	}

	&71 {
		left: 7.1rem;
		bottom: 7.1rem;
	}

	&72 {
		left: 7.2rem;
		bottom: 7.2rem;
	}

	&73 {
		left: 7.3rem;
		bottom: 7.3rem;
	}

	&74 {
		left: 7.4rem;
		bottom: 7.4rem;
	}

	&75 {
		left: 7.5rem;
		bottom: 7.5rem;
	}

	&76 {
		left: 7.6rem;
		bottom: 7.6rem;
	}

	&77 {
		left: 7.7rem;
		bottom: 7.7rem;
	}

	&78 {
		left: 7.8rem;
		bottom: 7.8rem;
	}

	&79 {
		left: 7.9rem;
		bottom: 7.9rem;
	}

	&80 {
		left: 8.0rem;
		bottom: 8.0rem;
	}

	&81 {
		left: 8.1rem;
		bottom: 8.1rem;
	}

	&82 {
		left: 8.2rem;
		bottom: 8.2rem;
	}

	&83 {
		left: 8.3rem;
		bottom: 8.3rem;
	}

	&84 {
		left: 8.4rem;
		bottom: 8.4rem;
	}

	&85 {
		left: 8.5rem;
		bottom: 8.5rem;
	}

	&86 {
		left: 8.6rem;
		bottom: 8.6rem;
	}

	&87 {
		left: 8.7rem;
		bottom: 8.7rem;
	}

	&88 {
		left: 8.8rem;
		bottom: 8.8rem;
	}

	&89 {
		left: 8.9rem;
		bottom: 8.9rem;
	}

	&90 {
		left: 9.0rem;
		bottom: 9.0rem;
	}

	&91 {
		left: 9.1rem;
		bottom: 9.1rem;
	}

	&92 {
		left: 9.2rem;
		bottom: 9.2rem;
	}

	&93 {
		left: 9.3rem;
		bottom: 9.3rem;
	}

	&94 {
		left: 9.4rem;
		bottom: 9.4rem;
	}

	&95 {
		left: 9.5rem;
		bottom: 9.5rem;
	}

	&96 {
		left: 9.6rem;
		bottom: 9.6rem;
	}

	&97 {
		left: 9.7rem;
		bottom: 9.7rem;
	}

	&98 {
		left: 9.8rem;
		bottom: 9.8rem;
	}

	&99 {
		left: 9.9rem;
		bottom: 9.9rem;
	}

	&100 {
		left: 10.0rem;
		bottom: 10.0rem;
	}

	&101 {
		left: 10.1rem;
		bottom: 10.1rem;
	}

	&102 {
		left: 10.2rem;
		bottom: 10.2rem;
	}

	&103 {
		left: 10.3rem;
		bottom: 10.3rem;
	}

	&104 {
		left: 10.4rem;
		bottom: 10.4rem;
	}

	&105 {
		left: 10.5rem;
		bottom: 10.5rem;
	}

	&106 {
		left: 10.6rem;
		bottom: 10.6rem;
	}

	&107 {
		left: 10.7rem;
		bottom: 10.7rem;
	}

	&108 {
		left: 10.8rem;
		bottom: 10.8rem;
	}

	&109 {
		left: 10.9rem;
		bottom: 10.9rem;
	}

	&110 {
		left: 11.0rem;
		bottom: 11.0rem;
	}

	&111 {
		left: 11.1rem;
		bottom: 11.1rem;
	}

	&112 {
		left: 11.2rem;
		bottom: 11.2rem;
	}

	&113 {
		left: 11.3rem;
		bottom: 11.3rem;
	}

	&114 {
		left: 11.4rem;
		bottom: 11.4rem;
	}

	&115 {
		left: 11.5rem;
		bottom: 11.5rem;
	}

	&116 {
		left: 11.6rem;
		bottom: 11.6rem;
	}

	&117 {
		left: 11.7rem;
		bottom: 11.7rem;
	}

	&118 {
		left: 11.8rem;
		bottom: 11.8rem;
	}

	&119 {
		left: 11.9rem;
		bottom: 11.9rem;
	}

	&120 {
		left: 12.0rem;
		bottom: 12.0rem;
	}

	&121 {
		left: 12.1rem;
		bottom: 12.1rem;
	}

	&122 {
		left: 12.2rem;
		bottom: 12.2rem;
	}

	&123 {
		left: 12.3rem;
		bottom: 12.3rem;
	}

	&124 {
		left: 12.4rem;
		bottom: 12.4rem;
	}

	&125 {
		left: 12.5rem;
		bottom: 12.5rem;
	}

	&126 {
		left: 12.6rem;
		bottom: 12.6rem;
	}

	&127 {
		left: 12.7rem;
		bottom: 12.7rem;
	}

	&128 {
		left: 12.8rem;
		bottom: 12.8rem;
	}

	&129 {
		left: 12.9rem;
		bottom: 12.9rem;
	}

	&130 {
		left: 13.0rem;
		bottom: 13.0rem;
	}

	&131 {
		left: 13.1rem;
		bottom: 13.1rem;
	}

	&132 {
		left: 13.2rem;
		bottom: 13.2rem;
	}

	&133 {
		left: 13.3rem;
		bottom: 13.3rem;
	}

	&134 {
		left: 13.4rem;
		bottom: 13.4rem;
	}

	&135 {
		left: 13.5rem;
		bottom: 13.5rem;
	}

	&136 {
		left: 13.6rem;
		bottom: 13.6rem;
	}

	&137 {
		left: 13.7rem;
		bottom: 13.7rem;
	}

	&138 {
		left: 13.8rem;
		bottom: 13.8rem;
	}

	&139 {
		left: 13.9rem;
		bottom: 13.9rem;
	}

	&140 {
		left: 14.0rem;
		bottom: 14.0rem;
	}

	&141 {
		left: 14.1rem;
		bottom: 14.1rem;
	}

	&142 {
		left: 14.2rem;
		bottom: 14.2rem;
	}

	&143 {
		left: 14.3rem;
		bottom: 14.3rem;
	}

	&144 {
		left: 14.4rem;
		bottom: 14.4rem;
	}

	&145 {
		left: 14.5rem;
		bottom: 14.5rem;
	}

	&146 {
		left: 14.6rem;
		bottom: 14.6rem;
	}

	&147 {
		left: 14.7rem;
		bottom: 14.7rem;
	}

	&148 {
		left: 14.8rem;
		bottom: 14.8rem;
	}

	&149 {
		left: 14.9rem;
		bottom: 14.9rem;
	}

	&150 {
		left: 15.0rem;
		bottom: 15.0rem;
	}

	&151 {
		left: 15.1rem;
		bottom: 15.1rem;
	}

	&152 {
		left: 15.2rem;
		bottom: 15.2rem;
	}

	&153 {
		left: 15.3rem;
		bottom: 15.3rem;
	}

	&154 {
		left: 15.4rem;
		bottom: 15.4rem;
	}

	&155 {
		left: 15.5rem;
		bottom: 15.5rem;
	}

	&156 {
		left: 15.6rem;
		bottom: 15.6rem;
	}

	&157 {
		left: 15.7rem;
		bottom: 15.7rem;
	}

	&158 {
		left: 15.8rem;
		bottom: 15.8rem;
	}

	&159 {
		left: 15.9rem;
		bottom: 15.9rem;
	}

	&160 {
		left: 16.0rem;
		bottom: 16.0rem;
	}

	&161 {
		left: 16.1rem;
		bottom: 16.1rem;
	}

	&162 {
		left: 16.2rem;
		bottom: 16.2rem;
	}

	&163 {
		left: 16.3rem;
		bottom: 16.3rem;
	}

	&164 {
		left: 16.4rem;
		bottom: 16.4rem;
	}

	&165 {
		left: 16.5rem;
		bottom: 16.5rem;
	}

	&166 {
		left: 16.6rem;
		bottom: 16.6rem;
	}

	&167 {
		left: 16.7rem;
		bottom: 16.7rem;
	}

	&168 {
		left: 16.8rem;
		bottom: 16.8rem;
	}

	&169 {
		left: 16.9rem;
		bottom: 16.9rem;
	}

	&170 {
		left: 17.0rem;
		bottom: 17.0rem;
	}

	&171 {
		left: 17.1rem;
		bottom: 17.1rem;
	}

	&172 {
		left: 17.2rem;
		bottom: 17.2rem;
	}

	&173 {
		left: 17.3rem;
		bottom: 17.3rem;
	}

	&174 {
		left: 17.4rem;
		bottom: 17.4rem;
	}

	&175 {
		left: 17.5rem;
		bottom: 17.5rem;
	}

	&176 {
		left: 17.6rem;
		bottom: 17.6rem;
	}

	&177 {
		left: 17.7rem;
		bottom: 17.7rem;
	}

	&178 {
		left: 17.8rem;
		bottom: 17.8rem;
	}

	&179 {
		left: 17.9rem;
		bottom: 17.9rem;
	}

	&180 {
		left: 18.0rem;
		bottom: 18.0rem;
	}

	&181 {
		left: 18.1rem;
		bottom: 18.1rem;
	}

	&182 {
		left: 18.2rem;
		bottom: 18.2rem;
	}

	&183 {
		left: 18.3rem;
		bottom: 18.3rem;
	}

	&184 {
		left: 18.4rem;
		bottom: 18.4rem;
	}

	&185 {
		left: 18.5rem;
		bottom: 18.5rem;
	}

	&186 {
		left: 18.6rem;
		bottom: 18.6rem;
	}

	&187 {
		left: 18.7rem;
		bottom: 18.7rem;
	}

	&188 {
		left: 18.8rem;
		bottom: 18.8rem;
	}

	&189 {
		left: 18.9rem;
		bottom: 18.9rem;
	}

	&190 {
		left: 19.0rem;
		bottom: 19.0rem;
	}

	&191 {
		left: 19.1rem;
		bottom: 19.1rem;
	}

	&192 {
		left: 19.2rem;
		bottom: 19.2rem;
	}

	&193 {
		left: 19.3rem;
		bottom: 19.3rem;
	}

	&194 {
		left: 19.4rem;
		bottom: 19.4rem;
	}

	&195 {
		left: 19.5rem;
		bottom: 19.5rem;
	}

	&196 {
		left: 19.6rem;
		bottom: 19.6rem;
	}

	&197 {
		left: 19.7rem;
		bottom: 19.7rem;
	}

	&198 {
		left: 19.8rem;
		bottom: 19.8rem;
	}

	&199 {
		left: 19.9rem;
		bottom: 19.9rem;
	}

	&200 {
		left: 20.0rem;
		bottom: 20.0rem;
	}
}






// ABSOLUTE POSIITON TOP RIGHT
.pos-tr--,
.pos-rt--,
.tr--,
.rt-- {
	&00 {
		top: 0.0rem;
		right: 0.0rem;
	}

	&01 {
		top: 0.1rem;
		right: 0.1rem;
	}

	&02 {
		top: 0.2rem;
		right: 0.2rem;
	}

	&03 {
		top: 0.3rem;
		right: 0.3rem;
	}

	&04 {
		top: 0.4rem;
		right: 0.4rem;
	}

	&05 {
		top: 0.5rem;
		right: 0.5rem;
	}

	&06 {
		top: 0.6rem;
		right: 0.6rem;
	}

	&07 {
		top: 0.7rem;
		right: 0.7rem;
	}

	&08 {
		top: 0.8rem;
		right: 0.8rem;
	}

	&09 {
		top: 0.9rem;
		right: 0.9rem;
	}

	&10 {
		top: 1.0rem;
		right: 1.0rem;
	}

	&11 {
		top: 1.1rem;
		right: 1.1rem;
	}

	&12 {
		top: 1.2rem;
		right: 1.2rem;
	}

	&13 {
		top: 1.3rem;
		right: 1.3rem;
	}

	&14 {
		top: 1.4rem;
		right: 1.4rem;
	}

	&15 {
		top: 1.5rem;
		right: 1.5rem;
	}

	&16 {
		top: 1.6rem;
		right: 1.6rem;
	}

	&17 {
		top: 1.7rem;
		right: 1.7rem;
	}

	&18 {
		top: 1.8rem;
		right: 1.8rem;
	}

	&19 {
		top: 1.9rem;
		right: 1.9rem;
	}

	&20 {
		top: 2.0rem;
		right: 2.0rem;
	}

	&21 {
		top: 2.1rem;
		right: 2.1rem;
	}

	&22 {
		top: 2.2rem;
		right: 2.2rem;
	}

	&23 {
		top: 2.3rem;
		right: 2.3rem;
	}

	&24 {
		top: 2.4rem;
		right: 2.4rem;
	}

	&25 {
		top: 2.5rem;
		right: 2.5rem;
	}

	&26 {
		top: 2.6rem;
		right: 2.6rem;
	}

	&27 {
		top: 2.7rem;
		right: 2.7rem;
	}

	&28 {
		top: 2.8rem;
		right: 2.8rem;
	}

	&29 {
		top: 2.9rem;
		right: 2.9rem;
	}

	&30 {
		top: 3.0rem;
		right: 3.0rem;
	}

	&31 {
		top: 3.1rem;
		right: 3.1rem;
	}

	&32 {
		top: 3.2rem;
		right: 3.2rem;
	}

	&33 {
		top: 3.3rem;
		right: 3.3rem;
	}

	&34 {
		top: 3.4rem;
		right: 3.4rem;
	}

	&35 {
		top: 3.5rem;
		right: 3.5rem;
	}

	&36 {
		top: 3.6rem;
		right: 3.6rem;
	}

	&37 {
		top: 3.7rem;
		right: 3.7rem;
	}

	&38 {
		top: 3.8rem;
		right: 3.8rem;
	}

	&39 {
		top: 3.9rem;
		right: 3.9rem;
	}

	&40 {
		top: 4.0rem;
		right: 4.0rem;
	}

	&41 {
		top: 4.1rem;
		right: 4.1rem;
	}

	&42 {
		top: 4.2rem;
		right: 4.2rem;
	}

	&43 {
		top: 4.3rem;
		right: 4.3rem;
	}

	&44 {
		top: 4.4rem;
		right: 4.4rem;
	}

	&45 {
		top: 4.5rem;
		right: 4.5rem;
	}

	&46 {
		top: 4.6rem;
		right: 4.6rem;
	}

	&47 {
		top: 4.7rem;
		right: 4.7rem;
	}

	&48 {
		top: 4.8rem;
		right: 4.8rem;
	}

	&49 {
		top: 4.9rem;
		right: 4.9rem;
	}

	&50 {
		top: 5.0rem;
		right: 5.0rem;
	}

	&51 {
		top: 5.1rem;
		right: 5.1rem;
	}

	&52 {
		top: 5.2rem;
		right: 5.2rem;
	}

	&53 {
		top: 5.3rem;
		right: 5.3rem;
	}

	&54 {
		top: 5.4rem;
		right: 5.4rem;
	}

	&55 {
		top: 5.5rem;
		right: 5.5rem;
	}

	&56 {
		top: 5.6rem;
		right: 5.6rem;
	}

	&57 {
		top: 5.7rem;
		right: 5.7rem;
	}

	&58 {
		top: 5.8rem;
		right: 5.8rem;
	}

	&59 {
		top: 5.9rem;
		right: 5.9rem;
	}

	&60 {
		top: 6.0rem;
		right: 6.0rem;
	}

	&61 {
		top: 6.1rem;
		right: 6.1rem;
	}

	&62 {
		top: 6.2rem;
		right: 6.2rem;
	}

	&63 {
		top: 6.3rem;
		right: 6.3rem;
	}

	&64 {
		top: 6.4rem;
		right: 6.4rem;
	}

	&65 {
		top: 6.5rem;
		right: 6.5rem;
	}

	&66 {
		top: 6.6rem;
		right: 6.6rem;
	}

	&67 {
		top: 6.7rem;
		right: 6.7rem;
	}

	&68 {
		top: 6.8rem;
		right: 6.8rem;
	}

	&69 {
		top: 6.9rem;
		right: 6.9rem;
	}

	&70 {
		top: 7.0rem;
		right: 7.0rem;
	}

	&71 {
		top: 7.1rem;
		right: 7.1rem;
	}

	&72 {
		top: 7.2rem;
		right: 7.2rem;
	}

	&73 {
		top: 7.3rem;
		right: 7.3rem;
	}

	&74 {
		top: 7.4rem;
		right: 7.4rem;
	}

	&75 {
		top: 7.5rem;
		right: 7.5rem;
	}

	&76 {
		top: 7.6rem;
		right: 7.6rem;
	}

	&77 {
		top: 7.7rem;
		right: 7.7rem;
	}

	&78 {
		top: 7.8rem;
		right: 7.8rem;
	}

	&79 {
		top: 7.9rem;
		right: 7.9rem;
	}

	&80 {
		top: 8.0rem;
		right: 8.0rem;
	}

	&81 {
		top: 8.1rem;
		right: 8.1rem;
	}

	&82 {
		top: 8.2rem;
		right: 8.2rem;
	}

	&83 {
		top: 8.3rem;
		right: 8.3rem;
	}

	&84 {
		top: 8.4rem;
		right: 8.4rem;
	}

	&85 {
		top: 8.5rem;
		right: 8.5rem;
	}

	&86 {
		top: 8.6rem;
		right: 8.6rem;
	}

	&87 {
		top: 8.7rem;
		right: 8.7rem;
	}

	&88 {
		top: 8.8rem;
		right: 8.8rem;
	}

	&89 {
		top: 8.9rem;
		right: 8.9rem;
	}

	&90 {
		top: 9.0rem;
		right: 9.0rem;
	}

	&91 {
		top: 9.1rem;
		right: 9.1rem;
	}

	&92 {
		top: 9.2rem;
		right: 9.2rem;
	}

	&93 {
		top: 9.3rem;
		right: 9.3rem;
	}

	&94 {
		top: 9.4rem;
		right: 9.4rem;
	}

	&95 {
		top: 9.5rem;
		right: 9.5rem;
	}

	&96 {
		top: 9.6rem;
		right: 9.6rem;
	}

	&97 {
		top: 9.7rem;
		right: 9.7rem;
	}

	&98 {
		top: 9.8rem;
		right: 9.8rem;
	}

	&99 {
		top: 9.9rem;
		right: 9.9rem;
	}

	&100 {
		top: 10.0rem;
		right: 10.0rem;
	}

	&101 {
		top: 10.1rem;
		right: 10.1rem;
	}

	&102 {
		top: 10.2rem;
		right: 10.2rem;
	}

	&103 {
		top: 10.3rem;
		right: 10.3rem;
	}

	&104 {
		top: 10.4rem;
		right: 10.4rem;
	}

	&105 {
		top: 10.5rem;
		right: 10.5rem;
	}

	&106 {
		top: 10.6rem;
		right: 10.6rem;
	}

	&107 {
		top: 10.7rem;
		right: 10.7rem;
	}

	&108 {
		top: 10.8rem;
		right: 10.8rem;
	}

	&109 {
		top: 10.9rem;
		right: 10.9rem;
	}

	&110 {
		top: 11.0rem;
		right: 11.0rem;
	}

	&111 {
		top: 11.1rem;
		right: 11.1rem;
	}

	&112 {
		top: 11.2rem;
		right: 11.2rem;
	}

	&113 {
		top: 11.3rem;
		right: 11.3rem;
	}

	&114 {
		top: 11.4rem;
		right: 11.4rem;
	}

	&115 {
		top: 11.5rem;
		right: 11.5rem;
	}

	&116 {
		top: 11.6rem;
		right: 11.6rem;
	}

	&117 {
		top: 11.7rem;
		right: 11.7rem;
	}

	&118 {
		top: 11.8rem;
		right: 11.8rem;
	}

	&119 {
		top: 11.9rem;
		right: 11.9rem;
	}

	&120 {
		top: 12.0rem;
		right: 12.0rem;
	}

	&121 {
		top: 12.1rem;
		right: 12.1rem;
	}

	&122 {
		top: 12.2rem;
		right: 12.2rem;
	}

	&123 {
		top: 12.3rem;
		right: 12.3rem;
	}

	&124 {
		top: 12.4rem;
		right: 12.4rem;
	}

	&125 {
		top: 12.5rem;
		right: 12.5rem;
	}

	&126 {
		top: 12.6rem;
		right: 12.6rem;
	}

	&127 {
		top: 12.7rem;
		right: 12.7rem;
	}

	&128 {
		top: 12.8rem;
		right: 12.8rem;
	}

	&129 {
		top: 12.9rem;
		right: 12.9rem;
	}

	&130 {
		top: 13.0rem;
		right: 13.0rem;
	}

	&131 {
		top: 13.1rem;
		right: 13.1rem;
	}

	&132 {
		top: 13.2rem;
		right: 13.2rem;
	}

	&133 {
		top: 13.3rem;
		right: 13.3rem;
	}

	&134 {
		top: 13.4rem;
		right: 13.4rem;
	}

	&135 {
		top: 13.5rem;
		right: 13.5rem;
	}

	&136 {
		top: 13.6rem;
		right: 13.6rem;
	}

	&137 {
		top: 13.7rem;
		right: 13.7rem;
	}

	&138 {
		top: 13.8rem;
		right: 13.8rem;
	}

	&139 {
		top: 13.9rem;
		right: 13.9rem;
	}

	&140 {
		top: 14.0rem;
		right: 14.0rem;
	}

	&141 {
		top: 14.1rem;
		right: 14.1rem;
	}

	&142 {
		top: 14.2rem;
		right: 14.2rem;
	}

	&143 {
		top: 14.3rem;
		right: 14.3rem;
	}

	&144 {
		top: 14.4rem;
		right: 14.4rem;
	}

	&145 {
		top: 14.5rem;
		right: 14.5rem;
	}

	&146 {
		top: 14.6rem;
		right: 14.6rem;
	}

	&147 {
		top: 14.7rem;
		right: 14.7rem;
	}

	&148 {
		top: 14.8rem;
		right: 14.8rem;
	}

	&149 {
		top: 14.9rem;
		right: 14.9rem;
	}

	&150 {
		top: 15.0rem;
		right: 15.0rem;
	}

	&151 {
		top: 15.1rem;
		right: 15.1rem;
	}

	&152 {
		top: 15.2rem;
		right: 15.2rem;
	}

	&153 {
		top: 15.3rem;
		right: 15.3rem;
	}

	&154 {
		top: 15.4rem;
		right: 15.4rem;
	}

	&155 {
		top: 15.5rem;
		right: 15.5rem;
	}

	&156 {
		top: 15.6rem;
		right: 15.6rem;
	}

	&157 {
		top: 15.7rem;
		right: 15.7rem;
	}

	&158 {
		top: 15.8rem;
		right: 15.8rem;
	}

	&159 {
		top: 15.9rem;
		right: 15.9rem;
	}

	&160 {
		top: 16.0rem;
		right: 16.0rem;
	}

	&161 {
		top: 16.1rem;
		right: 16.1rem;
	}

	&162 {
		top: 16.2rem;
		right: 16.2rem;
	}

	&163 {
		top: 16.3rem;
		right: 16.3rem;
	}

	&164 {
		top: 16.4rem;
		right: 16.4rem;
	}

	&165 {
		top: 16.5rem;
		right: 16.5rem;
	}

	&166 {
		top: 16.6rem;
		right: 16.6rem;
	}

	&167 {
		top: 16.7rem;
		right: 16.7rem;
	}

	&168 {
		top: 16.8rem;
		right: 16.8rem;
	}

	&169 {
		top: 16.9rem;
		right: 16.9rem;
	}

	&170 {
		top: 17.0rem;
		right: 17.0rem;
	}

	&171 {
		top: 17.1rem;
		right: 17.1rem;
	}

	&172 {
		top: 17.2rem;
		right: 17.2rem;
	}

	&173 {
		top: 17.3rem;
		right: 17.3rem;
	}

	&174 {
		top: 17.4rem;
		right: 17.4rem;
	}

	&175 {
		top: 17.5rem;
		right: 17.5rem;
	}

	&176 {
		top: 17.6rem;
		right: 17.6rem;
	}

	&177 {
		top: 17.7rem;
		right: 17.7rem;
	}

	&178 {
		top: 17.8rem;
		right: 17.8rem;
	}

	&179 {
		top: 17.9rem;
		right: 17.9rem;
	}

	&180 {
		top: 18.0rem;
		right: 18.0rem;
	}

	&181 {
		top: 18.1rem;
		right: 18.1rem;
	}

	&182 {
		top: 18.2rem;
		right: 18.2rem;
	}

	&183 {
		top: 18.3rem;
		right: 18.3rem;
	}

	&184 {
		top: 18.4rem;
		right: 18.4rem;
	}

	&185 {
		top: 18.5rem;
		right: 18.5rem;
	}

	&186 {
		top: 18.6rem;
		right: 18.6rem;
	}

	&187 {
		top: 18.7rem;
		right: 18.7rem;
	}

	&188 {
		top: 18.8rem;
		right: 18.8rem;
	}

	&189 {
		top: 18.9rem;
		right: 18.9rem;
	}

	&190 {
		top: 19.0rem;
		right: 19.0rem;
	}

	&191 {
		top: 19.1rem;
		right: 19.1rem;
	}

	&192 {
		top: 19.2rem;
		right: 19.2rem;
	}

	&193 {
		top: 19.3rem;
		right: 19.3rem;
	}

	&194 {
		top: 19.4rem;
		right: 19.4rem;
	}

	&195 {
		top: 19.5rem;
		right: 19.5rem;
	}

	&196 {
		top: 19.6rem;
		right: 19.6rem;
	}

	&197 {
		top: 19.7rem;
		right: 19.7rem;
	}

	&198 {
		top: 19.8rem;
		right: 19.8rem;
	}

	&199 {
		top: 19.9rem;
		right: 19.9rem;
	}

	&200 {
		top: 20.0rem;
		right: 20.0rem;
	}

}





// ABSOLUTE POSIITON TOP BOTTOM
.pos-tb--,
.pos-bt--,
.tb--,
.bt-- {
	&00 {
		top: 0.0rem;
		bottom: 0.0rem;
	}

	&01 {
		top: 0.1rem;
		bottom: 0.1rem;
	}

	&02 {
		top: 0.2rem;
		bottom: 0.2rem;
	}

	&03 {
		top: 0.3rem;
		bottom: 0.3rem;
	}

	&04 {
		top: 0.4rem;
		bottom: 0.4rem;
	}

	&05 {
		top: 0.5rem;
		bottom: 0.5rem;
	}

	&06 {
		top: 0.6rem;
		bottom: 0.6rem;
	}

	&07 {
		top: 0.7rem;
		bottom: 0.7rem;
	}

	&08 {
		top: 0.8rem;
		bottom: 0.8rem;
	}

	&09 {
		top: 0.9rem;
		bottom: 0.9rem;
	}

	&10 {
		top: 1.0rem;
		bottom: 1.0rem;
	}

	&11 {
		top: 1.1rem;
		bottom: 1.1rem;
	}

	&12 {
		top: 1.2rem;
		bottom: 1.2rem;
	}

	&13 {
		top: 1.3rem;
		bottom: 1.3rem;
	}

	&14 {
		top: 1.4rem;
		bottom: 1.4rem;
	}

	&15 {
		top: 1.5rem;
		bottom: 1.5rem;
	}

	&16 {
		top: 1.6rem;
		bottom: 1.6rem;
	}

	&17 {
		top: 1.7rem;
		bottom: 1.7rem;
	}

	&18 {
		top: 1.8rem;
		bottom: 1.8rem;
	}

	&19 {
		top: 1.9rem;
		bottom: 1.9rem;
	}

	&20 {
		top: 2.0rem;
		bottom: 2.0rem;
	}

	&21 {
		top: 2.1rem;
		bottom: 2.1rem;
	}

	&22 {
		top: 2.2rem;
		bottom: 2.2rem;
	}

	&23 {
		top: 2.3rem;
		bottom: 2.3rem;
	}

	&24 {
		top: 2.4rem;
		bottom: 2.4rem;
	}

	&25 {
		top: 2.5rem;
		bottom: 2.5rem;
	}

	&26 {
		top: 2.6rem;
		bottom: 2.6rem;
	}

	&27 {
		top: 2.7rem;
		bottom: 2.7rem;
	}

	&28 {
		top: 2.8rem;
		bottom: 2.8rem;
	}

	&29 {
		top: 2.9rem;
		bottom: 2.9rem;
	}

	&30 {
		top: 3.0rem;
		bottom: 3.0rem;
	}

	&31 {
		top: 3.1rem;
		bottom: 3.1rem;
	}

	&32 {
		top: 3.2rem;
		bottom: 3.2rem;
	}

	&33 {
		top: 3.3rem;
		bottom: 3.3rem;
	}

	&34 {
		top: 3.4rem;
		bottom: 3.4rem;
	}

	&35 {
		top: 3.5rem;
		bottom: 3.5rem;
	}

	&36 {
		top: 3.6rem;
		bottom: 3.6rem;
	}

	&37 {
		top: 3.7rem;
		bottom: 3.7rem;
	}

	&38 {
		top: 3.8rem;
		bottom: 3.8rem;
	}

	&39 {
		top: 3.9rem;
		bottom: 3.9rem;
	}

	&40 {
		top: 4.0rem;
		bottom: 4.0rem;
	}

	&41 {
		top: 4.1rem;
		bottom: 4.1rem;
	}

	&42 {
		top: 4.2rem;
		bottom: 4.2rem;
	}

	&43 {
		top: 4.3rem;
		bottom: 4.3rem;
	}

	&44 {
		top: 4.4rem;
		bottom: 4.4rem;
	}

	&45 {
		top: 4.5rem;
		bottom: 4.5rem;
	}

	&46 {
		top: 4.6rem;
		bottom: 4.6rem;
	}

	&47 {
		top: 4.7rem;
		bottom: 4.7rem;
	}

	&48 {
		top: 4.8rem;
		bottom: 4.8rem;
	}

	&49 {
		top: 4.9rem;
		bottom: 4.9rem;
	}

	&50 {
		top: 5.0rem;
		bottom: 5.0rem;
	}

	&51 {
		top: 5.1rem;
		bottom: 5.1rem;
	}

	&52 {
		top: 5.2rem;
		bottom: 5.2rem;
	}

	&53 {
		top: 5.3rem;
		bottom: 5.3rem;
	}

	&54 {
		top: 5.4rem;
		bottom: 5.4rem;
	}

	&55 {
		top: 5.5rem;
		bottom: 5.5rem;
	}

	&56 {
		top: 5.6rem;
		bottom: 5.6rem;
	}

	&57 {
		top: 5.7rem;
		bottom: 5.7rem;
	}

	&58 {
		top: 5.8rem;
		bottom: 5.8rem;
	}

	&59 {
		top: 5.9rem;
		bottom: 5.9rem;
	}

	&60 {
		top: 6.0rem;
		bottom: 6.0rem;
	}

	&61 {
		top: 6.1rem;
		bottom: 6.1rem;
	}

	&62 {
		top: 6.2rem;
		bottom: 6.2rem;
	}

	&63 {
		top: 6.3rem;
		bottom: 6.3rem;
	}

	&64 {
		top: 6.4rem;
		bottom: 6.4rem;
	}

	&65 {
		top: 6.5rem;
		bottom: 6.5rem;
	}

	&66 {
		top: 6.6rem;
		bottom: 6.6rem;
	}

	&67 {
		top: 6.7rem;
		bottom: 6.7rem;
	}

	&68 {
		top: 6.8rem;
		bottom: 6.8rem;
	}

	&69 {
		top: 6.9rem;
		bottom: 6.9rem;
	}

	&70 {
		top: 7.0rem;
		bottom: 7.0rem;
	}

	&71 {
		top: 7.1rem;
		bottom: 7.1rem;
	}

	&72 {
		top: 7.2rem;
		bottom: 7.2rem;
	}

	&73 {
		top: 7.3rem;
		bottom: 7.3rem;
	}

	&74 {
		top: 7.4rem;
		bottom: 7.4rem;
	}

	&75 {
		top: 7.5rem;
		bottom: 7.5rem;
	}

	&76 {
		top: 7.6rem;
		bottom: 7.6rem;
	}

	&77 {
		top: 7.7rem;
		bottom: 7.7rem;
	}

	&78 {
		top: 7.8rem;
		bottom: 7.8rem;
	}

	&79 {
		top: 7.9rem;
		bottom: 7.9rem;
	}

	&80 {
		top: 8.0rem;
		bottom: 8.0rem;
	}

	&81 {
		top: 8.1rem;
		bottom: 8.1rem;
	}

	&82 {
		top: 8.2rem;
		bottom: 8.2rem;
	}

	&83 {
		top: 8.3rem;
		bottom: 8.3rem;
	}

	&84 {
		top: 8.4rem;
		bottom: 8.4rem;
	}

	&85 {
		top: 8.5rem;
		bottom: 8.5rem;
	}

	&86 {
		top: 8.6rem;
		bottom: 8.6rem;
	}

	&87 {
		top: 8.7rem;
		bottom: 8.7rem;
	}

	&88 {
		top: 8.8rem;
		bottom: 8.8rem;
	}

	&89 {
		top: 8.9rem;
		bottom: 8.9rem;
	}

	&90 {
		top: 9.0rem;
		bottom: 9.0rem;
	}

	&91 {
		top: 9.1rem;
		bottom: 9.1rem;
	}

	&92 {
		top: 9.2rem;
		bottom: 9.2rem;
	}

	&93 {
		top: 9.3rem;
		bottom: 9.3rem;
	}

	&94 {
		top: 9.4rem;
		bottom: 9.4rem;
	}

	&95 {
		top: 9.5rem;
		bottom: 9.5rem;
	}

	&96 {
		top: 9.6rem;
		bottom: 9.6rem;
	}

	&97 {
		top: 9.7rem;
		bottom: 9.7rem;
	}

	&98 {
		top: 9.8rem;
		bottom: 9.8rem;
	}

	&99 {
		top: 9.9rem;
		bottom: 9.9rem;
	}

	&100 {
		top: 10.0rem;
		bottom: 10.0rem;
	}

	&101 {
		top: 10.1rem;
		bottom: 10.1rem;
	}

	&102 {
		top: 10.2rem;
		bottom: 10.2rem;
	}

	&103 {
		top: 10.3rem;
		bottom: 10.3rem;
	}

	&104 {
		top: 10.4rem;
		bottom: 10.4rem;
	}

	&105 {
		top: 10.5rem;
		bottom: 10.5rem;
	}

	&106 {
		top: 10.6rem;
		bottom: 10.6rem;
	}

	&107 {
		top: 10.7rem;
		bottom: 10.7rem;
	}

	&108 {
		top: 10.8rem;
		bottom: 10.8rem;
	}

	&109 {
		top: 10.9rem;
		bottom: 10.9rem;
	}

	&110 {
		top: 11.0rem;
		bottom: 11.0rem;
	}

	&111 {
		top: 11.1rem;
		bottom: 11.1rem;
	}

	&112 {
		top: 11.2rem;
		bottom: 11.2rem;
	}

	&113 {
		top: 11.3rem;
		bottom: 11.3rem;
	}

	&114 {
		top: 11.4rem;
		bottom: 11.4rem;
	}

	&115 {
		top: 11.5rem;
		bottom: 11.5rem;
	}

	&116 {
		top: 11.6rem;
		bottom: 11.6rem;
	}

	&117 {
		top: 11.7rem;
		bottom: 11.7rem;
	}

	&118 {
		top: 11.8rem;
		bottom: 11.8rem;
	}

	&119 {
		top: 11.9rem;
		bottom: 11.9rem;
	}

	&120 {
		top: 12.0rem;
		bottom: 12.0rem;
	}

	&121 {
		top: 12.1rem;
		bottom: 12.1rem;
	}

	&122 {
		top: 12.2rem;
		bottom: 12.2rem;
	}

	&123 {
		top: 12.3rem;
		bottom: 12.3rem;
	}

	&124 {
		top: 12.4rem;
		bottom: 12.4rem;
	}

	&125 {
		top: 12.5rem;
		bottom: 12.5rem;
	}

	&126 {
		top: 12.6rem;
		bottom: 12.6rem;
	}

	&127 {
		top: 12.7rem;
		bottom: 12.7rem;
	}

	&128 {
		top: 12.8rem;
		bottom: 12.8rem;
	}

	&129 {
		top: 12.9rem;
		bottom: 12.9rem;
	}

	&130 {
		top: 13.0rem;
		bottom: 13.0rem;
	}

	&131 {
		top: 13.1rem;
		bottom: 13.1rem;
	}

	&132 {
		top: 13.2rem;
		bottom: 13.2rem;
	}

	&133 {
		top: 13.3rem;
		bottom: 13.3rem;
	}

	&134 {
		top: 13.4rem;
		bottom: 13.4rem;
	}

	&135 {
		top: 13.5rem;
		bottom: 13.5rem;
	}

	&136 {
		top: 13.6rem;
		bottom: 13.6rem;
	}

	&137 {
		top: 13.7rem;
		bottom: 13.7rem;
	}

	&138 {
		top: 13.8rem;
		bottom: 13.8rem;
	}

	&139 {
		top: 13.9rem;
		bottom: 13.9rem;
	}

	&140 {
		top: 14.0rem;
		bottom: 14.0rem;
	}

	&141 {
		top: 14.1rem;
		bottom: 14.1rem;
	}

	&142 {
		top: 14.2rem;
		bottom: 14.2rem;
	}

	&143 {
		top: 14.3rem;
		bottom: 14.3rem;
	}

	&144 {
		top: 14.4rem;
		bottom: 14.4rem;
	}

	&145 {
		top: 14.5rem;
		bottom: 14.5rem;
	}

	&146 {
		top: 14.6rem;
		bottom: 14.6rem;
	}

	&147 {
		top: 14.7rem;
		bottom: 14.7rem;
	}

	&148 {
		top: 14.8rem;
		bottom: 14.8rem;
	}

	&149 {
		top: 14.9rem;
		bottom: 14.9rem;
	}

	&150 {
		top: 15.0rem;
		bottom: 15.0rem;
	}

	&151 {
		top: 15.1rem;
		bottom: 15.1rem;
	}

	&152 {
		top: 15.2rem;
		bottom: 15.2rem;
	}

	&153 {
		top: 15.3rem;
		bottom: 15.3rem;
	}

	&154 {
		top: 15.4rem;
		bottom: 15.4rem;
	}

	&155 {
		top: 15.5rem;
		bottom: 15.5rem;
	}

	&156 {
		top: 15.6rem;
		bottom: 15.6rem;
	}

	&157 {
		top: 15.7rem;
		bottom: 15.7rem;
	}

	&158 {
		top: 15.8rem;
		bottom: 15.8rem;
	}

	&159 {
		top: 15.9rem;
		bottom: 15.9rem;
	}

	&160 {
		top: 16.0rem;
		bottom: 16.0rem;
	}

	&161 {
		top: 16.1rem;
		bottom: 16.1rem;
	}

	&162 {
		top: 16.2rem;
		bottom: 16.2rem;
	}

	&163 {
		top: 16.3rem;
		bottom: 16.3rem;
	}

	&164 {
		top: 16.4rem;
		bottom: 16.4rem;
	}

	&165 {
		top: 16.5rem;
		bottom: 16.5rem;
	}

	&166 {
		top: 16.6rem;
		bottom: 16.6rem;
	}

	&167 {
		top: 16.7rem;
		bottom: 16.7rem;
	}

	&168 {
		top: 16.8rem;
		bottom: 16.8rem;
	}

	&169 {
		top: 16.9rem;
		bottom: 16.9rem;
	}

	&170 {
		top: 17.0rem;
		bottom: 17.0rem;
	}

	&171 {
		top: 17.1rem;
		bottom: 17.1rem;
	}

	&172 {
		top: 17.2rem;
		bottom: 17.2rem;
	}

	&173 {
		top: 17.3rem;
		bottom: 17.3rem;
	}

	&174 {
		top: 17.4rem;
		bottom: 17.4rem;
	}

	&175 {
		top: 17.5rem;
		bottom: 17.5rem;
	}

	&176 {
		top: 17.6rem;
		bottom: 17.6rem;
	}

	&177 {
		top: 17.7rem;
		bottom: 17.7rem;
	}

	&178 {
		top: 17.8rem;
		bottom: 17.8rem;
	}

	&179 {
		top: 17.9rem;
		bottom: 17.9rem;
	}

	&180 {
		top: 18.0rem;
		bottom: 18.0rem;
	}

	&181 {
		top: 18.1rem;
		bottom: 18.1rem;
	}

	&182 {
		top: 18.2rem;
		bottom: 18.2rem;
	}

	&183 {
		top: 18.3rem;
		bottom: 18.3rem;
	}

	&184 {
		top: 18.4rem;
		bottom: 18.4rem;
	}

	&185 {
		top: 18.5rem;
		bottom: 18.5rem;
	}

	&186 {
		top: 18.6rem;
		bottom: 18.6rem;
	}

	&187 {
		top: 18.7rem;
		bottom: 18.7rem;
	}

	&188 {
		top: 18.8rem;
		bottom: 18.8rem;
	}

	&189 {
		top: 18.9rem;
		bottom: 18.9rem;
	}

	&190 {
		top: 19.0rem;
		bottom: 19.0rem;
	}

	&191 {
		top: 19.1rem;
		bottom: 19.1rem;
	}

	&192 {
		top: 19.2rem;
		bottom: 19.2rem;
	}

	&193 {
		top: 19.3rem;
		bottom: 19.3rem;
	}

	&194 {
		top: 19.4rem;
		bottom: 19.4rem;
	}

	&195 {
		top: 19.5rem;
		bottom: 19.5rem;
	}

	&196 {
		top: 19.6rem;
		bottom: 19.6rem;
	}

	&197 {
		top: 19.7rem;
		bottom: 19.7rem;
	}

	&198 {
		top: 19.8rem;
		bottom: 19.8rem;
	}

	&199 {
		top: 19.9rem;
		bottom: 19.9rem;
	}

	&200 {
		top: 20.0rem;
		bottom: 20.0rem;
	}
}





// ABSOLUTE POSIITON RIGHT BOTTOM
.pos-rb--,
.pos-br--,
.rb--,
.br-- {
	&00 {
		right: 0.0rem;
		bottom: 0.0rem;
	}

	&01 {
		right: 0.1rem;
		bottom: 0.1rem;
	}

	&02 {
		right: 0.2rem;
		bottom: 0.2rem;
	}

	&03 {
		right: 0.3rem;
		bottom: 0.3rem;
	}

	&04 {
		right: 0.4rem;
		bottom: 0.4rem;
	}

	&05 {
		right: 0.5rem;
		bottom: 0.5rem;
	}

	&06 {
		right: 0.6rem;
		bottom: 0.6rem;
	}

	&07 {
		right: 0.7rem;
		bottom: 0.7rem;
	}

	&08 {
		right: 0.8rem;
		bottom: 0.8rem;
	}

	&09 {
		right: 0.9rem;
		bottom: 0.9rem;
	}

	&10 {
		right: 1.0rem;
		bottom: 1.0rem;
	}

	&11 {
		right: 1.1rem;
		bottom: 1.1rem;
	}

	&12 {
		right: 1.2rem;
		bottom: 1.2rem;
	}

	&13 {
		right: 1.3rem;
		bottom: 1.3rem;
	}

	&14 {
		right: 1.4rem;
		bottom: 1.4rem;
	}

	&15 {
		right: 1.5rem;
		bottom: 1.5rem;
	}

	&16 {
		right: 1.6rem;
		bottom: 1.6rem;
	}

	&17 {
		right: 1.7rem;
		bottom: 1.7rem;
	}

	&18 {
		right: 1.8rem;
		bottom: 1.8rem;
	}

	&19 {
		right: 1.9rem;
		bottom: 1.9rem;
	}

	&20 {
		right: 2.0rem;
		bottom: 2.0rem;
	}

	&21 {
		right: 2.1rem;
		bottom: 2.1rem;
	}

	&22 {
		right: 2.2rem;
		bottom: 2.2rem;
	}

	&23 {
		right: 2.3rem;
		bottom: 2.3rem;
	}

	&24 {
		right: 2.4rem;
		bottom: 2.4rem;
	}

	&25 {
		right: 2.5rem;
		bottom: 2.5rem;
	}

	&26 {
		right: 2.6rem;
		bottom: 2.6rem;
	}

	&27 {
		right: 2.7rem;
		bottom: 2.7rem;
	}

	&28 {
		right: 2.8rem;
		bottom: 2.8rem;
	}

	&29 {
		right: 2.9rem;
		bottom: 2.9rem;
	}

	&30 {
		right: 3.0rem;
		bottom: 3.0rem;
	}

	&31 {
		right: 3.1rem;
		bottom: 3.1rem;
	}

	&32 {
		right: 3.2rem;
		bottom: 3.2rem;
	}

	&33 {
		right: 3.3rem;
		bottom: 3.3rem;
	}

	&34 {
		right: 3.4rem;
		bottom: 3.4rem;
	}

	&35 {
		right: 3.5rem;
		bottom: 3.5rem;
	}

	&36 {
		right: 3.6rem;
		bottom: 3.6rem;
	}

	&37 {
		right: 3.7rem;
		bottom: 3.7rem;
	}

	&38 {
		right: 3.8rem;
		bottom: 3.8rem;
	}

	&39 {
		right: 3.9rem;
		bottom: 3.9rem;
	}

	&40 {
		right: 4.0rem;
		bottom: 4.0rem;
	}

	&41 {
		right: 4.1rem;
		bottom: 4.1rem;
	}

	&42 {
		right: 4.2rem;
		bottom: 4.2rem;
	}

	&43 {
		right: 4.3rem;
		bottom: 4.3rem;
	}

	&44 {
		right: 4.4rem;
		bottom: 4.4rem;
	}

	&45 {
		right: 4.5rem;
		bottom: 4.5rem;
	}

	&46 {
		right: 4.6rem;
		bottom: 4.6rem;
	}

	&47 {
		right: 4.7rem;
		bottom: 4.7rem;
	}

	&48 {
		right: 4.8rem;
		bottom: 4.8rem;
	}

	&49 {
		right: 4.9rem;
		bottom: 4.9rem;
	}

	&50 {
		right: 5.0rem;
		bottom: 5.0rem;
	}

	&51 {
		right: 5.1rem;
		bottom: 5.1rem;
	}

	&52 {
		right: 5.2rem;
		bottom: 5.2rem;
	}

	&53 {
		right: 5.3rem;
		bottom: 5.3rem;
	}

	&54 {
		right: 5.4rem;
		bottom: 5.4rem;
	}

	&55 {
		right: 5.5rem;
		bottom: 5.5rem;
	}

	&56 {
		right: 5.6rem;
		bottom: 5.6rem;
	}

	&57 {
		right: 5.7rem;
		bottom: 5.7rem;
	}

	&58 {
		right: 5.8rem;
		bottom: 5.8rem;
	}

	&59 {
		right: 5.9rem;
		bottom: 5.9rem;
	}

	&60 {
		right: 6.0rem;
		bottom: 6.0rem;
	}

	&61 {
		right: 6.1rem;
		bottom: 6.1rem;
	}

	&62 {
		right: 6.2rem;
		bottom: 6.2rem;
	}

	&63 {
		right: 6.3rem;
		bottom: 6.3rem;
	}

	&64 {
		right: 6.4rem;
		bottom: 6.4rem;
	}

	&65 {
		right: 6.5rem;
		bottom: 6.5rem;
	}

	&66 {
		right: 6.6rem;
		bottom: 6.6rem;
	}

	&67 {
		right: 6.7rem;
		bottom: 6.7rem;
	}

	&68 {
		right: 6.8rem;
		bottom: 6.8rem;
	}

	&69 {
		right: 6.9rem;
		bottom: 6.9rem;
	}

	&70 {
		right: 7.0rem;
		bottom: 7.0rem;
	}

	&71 {
		right: 7.1rem;
		bottom: 7.1rem;
	}

	&72 {
		right: 7.2rem;
		bottom: 7.2rem;
	}

	&73 {
		right: 7.3rem;
		bottom: 7.3rem;
	}

	&74 {
		right: 7.4rem;
		bottom: 7.4rem;
	}

	&75 {
		right: 7.5rem;
		bottom: 7.5rem;
	}

	&76 {
		right: 7.6rem;
		bottom: 7.6rem;
	}

	&77 {
		right: 7.7rem;
		bottom: 7.7rem;
	}

	&78 {
		right: 7.8rem;
		bottom: 7.8rem;
	}

	&79 {
		right: 7.9rem;
		bottom: 7.9rem;
	}

	&80 {
		right: 8.0rem;
		bottom: 8.0rem;
	}

	&81 {
		right: 8.1rem;
		bottom: 8.1rem;
	}

	&82 {
		right: 8.2rem;
		bottom: 8.2rem;
	}

	&83 {
		right: 8.3rem;
		bottom: 8.3rem;
	}

	&84 {
		right: 8.4rem;
		bottom: 8.4rem;
	}

	&85 {
		right: 8.5rem;
		bottom: 8.5rem;
	}

	&86 {
		right: 8.6rem;
		bottom: 8.6rem;
	}

	&87 {
		right: 8.7rem;
		bottom: 8.7rem;
	}

	&88 {
		right: 8.8rem;
		bottom: 8.8rem;
	}

	&89 {
		right: 8.9rem;
		bottom: 8.9rem;
	}

	&90 {
		right: 9.0rem;
		bottom: 9.0rem;
	}

	&91 {
		right: 9.1rem;
		bottom: 9.1rem;
	}

	&92 {
		right: 9.2rem;
		bottom: 9.2rem;
	}

	&93 {
		right: 9.3rem;
		bottom: 9.3rem;
	}

	&94 {
		right: 9.4rem;
		bottom: 9.4rem;
	}

	&95 {
		right: 9.5rem;
		bottom: 9.5rem;
	}

	&96 {
		right: 9.6rem;
		bottom: 9.6rem;
	}

	&97 {
		right: 9.7rem;
		bottom: 9.7rem;
	}

	&98 {
		right: 9.8rem;
		bottom: 9.8rem;
	}

	&99 {
		right: 9.9rem;
		bottom: 9.9rem;
	}

	&100 {
		right: 10.0rem;
		bottom: 10.0rem;
	}

	&101 {
		right: 10.1rem;
		bottom: 10.1rem;
	}

	&102 {
		right: 10.2rem;
		bottom: 10.2rem;
	}

	&103 {
		right: 10.3rem;
		bottom: 10.3rem;
	}

	&104 {
		right: 10.4rem;
		bottom: 10.4rem;
	}

	&105 {
		right: 10.5rem;
		bottom: 10.5rem;
	}

	&106 {
		right: 10.6rem;
		bottom: 10.6rem;
	}

	&107 {
		right: 10.7rem;
		bottom: 10.7rem;
	}

	&108 {
		right: 10.8rem;
		bottom: 10.8rem;
	}

	&109 {
		right: 10.9rem;
		bottom: 10.9rem;
	}

	&110 {
		right: 11.0rem;
		bottom: 11.0rem;
	}

	&111 {
		right: 11.1rem;
		bottom: 11.1rem;
	}

	&112 {
		right: 11.2rem;
		bottom: 11.2rem;
	}

	&113 {
		right: 11.3rem;
		bottom: 11.3rem;
	}

	&114 {
		right: 11.4rem;
		bottom: 11.4rem;
	}

	&115 {
		right: 11.5rem;
		bottom: 11.5rem;
	}

	&116 {
		right: 11.6rem;
		bottom: 11.6rem;
	}

	&117 {
		right: 11.7rem;
		bottom: 11.7rem;
	}

	&118 {
		right: 11.8rem;
		bottom: 11.8rem;
	}

	&119 {
		right: 11.9rem;
		bottom: 11.9rem;
	}

	&120 {
		right: 12.0rem;
		bottom: 12.0rem;
	}

	&121 {
		right: 12.1rem;
		bottom: 12.1rem;
	}

	&122 {
		right: 12.2rem;
		bottom: 12.2rem;
	}

	&123 {
		right: 12.3rem;
		bottom: 12.3rem;
	}

	&124 {
		right: 12.4rem;
		bottom: 12.4rem;
	}

	&125 {
		right: 12.5rem;
		bottom: 12.5rem;
	}

	&126 {
		right: 12.6rem;
		bottom: 12.6rem;
	}

	&127 {
		right: 12.7rem;
		bottom: 12.7rem;
	}

	&128 {
		right: 12.8rem;
		bottom: 12.8rem;
	}

	&129 {
		right: 12.9rem;
		bottom: 12.9rem;
	}

	&130 {
		right: 13.0rem;
		bottom: 13.0rem;
	}

	&131 {
		right: 13.1rem;
		bottom: 13.1rem;
	}

	&132 {
		right: 13.2rem;
		bottom: 13.2rem;
	}

	&133 {
		right: 13.3rem;
		bottom: 13.3rem;
	}

	&134 {
		right: 13.4rem;
		bottom: 13.4rem;
	}

	&135 {
		right: 13.5rem;
		bottom: 13.5rem;
	}

	&136 {
		right: 13.6rem;
		bottom: 13.6rem;
	}

	&137 {
		right: 13.7rem;
		bottom: 13.7rem;
	}

	&138 {
		right: 13.8rem;
		bottom: 13.8rem;
	}

	&139 {
		right: 13.9rem;
		bottom: 13.9rem;
	}

	&140 {
		right: 14.0rem;
		bottom: 14.0rem;
	}

	&141 {
		right: 14.1rem;
		bottom: 14.1rem;
	}

	&142 {
		right: 14.2rem;
		bottom: 14.2rem;
	}

	&143 {
		right: 14.3rem;
		bottom: 14.3rem;
	}

	&144 {
		right: 14.4rem;
		bottom: 14.4rem;
	}

	&145 {
		right: 14.5rem;
		bottom: 14.5rem;
	}

	&146 {
		right: 14.6rem;
		bottom: 14.6rem;
	}

	&147 {
		right: 14.7rem;
		bottom: 14.7rem;
	}

	&148 {
		right: 14.8rem;
		bottom: 14.8rem;
	}

	&149 {
		right: 14.9rem;
		bottom: 14.9rem;
	}

	&150 {
		right: 15.0rem;
		bottom: 15.0rem;
	}

	&151 {
		right: 15.1rem;
		bottom: 15.1rem;
	}

	&152 {
		right: 15.2rem;
		bottom: 15.2rem;
	}

	&153 {
		right: 15.3rem;
		bottom: 15.3rem;
	}

	&154 {
		right: 15.4rem;
		bottom: 15.4rem;
	}

	&155 {
		right: 15.5rem;
		bottom: 15.5rem;
	}

	&156 {
		right: 15.6rem;
		bottom: 15.6rem;
	}

	&157 {
		right: 15.7rem;
		bottom: 15.7rem;
	}

	&158 {
		right: 15.8rem;
		bottom: 15.8rem;
	}

	&159 {
		right: 15.9rem;
		bottom: 15.9rem;
	}

	&160 {
		right: 16.0rem;
		bottom: 16.0rem;
	}

	&161 {
		right: 16.1rem;
		bottom: 16.1rem;
	}

	&162 {
		right: 16.2rem;
		bottom: 16.2rem;
	}

	&163 {
		right: 16.3rem;
		bottom: 16.3rem;
	}

	&164 {
		right: 16.4rem;
		bottom: 16.4rem;
	}

	&165 {
		right: 16.5rem;
		bottom: 16.5rem;
	}

	&166 {
		right: 16.6rem;
		bottom: 16.6rem;
	}

	&167 {
		right: 16.7rem;
		bottom: 16.7rem;
	}

	&168 {
		right: 16.8rem;
		bottom: 16.8rem;
	}

	&169 {
		right: 16.9rem;
		bottom: 16.9rem;
	}

	&170 {
		right: 17.0rem;
		bottom: 17.0rem;
	}

	&171 {
		right: 17.1rem;
		bottom: 17.1rem;
	}

	&172 {
		right: 17.2rem;
		bottom: 17.2rem;
	}

	&173 {
		right: 17.3rem;
		bottom: 17.3rem;
	}

	&174 {
		right: 17.4rem;
		bottom: 17.4rem;
	}

	&175 {
		right: 17.5rem;
		bottom: 17.5rem;
	}

	&176 {
		right: 17.6rem;
		bottom: 17.6rem;
	}

	&177 {
		right: 17.7rem;
		bottom: 17.7rem;
	}

	&178 {
		right: 17.8rem;
		bottom: 17.8rem;
	}

	&179 {
		right: 17.9rem;
		bottom: 17.9rem;
	}

	&180 {
		right: 18.0rem;
		bottom: 18.0rem;
	}

	&181 {
		right: 18.1rem;
		bottom: 18.1rem;
	}

	&182 {
		right: 18.2rem;
		bottom: 18.2rem;
	}

	&183 {
		right: 18.3rem;
		bottom: 18.3rem;
	}

	&184 {
		right: 18.4rem;
		bottom: 18.4rem;
	}

	&185 {
		right: 18.5rem;
		bottom: 18.5rem;
	}

	&186 {
		right: 18.6rem;
		bottom: 18.6rem;
	}

	&187 {
		right: 18.7rem;
		bottom: 18.7rem;
	}

	&188 {
		right: 18.8rem;
		bottom: 18.8rem;
	}

	&189 {
		right: 18.9rem;
		bottom: 18.9rem;
	}

	&190 {
		right: 19.0rem;
		bottom: 19.0rem;
	}

	&191 {
		right: 19.1rem;
		bottom: 19.1rem;
	}

	&192 {
		right: 19.2rem;
		bottom: 19.2rem;
	}

	&193 {
		right: 19.3rem;
		bottom: 19.3rem;
	}

	&194 {
		right: 19.4rem;
		bottom: 19.4rem;
	}

	&195 {
		right: 19.5rem;
		bottom: 19.5rem;
	}

	&196 {
		right: 19.6rem;
		bottom: 19.6rem;
	}

	&197 {
		right: 19.7rem;
		bottom: 19.7rem;
	}

	&198 {
		right: 19.8rem;
		bottom: 19.8rem;
	}

	&199 {
		right: 19.9rem;
		bottom: 19.9rem;
	}

	&200 {
		right: 20.0rem;
		bottom: 20.0rem;
	}
}






// ABSOLUTE POSIITON LEFT TOP RIGHT

.pos-ltr--,
.pos-lrt--,
.pos-tlr--,
.pos-trl--,
.pos-rlt--,
.pos-rtl--,
.ltr--,
.lrt--,
.tlr--,
.trl--,
.rlt--,
.rtl-- {
	&00 {
		left: 0.0rem;
		top: 0.0rem;
		right: 0.0rem;
	}

	&01 {
		left: 0.1rem;
		top: 0.1rem;
		right: 0.1rem;
	}

	&02 {
		left: 0.2rem;
		top: 0.2rem;
		right: 0.2rem;
	}

	&03 {
		left: 0.3rem;
		top: 0.3rem;
		right: 0.3rem;
	}

	&04 {
		left: 0.4rem;
		top: 0.4rem;
		right: 0.4rem;
	}

	&05 {
		left: 0.5rem;
		top: 0.5rem;
		right: 0.5rem;
	}

	&06 {
		left: 0.6rem;
		top: 0.6rem;
		right: 0.6rem;
	}

	&07 {
		left: 0.7rem;
		top: 0.7rem;
		right: 0.7rem;
	}

	&08 {
		left: 0.8rem;
		top: 0.8rem;
		right: 0.8rem;
	}

	&09 {
		left: 0.9rem;
		top: 0.9rem;
		right: 0.9rem;
	}

	&10 {
		left: 1.0rem;
		top: 1.0rem;
		right: 1.0rem;
	}

	&11 {
		left: 1.1rem;
		top: 1.1rem;
		right: 1.1rem;
	}

	&12 {
		left: 1.2rem;
		top: 1.2rem;
		right: 1.2rem;
	}

	&13 {
		left: 1.3rem;
		top: 1.3rem;
		right: 1.3rem;
	}

	&14 {
		left: 1.4rem;
		top: 1.4rem;
		right: 1.4rem;
	}

	&15 {
		left: 1.5rem;
		top: 1.5rem;
		right: 1.5rem;
	}

	&16 {
		left: 1.6rem;
		top: 1.6rem;
		right: 1.6rem;
	}

	&17 {
		left: 1.7rem;
		top: 1.7rem;
		right: 1.7rem;
	}

	&18 {
		left: 1.8rem;
		top: 1.8rem;
		right: 1.8rem;
	}

	&19 {
		left: 1.9rem;
		top: 1.9rem;
		right: 1.9rem;
	}

	&20 {
		left: 2.0rem;
		top: 2.0rem;
		right: 2.0rem;
	}

	&21 {
		left: 2.1rem;
		top: 2.1rem;
		right: 2.1rem;
	}

	&22 {
		left: 2.2rem;
		top: 2.2rem;
		right: 2.2rem;
	}

	&23 {
		left: 2.3rem;
		top: 2.3rem;
		right: 2.3rem;
	}

	&24 {
		left: 2.4rem;
		top: 2.4rem;
		right: 2.4rem;
	}

	&25 {
		left: 2.5rem;
		top: 2.5rem;
		right: 2.5rem;
	}

	&26 {
		left: 2.6rem;
		top: 2.6rem;
		right: 2.6rem;
	}

	&27 {
		left: 2.7rem;
		top: 2.7rem;
		right: 2.7rem;
	}

	&28 {
		left: 2.8rem;
		top: 2.8rem;
		right: 2.8rem;
	}

	&29 {
		left: 2.9rem;
		top: 2.9rem;
		right: 2.9rem;
	}

	&30 {
		left: 3.0rem;
		top: 3.0rem;
		right: 3.0rem;
	}

	&31 {
		left: 3.1rem;
		top: 3.1rem;
		right: 3.1rem;
	}

	&32 {
		left: 3.2rem;
		top: 3.2rem;
		right: 3.2rem;
	}

	&33 {
		left: 3.3rem;
		top: 3.3rem;
		right: 3.3rem;
	}

	&34 {
		left: 3.4rem;
		top: 3.4rem;
		right: 3.4rem;
	}

	&35 {
		left: 3.5rem;
		top: 3.5rem;
		right: 3.5rem;
	}

	&36 {
		left: 3.6rem;
		top: 3.6rem;
		right: 3.6rem;
	}

	&37 {
		left: 3.7rem;
		top: 3.7rem;
		right: 3.7rem;
	}

	&38 {
		left: 3.8rem;
		top: 3.8rem;
		right: 3.8rem;
	}

	&39 {
		left: 3.9rem;
		top: 3.9rem;
		right: 3.9rem;
	}

	&40 {
		left: 4.0rem;
		top: 4.0rem;
		right: 4.0rem;
	}

	&41 {
		left: 4.1rem;
		top: 4.1rem;
		right: 4.1rem;
	}

	&42 {
		left: 4.2rem;
		top: 4.2rem;
		right: 4.2rem;
	}

	&43 {
		left: 4.3rem;
		top: 4.3rem;
		right: 4.3rem;
	}

	&44 {
		left: 4.4rem;
		top: 4.4rem;
		right: 4.4rem;
	}

	&45 {
		left: 4.5rem;
		top: 4.5rem;
		right: 4.5rem;
	}

	&46 {
		left: 4.6rem;
		top: 4.6rem;
		right: 4.6rem;
	}

	&47 {
		left: 4.7rem;
		top: 4.7rem;
		right: 4.7rem;
	}

	&48 {
		left: 4.8rem;
		top: 4.8rem;
		right: 4.8rem;
	}

	&49 {
		left: 4.9rem;
		top: 4.9rem;
		right: 4.9rem;
	}

	&50 {
		left: 5.0rem;
		top: 5.0rem;
		right: 5.0rem;
	}

	&51 {
		left: 5.1rem;
		top: 5.1rem;
		right: 5.1rem;
	}

	&52 {
		left: 5.2rem;
		top: 5.2rem;
		right: 5.2rem;
	}

	&53 {
		left: 5.3rem;
		top: 5.3rem;
		right: 5.3rem;
	}

	&54 {
		left: 5.4rem;
		top: 5.4rem;
		right: 5.4rem;
	}

	&55 {
		left: 5.5rem;
		top: 5.5rem;
		right: 5.5rem;
	}

	&56 {
		left: 5.6rem;
		top: 5.6rem;
		right: 5.6rem;
	}

	&57 {
		left: 5.7rem;
		top: 5.7rem;
		right: 5.7rem;
	}

	&58 {
		left: 5.8rem;
		top: 5.8rem;
		right: 5.8rem;
	}

	&59 {
		left: 5.9rem;
		top: 5.9rem;
		right: 5.9rem;
	}

	&60 {
		left: 6.0rem;
		top: 6.0rem;
		right: 6.0rem;
	}

	&61 {
		left: 6.1rem;
		top: 6.1rem;
		right: 6.1rem;
	}

	&62 {
		left: 6.2rem;
		top: 6.2rem;
		right: 6.2rem;
	}

	&63 {
		left: 6.3rem;
		top: 6.3rem;
		right: 6.3rem;
	}

	&64 {
		left: 6.4rem;
		top: 6.4rem;
		right: 6.4rem;
	}

	&65 {
		left: 6.5rem;
		top: 6.5rem;
		right: 6.5rem;
	}

	&66 {
		left: 6.6rem;
		top: 6.6rem;
		right: 6.6rem;
	}

	&67 {
		left: 6.7rem;
		top: 6.7rem;
		right: 6.7rem;
	}

	&68 {
		left: 6.8rem;
		top: 6.8rem;
		right: 6.8rem;
	}

	&69 {
		left: 6.9rem;
		top: 6.9rem;
		right: 6.9rem;
	}

	&70 {
		left: 7.0rem;
		top: 7.0rem;
		right: 7.0rem;
	}

	&71 {
		left: 7.1rem;
		top: 7.1rem;
		right: 7.1rem;
	}

	&72 {
		left: 7.2rem;
		top: 7.2rem;
		right: 7.2rem;
	}

	&73 {
		left: 7.3rem;
		top: 7.3rem;
		right: 7.3rem;
	}

	&74 {
		left: 7.4rem;
		top: 7.4rem;
		right: 7.4rem;
	}

	&75 {
		left: 7.5rem;
		top: 7.5rem;
		right: 7.5rem;
	}

	&76 {
		left: 7.6rem;
		top: 7.6rem;
		right: 7.6rem;
	}

	&77 {
		left: 7.7rem;
		top: 7.7rem;
		right: 7.7rem;
	}

	&78 {
		left: 7.8rem;
		top: 7.8rem;
		right: 7.8rem;
	}

	&79 {
		left: 7.9rem;
		top: 7.9rem;
		right: 7.9rem;
	}

	&80 {
		left: 8.0rem;
		top: 8.0rem;
		right: 8.0rem;
	}

	&81 {
		left: 8.1rem;
		top: 8.1rem;
		right: 8.1rem;
	}

	&82 {
		left: 8.2rem;
		top: 8.2rem;
		right: 8.2rem;
	}

	&83 {
		left: 8.3rem;
		top: 8.3rem;
		right: 8.3rem;
	}

	&84 {
		left: 8.4rem;
		top: 8.4rem;
		right: 8.4rem;
	}

	&85 {
		left: 8.5rem;
		top: 8.5rem;
		right: 8.5rem;
	}

	&86 {
		left: 8.6rem;
		top: 8.6rem;
		right: 8.6rem;
	}

	&87 {
		left: 8.7rem;
		top: 8.7rem;
		right: 8.7rem;
	}

	&88 {
		left: 8.8rem;
		top: 8.8rem;
		right: 8.8rem;
	}

	&89 {
		left: 8.9rem;
		top: 8.9rem;
		right: 8.9rem;
	}

	&90 {
		left: 9.0rem;
		top: 9.0rem;
		right: 9.0rem;
	}

	&91 {
		left: 9.1rem;
		top: 9.1rem;
		right: 9.1rem;
	}

	&92 {
		left: 9.2rem;
		top: 9.2rem;
		right: 9.2rem;
	}

	&93 {
		left: 9.3rem;
		top: 9.3rem;
		right: 9.3rem;
	}

	&94 {
		left: 9.4rem;
		top: 9.4rem;
		right: 9.4rem;
	}

	&95 {
		left: 9.5rem;
		top: 9.5rem;
		right: 9.5rem;
	}

	&96 {
		left: 9.6rem;
		top: 9.6rem;
		right: 9.6rem;
	}

	&97 {
		left: 9.7rem;
		top: 9.7rem;
		right: 9.7rem;
	}

	&98 {
		left: 9.8rem;
		top: 9.8rem;
		right: 9.8rem;
	}

	&99 {
		left: 9.9rem;
		top: 9.9rem;
		right: 9.9rem;
	}

	&100 {
		left: 10.0rem;
		top: 10.0rem;
		right: 10.0rem;
	}

	&101 {
		left: 10.1rem;
		top: 10.1rem;
		right: 10.1rem;
	}

	&102 {
		left: 10.2rem;
		top: 10.2rem;
		right: 10.2rem;
	}

	&103 {
		left: 10.3rem;
		top: 10.3rem;
		right: 10.3rem;
	}

	&104 {
		left: 10.4rem;
		top: 10.4rem;
		right: 10.4rem;
	}

	&105 {
		left: 10.5rem;
		top: 10.5rem;
		right: 10.5rem;
	}

	&106 {
		left: 10.6rem;
		top: 10.6rem;
		right: 10.6rem;
	}

	&107 {
		left: 10.7rem;
		top: 10.7rem;
		right: 10.7rem;
	}

	&108 {
		left: 10.8rem;
		top: 10.8rem;
		right: 10.8rem;
	}

	&109 {
		left: 10.9rem;
		top: 10.9rem;
		right: 10.9rem;
	}

	&110 {
		left: 11.0rem;
		top: 11.0rem;
		right: 11.0rem;
	}

	&111 {
		left: 11.1rem;
		top: 11.1rem;
		right: 11.1rem;
	}

	&112 {
		left: 11.2rem;
		top: 11.2rem;
		right: 11.2rem;
	}

	&113 {
		left: 11.3rem;
		top: 11.3rem;
		right: 11.3rem;
	}

	&114 {
		left: 11.4rem;
		top: 11.4rem;
		right: 11.4rem;
	}

	&115 {
		left: 11.5rem;
		top: 11.5rem;
		right: 11.5rem;
	}

	&116 {
		left: 11.6rem;
		top: 11.6rem;
		right: 11.6rem;
	}

	&117 {
		left: 11.7rem;
		top: 11.7rem;
		right: 11.7rem;
	}

	&118 {
		left: 11.8rem;
		top: 11.8rem;
		right: 11.8rem;
	}

	&119 {
		left: 11.9rem;
		top: 11.9rem;
		right: 11.9rem;
	}

	&120 {
		left: 12.0rem;
		top: 12.0rem;
		right: 12.0rem;
	}

	&121 {
		left: 12.1rem;
		top: 12.1rem;
		right: 12.1rem;
	}

	&122 {
		left: 12.2rem;
		top: 12.2rem;
		right: 12.2rem;
	}

	&123 {
		left: 12.3rem;
		top: 12.3rem;
		right: 12.3rem;
	}

	&124 {
		left: 12.4rem;
		top: 12.4rem;
		right: 12.4rem;
	}

	&125 {
		left: 12.5rem;
		top: 12.5rem;
		right: 12.5rem;
	}

	&126 {
		left: 12.6rem;
		top: 12.6rem;
		right: 12.6rem;
	}

	&127 {
		left: 12.7rem;
		top: 12.7rem;
		right: 12.7rem;
	}

	&128 {
		left: 12.8rem;
		top: 12.8rem;
		right: 12.8rem;
	}

	&129 {
		left: 12.9rem;
		top: 12.9rem;
		right: 12.9rem;
	}

	&130 {
		left: 13.0rem;
		top: 13.0rem;
		right: 13.0rem;
	}

	&131 {
		left: 13.1rem;
		top: 13.1rem;
		right: 13.1rem;
	}

	&132 {
		left: 13.2rem;
		top: 13.2rem;
		right: 13.2rem;
	}

	&133 {
		left: 13.3rem;
		top: 13.3rem;
		right: 13.3rem;
	}

	&134 {
		left: 13.4rem;
		top: 13.4rem;
		right: 13.4rem;
	}

	&135 {
		left: 13.5rem;
		top: 13.5rem;
		right: 13.5rem;
	}

	&136 {
		left: 13.6rem;
		top: 13.6rem;
		right: 13.6rem;
	}

	&137 {
		left: 13.7rem;
		top: 13.7rem;
		right: 13.7rem;
	}

	&138 {
		left: 13.8rem;
		top: 13.8rem;
		right: 13.8rem;
	}

	&139 {
		left: 13.9rem;
		top: 13.9rem;
		right: 13.9rem;
	}

	&140 {
		left: 14.0rem;
		top: 14.0rem;
		right: 14.0rem;
	}

	&141 {
		left: 14.1rem;
		top: 14.1rem;
		right: 14.1rem;
	}

	&142 {
		left: 14.2rem;
		top: 14.2rem;
		right: 14.2rem;
	}

	&143 {
		left: 14.3rem;
		top: 14.3rem;
		right: 14.3rem;
	}

	&144 {
		left: 14.4rem;
		top: 14.4rem;
		right: 14.4rem;
	}

	&145 {
		left: 14.5rem;
		top: 14.5rem;
		right: 14.5rem;
	}

	&146 {
		left: 14.6rem;
		top: 14.6rem;
		right: 14.6rem;
	}

	&147 {
		left: 14.7rem;
		top: 14.7rem;
		right: 14.7rem;
	}

	&148 {
		left: 14.8rem;
		top: 14.8rem;
		right: 14.8rem;
	}

	&149 {
		left: 14.9rem;
		top: 14.9rem;
		right: 14.9rem;
	}

	&150 {
		left: 15.0rem;
		top: 15.0rem;
		right: 15.0rem;
	}

	&151 {
		left: 15.1rem;
		top: 15.1rem;
		right: 15.1rem;
	}

	&152 {
		left: 15.2rem;
		top: 15.2rem;
		right: 15.2rem;
	}

	&153 {
		left: 15.3rem;
		top: 15.3rem;
		right: 15.3rem;
	}

	&154 {
		left: 15.4rem;
		top: 15.4rem;
		right: 15.4rem;
	}

	&155 {
		left: 15.5rem;
		top: 15.5rem;
		right: 15.5rem;
	}

	&156 {
		left: 15.6rem;
		top: 15.6rem;
		right: 15.6rem;
	}

	&157 {
		left: 15.7rem;
		top: 15.7rem;
		right: 15.7rem;
	}

	&158 {
		left: 15.8rem;
		top: 15.8rem;
		right: 15.8rem;
	}

	&159 {
		left: 15.9rem;
		top: 15.9rem;
		right: 15.9rem;
	}

	&160 {
		left: 16.0rem;
		top: 16.0rem;
		right: 16.0rem;
	}

	&161 {
		left: 16.1rem;
		top: 16.1rem;
		right: 16.1rem;
	}

	&162 {
		left: 16.2rem;
		top: 16.2rem;
		right: 16.2rem;
	}

	&163 {
		left: 16.3rem;
		top: 16.3rem;
		right: 16.3rem;
	}

	&164 {
		left: 16.4rem;
		top: 16.4rem;
		right: 16.4rem;
	}

	&165 {
		left: 16.5rem;
		top: 16.5rem;
		right: 16.5rem;
	}

	&166 {
		left: 16.6rem;
		top: 16.6rem;
		right: 16.6rem;
	}

	&167 {
		left: 16.7rem;
		top: 16.7rem;
		right: 16.7rem;
	}

	&168 {
		left: 16.8rem;
		top: 16.8rem;
		right: 16.8rem;
	}

	&169 {
		left: 16.9rem;
		top: 16.9rem;
		right: 16.9rem;
	}

	&170 {
		left: 17.0rem;
		top: 17.0rem;
		right: 17.0rem;
	}

	&171 {
		left: 17.1rem;
		top: 17.1rem;
		right: 17.1rem;
	}

	&172 {
		left: 17.2rem;
		top: 17.2rem;
		right: 17.2rem;
	}

	&173 {
		left: 17.3rem;
		top: 17.3rem;
		right: 17.3rem;
	}

	&174 {
		left: 17.4rem;
		top: 17.4rem;
		right: 17.4rem;
	}

	&175 {
		left: 17.5rem;
		top: 17.5rem;
		right: 17.5rem;
	}

	&176 {
		left: 17.6rem;
		top: 17.6rem;
		right: 17.6rem;
	}

	&177 {
		left: 17.7rem;
		top: 17.7rem;
		right: 17.7rem;
	}

	&178 {
		left: 17.8rem;
		top: 17.8rem;
		right: 17.8rem;
	}

	&179 {
		left: 17.9rem;
		top: 17.9rem;
		right: 17.9rem;
	}

	&180 {
		left: 18.0rem;
		top: 18.0rem;
		right: 18.0rem;
	}

	&181 {
		left: 18.1rem;
		top: 18.1rem;
		right: 18.1rem;
	}

	&182 {
		left: 18.2rem;
		top: 18.2rem;
		right: 18.2rem;
	}

	&183 {
		left: 18.3rem;
		top: 18.3rem;
		right: 18.3rem;
	}

	&184 {
		left: 18.4rem;
		top: 18.4rem;
		right: 18.4rem;
	}

	&185 {
		left: 18.5rem;
		top: 18.5rem;
		right: 18.5rem;
	}

	&186 {
		left: 18.6rem;
		top: 18.6rem;
		right: 18.6rem;
	}

	&187 {
		left: 18.7rem;
		top: 18.7rem;
		right: 18.7rem;
	}

	&188 {
		left: 18.8rem;
		top: 18.8rem;
		right: 18.8rem;
	}

	&189 {
		left: 18.9rem;
		top: 18.9rem;
		right: 18.9rem;
	}

	&190 {
		left: 19.0rem;
		top: 19.0rem;
		right: 19.0rem;
	}

	&191 {
		left: 19.1rem;
		top: 19.1rem;
		right: 19.1rem;
	}

	&192 {
		left: 19.2rem;
		top: 19.2rem;
		right: 19.2rem;
	}

	&193 {
		left: 19.3rem;
		top: 19.3rem;
		right: 19.3rem;
	}

	&194 {
		left: 19.4rem;
		top: 19.4rem;
		right: 19.4rem;
	}

	&195 {
		left: 19.5rem;
		top: 19.5rem;
		right: 19.5rem;
	}

	&196 {
		left: 19.6rem;
		top: 19.6rem;
		right: 19.6rem;
	}

	&197 {
		left: 19.7rem;
		top: 19.7rem;
		right: 19.7rem;
	}

	&198 {
		left: 19.8rem;
		top: 19.8rem;
		right: 19.8rem;
	}

	&199 {
		left: 19.9rem;
		top: 19.9rem;
		right: 19.9rem;
	}

	&200 {
		left: 20.0rem;
		top: 20.0rem;
		right: 20.0rem;
	}
}






// ABSOLUTE POSIITON LEFT TOP BOTTOM

.pos-ltb--,
.pos-lbt--,
.pos-tlb--,
.pos-tbl--,
.pos-blt--,
.pos-btl--,
.ltb--,
.lbt--,
.tlb--,
.tbl--,
.blt--,
.btl-- {
	&00 {
		left: 0.0rem;
		top: 0.0rem;
		bottom: 0.0rem;
	}

	&01 {
		left: 0.1rem;
		top: 0.1rem;
		bottom: 0.1rem;
	}

	&02 {
		left: 0.2rem;
		top: 0.2rem;
		bottom: 0.2rem;
	}

	&03 {
		left: 0.3rem;
		top: 0.3rem;
		bottom: 0.3rem;
	}

	&04 {
		left: 0.4rem;
		top: 0.4rem;
		bottom: 0.4rem;
	}

	&05 {
		left: 0.5rem;
		top: 0.5rem;
		bottom: 0.5rem;
	}

	&06 {
		left: 0.6rem;
		top: 0.6rem;
		bottom: 0.6rem;
	}

	&07 {
		left: 0.7rem;
		top: 0.7rem;
		bottom: 0.7rem;
	}

	&08 {
		left: 0.8rem;
		top: 0.8rem;
		bottom: 0.8rem;
	}

	&09 {
		left: 0.9rem;
		top: 0.9rem;
		bottom: 0.9rem;
	}

	&10 {
		left: 1.0rem;
		top: 1.0rem;
		bottom: 1.0rem;
	}

	&11 {
		left: 1.1rem;
		top: 1.1rem;
		bottom: 1.1rem;
	}

	&12 {
		left: 1.2rem;
		top: 1.2rem;
		bottom: 1.2rem;
	}

	&13 {
		left: 1.3rem;
		top: 1.3rem;
		bottom: 1.3rem;
	}

	&14 {
		left: 1.4rem;
		top: 1.4rem;
		bottom: 1.4rem;
	}

	&15 {
		left: 1.5rem;
		top: 1.5rem;
		bottom: 1.5rem;
	}

	&16 {
		left: 1.6rem;
		top: 1.6rem;
		bottom: 1.6rem;
	}

	&17 {
		left: 1.7rem;
		top: 1.7rem;
		bottom: 1.7rem;
	}

	&18 {
		left: 1.8rem;
		top: 1.8rem;
		bottom: 1.8rem;
	}

	&19 {
		left: 1.9rem;
		top: 1.9rem;
		bottom: 1.9rem;
	}

	&20 {
		left: 2.0rem;
		top: 2.0rem;
		bottom: 2.0rem;
	}

	&21 {
		left: 2.1rem;
		top: 2.1rem;
		bottom: 2.1rem;
	}

	&22 {
		left: 2.2rem;
		top: 2.2rem;
		bottom: 2.2rem;
	}

	&23 {
		left: 2.3rem;
		top: 2.3rem;
		bottom: 2.3rem;
	}

	&24 {
		left: 2.4rem;
		top: 2.4rem;
		bottom: 2.4rem;
	}

	&25 {
		left: 2.5rem;
		top: 2.5rem;
		bottom: 2.5rem;
	}

	&26 {
		left: 2.6rem;
		top: 2.6rem;
		bottom: 2.6rem;
	}

	&27 {
		left: 2.7rem;
		top: 2.7rem;
		bottom: 2.7rem;
	}

	&28 {
		left: 2.8rem;
		top: 2.8rem;
		bottom: 2.8rem;
	}

	&29 {
		left: 2.9rem;
		top: 2.9rem;
		bottom: 2.9rem;
	}

	&30 {
		left: 3.0rem;
		top: 3.0rem;
		bottom: 3.0rem;
	}

	&31 {
		left: 3.1rem;
		top: 3.1rem;
		bottom: 3.1rem;
	}

	&32 {
		left: 3.2rem;
		top: 3.2rem;
		bottom: 3.2rem;
	}

	&33 {
		left: 3.3rem;
		top: 3.3rem;
		bottom: 3.3rem;
	}

	&34 {
		left: 3.4rem;
		top: 3.4rem;
		bottom: 3.4rem;
	}

	&35 {
		left: 3.5rem;
		top: 3.5rem;
		bottom: 3.5rem;
	}

	&36 {
		left: 3.6rem;
		top: 3.6rem;
		bottom: 3.6rem;
	}

	&37 {
		left: 3.7rem;
		top: 3.7rem;
		bottom: 3.7rem;
	}

	&38 {
		left: 3.8rem;
		top: 3.8rem;
		bottom: 3.8rem;
	}

	&39 {
		left: 3.9rem;
		top: 3.9rem;
		bottom: 3.9rem;
	}

	&40 {
		left: 4.0rem;
		top: 4.0rem;
		bottom: 4.0rem;
	}

	&41 {
		left: 4.1rem;
		top: 4.1rem;
		bottom: 4.1rem;
	}

	&42 {
		left: 4.2rem;
		top: 4.2rem;
		bottom: 4.2rem;
	}

	&43 {
		left: 4.3rem;
		top: 4.3rem;
		bottom: 4.3rem;
	}

	&44 {
		left: 4.4rem;
		top: 4.4rem;
		bottom: 4.4rem;
	}

	&45 {
		left: 4.5rem;
		top: 4.5rem;
		bottom: 4.5rem;
	}

	&46 {
		left: 4.6rem;
		top: 4.6rem;
		bottom: 4.6rem;
	}

	&47 {
		left: 4.7rem;
		top: 4.7rem;
		bottom: 4.7rem;
	}

	&48 {
		left: 4.8rem;
		top: 4.8rem;
		bottom: 4.8rem;
	}

	&49 {
		left: 4.9rem;
		top: 4.9rem;
		bottom: 4.9rem;
	}

	&50 {
		left: 5.0rem;
		top: 5.0rem;
		bottom: 5.0rem;
	}

	&51 {
		left: 5.1rem;
		top: 5.1rem;
		bottom: 5.1rem;
	}

	&52 {
		left: 5.2rem;
		top: 5.2rem;
		bottom: 5.2rem;
	}

	&53 {
		left: 5.3rem;
		top: 5.3rem;
		bottom: 5.3rem;
	}

	&54 {
		left: 5.4rem;
		top: 5.4rem;
		bottom: 5.4rem;
	}

	&55 {
		left: 5.5rem;
		top: 5.5rem;
		bottom: 5.5rem;
	}

	&56 {
		left: 5.6rem;
		top: 5.6rem;
		bottom: 5.6rem;
	}

	&57 {
		left: 5.7rem;
		top: 5.7rem;
		bottom: 5.7rem;
	}

	&58 {
		left: 5.8rem;
		top: 5.8rem;
		bottom: 5.8rem;
	}

	&59 {
		left: 5.9rem;
		top: 5.9rem;
		bottom: 5.9rem;
	}

	&60 {
		left: 6.0rem;
		top: 6.0rem;
		bottom: 6.0rem;
	}

	&61 {
		left: 6.1rem;
		top: 6.1rem;
		bottom: 6.1rem;
	}

	&62 {
		left: 6.2rem;
		top: 6.2rem;
		bottom: 6.2rem;
	}

	&63 {
		left: 6.3rem;
		top: 6.3rem;
		bottom: 6.3rem;
	}

	&64 {
		left: 6.4rem;
		top: 6.4rem;
		bottom: 6.4rem;
	}

	&65 {
		left: 6.5rem;
		top: 6.5rem;
		bottom: 6.5rem;
	}

	&66 {
		left: 6.6rem;
		top: 6.6rem;
		bottom: 6.6rem;
	}

	&67 {
		left: 6.7rem;
		top: 6.7rem;
		bottom: 6.7rem;
	}

	&68 {
		left: 6.8rem;
		top: 6.8rem;
		bottom: 6.8rem;
	}

	&69 {
		left: 6.9rem;
		top: 6.9rem;
		bottom: 6.9rem;
	}

	&70 {
		left: 7.0rem;
		top: 7.0rem;
		bottom: 7.0rem;
	}

	&71 {
		left: 7.1rem;
		top: 7.1rem;
		bottom: 7.1rem;
	}

	&72 {
		left: 7.2rem;
		top: 7.2rem;
		bottom: 7.2rem;
	}

	&73 {
		left: 7.3rem;
		top: 7.3rem;
		bottom: 7.3rem;
	}

	&74 {
		left: 7.4rem;
		top: 7.4rem;
		bottom: 7.4rem;
	}

	&75 {
		left: 7.5rem;
		top: 7.5rem;
		bottom: 7.5rem;
	}

	&76 {
		left: 7.6rem;
		top: 7.6rem;
		bottom: 7.6rem;
	}

	&77 {
		left: 7.7rem;
		top: 7.7rem;
		bottom: 7.7rem;
	}

	&78 {
		left: 7.8rem;
		top: 7.8rem;
		bottom: 7.8rem;
	}

	&79 {
		left: 7.9rem;
		top: 7.9rem;
		bottom: 7.9rem;
	}

	&80 {
		left: 8.0rem;
		top: 8.0rem;
		bottom: 8.0rem;
	}

	&81 {
		left: 8.1rem;
		top: 8.1rem;
		bottom: 8.1rem;
	}

	&82 {
		left: 8.2rem;
		top: 8.2rem;
		bottom: 8.2rem;
	}

	&83 {
		left: 8.3rem;
		top: 8.3rem;
		bottom: 8.3rem;
	}

	&84 {
		left: 8.4rem;
		top: 8.4rem;
		bottom: 8.4rem;
	}

	&85 {
		left: 8.5rem;
		top: 8.5rem;
		bottom: 8.5rem;
	}

	&86 {
		left: 8.6rem;
		top: 8.6rem;
		bottom: 8.6rem;
	}

	&87 {
		left: 8.7rem;
		top: 8.7rem;
		bottom: 8.7rem;
	}

	&88 {
		left: 8.8rem;
		top: 8.8rem;
		bottom: 8.8rem;
	}

	&89 {
		left: 8.9rem;
		top: 8.9rem;
		bottom: 8.9rem;
	}

	&90 {
		left: 9.0rem;
		top: 9.0rem;
		bottom: 9.0rem;
	}

	&91 {
		left: 9.1rem;
		top: 9.1rem;
		bottom: 9.1rem;
	}

	&92 {
		left: 9.2rem;
		top: 9.2rem;
		bottom: 9.2rem;
	}

	&93 {
		left: 9.3rem;
		top: 9.3rem;
		bottom: 9.3rem;
	}

	&94 {
		left: 9.4rem;
		top: 9.4rem;
		bottom: 9.4rem;
	}

	&95 {
		left: 9.5rem;
		top: 9.5rem;
		bottom: 9.5rem;
	}

	&96 {
		left: 9.6rem;
		top: 9.6rem;
		bottom: 9.6rem;
	}

	&97 {
		left: 9.7rem;
		top: 9.7rem;
		bottom: 9.7rem;
	}

	&98 {
		left: 9.8rem;
		top: 9.8rem;
		bottom: 9.8rem;
	}

	&99 {
		left: 9.9rem;
		top: 9.9rem;
		bottom: 9.9rem;
	}

	&100 {
		left: 10.0rem;
		top: 10.0rem;
		bottom: 10.0rem;
	}

	&101 {
		left: 10.1rem;
		top: 10.1rem;
		bottom: 10.1rem;
	}

	&102 {
		left: 10.2rem;
		top: 10.2rem;
		bottom: 10.2rem;
	}

	&103 {
		left: 10.3rem;
		top: 10.3rem;
		bottom: 10.3rem;
	}

	&104 {
		left: 10.4rem;
		top: 10.4rem;
		bottom: 10.4rem;
	}

	&105 {
		left: 10.5rem;
		top: 10.5rem;
		bottom: 10.5rem;
	}

	&106 {
		left: 10.6rem;
		top: 10.6rem;
		bottom: 10.6rem;
	}

	&107 {
		left: 10.7rem;
		top: 10.7rem;
		bottom: 10.7rem;
	}

	&108 {
		left: 10.8rem;
		top: 10.8rem;
		bottom: 10.8rem;
	}

	&109 {
		left: 10.9rem;
		top: 10.9rem;
		bottom: 10.9rem;
	}

	&110 {
		left: 11.0rem;
		top: 11.0rem;
		bottom: 11.0rem;
	}

	&111 {
		left: 11.1rem;
		top: 11.1rem;
		bottom: 11.1rem;
	}

	&112 {
		left: 11.2rem;
		top: 11.2rem;
		bottom: 11.2rem;
	}

	&113 {
		left: 11.3rem;
		top: 11.3rem;
		bottom: 11.3rem;
	}

	&114 {
		left: 11.4rem;
		top: 11.4rem;
		bottom: 11.4rem;
	}

	&115 {
		left: 11.5rem;
		top: 11.5rem;
		bottom: 11.5rem;
	}

	&116 {
		left: 11.6rem;
		top: 11.6rem;
		bottom: 11.6rem;
	}

	&117 {
		left: 11.7rem;
		top: 11.7rem;
		bottom: 11.7rem;
	}

	&118 {
		left: 11.8rem;
		top: 11.8rem;
		bottom: 11.8rem;
	}

	&119 {
		left: 11.9rem;
		top: 11.9rem;
		bottom: 11.9rem;
	}

	&120 {
		left: 12.0rem;
		top: 12.0rem;
		bottom: 12.0rem;
	}

	&121 {
		left: 12.1rem;
		top: 12.1rem;
		bottom: 12.1rem;
	}

	&122 {
		left: 12.2rem;
		top: 12.2rem;
		bottom: 12.2rem;
	}

	&123 {
		left: 12.3rem;
		top: 12.3rem;
		bottom: 12.3rem;
	}

	&124 {
		left: 12.4rem;
		top: 12.4rem;
		bottom: 12.4rem;
	}

	&125 {
		left: 12.5rem;
		top: 12.5rem;
		bottom: 12.5rem;
	}

	&126 {
		left: 12.6rem;
		top: 12.6rem;
		bottom: 12.6rem;
	}

	&127 {
		left: 12.7rem;
		top: 12.7rem;
		bottom: 12.7rem;
	}

	&128 {
		left: 12.8rem;
		top: 12.8rem;
		bottom: 12.8rem;
	}

	&129 {
		left: 12.9rem;
		top: 12.9rem;
		bottom: 12.9rem;
	}

	&130 {
		left: 13.0rem;
		top: 13.0rem;
		bottom: 13.0rem;
	}

	&131 {
		left: 13.1rem;
		top: 13.1rem;
		bottom: 13.1rem;
	}

	&132 {
		left: 13.2rem;
		top: 13.2rem;
		bottom: 13.2rem;
	}

	&133 {
		left: 13.3rem;
		top: 13.3rem;
		bottom: 13.3rem;
	}

	&134 {
		left: 13.4rem;
		top: 13.4rem;
		bottom: 13.4rem;
	}

	&135 {
		left: 13.5rem;
		top: 13.5rem;
		bottom: 13.5rem;
	}

	&136 {
		left: 13.6rem;
		top: 13.6rem;
		bottom: 13.6rem;
	}

	&137 {
		left: 13.7rem;
		top: 13.7rem;
		bottom: 13.7rem;
	}

	&138 {
		left: 13.8rem;
		top: 13.8rem;
		bottom: 13.8rem;
	}

	&139 {
		left: 13.9rem;
		top: 13.9rem;
		bottom: 13.9rem;
	}

	&140 {
		left: 14.0rem;
		top: 14.0rem;
		bottom: 14.0rem;
	}

	&141 {
		left: 14.1rem;
		top: 14.1rem;
		bottom: 14.1rem;
	}

	&142 {
		left: 14.2rem;
		top: 14.2rem;
		bottom: 14.2rem;
	}

	&143 {
		left: 14.3rem;
		top: 14.3rem;
		bottom: 14.3rem;
	}

	&144 {
		left: 14.4rem;
		top: 14.4rem;
		bottom: 14.4rem;
	}

	&145 {
		left: 14.5rem;
		top: 14.5rem;
		bottom: 14.5rem;
	}

	&146 {
		left: 14.6rem;
		top: 14.6rem;
		bottom: 14.6rem;
	}

	&147 {
		left: 14.7rem;
		top: 14.7rem;
		bottom: 14.7rem;
	}

	&148 {
		left: 14.8rem;
		top: 14.8rem;
		bottom: 14.8rem;
	}

	&149 {
		left: 14.9rem;
		top: 14.9rem;
		bottom: 14.9rem;
	}

	&150 {
		left: 15.0rem;
		top: 15.0rem;
		bottom: 15.0rem;
	}

	&151 {
		left: 15.1rem;
		top: 15.1rem;
		bottom: 15.1rem;
	}

	&152 {
		left: 15.2rem;
		top: 15.2rem;
		bottom: 15.2rem;
	}

	&153 {
		left: 15.3rem;
		top: 15.3rem;
		bottom: 15.3rem;
	}

	&154 {
		left: 15.4rem;
		top: 15.4rem;
		bottom: 15.4rem;
	}

	&155 {
		left: 15.5rem;
		top: 15.5rem;
		bottom: 15.5rem;
	}

	&156 {
		left: 15.6rem;
		top: 15.6rem;
		bottom: 15.6rem;
	}

	&157 {
		left: 15.7rem;
		top: 15.7rem;
		bottom: 15.7rem;
	}

	&158 {
		left: 15.8rem;
		top: 15.8rem;
		bottom: 15.8rem;
	}

	&159 {
		left: 15.9rem;
		top: 15.9rem;
		bottom: 15.9rem;
	}

	&160 {
		left: 16.0rem;
		top: 16.0rem;
		bottom: 16.0rem;
	}

	&161 {
		left: 16.1rem;
		top: 16.1rem;
		bottom: 16.1rem;
	}

	&162 {
		left: 16.2rem;
		top: 16.2rem;
		bottom: 16.2rem;
	}

	&163 {
		left: 16.3rem;
		top: 16.3rem;
		bottom: 16.3rem;
	}

	&164 {
		left: 16.4rem;
		top: 16.4rem;
		bottom: 16.4rem;
	}

	&165 {
		left: 16.5rem;
		top: 16.5rem;
		bottom: 16.5rem;
	}

	&166 {
		left: 16.6rem;
		top: 16.6rem;
		bottom: 16.6rem;
	}

	&167 {
		left: 16.7rem;
		top: 16.7rem;
		bottom: 16.7rem;
	}

	&168 {
		left: 16.8rem;
		top: 16.8rem;
		bottom: 16.8rem;
	}

	&169 {
		left: 16.9rem;
		top: 16.9rem;
		bottom: 16.9rem;
	}

	&170 {
		left: 17.0rem;
		top: 17.0rem;
		bottom: 17.0rem;
	}

	&171 {
		left: 17.1rem;
		top: 17.1rem;
		bottom: 17.1rem;
	}

	&172 {
		left: 17.2rem;
		top: 17.2rem;
		bottom: 17.2rem;
	}

	&173 {
		left: 17.3rem;
		top: 17.3rem;
		bottom: 17.3rem;
	}

	&174 {
		left: 17.4rem;
		top: 17.4rem;
		bottom: 17.4rem;
	}

	&175 {
		left: 17.5rem;
		top: 17.5rem;
		bottom: 17.5rem;
	}

	&176 {
		left: 17.6rem;
		top: 17.6rem;
		bottom: 17.6rem;
	}

	&177 {
		left: 17.7rem;
		top: 17.7rem;
		bottom: 17.7rem;
	}

	&178 {
		left: 17.8rem;
		top: 17.8rem;
		bottom: 17.8rem;
	}

	&179 {
		left: 17.9rem;
		top: 17.9rem;
		bottom: 17.9rem;
	}

	&180 {
		left: 18.0rem;
		top: 18.0rem;
		bottom: 18.0rem;
	}

	&181 {
		left: 18.1rem;
		top: 18.1rem;
		bottom: 18.1rem;
	}

	&182 {
		left: 18.2rem;
		top: 18.2rem;
		bottom: 18.2rem;
	}

	&183 {
		left: 18.3rem;
		top: 18.3rem;
		bottom: 18.3rem;
	}

	&184 {
		left: 18.4rem;
		top: 18.4rem;
		bottom: 18.4rem;
	}

	&185 {
		left: 18.5rem;
		top: 18.5rem;
		bottom: 18.5rem;
	}

	&186 {
		left: 18.6rem;
		top: 18.6rem;
		bottom: 18.6rem;
	}

	&187 {
		left: 18.7rem;
		top: 18.7rem;
		bottom: 18.7rem;
	}

	&188 {
		left: 18.8rem;
		top: 18.8rem;
		bottom: 18.8rem;
	}

	&189 {
		left: 18.9rem;
		top: 18.9rem;
		bottom: 18.9rem;
	}

	&190 {
		left: 19.0rem;
		top: 19.0rem;
		bottom: 19.0rem;
	}

	&191 {
		left: 19.1rem;
		top: 19.1rem;
		bottom: 19.1rem;
	}

	&192 {
		left: 19.2rem;
		top: 19.2rem;
		bottom: 19.2rem;
	}

	&193 {
		left: 19.3rem;
		top: 19.3rem;
		bottom: 19.3rem;
	}

	&194 {
		left: 19.4rem;
		top: 19.4rem;
		bottom: 19.4rem;
	}

	&195 {
		left: 19.5rem;
		top: 19.5rem;
		bottom: 19.5rem;
	}

	&196 {
		left: 19.6rem;
		top: 19.6rem;
		bottom: 19.6rem;
	}

	&197 {
		left: 19.7rem;
		top: 19.7rem;
		bottom: 19.7rem;
	}

	&198 {
		left: 19.8rem;
		top: 19.8rem;
		bottom: 19.8rem;
	}

	&199 {
		left: 19.9rem;
		top: 19.9rem;
		bottom: 19.9rem;
	}

	&200 {
		left: 20.0rem;
		top: 20.0rem;
		bottom: 20.0rem;
	}
}






// ABSOLUTE POSIITON LEFT RIGHT BOTTOM

.pos-lrb--,
.pos-lbr--,
.pos-rlb--,
.pos-rbl--,
.pos-blr--,
.pos-brl--,
.lrb--,
.lbr--,
.rlb--,
.rbl--,
.blr--,
.brl-- {
	&00 {
		left: 0.0rem;
		right: 0.0rem;
		bottom: 0.0rem;
	}

	&01 {
		left: 0.1rem;
		right: 0.1rem;
		bottom: 0.1rem;
	}

	&02 {
		left: 0.2rem;
		right: 0.2rem;
		bottom: 0.2rem;
	}

	&03 {
		left: 0.3rem;
		right: 0.3rem;
		bottom: 0.3rem;
	}

	&04 {
		left: 0.4rem;
		right: 0.4rem;
		bottom: 0.4rem;
	}

	&05 {
		left: 0.5rem;
		right: 0.5rem;
		bottom: 0.5rem;
	}

	&06 {
		left: 0.6rem;
		right: 0.6rem;
		bottom: 0.6rem;
	}

	&07 {
		left: 0.7rem;
		right: 0.7rem;
		bottom: 0.7rem;
	}

	&08 {
		left: 0.8rem;
		right: 0.8rem;
		bottom: 0.8rem;
	}

	&09 {
		left: 0.9rem;
		right: 0.9rem;
		bottom: 0.9rem;
	}

	&10 {
		left: 1.0rem;
		right: 1.0rem;
		bottom: 1.0rem;
	}

	&11 {
		left: 1.1rem;
		right: 1.1rem;
		bottom: 1.1rem;
	}

	&12 {
		left: 1.2rem;
		right: 1.2rem;
		bottom: 1.2rem;
	}

	&13 {
		left: 1.3rem;
		right: 1.3rem;
		bottom: 1.3rem;
	}

	&14 {
		left: 1.4rem;
		right: 1.4rem;
		bottom: 1.4rem;
	}

	&15 {
		left: 1.5rem;
		right: 1.5rem;
		bottom: 1.5rem;
	}

	&16 {
		left: 1.6rem;
		right: 1.6rem;
		bottom: 1.6rem;
	}

	&17 {
		left: 1.7rem;
		right: 1.7rem;
		bottom: 1.7rem;
	}

	&18 {
		left: 1.8rem;
		right: 1.8rem;
		bottom: 1.8rem;
	}

	&19 {
		left: 1.9rem;
		right: 1.9rem;
		bottom: 1.9rem;
	}

	&20 {
		left: 2.0rem;
		right: 2.0rem;
		bottom: 2.0rem;
	}

	&21 {
		left: 2.1rem;
		right: 2.1rem;
		bottom: 2.1rem;
	}

	&22 {
		left: 2.2rem;
		right: 2.2rem;
		bottom: 2.2rem;
	}

	&23 {
		left: 2.3rem;
		right: 2.3rem;
		bottom: 2.3rem;
	}

	&24 {
		left: 2.4rem;
		right: 2.4rem;
		bottom: 2.4rem;
	}

	&25 {
		left: 2.5rem;
		right: 2.5rem;
		bottom: 2.5rem;
	}

	&26 {
		left: 2.6rem;
		right: 2.6rem;
		bottom: 2.6rem;
	}

	&27 {
		left: 2.7rem;
		right: 2.7rem;
		bottom: 2.7rem;
	}

	&28 {
		left: 2.8rem;
		right: 2.8rem;
		bottom: 2.8rem;
	}

	&29 {
		left: 2.9rem;
		right: 2.9rem;
		bottom: 2.9rem;
	}

	&30 {
		left: 3.0rem;
		right: 3.0rem;
		bottom: 3.0rem;
	}

	&31 {
		left: 3.1rem;
		right: 3.1rem;
		bottom: 3.1rem;
	}

	&32 {
		left: 3.2rem;
		right: 3.2rem;
		bottom: 3.2rem;
	}

	&33 {
		left: 3.3rem;
		right: 3.3rem;
		bottom: 3.3rem;
	}

	&34 {
		left: 3.4rem;
		right: 3.4rem;
		bottom: 3.4rem;
	}

	&35 {
		left: 3.5rem;
		right: 3.5rem;
		bottom: 3.5rem;
	}

	&36 {
		left: 3.6rem;
		right: 3.6rem;
		bottom: 3.6rem;
	}

	&37 {
		left: 3.7rem;
		right: 3.7rem;
		bottom: 3.7rem;
	}

	&38 {
		left: 3.8rem;
		right: 3.8rem;
		bottom: 3.8rem;
	}

	&39 {
		left: 3.9rem;
		right: 3.9rem;
		bottom: 3.9rem;
	}

	&40 {
		left: 4.0rem;
		right: 4.0rem;
		bottom: 4.0rem;
	}

	&41 {
		left: 4.1rem;
		right: 4.1rem;
		bottom: 4.1rem;
	}

	&42 {
		left: 4.2rem;
		right: 4.2rem;
		bottom: 4.2rem;
	}

	&43 {
		left: 4.3rem;
		right: 4.3rem;
		bottom: 4.3rem;
	}

	&44 {
		left: 4.4rem;
		right: 4.4rem;
		bottom: 4.4rem;
	}

	&45 {
		left: 4.5rem;
		right: 4.5rem;
		bottom: 4.5rem;
	}

	&46 {
		left: 4.6rem;
		right: 4.6rem;
		bottom: 4.6rem;
	}

	&47 {
		left: 4.7rem;
		right: 4.7rem;
		bottom: 4.7rem;
	}

	&48 {
		left: 4.8rem;
		right: 4.8rem;
		bottom: 4.8rem;
	}

	&49 {
		left: 4.9rem;
		right: 4.9rem;
		bottom: 4.9rem;
	}

	&50 {
		left: 5.0rem;
		right: 5.0rem;
		bottom: 5.0rem;
	}

	&51 {
		left: 5.1rem;
		right: 5.1rem;
		bottom: 5.1rem;
	}

	&52 {
		left: 5.2rem;
		right: 5.2rem;
		bottom: 5.2rem;
	}

	&53 {
		left: 5.3rem;
		right: 5.3rem;
		bottom: 5.3rem;
	}

	&54 {
		left: 5.4rem;
		right: 5.4rem;
		bottom: 5.4rem;
	}

	&55 {
		left: 5.5rem;
		right: 5.5rem;
		bottom: 5.5rem;
	}

	&56 {
		left: 5.6rem;
		right: 5.6rem;
		bottom: 5.6rem;
	}

	&57 {
		left: 5.7rem;
		right: 5.7rem;
		bottom: 5.7rem;
	}

	&58 {
		left: 5.8rem;
		right: 5.8rem;
		bottom: 5.8rem;
	}

	&59 {
		left: 5.9rem;
		right: 5.9rem;
		bottom: 5.9rem;
	}

	&60 {
		left: 6.0rem;
		right: 6.0rem;
		bottom: 6.0rem;
	}

	&61 {
		left: 6.1rem;
		right: 6.1rem;
		bottom: 6.1rem;
	}

	&62 {
		left: 6.2rem;
		right: 6.2rem;
		bottom: 6.2rem;
	}

	&63 {
		left: 6.3rem;
		right: 6.3rem;
		bottom: 6.3rem;
	}

	&64 {
		left: 6.4rem;
		right: 6.4rem;
		bottom: 6.4rem;
	}

	&65 {
		left: 6.5rem;
		right: 6.5rem;
		bottom: 6.5rem;
	}

	&66 {
		left: 6.6rem;
		right: 6.6rem;
		bottom: 6.6rem;
	}

	&67 {
		left: 6.7rem;
		right: 6.7rem;
		bottom: 6.7rem;
	}

	&68 {
		left: 6.8rem;
		right: 6.8rem;
		bottom: 6.8rem;
	}

	&69 {
		left: 6.9rem;
		right: 6.9rem;
		bottom: 6.9rem;
	}

	&70 {
		left: 7.0rem;
		right: 7.0rem;
		bottom: 7.0rem;
	}

	&71 {
		left: 7.1rem;
		right: 7.1rem;
		bottom: 7.1rem;
	}

	&72 {
		left: 7.2rem;
		right: 7.2rem;
		bottom: 7.2rem;
	}

	&73 {
		left: 7.3rem;
		right: 7.3rem;
		bottom: 7.3rem;
	}

	&74 {
		left: 7.4rem;
		right: 7.4rem;
		bottom: 7.4rem;
	}

	&75 {
		left: 7.5rem;
		right: 7.5rem;
		bottom: 7.5rem;
	}

	&76 {
		left: 7.6rem;
		right: 7.6rem;
		bottom: 7.6rem;
	}

	&77 {
		left: 7.7rem;
		right: 7.7rem;
		bottom: 7.7rem;
	}

	&78 {
		left: 7.8rem;
		right: 7.8rem;
		bottom: 7.8rem;
	}

	&79 {
		left: 7.9rem;
		right: 7.9rem;
		bottom: 7.9rem;
	}

	&80 {
		left: 8.0rem;
		right: 8.0rem;
		bottom: 8.0rem;
	}

	&81 {
		left: 8.1rem;
		right: 8.1rem;
		bottom: 8.1rem;
	}

	&82 {
		left: 8.2rem;
		right: 8.2rem;
		bottom: 8.2rem;
	}

	&83 {
		left: 8.3rem;
		right: 8.3rem;
		bottom: 8.3rem;
	}

	&84 {
		left: 8.4rem;
		right: 8.4rem;
		bottom: 8.4rem;
	}

	&85 {
		left: 8.5rem;
		right: 8.5rem;
		bottom: 8.5rem;
	}

	&86 {
		left: 8.6rem;
		right: 8.6rem;
		bottom: 8.6rem;
	}

	&87 {
		left: 8.7rem;
		right: 8.7rem;
		bottom: 8.7rem;
	}

	&88 {
		left: 8.8rem;
		right: 8.8rem;
		bottom: 8.8rem;
	}

	&89 {
		left: 8.9rem;
		right: 8.9rem;
		bottom: 8.9rem;
	}

	&90 {
		left: 9.0rem;
		right: 9.0rem;
		bottom: 9.0rem;
	}

	&91 {
		left: 9.1rem;
		right: 9.1rem;
		bottom: 9.1rem;
	}

	&92 {
		left: 9.2rem;
		right: 9.2rem;
		bottom: 9.2rem;
	}

	&93 {
		left: 9.3rem;
		right: 9.3rem;
		bottom: 9.3rem;
	}

	&94 {
		left: 9.4rem;
		right: 9.4rem;
		bottom: 9.4rem;
	}

	&95 {
		left: 9.5rem;
		right: 9.5rem;
		bottom: 9.5rem;
	}

	&96 {
		left: 9.6rem;
		right: 9.6rem;
		bottom: 9.6rem;
	}

	&97 {
		left: 9.7rem;
		right: 9.7rem;
		bottom: 9.7rem;
	}

	&98 {
		left: 9.8rem;
		right: 9.8rem;
		bottom: 9.8rem;
	}

	&99 {
		left: 9.9rem;
		right: 9.9rem;
		bottom: 9.9rem;
	}

	&100 {
		left: 10.0rem;
		right: 10.0rem;
		bottom: 10.0rem;
	}

	&101 {
		left: 10.1rem;
		right: 10.1rem;
		bottom: 10.1rem;
	}

	&102 {
		left: 10.2rem;
		right: 10.2rem;
		bottom: 10.2rem;
	}

	&103 {
		left: 10.3rem;
		right: 10.3rem;
		bottom: 10.3rem;
	}

	&104 {
		left: 10.4rem;
		right: 10.4rem;
		bottom: 10.4rem;
	}

	&105 {
		left: 10.5rem;
		right: 10.5rem;
		bottom: 10.5rem;
	}

	&106 {
		left: 10.6rem;
		right: 10.6rem;
		bottom: 10.6rem;
	}

	&107 {
		left: 10.7rem;
		right: 10.7rem;
		bottom: 10.7rem;
	}

	&108 {
		left: 10.8rem;
		right: 10.8rem;
		bottom: 10.8rem;
	}

	&109 {
		left: 10.9rem;
		right: 10.9rem;
		bottom: 10.9rem;
	}

	&110 {
		left: 11.0rem;
		right: 11.0rem;
		bottom: 11.0rem;
	}

	&111 {
		left: 11.1rem;
		right: 11.1rem;
		bottom: 11.1rem;
	}

	&112 {
		left: 11.2rem;
		right: 11.2rem;
		bottom: 11.2rem;
	}

	&113 {
		left: 11.3rem;
		right: 11.3rem;
		bottom: 11.3rem;
	}

	&114 {
		left: 11.4rem;
		right: 11.4rem;
		bottom: 11.4rem;
	}

	&115 {
		left: 11.5rem;
		right: 11.5rem;
		bottom: 11.5rem;
	}

	&116 {
		left: 11.6rem;
		right: 11.6rem;
		bottom: 11.6rem;
	}

	&117 {
		left: 11.7rem;
		right: 11.7rem;
		bottom: 11.7rem;
	}

	&118 {
		left: 11.8rem;
		right: 11.8rem;
		bottom: 11.8rem;
	}

	&119 {
		left: 11.9rem;
		right: 11.9rem;
		bottom: 11.9rem;
	}

	&120 {
		left: 12.0rem;
		right: 12.0rem;
		bottom: 12.0rem;
	}

	&121 {
		left: 12.1rem;
		right: 12.1rem;
		bottom: 12.1rem;
	}

	&122 {
		left: 12.2rem;
		right: 12.2rem;
		bottom: 12.2rem;
	}

	&123 {
		left: 12.3rem;
		right: 12.3rem;
		bottom: 12.3rem;
	}

	&124 {
		left: 12.4rem;
		right: 12.4rem;
		bottom: 12.4rem;
	}

	&125 {
		left: 12.5rem;
		right: 12.5rem;
		bottom: 12.5rem;
	}

	&126 {
		left: 12.6rem;
		right: 12.6rem;
		bottom: 12.6rem;
	}

	&127 {
		left: 12.7rem;
		right: 12.7rem;
		bottom: 12.7rem;
	}

	&128 {
		left: 12.8rem;
		right: 12.8rem;
		bottom: 12.8rem;
	}

	&129 {
		left: 12.9rem;
		right: 12.9rem;
		bottom: 12.9rem;
	}

	&130 {
		left: 13.0rem;
		right: 13.0rem;
		bottom: 13.0rem;
	}

	&131 {
		left: 13.1rem;
		right: 13.1rem;
		bottom: 13.1rem;
	}

	&132 {
		left: 13.2rem;
		right: 13.2rem;
		bottom: 13.2rem;
	}

	&133 {
		left: 13.3rem;
		right: 13.3rem;
		bottom: 13.3rem;
	}

	&134 {
		left: 13.4rem;
		right: 13.4rem;
		bottom: 13.4rem;
	}

	&135 {
		left: 13.5rem;
		right: 13.5rem;
		bottom: 13.5rem;
	}

	&136 {
		left: 13.6rem;
		right: 13.6rem;
		bottom: 13.6rem;
	}

	&137 {
		left: 13.7rem;
		right: 13.7rem;
		bottom: 13.7rem;
	}

	&138 {
		left: 13.8rem;
		right: 13.8rem;
		bottom: 13.8rem;
	}

	&139 {
		left: 13.9rem;
		right: 13.9rem;
		bottom: 13.9rem;
	}

	&140 {
		left: 14.0rem;
		right: 14.0rem;
		bottom: 14.0rem;
	}

	&141 {
		left: 14.1rem;
		right: 14.1rem;
		bottom: 14.1rem;
	}

	&142 {
		left: 14.2rem;
		right: 14.2rem;
		bottom: 14.2rem;
	}

	&143 {
		left: 14.3rem;
		right: 14.3rem;
		bottom: 14.3rem;
	}

	&144 {
		left: 14.4rem;
		right: 14.4rem;
		bottom: 14.4rem;
	}

	&145 {
		left: 14.5rem;
		right: 14.5rem;
		bottom: 14.5rem;
	}

	&146 {
		left: 14.6rem;
		right: 14.6rem;
		bottom: 14.6rem;
	}

	&147 {
		left: 14.7rem;
		right: 14.7rem;
		bottom: 14.7rem;
	}

	&148 {
		left: 14.8rem;
		right: 14.8rem;
		bottom: 14.8rem;
	}

	&149 {
		left: 14.9rem;
		right: 14.9rem;
		bottom: 14.9rem;
	}

	&150 {
		left: 15.0rem;
		right: 15.0rem;
		bottom: 15.0rem;
	}

	&151 {
		left: 15.1rem;
		right: 15.1rem;
		bottom: 15.1rem;
	}

	&152 {
		left: 15.2rem;
		right: 15.2rem;
		bottom: 15.2rem;
	}

	&153 {
		left: 15.3rem;
		right: 15.3rem;
		bottom: 15.3rem;
	}

	&154 {
		left: 15.4rem;
		right: 15.4rem;
		bottom: 15.4rem;
	}

	&155 {
		left: 15.5rem;
		right: 15.5rem;
		bottom: 15.5rem;
	}

	&156 {
		left: 15.6rem;
		right: 15.6rem;
		bottom: 15.6rem;
	}

	&157 {
		left: 15.7rem;
		right: 15.7rem;
		bottom: 15.7rem;
	}

	&158 {
		left: 15.8rem;
		right: 15.8rem;
		bottom: 15.8rem;
	}

	&159 {
		left: 15.9rem;
		right: 15.9rem;
		bottom: 15.9rem;
	}

	&160 {
		left: 16.0rem;
		right: 16.0rem;
		bottom: 16.0rem;
	}

	&161 {
		left: 16.1rem;
		right: 16.1rem;
		bottom: 16.1rem;
	}

	&162 {
		left: 16.2rem;
		right: 16.2rem;
		bottom: 16.2rem;
	}

	&163 {
		left: 16.3rem;
		right: 16.3rem;
		bottom: 16.3rem;
	}

	&164 {
		left: 16.4rem;
		right: 16.4rem;
		bottom: 16.4rem;
	}

	&165 {
		left: 16.5rem;
		right: 16.5rem;
		bottom: 16.5rem;
	}

	&166 {
		left: 16.6rem;
		right: 16.6rem;
		bottom: 16.6rem;
	}

	&167 {
		left: 16.7rem;
		right: 16.7rem;
		bottom: 16.7rem;
	}

	&168 {
		left: 16.8rem;
		right: 16.8rem;
		bottom: 16.8rem;
	}

	&169 {
		left: 16.9rem;
		right: 16.9rem;
		bottom: 16.9rem;
	}

	&170 {
		left: 17.0rem;
		right: 17.0rem;
		bottom: 17.0rem;
	}

	&171 {
		left: 17.1rem;
		right: 17.1rem;
		bottom: 17.1rem;
	}

	&172 {
		left: 17.2rem;
		right: 17.2rem;
		bottom: 17.2rem;
	}

	&173 {
		left: 17.3rem;
		right: 17.3rem;
		bottom: 17.3rem;
	}

	&174 {
		left: 17.4rem;
		right: 17.4rem;
		bottom: 17.4rem;
	}

	&175 {
		left: 17.5rem;
		right: 17.5rem;
		bottom: 17.5rem;
	}

	&176 {
		left: 17.6rem;
		right: 17.6rem;
		bottom: 17.6rem;
	}

	&177 {
		left: 17.7rem;
		right: 17.7rem;
		bottom: 17.7rem;
	}

	&178 {
		left: 17.8rem;
		right: 17.8rem;
		bottom: 17.8rem;
	}

	&179 {
		left: 17.9rem;
		right: 17.9rem;
		bottom: 17.9rem;
	}

	&180 {
		left: 18.0rem;
		right: 18.0rem;
		bottom: 18.0rem;
	}

	&181 {
		left: 18.1rem;
		right: 18.1rem;
		bottom: 18.1rem;
	}

	&182 {
		left: 18.2rem;
		right: 18.2rem;
		bottom: 18.2rem;
	}

	&183 {
		left: 18.3rem;
		right: 18.3rem;
		bottom: 18.3rem;
	}

	&184 {
		left: 18.4rem;
		right: 18.4rem;
		bottom: 18.4rem;
	}

	&185 {
		left: 18.5rem;
		right: 18.5rem;
		bottom: 18.5rem;
	}

	&186 {
		left: 18.6rem;
		right: 18.6rem;
		bottom: 18.6rem;
	}

	&187 {
		left: 18.7rem;
		right: 18.7rem;
		bottom: 18.7rem;
	}

	&188 {
		left: 18.8rem;
		right: 18.8rem;
		bottom: 18.8rem;
	}

	&189 {
		left: 18.9rem;
		right: 18.9rem;
		bottom: 18.9rem;
	}

	&190 {
		left: 19.0rem;
		right: 19.0rem;
		bottom: 19.0rem;
	}

	&191 {
		left: 19.1rem;
		right: 19.1rem;
		bottom: 19.1rem;
	}

	&192 {
		left: 19.2rem;
		right: 19.2rem;
		bottom: 19.2rem;
	}

	&193 {
		left: 19.3rem;
		right: 19.3rem;
		bottom: 19.3rem;
	}

	&194 {
		left: 19.4rem;
		right: 19.4rem;
		bottom: 19.4rem;
	}

	&195 {
		left: 19.5rem;
		right: 19.5rem;
		bottom: 19.5rem;
	}

	&196 {
		left: 19.6rem;
		right: 19.6rem;
		bottom: 19.6rem;
	}

	&197 {
		left: 19.7rem;
		right: 19.7rem;
		bottom: 19.7rem;
	}

	&198 {
		left: 19.8rem;
		right: 19.8rem;
		bottom: 19.8rem;
	}

	&199 {
		left: 19.9rem;
		right: 19.9rem;
		bottom: 19.9rem;
	}

	&200 {
		left: 20.0rem;
		right: 20.0rem;
		bottom: 20.0rem;
	}
}








// ABSOLUTE POSIITON TOP RIGHT BOTTOM

.pos-trb--,
.pos-tbr--,
.pos-rtb--,
.pos-rbt--,
.pos-btr--,
.pos-brt--,
.trb--,
.tbr--,
.rtb--,
.rbt--,
.btr--,
.brt-- {
	&00 {
		top: 0.0rem;
		right: 0.0rem;
		bottom: 0.0rem;
	}

	&01 {
		top: 0.1rem;
		right: 0.1rem;
		bottom: 0.1rem;
	}

	&02 {
		top: 0.2rem;
		right: 0.2rem;
		bottom: 0.2rem;
	}

	&03 {
		top: 0.3rem;
		right: 0.3rem;
		bottom: 0.3rem;
	}

	&04 {
		top: 0.4rem;
		right: 0.4rem;
		bottom: 0.4rem;
	}

	&05 {
		top: 0.5rem;
		right: 0.5rem;
		bottom: 0.5rem;
	}

	&06 {
		top: 0.6rem;
		right: 0.6rem;
		bottom: 0.6rem;
	}

	&07 {
		top: 0.7rem;
		right: 0.7rem;
		bottom: 0.7rem;
	}

	&08 {
		top: 0.8rem;
		right: 0.8rem;
		bottom: 0.8rem;
	}

	&09 {
		top: 0.9rem;
		right: 0.9rem;
		bottom: 0.9rem;
	}

	&10 {
		top: 1.0rem;
		right: 1.0rem;
		bottom: 1.0rem;
	}

	&11 {
		top: 1.1rem;
		right: 1.1rem;
		bottom: 1.1rem;
	}

	&12 {
		top: 1.2rem;
		right: 1.2rem;
		bottom: 1.2rem;
	}

	&13 {
		top: 1.3rem;
		right: 1.3rem;
		bottom: 1.3rem;
	}

	&14 {
		top: 1.4rem;
		right: 1.4rem;
		bottom: 1.4rem;
	}

	&15 {
		top: 1.5rem;
		right: 1.5rem;
		bottom: 1.5rem;
	}

	&16 {
		top: 1.6rem;
		right: 1.6rem;
		bottom: 1.6rem;
	}

	&17 {
		top: 1.7rem;
		right: 1.7rem;
		bottom: 1.7rem;
	}

	&18 {
		top: 1.8rem;
		right: 1.8rem;
		bottom: 1.8rem;
	}

	&19 {
		top: 1.9rem;
		right: 1.9rem;
		bottom: 1.9rem;
	}

	&20 {
		top: 2.0rem;
		right: 2.0rem;
		bottom: 2.0rem;
	}

	&21 {
		top: 2.1rem;
		right: 2.1rem;
		bottom: 2.1rem;
	}

	&22 {
		top: 2.2rem;
		right: 2.2rem;
		bottom: 2.2rem;
	}

	&23 {
		top: 2.3rem;
		right: 2.3rem;
		bottom: 2.3rem;
	}

	&24 {
		top: 2.4rem;
		right: 2.4rem;
		bottom: 2.4rem;
	}

	&25 {
		top: 2.5rem;
		right: 2.5rem;
		bottom: 2.5rem;
	}

	&26 {
		top: 2.6rem;
		right: 2.6rem;
		bottom: 2.6rem;
	}

	&27 {
		top: 2.7rem;
		right: 2.7rem;
		bottom: 2.7rem;
	}

	&28 {
		top: 2.8rem;
		right: 2.8rem;
		bottom: 2.8rem;
	}

	&29 {
		top: 2.9rem;
		right: 2.9rem;
		bottom: 2.9rem;
	}

	&30 {
		top: 3.0rem;
		right: 3.0rem;
		bottom: 3.0rem;
	}

	&31 {
		top: 3.1rem;
		right: 3.1rem;
		bottom: 3.1rem;
	}

	&32 {
		top: 3.2rem;
		right: 3.2rem;
		bottom: 3.2rem;
	}

	&33 {
		top: 3.3rem;
		right: 3.3rem;
		bottom: 3.3rem;
	}

	&34 {
		top: 3.4rem;
		right: 3.4rem;
		bottom: 3.4rem;
	}

	&35 {
		top: 3.5rem;
		right: 3.5rem;
		bottom: 3.5rem;
	}

	&36 {
		top: 3.6rem;
		right: 3.6rem;
		bottom: 3.6rem;
	}

	&37 {
		top: 3.7rem;
		right: 3.7rem;
		bottom: 3.7rem;
	}

	&38 {
		top: 3.8rem;
		right: 3.8rem;
		bottom: 3.8rem;
	}

	&39 {
		top: 3.9rem;
		right: 3.9rem;
		bottom: 3.9rem;
	}

	&40 {
		top: 4.0rem;
		right: 4.0rem;
		bottom: 4.0rem;
	}

	&41 {
		top: 4.1rem;
		right: 4.1rem;
		bottom: 4.1rem;
	}

	&42 {
		top: 4.2rem;
		right: 4.2rem;
		bottom: 4.2rem;
	}

	&43 {
		top: 4.3rem;
		right: 4.3rem;
		bottom: 4.3rem;
	}

	&44 {
		top: 4.4rem;
		right: 4.4rem;
		bottom: 4.4rem;
	}

	&45 {
		top: 4.5rem;
		right: 4.5rem;
		bottom: 4.5rem;
	}

	&46 {
		top: 4.6rem;
		right: 4.6rem;
		bottom: 4.6rem;
	}

	&47 {
		top: 4.7rem;
		right: 4.7rem;
		bottom: 4.7rem;
	}

	&48 {
		top: 4.8rem;
		right: 4.8rem;
		bottom: 4.8rem;
	}

	&49 {
		top: 4.9rem;
		right: 4.9rem;
		bottom: 4.9rem;
	}

	&50 {
		top: 5.0rem;
		right: 5.0rem;
		bottom: 5.0rem;
	}

	&51 {
		top: 5.1rem;
		right: 5.1rem;
		bottom: 5.1rem;
	}

	&52 {
		top: 5.2rem;
		right: 5.2rem;
		bottom: 5.2rem;
	}

	&53 {
		top: 5.3rem;
		right: 5.3rem;
		bottom: 5.3rem;
	}

	&54 {
		top: 5.4rem;
		right: 5.4rem;
		bottom: 5.4rem;
	}

	&55 {
		top: 5.5rem;
		right: 5.5rem;
		bottom: 5.5rem;
	}

	&56 {
		top: 5.6rem;
		right: 5.6rem;
		bottom: 5.6rem;
	}

	&57 {
		top: 5.7rem;
		right: 5.7rem;
		bottom: 5.7rem;
	}

	&58 {
		top: 5.8rem;
		right: 5.8rem;
		bottom: 5.8rem;
	}

	&59 {
		top: 5.9rem;
		right: 5.9rem;
		bottom: 5.9rem;
	}

	&60 {
		top: 6.0rem;
		right: 6.0rem;
		bottom: 6.0rem;
	}

	&61 {
		top: 6.1rem;
		right: 6.1rem;
		bottom: 6.1rem;
	}

	&62 {
		top: 6.2rem;
		right: 6.2rem;
		bottom: 6.2rem;
	}

	&63 {
		top: 6.3rem;
		right: 6.3rem;
		bottom: 6.3rem;
	}

	&64 {
		top: 6.4rem;
		right: 6.4rem;
		bottom: 6.4rem;
	}

	&65 {
		top: 6.5rem;
		right: 6.5rem;
		bottom: 6.5rem;
	}

	&66 {
		top: 6.6rem;
		right: 6.6rem;
		bottom: 6.6rem;
	}

	&67 {
		top: 6.7rem;
		right: 6.7rem;
		bottom: 6.7rem;
	}

	&68 {
		top: 6.8rem;
		right: 6.8rem;
		bottom: 6.8rem;
	}

	&69 {
		top: 6.9rem;
		right: 6.9rem;
		bottom: 6.9rem;
	}

	&70 {
		top: 7.0rem;
		right: 7.0rem;
		bottom: 7.0rem;
	}

	&71 {
		top: 7.1rem;
		right: 7.1rem;
		bottom: 7.1rem;
	}

	&72 {
		top: 7.2rem;
		right: 7.2rem;
		bottom: 7.2rem;
	}

	&73 {
		top: 7.3rem;
		right: 7.3rem;
		bottom: 7.3rem;
	}

	&74 {
		top: 7.4rem;
		right: 7.4rem;
		bottom: 7.4rem;
	}

	&75 {
		top: 7.5rem;
		right: 7.5rem;
		bottom: 7.5rem;
	}

	&76 {
		top: 7.6rem;
		right: 7.6rem;
		bottom: 7.6rem;
	}

	&77 {
		top: 7.7rem;
		right: 7.7rem;
		bottom: 7.7rem;
	}

	&78 {
		top: 7.8rem;
		right: 7.8rem;
		bottom: 7.8rem;
	}

	&79 {
		top: 7.9rem;
		right: 7.9rem;
		bottom: 7.9rem;
	}

	&80 {
		top: 8.0rem;
		right: 8.0rem;
		bottom: 8.0rem;
	}

	&81 {
		top: 8.1rem;
		right: 8.1rem;
		bottom: 8.1rem;
	}

	&82 {
		top: 8.2rem;
		right: 8.2rem;
		bottom: 8.2rem;
	}

	&83 {
		top: 8.3rem;
		right: 8.3rem;
		bottom: 8.3rem;
	}

	&84 {
		top: 8.4rem;
		right: 8.4rem;
		bottom: 8.4rem;
	}

	&85 {
		top: 8.5rem;
		right: 8.5rem;
		bottom: 8.5rem;
	}

	&86 {
		top: 8.6rem;
		right: 8.6rem;
		bottom: 8.6rem;
	}

	&87 {
		top: 8.7rem;
		right: 8.7rem;
		bottom: 8.7rem;
	}

	&88 {
		top: 8.8rem;
		right: 8.8rem;
		bottom: 8.8rem;
	}

	&89 {
		top: 8.9rem;
		right: 8.9rem;
		bottom: 8.9rem;
	}

	&90 {
		top: 9.0rem;
		right: 9.0rem;
		bottom: 9.0rem;
	}

	&91 {
		top: 9.1rem;
		right: 9.1rem;
		bottom: 9.1rem;
	}

	&92 {
		top: 9.2rem;
		right: 9.2rem;
		bottom: 9.2rem;
	}

	&93 {
		top: 9.3rem;
		right: 9.3rem;
		bottom: 9.3rem;
	}

	&94 {
		top: 9.4rem;
		right: 9.4rem;
		bottom: 9.4rem;
	}

	&95 {
		top: 9.5rem;
		right: 9.5rem;
		bottom: 9.5rem;
	}

	&96 {
		top: 9.6rem;
		right: 9.6rem;
		bottom: 9.6rem;
	}

	&97 {
		top: 9.7rem;
		right: 9.7rem;
		bottom: 9.7rem;
	}

	&98 {
		top: 9.8rem;
		right: 9.8rem;
		bottom: 9.8rem;
	}

	&99 {
		top: 9.9rem;
		right: 9.9rem;
		bottom: 9.9rem;
	}

	&100 {
		top: 10.0rem;
		right: 10.0rem;
		bottom: 10.0rem;
	}

	&101 {
		top: 10.1rem;
		right: 10.1rem;
		bottom: 10.1rem;
	}

	&102 {
		top: 10.2rem;
		right: 10.2rem;
		bottom: 10.2rem;
	}

	&103 {
		top: 10.3rem;
		right: 10.3rem;
		bottom: 10.3rem;
	}

	&104 {
		top: 10.4rem;
		right: 10.4rem;
		bottom: 10.4rem;
	}

	&105 {
		top: 10.5rem;
		right: 10.5rem;
		bottom: 10.5rem;
	}

	&106 {
		top: 10.6rem;
		right: 10.6rem;
		bottom: 10.6rem;
	}

	&107 {
		top: 10.7rem;
		right: 10.7rem;
		bottom: 10.7rem;
	}

	&108 {
		top: 10.8rem;
		right: 10.8rem;
		bottom: 10.8rem;
	}

	&109 {
		top: 10.9rem;
		right: 10.9rem;
		bottom: 10.9rem;
	}

	&110 {
		top: 11.0rem;
		right: 11.0rem;
		bottom: 11.0rem;
	}

	&111 {
		top: 11.1rem;
		right: 11.1rem;
		bottom: 11.1rem;
	}

	&112 {
		top: 11.2rem;
		right: 11.2rem;
		bottom: 11.2rem;
	}

	&113 {
		top: 11.3rem;
		right: 11.3rem;
		bottom: 11.3rem;
	}

	&114 {
		top: 11.4rem;
		right: 11.4rem;
		bottom: 11.4rem;
	}

	&115 {
		top: 11.5rem;
		right: 11.5rem;
		bottom: 11.5rem;
	}

	&116 {
		top: 11.6rem;
		right: 11.6rem;
		bottom: 11.6rem;
	}

	&117 {
		top: 11.7rem;
		right: 11.7rem;
		bottom: 11.7rem;
	}

	&118 {
		top: 11.8rem;
		right: 11.8rem;
		bottom: 11.8rem;
	}

	&119 {
		top: 11.9rem;
		right: 11.9rem;
		bottom: 11.9rem;
	}

	&120 {
		top: 12.0rem;
		right: 12.0rem;
		bottom: 12.0rem;
	}

	&121 {
		top: 12.1rem;
		right: 12.1rem;
		bottom: 12.1rem;
	}

	&122 {
		top: 12.2rem;
		right: 12.2rem;
		bottom: 12.2rem;
	}

	&123 {
		top: 12.3rem;
		right: 12.3rem;
		bottom: 12.3rem;
	}

	&124 {
		top: 12.4rem;
		right: 12.4rem;
		bottom: 12.4rem;
	}

	&125 {
		top: 12.5rem;
		right: 12.5rem;
		bottom: 12.5rem;
	}

	&126 {
		top: 12.6rem;
		right: 12.6rem;
		bottom: 12.6rem;
	}

	&127 {
		top: 12.7rem;
		right: 12.7rem;
		bottom: 12.7rem;
	}

	&128 {
		top: 12.8rem;
		right: 12.8rem;
		bottom: 12.8rem;
	}

	&129 {
		top: 12.9rem;
		right: 12.9rem;
		bottom: 12.9rem;
	}

	&130 {
		top: 13.0rem;
		right: 13.0rem;
		bottom: 13.0rem;
	}

	&131 {
		top: 13.1rem;
		right: 13.1rem;
		bottom: 13.1rem;
	}

	&132 {
		top: 13.2rem;
		right: 13.2rem;
		bottom: 13.2rem;
	}

	&133 {
		top: 13.3rem;
		right: 13.3rem;
		bottom: 13.3rem;
	}

	&134 {
		top: 13.4rem;
		right: 13.4rem;
		bottom: 13.4rem;
	}

	&135 {
		top: 13.5rem;
		right: 13.5rem;
		bottom: 13.5rem;
	}

	&136 {
		top: 13.6rem;
		right: 13.6rem;
		bottom: 13.6rem;
	}

	&137 {
		top: 13.7rem;
		right: 13.7rem;
		bottom: 13.7rem;
	}

	&138 {
		top: 13.8rem;
		right: 13.8rem;
		bottom: 13.8rem;
	}

	&139 {
		top: 13.9rem;
		right: 13.9rem;
		bottom: 13.9rem;
	}

	&140 {
		top: 14.0rem;
		right: 14.0rem;
		bottom: 14.0rem;
	}

	&141 {
		top: 14.1rem;
		right: 14.1rem;
		bottom: 14.1rem;
	}

	&142 {
		top: 14.2rem;
		right: 14.2rem;
		bottom: 14.2rem;
	}

	&143 {
		top: 14.3rem;
		right: 14.3rem;
		bottom: 14.3rem;
	}

	&144 {
		top: 14.4rem;
		right: 14.4rem;
		bottom: 14.4rem;
	}

	&145 {
		top: 14.5rem;
		right: 14.5rem;
		bottom: 14.5rem;
	}

	&146 {
		top: 14.6rem;
		right: 14.6rem;
		bottom: 14.6rem;
	}

	&147 {
		top: 14.7rem;
		right: 14.7rem;
		bottom: 14.7rem;
	}

	&148 {
		top: 14.8rem;
		right: 14.8rem;
		bottom: 14.8rem;
	}

	&149 {
		top: 14.9rem;
		right: 14.9rem;
		bottom: 14.9rem;
	}

	&150 {
		top: 15.0rem;
		right: 15.0rem;
		bottom: 15.0rem;
	}

	&151 {
		top: 15.1rem;
		right: 15.1rem;
		bottom: 15.1rem;
	}

	&152 {
		top: 15.2rem;
		right: 15.2rem;
		bottom: 15.2rem;
	}

	&153 {
		top: 15.3rem;
		right: 15.3rem;
		bottom: 15.3rem;
	}

	&154 {
		top: 15.4rem;
		right: 15.4rem;
		bottom: 15.4rem;
	}

	&155 {
		top: 15.5rem;
		right: 15.5rem;
		bottom: 15.5rem;
	}

	&156 {
		top: 15.6rem;
		right: 15.6rem;
		bottom: 15.6rem;
	}

	&157 {
		top: 15.7rem;
		right: 15.7rem;
		bottom: 15.7rem;
	}

	&158 {
		top: 15.8rem;
		right: 15.8rem;
		bottom: 15.8rem;
	}

	&159 {
		top: 15.9rem;
		right: 15.9rem;
		bottom: 15.9rem;
	}

	&160 {
		top: 16.0rem;
		right: 16.0rem;
		bottom: 16.0rem;
	}

	&161 {
		top: 16.1rem;
		right: 16.1rem;
		bottom: 16.1rem;
	}

	&162 {
		top: 16.2rem;
		right: 16.2rem;
		bottom: 16.2rem;
	}

	&163 {
		top: 16.3rem;
		right: 16.3rem;
		bottom: 16.3rem;
	}

	&164 {
		top: 16.4rem;
		right: 16.4rem;
		bottom: 16.4rem;
	}

	&165 {
		top: 16.5rem;
		right: 16.5rem;
		bottom: 16.5rem;
	}

	&166 {
		top: 16.6rem;
		right: 16.6rem;
		bottom: 16.6rem;
	}

	&167 {
		top: 16.7rem;
		right: 16.7rem;
		bottom: 16.7rem;
	}

	&168 {
		top: 16.8rem;
		right: 16.8rem;
		bottom: 16.8rem;
	}

	&169 {
		top: 16.9rem;
		right: 16.9rem;
		bottom: 16.9rem;
	}

	&170 {
		top: 17.0rem;
		right: 17.0rem;
		bottom: 17.0rem;
	}

	&171 {
		top: 17.1rem;
		right: 17.1rem;
		bottom: 17.1rem;
	}

	&172 {
		top: 17.2rem;
		right: 17.2rem;
		bottom: 17.2rem;
	}

	&173 {
		top: 17.3rem;
		right: 17.3rem;
		bottom: 17.3rem;
	}

	&174 {
		top: 17.4rem;
		right: 17.4rem;
		bottom: 17.4rem;
	}

	&175 {
		top: 17.5rem;
		right: 17.5rem;
		bottom: 17.5rem;
	}

	&176 {
		top: 17.6rem;
		right: 17.6rem;
		bottom: 17.6rem;
	}

	&177 {
		top: 17.7rem;
		right: 17.7rem;
		bottom: 17.7rem;
	}

	&178 {
		top: 17.8rem;
		right: 17.8rem;
		bottom: 17.8rem;
	}

	&179 {
		top: 17.9rem;
		right: 17.9rem;
		bottom: 17.9rem;
	}

	&180 {
		top: 18.0rem;
		right: 18.0rem;
		bottom: 18.0rem;
	}

	&181 {
		top: 18.1rem;
		right: 18.1rem;
		bottom: 18.1rem;
	}

	&182 {
		top: 18.2rem;
		right: 18.2rem;
		bottom: 18.2rem;
	}

	&183 {
		top: 18.3rem;
		right: 18.3rem;
		bottom: 18.3rem;
	}

	&184 {
		top: 18.4rem;
		right: 18.4rem;
		bottom: 18.4rem;
	}

	&185 {
		top: 18.5rem;
		right: 18.5rem;
		bottom: 18.5rem;
	}

	&186 {
		top: 18.6rem;
		right: 18.6rem;
		bottom: 18.6rem;
	}

	&187 {
		top: 18.7rem;
		right: 18.7rem;
		bottom: 18.7rem;
	}

	&188 {
		top: 18.8rem;
		right: 18.8rem;
		bottom: 18.8rem;
	}

	&189 {
		top: 18.9rem;
		right: 18.9rem;
		bottom: 18.9rem;
	}

	&190 {
		top: 19.0rem;
		right: 19.0rem;
		bottom: 19.0rem;
	}

	&191 {
		top: 19.1rem;
		right: 19.1rem;
		bottom: 19.1rem;
	}

	&192 {
		top: 19.2rem;
		right: 19.2rem;
		bottom: 19.2rem;
	}

	&193 {
		top: 19.3rem;
		right: 19.3rem;
		bottom: 19.3rem;
	}

	&194 {
		top: 19.4rem;
		right: 19.4rem;
		bottom: 19.4rem;
	}

	&195 {
		top: 19.5rem;
		right: 19.5rem;
		bottom: 19.5rem;
	}

	&196 {
		top: 19.6rem;
		right: 19.6rem;
		bottom: 19.6rem;
	}

	&197 {
		top: 19.7rem;
		right: 19.7rem;
		bottom: 19.7rem;
	}

	&198 {
		top: 19.8rem;
		right: 19.8rem;
		bottom: 19.8rem;
	}

	&199 {
		top: 19.9rem;
		right: 19.9rem;
		bottom: 19.9rem;
	}

	&200 {
		top: 20.0rem;
		right: 20.0rem;
		bottom: 20.0rem;
	}
}






// ABSOLUTE POSIITON TOP RIGHT BOTTOM LEFT

.pos--,
.position-- {
	&00 {
		top: 0.0rem;
		right: 0.0rem;
		bottom: 0.0rem;
	}

	&01 {
		top: 0.1rem;
		right: 0.1rem;
		bottom: 0.1rem;
	}

	&02 {
		top: 0.2rem;
		right: 0.2rem;
		bottom: 0.2rem;
	}

	&03 {
		top: 0.3rem;
		right: 0.3rem;
		bottom: 0.3rem;
	}

	&04 {
		top: 0.4rem;
		right: 0.4rem;
		bottom: 0.4rem;
	}

	&05 {
		top: 0.5rem;
		right: 0.5rem;
		bottom: 0.5rem;
	}

	&06 {
		top: 0.6rem;
		right: 0.6rem;
		bottom: 0.6rem;
	}

	&07 {
		top: 0.7rem;
		right: 0.7rem;
		bottom: 0.7rem;
	}

	&08 {
		top: 0.8rem;
		right: 0.8rem;
		bottom: 0.8rem;
	}

	&09 {
		top: 0.9rem;
		right: 0.9rem;
		bottom: 0.9rem;
	}

	&10 {
		top: 1.0rem;
		right: 1.0rem;
		bottom: 1.0rem;
	}

	&11 {
		top: 1.1rem;
		right: 1.1rem;
		bottom: 1.1rem;
	}

	&12 {
		top: 1.2rem;
		right: 1.2rem;
		bottom: 1.2rem;
	}

	&13 {
		top: 1.3rem;
		right: 1.3rem;
		bottom: 1.3rem;
	}

	&14 {
		top: 1.4rem;
		right: 1.4rem;
		bottom: 1.4rem;
	}

	&15 {
		top: 1.5rem;
		right: 1.5rem;
		bottom: 1.5rem;
	}

	&16 {
		top: 1.6rem;
		right: 1.6rem;
		bottom: 1.6rem;
	}

	&17 {
		top: 1.7rem;
		right: 1.7rem;
		bottom: 1.7rem;
	}

	&18 {
		top: 1.8rem;
		right: 1.8rem;
		bottom: 1.8rem;
	}

	&19 {
		top: 1.9rem;
		right: 1.9rem;
		bottom: 1.9rem;
	}

	&20 {
		top: 2.0rem;
		right: 2.0rem;
		bottom: 2.0rem;
	}

	&21 {
		top: 2.1rem;
		right: 2.1rem;
		bottom: 2.1rem;
	}

	&22 {
		top: 2.2rem;
		right: 2.2rem;
		bottom: 2.2rem;
	}

	&23 {
		top: 2.3rem;
		right: 2.3rem;
		bottom: 2.3rem;
	}

	&24 {
		top: 2.4rem;
		right: 2.4rem;
		bottom: 2.4rem;
	}

	&25 {
		top: 2.5rem;
		right: 2.5rem;
		bottom: 2.5rem;
	}

	&26 {
		top: 2.6rem;
		right: 2.6rem;
		bottom: 2.6rem;
	}

	&27 {
		top: 2.7rem;
		right: 2.7rem;
		bottom: 2.7rem;
	}

	&28 {
		top: 2.8rem;
		right: 2.8rem;
		bottom: 2.8rem;
	}

	&29 {
		top: 2.9rem;
		right: 2.9rem;
		bottom: 2.9rem;
	}

	&30 {
		top: 3.0rem;
		right: 3.0rem;
		bottom: 3.0rem;
	}

	&31 {
		top: 3.1rem;
		right: 3.1rem;
		bottom: 3.1rem;
	}

	&32 {
		top: 3.2rem;
		right: 3.2rem;
		bottom: 3.2rem;
	}

	&33 {
		top: 3.3rem;
		right: 3.3rem;
		bottom: 3.3rem;
	}

	&34 {
		top: 3.4rem;
		right: 3.4rem;
		bottom: 3.4rem;
	}

	&35 {
		top: 3.5rem;
		right: 3.5rem;
		bottom: 3.5rem;
	}

	&36 {
		top: 3.6rem;
		right: 3.6rem;
		bottom: 3.6rem;
	}

	&37 {
		top: 3.7rem;
		right: 3.7rem;
		bottom: 3.7rem;
	}

	&38 {
		top: 3.8rem;
		right: 3.8rem;
		bottom: 3.8rem;
	}

	&39 {
		top: 3.9rem;
		right: 3.9rem;
		bottom: 3.9rem;
	}

	&40 {
		top: 4.0rem;
		right: 4.0rem;
		bottom: 4.0rem;
	}

	&41 {
		top: 4.1rem;
		right: 4.1rem;
		bottom: 4.1rem;
	}

	&42 {
		top: 4.2rem;
		right: 4.2rem;
		bottom: 4.2rem;
	}

	&43 {
		top: 4.3rem;
		right: 4.3rem;
		bottom: 4.3rem;
	}

	&44 {
		top: 4.4rem;
		right: 4.4rem;
		bottom: 4.4rem;
	}

	&45 {
		top: 4.5rem;
		right: 4.5rem;
		bottom: 4.5rem;
	}

	&46 {
		top: 4.6rem;
		right: 4.6rem;
		bottom: 4.6rem;
	}

	&47 {
		top: 4.7rem;
		right: 4.7rem;
		bottom: 4.7rem;
	}

	&48 {
		top: 4.8rem;
		right: 4.8rem;
		bottom: 4.8rem;
	}

	&49 {
		top: 4.9rem;
		right: 4.9rem;
		bottom: 4.9rem;
	}

	&50 {
		top: 5.0rem;
		right: 5.0rem;
		bottom: 5.0rem;
	}

	&51 {
		top: 5.1rem;
		right: 5.1rem;
		bottom: 5.1rem;
	}

	&52 {
		top: 5.2rem;
		right: 5.2rem;
		bottom: 5.2rem;
	}

	&53 {
		top: 5.3rem;
		right: 5.3rem;
		bottom: 5.3rem;
	}

	&54 {
		top: 5.4rem;
		right: 5.4rem;
		bottom: 5.4rem;
	}

	&55 {
		top: 5.5rem;
		right: 5.5rem;
		bottom: 5.5rem;
	}

	&56 {
		top: 5.6rem;
		right: 5.6rem;
		bottom: 5.6rem;
	}

	&57 {
		top: 5.7rem;
		right: 5.7rem;
		bottom: 5.7rem;
	}

	&58 {
		top: 5.8rem;
		right: 5.8rem;
		bottom: 5.8rem;
	}

	&59 {
		top: 5.9rem;
		right: 5.9rem;
		bottom: 5.9rem;
	}

	&60 {
		top: 6.0rem;
		right: 6.0rem;
		bottom: 6.0rem;
	}

	&61 {
		top: 6.1rem;
		right: 6.1rem;
		bottom: 6.1rem;
	}

	&62 {
		top: 6.2rem;
		right: 6.2rem;
		bottom: 6.2rem;
	}

	&63 {
		top: 6.3rem;
		right: 6.3rem;
		bottom: 6.3rem;
	}

	&64 {
		top: 6.4rem;
		right: 6.4rem;
		bottom: 6.4rem;
	}

	&65 {
		top: 6.5rem;
		right: 6.5rem;
		bottom: 6.5rem;
	}

	&66 {
		top: 6.6rem;
		right: 6.6rem;
		bottom: 6.6rem;
	}

	&67 {
		top: 6.7rem;
		right: 6.7rem;
		bottom: 6.7rem;
	}

	&68 {
		top: 6.8rem;
		right: 6.8rem;
		bottom: 6.8rem;
	}

	&69 {
		top: 6.9rem;
		right: 6.9rem;
		bottom: 6.9rem;
	}

	&70 {
		top: 7.0rem;
		right: 7.0rem;
		bottom: 7.0rem;
	}

	&71 {
		top: 7.1rem;
		right: 7.1rem;
		bottom: 7.1rem;
	}

	&72 {
		top: 7.2rem;
		right: 7.2rem;
		bottom: 7.2rem;
	}

	&73 {
		top: 7.3rem;
		right: 7.3rem;
		bottom: 7.3rem;
	}

	&74 {
		top: 7.4rem;
		right: 7.4rem;
		bottom: 7.4rem;
	}

	&75 {
		top: 7.5rem;
		right: 7.5rem;
		bottom: 7.5rem;
	}

	&76 {
		top: 7.6rem;
		right: 7.6rem;
		bottom: 7.6rem;
	}

	&77 {
		top: 7.7rem;
		right: 7.7rem;
		bottom: 7.7rem;
	}

	&78 {
		top: 7.8rem;
		right: 7.8rem;
		bottom: 7.8rem;
	}

	&79 {
		top: 7.9rem;
		right: 7.9rem;
		bottom: 7.9rem;
	}

	&80 {
		top: 8.0rem;
		right: 8.0rem;
		bottom: 8.0rem;
	}

	&81 {
		top: 8.1rem;
		right: 8.1rem;
		bottom: 8.1rem;
	}

	&82 {
		top: 8.2rem;
		right: 8.2rem;
		bottom: 8.2rem;
	}

	&83 {
		top: 8.3rem;
		right: 8.3rem;
		bottom: 8.3rem;
	}

	&84 {
		top: 8.4rem;
		right: 8.4rem;
		bottom: 8.4rem;
	}

	&85 {
		top: 8.5rem;
		right: 8.5rem;
		bottom: 8.5rem;
	}

	&86 {
		top: 8.6rem;
		right: 8.6rem;
		bottom: 8.6rem;
	}

	&87 {
		top: 8.7rem;
		right: 8.7rem;
		bottom: 8.7rem;
	}

	&88 {
		top: 8.8rem;
		right: 8.8rem;
		bottom: 8.8rem;
	}

	&89 {
		top: 8.9rem;
		right: 8.9rem;
		bottom: 8.9rem;
	}

	&90 {
		top: 9.0rem;
		right: 9.0rem;
		bottom: 9.0rem;
	}

	&91 {
		top: 9.1rem;
		right: 9.1rem;
		bottom: 9.1rem;
	}

	&92 {
		top: 9.2rem;
		right: 9.2rem;
		bottom: 9.2rem;
	}

	&93 {
		top: 9.3rem;
		right: 9.3rem;
		bottom: 9.3rem;
	}

	&94 {
		top: 9.4rem;
		right: 9.4rem;
		bottom: 9.4rem;
	}

	&95 {
		top: 9.5rem;
		right: 9.5rem;
		bottom: 9.5rem;
	}

	&96 {
		top: 9.6rem;
		right: 9.6rem;
		bottom: 9.6rem;
	}

	&97 {
		top: 9.7rem;
		right: 9.7rem;
		bottom: 9.7rem;
	}

	&98 {
		top: 9.8rem;
		right: 9.8rem;
		bottom: 9.8rem;
	}

	&99 {
		top: 9.9rem;
		right: 9.9rem;
		bottom: 9.9rem;
	}

	&100 {
		top: 10.0rem;
		right: 10.0rem;
		bottom: 10.0rem;
	}

	&101 {
		top: 10.1rem;
		right: 10.1rem;
		bottom: 10.1rem;
	}

	&102 {
		top: 10.2rem;
		right: 10.2rem;
		bottom: 10.2rem;
	}

	&103 {
		top: 10.3rem;
		right: 10.3rem;
		bottom: 10.3rem;
	}

	&104 {
		top: 10.4rem;
		right: 10.4rem;
		bottom: 10.4rem;
	}

	&105 {
		top: 10.5rem;
		right: 10.5rem;
		bottom: 10.5rem;
	}

	&106 {
		top: 10.6rem;
		right: 10.6rem;
		bottom: 10.6rem;
	}

	&107 {
		top: 10.7rem;
		right: 10.7rem;
		bottom: 10.7rem;
	}

	&108 {
		top: 10.8rem;
		right: 10.8rem;
		bottom: 10.8rem;
	}

	&109 {
		top: 10.9rem;
		right: 10.9rem;
		bottom: 10.9rem;
	}

	&110 {
		top: 11.0rem;
		right: 11.0rem;
		bottom: 11.0rem;
	}

	&111 {
		top: 11.1rem;
		right: 11.1rem;
		bottom: 11.1rem;
	}

	&112 {
		top: 11.2rem;
		right: 11.2rem;
		bottom: 11.2rem;
	}

	&113 {
		top: 11.3rem;
		right: 11.3rem;
		bottom: 11.3rem;
	}

	&114 {
		top: 11.4rem;
		right: 11.4rem;
		bottom: 11.4rem;
	}

	&115 {
		top: 11.5rem;
		right: 11.5rem;
		bottom: 11.5rem;
	}

	&116 {
		top: 11.6rem;
		right: 11.6rem;
		bottom: 11.6rem;
	}

	&117 {
		top: 11.7rem;
		right: 11.7rem;
		bottom: 11.7rem;
	}

	&118 {
		top: 11.8rem;
		right: 11.8rem;
		bottom: 11.8rem;
	}

	&119 {
		top: 11.9rem;
		right: 11.9rem;
		bottom: 11.9rem;
	}

	&120 {
		top: 12.0rem;
		right: 12.0rem;
		bottom: 12.0rem;
	}

	&121 {
		top: 12.1rem;
		right: 12.1rem;
		bottom: 12.1rem;
	}

	&122 {
		top: 12.2rem;
		right: 12.2rem;
		bottom: 12.2rem;
	}

	&123 {
		top: 12.3rem;
		right: 12.3rem;
		bottom: 12.3rem;
	}

	&124 {
		top: 12.4rem;
		right: 12.4rem;
		bottom: 12.4rem;
	}

	&125 {
		top: 12.5rem;
		right: 12.5rem;
		bottom: 12.5rem;
	}

	&126 {
		top: 12.6rem;
		right: 12.6rem;
		bottom: 12.6rem;
	}

	&127 {
		top: 12.7rem;
		right: 12.7rem;
		bottom: 12.7rem;
	}

	&128 {
		top: 12.8rem;
		right: 12.8rem;
		bottom: 12.8rem;
	}

	&129 {
		top: 12.9rem;
		right: 12.9rem;
		bottom: 12.9rem;
	}

	&130 {
		top: 13.0rem;
		right: 13.0rem;
		bottom: 13.0rem;
	}

	&131 {
		top: 13.1rem;
		right: 13.1rem;
		bottom: 13.1rem;
	}

	&132 {
		top: 13.2rem;
		right: 13.2rem;
		bottom: 13.2rem;
	}

	&133 {
		top: 13.3rem;
		right: 13.3rem;
		bottom: 13.3rem;
	}

	&134 {
		top: 13.4rem;
		right: 13.4rem;
		bottom: 13.4rem;
	}

	&135 {
		top: 13.5rem;
		right: 13.5rem;
		bottom: 13.5rem;
	}

	&136 {
		top: 13.6rem;
		right: 13.6rem;
		bottom: 13.6rem;
	}

	&137 {
		top: 13.7rem;
		right: 13.7rem;
		bottom: 13.7rem;
	}

	&138 {
		top: 13.8rem;
		right: 13.8rem;
		bottom: 13.8rem;
	}

	&139 {
		top: 13.9rem;
		right: 13.9rem;
		bottom: 13.9rem;
	}

	&140 {
		top: 14.0rem;
		right: 14.0rem;
		bottom: 14.0rem;
	}

	&141 {
		top: 14.1rem;
		right: 14.1rem;
		bottom: 14.1rem;
	}

	&142 {
		top: 14.2rem;
		right: 14.2rem;
		bottom: 14.2rem;
	}

	&143 {
		top: 14.3rem;
		right: 14.3rem;
		bottom: 14.3rem;
	}

	&144 {
		top: 14.4rem;
		right: 14.4rem;
		bottom: 14.4rem;
	}

	&145 {
		top: 14.5rem;
		right: 14.5rem;
		bottom: 14.5rem;
	}

	&146 {
		top: 14.6rem;
		right: 14.6rem;
		bottom: 14.6rem;
	}

	&147 {
		top: 14.7rem;
		right: 14.7rem;
		bottom: 14.7rem;
	}

	&148 {
		top: 14.8rem;
		right: 14.8rem;
		bottom: 14.8rem;
	}

	&149 {
		top: 14.9rem;
		right: 14.9rem;
		bottom: 14.9rem;
	}

	&150 {
		top: 15.0rem;
		right: 15.0rem;
		bottom: 15.0rem;
	}

	&151 {
		top: 15.1rem;
		right: 15.1rem;
		bottom: 15.1rem;
	}

	&152 {
		top: 15.2rem;
		right: 15.2rem;
		bottom: 15.2rem;
	}

	&153 {
		top: 15.3rem;
		right: 15.3rem;
		bottom: 15.3rem;
	}

	&154 {
		top: 15.4rem;
		right: 15.4rem;
		bottom: 15.4rem;
	}

	&155 {
		top: 15.5rem;
		right: 15.5rem;
		bottom: 15.5rem;
	}

	&156 {
		top: 15.6rem;
		right: 15.6rem;
		bottom: 15.6rem;
	}

	&157 {
		top: 15.7rem;
		right: 15.7rem;
		bottom: 15.7rem;
	}

	&158 {
		top: 15.8rem;
		right: 15.8rem;
		bottom: 15.8rem;
	}

	&159 {
		top: 15.9rem;
		right: 15.9rem;
		bottom: 15.9rem;
	}

	&160 {
		top: 16.0rem;
		right: 16.0rem;
		bottom: 16.0rem;
	}

	&161 {
		top: 16.1rem;
		right: 16.1rem;
		bottom: 16.1rem;
	}

	&162 {
		top: 16.2rem;
		right: 16.2rem;
		bottom: 16.2rem;
	}

	&163 {
		top: 16.3rem;
		right: 16.3rem;
		bottom: 16.3rem;
	}

	&164 {
		top: 16.4rem;
		right: 16.4rem;
		bottom: 16.4rem;
	}

	&165 {
		top: 16.5rem;
		right: 16.5rem;
		bottom: 16.5rem;
	}

	&166 {
		top: 16.6rem;
		right: 16.6rem;
		bottom: 16.6rem;
	}

	&167 {
		top: 16.7rem;
		right: 16.7rem;
		bottom: 16.7rem;
	}

	&168 {
		top: 16.8rem;
		right: 16.8rem;
		bottom: 16.8rem;
	}

	&169 {
		top: 16.9rem;
		right: 16.9rem;
		bottom: 16.9rem;
	}

	&170 {
		top: 17.0rem;
		right: 17.0rem;
		bottom: 17.0rem;
	}

	&171 {
		top: 17.1rem;
		right: 17.1rem;
		bottom: 17.1rem;
	}

	&172 {
		top: 17.2rem;
		right: 17.2rem;
		bottom: 17.2rem;
	}

	&173 {
		top: 17.3rem;
		right: 17.3rem;
		bottom: 17.3rem;
	}

	&174 {
		top: 17.4rem;
		right: 17.4rem;
		bottom: 17.4rem;
	}

	&175 {
		top: 17.5rem;
		right: 17.5rem;
		bottom: 17.5rem;
	}

	&176 {
		top: 17.6rem;
		right: 17.6rem;
		bottom: 17.6rem;
	}

	&177 {
		top: 17.7rem;
		right: 17.7rem;
		bottom: 17.7rem;
	}

	&178 {
		top: 17.8rem;
		right: 17.8rem;
		bottom: 17.8rem;
	}

	&179 {
		top: 17.9rem;
		right: 17.9rem;
		bottom: 17.9rem;
	}

	&180 {
		top: 18.0rem;
		right: 18.0rem;
		bottom: 18.0rem;
	}

	&181 {
		top: 18.1rem;
		right: 18.1rem;
		bottom: 18.1rem;
	}

	&182 {
		top: 18.2rem;
		right: 18.2rem;
		bottom: 18.2rem;
	}

	&183 {
		top: 18.3rem;
		right: 18.3rem;
		bottom: 18.3rem;
	}

	&184 {
		top: 18.4rem;
		right: 18.4rem;
		bottom: 18.4rem;
	}

	&185 {
		top: 18.5rem;
		right: 18.5rem;
		bottom: 18.5rem;
	}

	&186 {
		top: 18.6rem;
		right: 18.6rem;
		bottom: 18.6rem;
	}

	&187 {
		top: 18.7rem;
		right: 18.7rem;
		bottom: 18.7rem;
	}

	&188 {
		top: 18.8rem;
		right: 18.8rem;
		bottom: 18.8rem;
	}

	&189 {
		top: 18.9rem;
		right: 18.9rem;
		bottom: 18.9rem;
	}

	&190 {
		top: 19.0rem;
		right: 19.0rem;
		bottom: 19.0rem;
	}

	&191 {
		top: 19.1rem;
		right: 19.1rem;
		bottom: 19.1rem;
	}

	&192 {
		top: 19.2rem;
		right: 19.2rem;
		bottom: 19.2rem;
	}

	&193 {
		top: 19.3rem;
		right: 19.3rem;
		bottom: 19.3rem;
	}

	&194 {
		top: 19.4rem;
		right: 19.4rem;
		bottom: 19.4rem;
	}

	&195 {
		top: 19.5rem;
		right: 19.5rem;
		bottom: 19.5rem;
	}

	&196 {
		top: 19.6rem;
		right: 19.6rem;
		bottom: 19.6rem;
	}

	&197 {
		top: 19.7rem;
		right: 19.7rem;
		bottom: 19.7rem;
	}

	&198 {
		top: 19.8rem;
		right: 19.8rem;
		bottom: 19.8rem;
	}

	&199 {
		top: 19.9rem;
		right: 19.9rem;
		bottom: 19.9rem;
	}

	&200 {
		top: 20.0rem;
		right: 20.0rem;
		bottom: 20.0rem;
	}
}




// VERTICAL AND HORIZONTAL SPACE MARGIN
.v-space {
  margin-bottom: 1rem;
}

.h-space {
  margin-left: 1rem;
}

.vh-space {
  margin: 1rem 0;
}
.v-space-l {
  margin-bottom: 1.5rem;
}

.h-space-l {
  margin-left: 1.5rem;
}

.vh-space-l {
  margin: 1.5rem 0;
}
