
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_c8944580562e517233ac2a56.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_98dff909010a0f525aada916.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6745bc85b9bf4e2f30e4b668.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_118fcdfe71716cea69a2b519.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6ad05a4405a006b8a0447f59.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_454eff3b4023026db14f2e3d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01fa3f0e64cd2750b472fbde.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.000000px;}
.v4{vertical-align:-21.600000px;}
.v1{vertical-align:-11.313000px;}
.v6{vertical-align:-8.910000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:8.910000px;}
.v8{vertical-align:11.340000px;}
.v5{vertical-align:21.600000px;}
.v2{vertical-align:27.000000px;}
.ls7{letter-spacing:-4.440000px;}
.ls9{letter-spacing:-2.308800px;}
.ls8{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.004800px;}
.ls2{letter-spacing:0.006000px;}
.ls20{letter-spacing:0.742500px;}
.ls1b{letter-spacing:0.799050px;}
.lsb{letter-spacing:0.804300px;}
.ls1f{letter-spacing:0.990000px;}
.lse{letter-spacing:1.016700px;}
.ls1{letter-spacing:1.023600px;}
.ls11{letter-spacing:1.023750px;}
.lsd{letter-spacing:1.024050px;}
.lsa{letter-spacing:1.024200px;}
.ls1a{letter-spacing:1.128900px;}
.ls15{letter-spacing:1.221300px;}
.ls14{letter-spacing:1.228200px;}
.ls13{letter-spacing:1.228800px;}
.ls1d{letter-spacing:1.237200px;}
.ls6{letter-spacing:1.237500px;}
.ls10{letter-spacing:1.260000px;}
.ls1e{letter-spacing:1.336500px;}
.ls16{letter-spacing:1.449000px;}
.lsc{letter-spacing:1.485600px;}
.ls19{letter-spacing:1.534500px;}
.ls0{letter-spacing:1.575000px;}
.ls18{letter-spacing:1.584000px;}
.ls1c{letter-spacing:1.881000px;}
.ls12{letter-spacing:1.890000px;}
.ls17{letter-spacing:2.277000px;}
.ls21{letter-spacing:20.938500px;}
.lsf{letter-spacing:45.927000px;}
.ls3{letter-spacing:53.105400px;}
.ls4{letter-spacing:53.106000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws165{word-spacing:-17.640000px;}
.ws1{word-spacing:-17.325000px;}
.ws13f{word-spacing:-16.680000px;}
.ws9{word-spacing:-13.612500px;}
.ws218{word-spacing:-13.365000px;}
.ws223{word-spacing:-13.117500px;}
.ws0{word-spacing:-12.240000px;}
.ws106{word-spacing:-11.261250px;}
.ws3{word-spacing:-10.842000px;}
.ws2{word-spacing:-10.237500px;}
.ws7{word-spacing:-8.673600px;}
.ws169{word-spacing:-7.623000px;}
.ws168{word-spacing:-6.489000px;}
.ws8{word-spacing:-6.364800px;}
.ws16b{word-spacing:-6.111000px;}
.ws16c{word-spacing:-5.796000px;}
.ws12d{word-spacing:-5.607000px;}
.wsf8{word-spacing:-5.103000px;}
.ws15b{word-spacing:-5.040000px;}
.ws60{word-spacing:-4.851000px;}
.wsd2{word-spacing:-4.788000px;}
.wsd6{word-spacing:-4.473000px;}
.ws66{word-spacing:-4.347000px;}
.ws154{word-spacing:-4.284000px;}
.ws167{word-spacing:-4.221000px;}
.ws150{word-spacing:-4.158000px;}
.wse3{word-spacing:-3.969000px;}
.ws22a{word-spacing:-3.960000px;}
.ws1b5{word-spacing:-3.861000px;}
.ws144{word-spacing:-3.780000px;}
.ws156{word-spacing:-3.654000px;}
.wsb5{word-spacing:-3.591000px;}
.ws152{word-spacing:-3.528000px;}
.ws8e{word-spacing:-3.465000px;}
.wsf0{word-spacing:-3.402000px;}
.ws116{word-spacing:-3.339000px;}
.ws24{word-spacing:-3.276000px;}
.ws234{word-spacing:-3.267000px;}
.ws194{word-spacing:-3.217500px;}
.ws52{word-spacing:-3.213000px;}
.ws10a{word-spacing:-3.150000px;}
.ws200{word-spacing:-3.118500px;}
.wsfc{word-spacing:-3.087000px;}
.ws216{word-spacing:-3.069000px;}
.wsa9{word-spacing:-3.024000px;}
.ws17b{word-spacing:-3.019500px;}
.ws1cf{word-spacing:-2.970000px;}
.ws3f{word-spacing:-2.961000px;}
.ws1d0{word-spacing:-2.920500px;}
.ws6f{word-spacing:-2.898000px;}
.ws8a{word-spacing:-2.835000px;}
.ws65{word-spacing:-2.772000px;}
.ws20d{word-spacing:-2.722500px;}
.ws77{word-spacing:-2.709000px;}
.wsb4{word-spacing:-2.646000px;}
.ws148{word-spacing:-2.583000px;}
.ws1b6{word-spacing:-2.574000px;}
.ws1e7{word-spacing:-2.524500px;}
.ws13c{word-spacing:-2.520000px;}
.ws1fc{word-spacing:-2.475000px;}
.wsfb{word-spacing:-2.457000px;}
.ws237{word-spacing:-2.425500px;}
.ws19b{word-spacing:-2.376000px;}
.wsd5{word-spacing:-2.331000px;}
.ws1d7{word-spacing:-2.326500px;}
.ws19f{word-spacing:-2.277000px;}
.ws34{word-spacing:-2.268000px;}
.wsd1{word-spacing:-2.220000px;}
.ws14f{word-spacing:-2.205000px;}
.ws1d6{word-spacing:-2.178000px;}
.wseb{word-spacing:-2.142000px;}
.ws221{word-spacing:-2.128500px;}
.wsbf{word-spacing:-2.079000px;}
.ws232{word-spacing:-2.029500px;}
.ws7e{word-spacing:-2.016000px;}
.ws81{word-spacing:-1.980000px;}
.wsbd{word-spacing:-1.953000px;}
.ws21c{word-spacing:-1.930500px;}
.ws39{word-spacing:-1.890000px;}
.ws1ae{word-spacing:-1.881000px;}
.ws19c{word-spacing:-1.831500px;}
.ws35{word-spacing:-1.827000px;}
.ws1a8{word-spacing:-1.782000px;}
.ws40{word-spacing:-1.764000px;}
.ws17e{word-spacing:-1.732500px;}
.ws7c{word-spacing:-1.701000px;}
.ws22d{word-spacing:-1.683000px;}
.wsd7{word-spacing:-1.638000px;}
.ws1bd{word-spacing:-1.584000px;}
.ws46{word-spacing:-1.575000px;}
.ws238{word-spacing:-1.534500px;}
.ws55{word-spacing:-1.512000px;}
.ws64{word-spacing:-1.449000px;}
.ws9d{word-spacing:-1.435500px;}
.ws109{word-spacing:-1.323000px;}
.ws1cb{word-spacing:-1.287000px;}
.ws58{word-spacing:-1.260000px;}
.ws36{word-spacing:-1.237500px;}
.ws94{word-spacing:-1.197000px;}
.ws1b2{word-spacing:-1.188000px;}
.ws198{word-spacing:-1.138500px;}
.ws135{word-spacing:-1.134000px;}
.ws1a7{word-spacing:-1.089000px;}
.ws2c{word-spacing:-1.071000px;}
.ws18e{word-spacing:-1.039500px;}
.ws141{word-spacing:-1.008000px;}
.ws1ed{word-spacing:-0.990000px;}
.ws8c{word-spacing:-0.945000px;}
.ws181{word-spacing:-0.940500px;}
.ws20e{word-spacing:-0.891000px;}
.ws151{word-spacing:-0.882000px;}
.ws230{word-spacing:-0.841500px;}
.ws83{word-spacing:-0.819000px;}
.wsca{word-spacing:-0.756000px;}
.ws1f0{word-spacing:-0.742500px;}
.wsb9{word-spacing:-0.693000px;}
.ws27{word-spacing:-0.630000px;}
.ws1b9{word-spacing:-0.594000px;}
.ws7a{word-spacing:-0.567000px;}
.ws219{word-spacing:-0.544500px;}
.ws3d{word-spacing:-0.504000px;}
.ws17a{word-spacing:-0.495000px;}
.ws191{word-spacing:-0.445500px;}
.wsf7{word-spacing:-0.441000px;}
.ws1e8{word-spacing:-0.396000px;}
.wsd3{word-spacing:-0.378000px;}
.ws1c9{word-spacing:-0.346500px;}
.wsa0{word-spacing:-0.315000px;}
.ws1b7{word-spacing:-0.297000px;}
.ws68{word-spacing:-0.252000px;}
.wsc3{word-spacing:-0.189000px;}
.ws1dc{word-spacing:-0.148500px;}
.ws9f{word-spacing:-0.126000px;}
.ws1e0{word-spacing:-0.099000px;}
.ws6e{word-spacing:-0.063000px;}
.ws175{word-spacing:-0.049500px;}
.wsa{word-spacing:0.000000px;}
.ws103{word-spacing:0.049500px;}
.ws143{word-spacing:0.063000px;}
.ws1ab{word-spacing:0.099000px;}
.wsb7{word-spacing:0.126000px;}
.ws1c4{word-spacing:0.148500px;}
.wsf1{word-spacing:0.189000px;}
.ws1a4{word-spacing:0.198000px;}
.ws100{word-spacing:0.247500px;}
.ws67{word-spacing:0.252000px;}
.ws1b3{word-spacing:0.297000px;}
.wsb{word-spacing:0.315000px;}
.ws1ac{word-spacing:0.346500px;}
.ws37{word-spacing:0.378000px;}
.ws102{word-spacing:0.396000px;}
.ws130{word-spacing:0.441000px;}
.ws224{word-spacing:0.445500px;}
.ws196{word-spacing:0.495000px;}
.wsa3{word-spacing:0.504000px;}
.ws1c2{word-spacing:0.544500px;}
.ws13e{word-spacing:0.567000px;}
.ws1d3{word-spacing:0.594000px;}
.ws9b{word-spacing:0.630000px;}
.ws62{word-spacing:0.693000px;}
.ws182{word-spacing:0.742500px;}
.ws118{word-spacing:0.756000px;}
.ws1fd{word-spacing:0.792000px;}
.wsd8{word-spacing:0.819000px;}
.ws47{word-spacing:0.882000px;}
.ws195{word-spacing:0.891000px;}
.ws105{word-spacing:0.940500px;}
.ws29{word-spacing:0.945000px;}
.ws1a2{word-spacing:0.990000px;}
.wsd9{word-spacing:1.008000px;}
.ws22f{word-spacing:1.039500px;}
.wsed{word-spacing:1.071000px;}
.ws217{word-spacing:1.089000px;}
.wsb8{word-spacing:1.134000px;}
.ws1af{word-spacing:1.138500px;}
.ws235{word-spacing:1.188000px;}
.ws4b{word-spacing:1.197000px;}
.ws1ad{word-spacing:1.237500px;}
.wsd4{word-spacing:1.260000px;}
.ws1b8{word-spacing:1.287000px;}
.ws25{word-spacing:1.323000px;}
.ws222{word-spacing:1.336500px;}
.ws15{word-spacing:1.386000px;}
.ws183{word-spacing:1.435500px;}
.ws6d{word-spacing:1.449000px;}
.ws19e{word-spacing:1.485000px;}
.wsdb{word-spacing:1.512000px;}
.ws1b0{word-spacing:1.534500px;}
.wscc{word-spacing:1.575000px;}
.ws104{word-spacing:1.584000px;}
.ws1f1{word-spacing:1.633500px;}
.ws75{word-spacing:1.638000px;}
.ws17f{word-spacing:1.683000px;}
.ws5f{word-spacing:1.701000px;}
.ws19d{word-spacing:1.732500px;}
.ws10e{word-spacing:1.764000px;}
.ws1fa{word-spacing:1.782000px;}
.wse1{word-spacing:1.827000px;}
.ws1f2{word-spacing:1.831500px;}
.ws176{word-spacing:1.881000px;}
.ws63{word-spacing:1.890000px;}
.ws188{word-spacing:1.930500px;}
.wsa2{word-spacing:1.953000px;}
.ws185{word-spacing:1.980000px;}
.wsf6{word-spacing:2.016000px;}
.ws101{word-spacing:2.029500px;}
.ws5e{word-spacing:2.079000px;}
.ws192{word-spacing:2.128500px;}
.wsac{word-spacing:2.142000px;}
.ws1c5{word-spacing:2.178000px;}
.ws4e{word-spacing:2.205000px;}
.ws61{word-spacing:2.268000px;}
.ws1ef{word-spacing:2.277000px;}
.ws21b{word-spacing:2.326500px;}
.ws3e{word-spacing:2.331000px;}
.ws1e3{word-spacing:2.376000px;}
.ws74{word-spacing:2.394000px;}
.ws1ea{word-spacing:2.425500px;}
.ws3c{word-spacing:2.457000px;}
.ws220{word-spacing:2.475000px;}
.ws30{word-spacing:2.520000px;}
.ws1e6{word-spacing:2.524500px;}
.ws207{word-spacing:2.574000px;}
.ws78{word-spacing:2.583000px;}
.ws2a{word-spacing:2.646000px;}
.ws18b{word-spacing:2.673000px;}
.wsdc{word-spacing:2.709000px;}
.ws1aa{word-spacing:2.722500px;}
.ws11{word-spacing:2.772000px;}
.ws1f3{word-spacing:2.821500px;}
.ws12c{word-spacing:2.835000px;}
.ws1b4{word-spacing:2.871000px;}
.ws12{word-spacing:2.898000px;}
.ws213{word-spacing:2.920500px;}
.wsc0{word-spacing:2.961000px;}
.ws233{word-spacing:2.970000px;}
.ws18a{word-spacing:3.019500px;}
.ws8b{word-spacing:3.024000px;}
.ws21d{word-spacing:3.069000px;}
.ws9a{word-spacing:3.087000px;}
.ws1b1{word-spacing:3.118500px;}
.wsa5{word-spacing:3.150000px;}
.ws189{word-spacing:3.168000px;}
.ws2d{word-spacing:3.213000px;}
.ws18c{word-spacing:3.217500px;}
.ws93{word-spacing:3.276000px;}
.ws1cc{word-spacing:3.366000px;}
.wse2{word-spacing:3.402000px;}
.ws1f9{word-spacing:3.415500px;}
.ws14d{word-spacing:3.465000px;}
.ws1c1{word-spacing:3.514500px;}
.ws1c{word-spacing:3.528000px;}
.ws1ce{word-spacing:3.564000px;}
.ws5c{word-spacing:3.591000px;}
.ws1ec{word-spacing:3.613500px;}
.ws108{word-spacing:3.654000px;}
.wsff{word-spacing:3.663000px;}
.wsfd{word-spacing:3.712500px;}
.wsf{word-spacing:3.717000px;}
.wsc1{word-spacing:3.780000px;}
.ws212{word-spacing:3.811500px;}
.ws20{word-spacing:3.843000px;}
.ws1bc{word-spacing:3.861000px;}
.ws15a{word-spacing:3.906000px;}
.ws17c{word-spacing:3.960000px;}
.ws127{word-spacing:3.969000px;}
.ws1e5{word-spacing:4.009500px;}
.ws1b{word-spacing:4.032000px;}
.ws22e{word-spacing:4.059000px;}
.wsea{word-spacing:4.095000px;}
.ws1f4{word-spacing:4.108500px;}
.ws3a{word-spacing:4.158000px;}
.ws7f{word-spacing:4.207500px;}
.ws13{word-spacing:4.221000px;}
.ws1c6{word-spacing:4.257000px;}
.wsd{word-spacing:4.284000px;}
.ws208{word-spacing:4.306500px;}
.wsa8{word-spacing:4.347000px;}
.ws1eb{word-spacing:4.356000px;}
.ws153{word-spacing:4.410000px;}
.ws20f{word-spacing:4.455000px;}
.ws4f{word-spacing:4.473000px;}
.ws80{word-spacing:4.504500px;}
.wsb3{word-spacing:4.536000px;}
.ws197{word-spacing:4.554000px;}
.ws4c{word-spacing:4.599000px;}
.ws1be{word-spacing:4.653000px;}
.ws97{word-spacing:4.662000px;}
.ws28{word-spacing:4.725000px;}
.ws215{word-spacing:4.752000px;}
.ws11b{word-spacing:4.788000px;}
.ws214{word-spacing:4.801500px;}
.wsa1{word-spacing:4.851000px;}
.ws73{word-spacing:4.914000px;}
.ws1f7{word-spacing:4.950000px;}
.ws117{word-spacing:4.977000px;}
.ws1c7{word-spacing:4.999500px;}
.ws79{word-spacing:5.040000px;}
.ws1f6{word-spacing:5.049000px;}
.ws56{word-spacing:5.103000px;}
.ws210{word-spacing:5.148000px;}
.wsb1{word-spacing:5.166000px;}
.ws179{word-spacing:5.197500px;}
.ws38{word-spacing:5.229000px;}
.ws1bb{word-spacing:5.247000px;}
.ws69{word-spacing:5.292000px;}
.ws17d{word-spacing:5.296500px;}
.ws211{word-spacing:5.346000px;}
.wsba{word-spacing:5.355000px;}
.ws1fe{word-spacing:5.395500px;}
.ws5d{word-spacing:5.418000px;}
.ws1a9{word-spacing:5.445000px;}
.wse{word-spacing:5.481000px;}
.ws204{word-spacing:5.494500px;}
.wse8{word-spacing:5.544000px;}
.wsee{word-spacing:5.607000px;}
.ws180{word-spacing:5.643000px;}
.ws59{word-spacing:5.670000px;}
.ws199{word-spacing:5.692500px;}
.ws91{word-spacing:5.733000px;}
.ws1a0{word-spacing:5.742000px;}
.ws1e2{word-spacing:5.791500px;}
.ws44{word-spacing:5.796000px;}
.ws186{word-spacing:5.841000px;}
.ws45{word-spacing:5.859000px;}
.wsfe{word-spacing:5.890500px;}
.ws85{word-spacing:5.922000px;}
.ws209{word-spacing:5.940000px;}
.ws95{word-spacing:5.985000px;}
.ws1de{word-spacing:6.039000px;}
.wsc8{word-spacing:6.048000px;}
.wsaa{word-spacing:6.111000px;}
.ws201{word-spacing:6.138000px;}
.wsae{word-spacing:6.174000px;}
.ws1a1{word-spacing:6.187500px;}
.ws26{word-spacing:6.237000px;}
.ws1c8{word-spacing:6.286500px;}
.wsdd{word-spacing:6.300000px;}
.ws1e9{word-spacing:6.336000px;}
.ws12e{word-spacing:6.363000px;}
.ws1d1{word-spacing:6.385500px;}
.wsc2{word-spacing:6.426000px;}
.ws187{word-spacing:6.435000px;}
.ws18f{word-spacing:6.484500px;}
.wsda{word-spacing:6.489000px;}
.ws206{word-spacing:6.534000px;}
.ws89{word-spacing:6.552000px;}
.ws41{word-spacing:6.615000px;}
.ws228{word-spacing:6.633000px;}
.wsb2{word-spacing:6.678000px;}
.wsa6{word-spacing:6.741000px;}
.ws236{word-spacing:6.781500px;}
.ws50{word-spacing:6.804000px;}
.wsf9{word-spacing:6.867000px;}
.wscf{word-spacing:6.930000px;}
.ws1ba{word-spacing:6.979500px;}
.ws1d{word-spacing:6.993000px;}
.ws4a{word-spacing:7.056000px;}
.wsbc{word-spacing:7.119000px;}
.ws1bf{word-spacing:7.177500px;}
.ws2b{word-spacing:7.182000px;}
.ws9e{word-spacing:7.245000px;}
.ws114{word-spacing:7.308000px;}
.ws1da{word-spacing:7.326000px;}
.ws1f{word-spacing:7.371000px;}
.ws51{word-spacing:7.434000px;}
.wscb{word-spacing:7.497000px;}
.ws19a{word-spacing:7.524000px;}
.ws159{word-spacing:7.560000px;}
.wsc6{word-spacing:7.623000px;}
.ws1c3{word-spacing:7.672500px;}
.ws6b{word-spacing:7.686000px;}
.ws131{word-spacing:7.749000px;}
.ws6c{word-spacing:7.812000px;}
.ws229{word-spacing:7.870500px;}
.ws7d{word-spacing:7.875000px;}
.ws90{word-spacing:7.938000px;}
.ws1d9{word-spacing:7.969500px;}
.ws31{word-spacing:8.001000px;}
.ws87{word-spacing:8.064000px;}
.ws1d8{word-spacing:8.118000px;}
.ws22{word-spacing:8.127000px;}
.ws32{word-spacing:8.190000px;}
.wsa4{word-spacing:8.253000px;}
.ws1ca{word-spacing:8.266500px;}
.ws11d{word-spacing:8.316000px;}
.ws162{word-spacing:8.379000px;}
.ws1db{word-spacing:8.415000px;}
.wsf5{word-spacing:8.442000px;}
.ws19{word-spacing:8.505000px;}
.wse7{word-spacing:8.568000px;}
.ws177{word-spacing:8.613000px;}
.ws14{word-spacing:8.631000px;}
.wsbe{word-spacing:8.694000px;}
.ws20a{word-spacing:8.712000px;}
.ws11f{word-spacing:8.757000px;}
.ws88{word-spacing:8.820000px;}
.ws1a5{word-spacing:8.860500px;}
.ws140{word-spacing:8.883000px;}
.ws157{word-spacing:8.946000px;}
.ws15f{word-spacing:9.009000px;}
.ws115{word-spacing:9.072000px;}
.ws14e{word-spacing:9.135000px;}
.ws23{word-spacing:9.198000px;}
.wsbb{word-spacing:9.261000px;}
.ws123{word-spacing:9.324000px;}
.ws21e{word-spacing:9.355500px;}
.ws134{word-spacing:9.387000px;}
.ws92{word-spacing:9.450000px;}
.ws190{word-spacing:9.454500px;}
.ws1cd{word-spacing:9.504000px;}
.ws155{word-spacing:9.513000px;}
.ws48{word-spacing:9.576000px;}
.ws18{word-spacing:9.639000px;}
.wsc7{word-spacing:9.702000px;}
.ws21a{word-spacing:9.751500px;}
.wsc4{word-spacing:9.765000px;}
.ws1ff{word-spacing:9.801000px;}
.ws53{word-spacing:9.828000px;}
.wsef{word-spacing:9.891000px;}
.ws17{word-spacing:9.954000px;}
.ws21f{word-spacing:9.999000px;}
.ws96{word-spacing:10.017000px;}
.wsf4{word-spacing:10.080000px;}
.ws1a6{word-spacing:10.098000px;}
.wsc9{word-spacing:10.143000px;}
.ws225{word-spacing:10.147500px;}
.ws8f{word-spacing:10.206000px;}
.ws149{word-spacing:10.269000px;}
.ws227{word-spacing:10.296000px;}
.ws70{word-spacing:10.332000px;}
.ws1d5{word-spacing:10.345500px;}
.ws184{word-spacing:10.444500px;}
.wse0{word-spacing:10.458000px;}
.ws1df{word-spacing:10.543500px;}
.ws10f{word-spacing:10.647000px;}
.ws13d{word-spacing:10.710000px;}
.ws1e4{word-spacing:10.741500px;}
.ws99{word-spacing:10.773000px;}
.ws16f{word-spacing:10.836000px;}
.ws1a3{word-spacing:10.840500px;}
.ws13b{word-spacing:10.962000px;}
.ws54{word-spacing:11.025000px;}
.ws8d{word-spacing:11.088000px;}
.ws120{word-spacing:11.151000px;}
.ws15c{word-spacing:11.214000px;}
.ws128{word-spacing:11.277000px;}
.wsc{word-spacing:11.340000px;}
.ws203{word-spacing:11.385000px;}
.ws10d{word-spacing:11.403000px;}
.ws98{word-spacing:11.466000px;}
.ws13a{word-spacing:11.529000px;}
.ws76{word-spacing:11.655000px;}
.wsf2{word-spacing:11.718000px;}
.wsd0{word-spacing:11.781000px;}
.wsb0{word-spacing:11.844000px;}
.ws1fb{word-spacing:11.929500px;}
.ws178{word-spacing:12.028500px;}
.ws10{word-spacing:12.033000px;}
.ws9c{word-spacing:12.096000px;}
.ws132{word-spacing:12.159000px;}
.wse4{word-spacing:12.222000px;}
.ws158{word-spacing:12.285000px;}
.ws6a{word-spacing:12.537000px;}
.ws22b{word-spacing:12.573000px;}
.ws139{word-spacing:12.600000px;}
.wscd{word-spacing:12.663000px;}
.ws71{word-spacing:12.789000px;}
.ws1c0{word-spacing:12.820500px;}
.ws119{word-spacing:12.852000px;}
.wsec{word-spacing:12.915000px;}
.wsdf{word-spacing:12.978000px;}
.ws1a{word-spacing:13.041000px;}
.ws11e{word-spacing:13.104000px;}
.ws84{word-spacing:13.230000px;}
.ws20c{word-spacing:13.266000px;}
.ws16{word-spacing:13.293000px;}
.ws12f{word-spacing:13.356000px;}
.wsc5{word-spacing:13.419000px;}
.wse9{word-spacing:13.482000px;}
.ws1e{word-spacing:13.608000px;}
.ws146{word-spacing:13.671000px;}
.ws121{word-spacing:13.797000px;}
.ws5b{word-spacing:13.860000px;}
.ws166{word-spacing:13.923000px;}
.ws2f{word-spacing:13.986000px;}
.ws133{word-spacing:14.049000px;}
.ws205{word-spacing:14.058000px;}
.ws112{word-spacing:14.112000px;}
.ws226{word-spacing:14.157000px;}
.ws20b{word-spacing:14.256000px;}
.wsce{word-spacing:14.364000px;}
.ws1f5{word-spacing:14.404500px;}
.ws110{word-spacing:14.427000px;}
.ws82{word-spacing:14.553000px;}
.wse6{word-spacing:14.616000px;}
.ws1dd{word-spacing:14.652000px;}
.ws193{word-spacing:14.701500px;}
.ws5a{word-spacing:14.742000px;}
.wsa7{word-spacing:14.868000px;}
.ws163{word-spacing:14.994000px;}
.ws1f8{word-spacing:15.048000px;}
.ws42{word-spacing:15.183000px;}
.ws49{word-spacing:15.246000px;}
.ws7b{word-spacing:15.435000px;}
.ws10c{word-spacing:15.498000px;}
.ws161{word-spacing:15.561000px;}
.ws138{word-spacing:15.624000px;}
.ws57{word-spacing:15.687000px;}
.ws137{word-spacing:15.750000px;}
.ws107{word-spacing:15.813000px;}
.ws147{word-spacing:15.876000px;}
.ws231{word-spacing:16.038000px;}
.ws15d{word-spacing:16.065000px;}
.wsf3{word-spacing:16.191000px;}
.ws136{word-spacing:16.254000px;}
.ws21{word-spacing:16.317000px;}
.ws160{word-spacing:16.380000px;}
.wsb6{word-spacing:16.443000px;}
.wsfa{word-spacing:16.506000px;}
.ws1e1{word-spacing:16.632000px;}
.ws172{word-spacing:16.758000px;}
.ws10b{word-spacing:17.010000px;}
.ws72{word-spacing:17.073000px;}
.ws111{word-spacing:17.136000px;}
.wsad{word-spacing:17.199000px;}
.ws171{word-spacing:17.325000px;}
.ws202{word-spacing:17.622000px;}
.ws11a{word-spacing:17.829000px;}
.ws14c{word-spacing:18.081000px;}
.ws33{word-spacing:18.585000px;}
.ws4d{word-spacing:18.774000px;}
.ws145{word-spacing:18.837000px;}
.ws142{word-spacing:18.963000px;}
.ws1d4{word-spacing:19.057500px;}
.ws43{word-spacing:19.215000px;}
.ws126{word-spacing:19.530000px;}
.ws239{word-spacing:19.701000px;}
.ws11c{word-spacing:19.782000px;}
.ws125{word-spacing:19.971000px;}
.ws3b{word-spacing:20.034000px;}
.wsde{word-spacing:20.097000px;}
.ws113{word-spacing:20.664000px;}
.ws1d2{word-spacing:20.740500px;}
.ws2e{word-spacing:20.790000px;}
.ws129{word-spacing:21.105000px;}
.ws173{word-spacing:21.231000px;}
.ws86{word-spacing:21.357000px;}
.ws14a{word-spacing:21.420000px;}
.ws174{word-spacing:21.861000px;}
.wse5{word-spacing:21.924000px;}
.ws1ee{word-spacing:22.374000px;}
.ws170{word-spacing:22.428000px;}
.ws14b{word-spacing:22.743000px;}
.ws122{word-spacing:22.869000px;}
.wsaf{word-spacing:23.184000px;}
.ws164{word-spacing:24.318000px;}
.ws16e{word-spacing:25.137000px;}
.wsab{word-spacing:25.326000px;}
.ws12a{word-spacing:25.893000px;}
.ws15e{word-spacing:26.712000px;}
.ws12b{word-spacing:26.964000px;}
.ws16a{word-spacing:27.531000px;}
.ws22c{word-spacing:29.997000px;}
.ws124{word-spacing:30.492000px;}
.ws18d{word-spacing:41.035500px;}
.ws4{word-spacing:42.263400px;}
.ws5{word-spacing:42.268800px;}
.ws6{word-spacing:42.269400px;}
.ws16d{word-spacing:49.203000px;}
._9{margin-left:-55.377000px;}
._b{margin-left:-21.672000px;}
._8{margin-left:-7.686000px;}
._6{margin-left:-6.144000px;}
._2{margin-left:-4.662000px;}
._3{margin-left:-3.465000px;}
._1{margin-left:-1.575000px;}
._7{width:1.237500px;}
._4{width:2.331000px;}
._0{width:4.440000px;}
._a{width:6.930000px;}
._c{width:9.652500px;}
._d{width:12.028500px;}
._e{width:14.503500px;}
._f{width:45.621600px;}
._5{width:53.053800px;}
.fc2{color:rgb(118,157,203);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(15,96,161);}
.fs5{font-size:31.200000px;}
.fs9{font-size:32.175000px;}
.fs4{font-size:39.000000px;}
.fs2{font-size:40.950000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:49.500000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs3{font-size:84.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:76.500000px;}
.y1{bottom:77.100000px;}
.y1ec{bottom:104.998875px;}
.y4e{bottom:105.000000px;}
.y1c5{bottom:105.998550px;}
.y2b8{bottom:106.023300px;}
.y218{bottom:106.032300px;}
.y350{bottom:106.059300px;}
.y209{bottom:106.061550px;}
.yb7{bottom:106.068300px;}
.y26a{bottom:106.070550px;}
.y8a{bottom:106.072800px;}
.yd6{bottom:111.221550px;}
.yf0{bottom:111.230550px;}
.y38b{bottom:115.003050px;}
.y45e{bottom:117.403950px;}
.y1eb{bottom:118.493250px;}
.y168{bottom:122.561550px;}
.y1c4{bottom:124.000800px;}
.y2f7{bottom:124.005300px;}
.y119{bottom:124.012050px;}
.y2b7{bottom:124.025550px;}
.y199{bottom:124.034550px;}
.y2c9{bottom:124.045800px;}
.y244{bottom:124.061550px;}
.y208{bottom:124.063800px;}
.yb6{bottom:124.070550px;}
.y269{bottom:124.072800px;}
.y89{bottom:124.075050px;}
.y14a{bottom:124.077300px;}
.y38a{bottom:128.504175px;}
.yd5{bottom:129.223800px;}
.yef{bottom:129.232800px;}
.y48e{bottom:130.767825px;}
.y3d1{bottom:130.768800px;}
.y417{bottom:130.842150px;}
.y45d{bottom:130.905075px;}
.y1ea{bottom:131.994375px;}
.y52{bottom:132.002325px;}
.y35{bottom:133.075050px;}
.y167{bottom:140.563800px;}
.y1c3{bottom:142.003050px;}
.y389{bottom:142.005300px;}
.y2f6{bottom:142.007550px;}
.y118{bottom:142.014300px;}
.y2b6{bottom:142.027800px;}
.y198{bottom:142.036800px;}
.y149{bottom:142.039050px;}
.y2c8{bottom:142.048050px;}
.y243{bottom:142.063800px;}
.y207{bottom:142.066050px;}
.yb5{bottom:142.072800px;}
.y268{bottom:142.075050px;}
.y88{bottom:142.077300px;}
.y48d{bottom:144.268950px;}
.y3d0{bottom:144.269925px;}
.y416{bottom:144.343200px;}
.y45c{bottom:144.406200px;}
.y1e9{bottom:145.495500px;}
.y51{bottom:145.503375px;}
.yd4{bottom:147.226050px;}
.yee{bottom:147.235050px;}
.y34{bottom:151.077300px;}
.y388{bottom:155.506425px;}
.y48c{bottom:157.770150px;}
.y3cf{bottom:157.771050px;}
.y415{bottom:157.844325px;}
.y45b{bottom:157.907325px;}
.y166{bottom:158.566050px;}
.y1e8{bottom:158.996625px;}
.y50{bottom:159.004500px;}
.y1c2{bottom:160.005300px;}
.y2f5{bottom:160.009800px;}
.y117{bottom:160.016550px;}
.y2b5{bottom:160.030050px;}
.y197{bottom:160.039050px;}
.y148{bottom:160.041300px;}
.y2c7{bottom:160.050300px;}
.y87{bottom:160.059300px;}
.y242{bottom:160.066050px;}
.y206{bottom:160.068300px;}
.y255{bottom:160.070550px;}
.yb4{bottom:160.075050px;}
.y22f{bottom:160.077300px;}
.yd3{bottom:165.228300px;}
.yed{bottom:165.237300px;}
.ybd{bottom:168.957750px;}
.y387{bottom:169.007550px;}
.y33{bottom:169.066050px;}
.y48b{bottom:171.271200px;}
.y3ce{bottom:171.272175px;}
.y414{bottom:171.345450px;}
.y45a{bottom:171.408450px;}
.y1e7{bottom:172.497750px;}
.y4f{bottom:172.505625px;}
.y165{bottom:176.568300px;}
.y1c1{bottom:178.007550px;}
.y2f4{bottom:178.012050px;}
.y116{bottom:178.018800px;}
.y2b4{bottom:178.032300px;}
.y196{bottom:178.041300px;}
.y147{bottom:178.043550px;}
.y2c6{bottom:178.052550px;}
.y86{bottom:178.061550px;}
.y241{bottom:178.068300px;}
.y205{bottom:178.070550px;}
.y254{bottom:178.072800px;}
.yb3{bottom:178.077300px;}
.y290{bottom:178.079550px;}
.ybc{bottom:182.458875px;}
.y386{bottom:182.508675px;}
.yd2{bottom:183.230550px;}
.yec{bottom:183.237300px;}
.y48a{bottom:184.772250px;}
.y3cd{bottom:184.773300px;}
.y413{bottom:184.846575px;}
.y459{bottom:184.909575px;}
.y1e6{bottom:185.998875px;}
.y32{bottom:187.068300px;}
.y164{bottom:194.570550px;}
.ybb{bottom:195.958875px;}
.y1c0{bottom:196.009800px;}
.y2f3{bottom:196.014300px;}
.y115{bottom:196.021050px;}
.y2b3{bottom:196.034550px;}
.y195{bottom:196.043550px;}
.y146{bottom:196.045800px;}
.y2c5{bottom:196.054800px;}
.y85{bottom:196.063800px;}
.y1e2{bottom:196.070550px;}
.y204{bottom:196.072800px;}
.y253{bottom:196.075050px;}
.y312{bottom:196.079550px;}
.y489{bottom:198.273375px;}
.y3cc{bottom:198.274425px;}
.y412{bottom:198.347700px;}
.y458{bottom:198.410700px;}
.y1e5{bottom:199.497750px;}
.yd1{bottom:201.232800px;}
.yeb{bottom:201.237300px;}
.y31{bottom:205.070550px;}
.yba{bottom:209.460000px;}
.y385{bottom:209.510925px;}
.y28f{bottom:209.579550px;}
.y488{bottom:211.774575px;}
.y3cb{bottom:211.775550px;}
.y411{bottom:211.848825px;}
.y457{bottom:211.911825px;}
.y163{bottom:212.572800px;}
.y1e4{bottom:212.998875px;}
.y1bf{bottom:214.012050px;}
.y2f2{bottom:214.016550px;}
.y114{bottom:214.023300px;}
.y2b2{bottom:214.036800px;}
.y194{bottom:214.045800px;}
.y145{bottom:214.048050px;}
.y2c4{bottom:214.057050px;}
.y84{bottom:214.066050px;}
.y1e1{bottom:214.072800px;}
.y203{bottom:214.075050px;}
.y252{bottom:214.077300px;}
.yd0{bottom:219.235050px;}
.yea{bottom:219.237300px;}
.y384{bottom:223.011975px;}
.y30{bottom:223.072800px;}
.y487{bottom:225.275700px;}
.y3ca{bottom:225.276675px;}
.y410{bottom:225.349950px;}
.y471{bottom:225.350025px;}
.y456{bottom:225.412950px;}
.y1e3{bottom:226.500000px;}
.y19{bottom:227.570550px;}
.y311{bottom:227.579550px;}
.y162{bottom:230.575050px;}
.y1be{bottom:232.014300px;}
.y2f1{bottom:232.018800px;}
.y113{bottom:232.025550px;}
.y2b1{bottom:232.039050px;}
.y193{bottom:232.048050px;}
.y144{bottom:232.050300px;}
.y2c3{bottom:232.059300px;}
.y251{bottom:232.063800px;}
.y83{bottom:232.068300px;}
.y1e0{bottom:232.075050px;}
.y202{bottom:232.077300px;}
.y383{bottom:236.513100px;}
.ycf{bottom:237.237300px;}
.y486{bottom:238.776825px;}
.y3c9{bottom:238.777800px;}
.y470{bottom:238.851000px;}
.y40f{bottom:238.851075px;}
.y455{bottom:238.914075px;}
.y2f{bottom:241.075050px;}
.y18{bottom:245.572800px;}
.y161{bottom:248.577300px;}
.y382{bottom:250.014300px;}
.y1bd{bottom:250.016550px;}
.y2f0{bottom:250.021050px;}
.y112{bottom:250.027800px;}
.y2b0{bottom:250.041300px;}
.y192{bottom:250.050300px;}
.y143{bottom:250.052550px;}
.y2c2{bottom:250.061550px;}
.y250{bottom:250.066050px;}
.y82{bottom:250.070550px;}
.y28e{bottom:250.072800px;}
.y1df{bottom:250.077300px;}
.y201{bottom:250.079550px;}
.y485{bottom:252.277950px;}
.y3c8{bottom:252.278925px;}
.y40e{bottom:252.352200px;}
.y454{bottom:252.415200px;}
.yce{bottom:255.226050px;}
.ye9{bottom:255.235050px;}
.y2e{bottom:259.077300px;}
.y381{bottom:263.515425px;}
.y17{bottom:263.575050px;}
.y484{bottom:265.779075px;}
.y3c7{bottom:265.780050px;}
.y40d{bottom:265.853325px;}
.y453{bottom:265.916325px;}
.y160{bottom:266.579550px;}
.y34f{bottom:268.000800px;}
.y310{bottom:268.016550px;}
.y1bc{bottom:268.018800px;}
.y2ef{bottom:268.023300px;}
.y111{bottom:268.030050px;}
.y2af{bottom:268.043550px;}
.y191{bottom:268.052550px;}
.y142{bottom:268.054800px;}
.y2c1{bottom:268.063800px;}
.y24f{bottom:268.068300px;}
.y81{bottom:268.072800px;}
.y240{bottom:268.075050px;}
.y1de{bottom:268.077300px;}
.ycd{bottom:273.228300px;}
.ye8{bottom:273.237300px;}
.y380{bottom:277.016550px;}
.y2d{bottom:277.079550px;}
.y483{bottom:279.280200px;}
.y3c6{bottom:279.281175px;}
.y40c{bottom:279.354450px;}
.y452{bottom:279.417450px;}
.y16{bottom:281.577300px;}
.y200{bottom:281.579550px;}
.y34e{bottom:286.003050px;}
.y30f{bottom:286.018800px;}
.y1bb{bottom:286.021050px;}
.y2ee{bottom:286.025550px;}
.y110{bottom:286.032300px;}
.y2ae{bottom:286.045800px;}
.y190{bottom:286.054800px;}
.y141{bottom:286.057050px;}
.y2c0{bottom:286.066050px;}
.y24e{bottom:286.070550px;}
.y80{bottom:286.075050px;}
.y23f{bottom:286.077300px;}
.y37f{bottom:290.517675px;}
.ycc{bottom:291.230550px;}
.ye7{bottom:291.237300px;}
.y482{bottom:292.781325px;}
.y3c5{bottom:292.782300px;}
.y40b{bottom:292.855575px;}
.y451{bottom:292.918575px;}
.y15{bottom:299.554800px;}
.y15f{bottom:299.579550px;}
.y34d{bottom:304.005300px;}
.y37e{bottom:304.018800px;}
.y30e{bottom:304.021050px;}
.y1ba{bottom:304.023300px;}
.y2ed{bottom:304.027800px;}
.y10f{bottom:304.034550px;}
.y2ad{bottom:304.048050px;}
.y28d{bottom:304.052550px;}
.y18f{bottom:304.057050px;}
.y140{bottom:304.059300px;}
.y2bf{bottom:304.068300px;}
.y23e{bottom:304.072800px;}
.y7f{bottom:304.077300px;}
.y450{bottom:306.282450px;}
.y3c4{bottom:306.283425px;}
.y40a{bottom:306.356700px;}
.y2c{bottom:308.579550px;}
.ycb{bottom:309.232800px;}
.ye6{bottom:309.235050px;}
.y37d{bottom:317.519925px;}
.y14{bottom:317.557050px;}
.y44f{bottom:319.783575px;}
.y3c3{bottom:319.784550px;}
.y409{bottom:319.857825px;}
.y34c{bottom:322.007550px;}
.y30d{bottom:322.023300px;}
.y1b9{bottom:322.025550px;}
.y332{bottom:322.027800px;}
.y2ec{bottom:322.030050px;}
.y10e{bottom:322.036800px;}
.y2ac{bottom:322.050300px;}
.y28c{bottom:322.054800px;}
.y18e{bottom:322.059300px;}
.y13f{bottom:322.061550px;}
.y340{bottom:322.063800px;}
.y7e{bottom:322.066050px;}
.yb2{bottom:322.068300px;}
.y1ff{bottom:322.070550px;}
.y22e{bottom:322.072800px;}
.y23d{bottom:322.075050px;}
.y1dd{bottom:322.077300px;}
.yca{bottom:327.235050px;}
.ye5{bottom:327.237300px;}
.y37c{bottom:331.021050px;}
.y481{bottom:333.284700px;}
.y44e{bottom:333.284775px;}
.y3c2{bottom:333.285675px;}
.y408{bottom:333.358950px;}
.y13{bottom:335.559300px;}
.y30c{bottom:340.025550px;}
.y1b8{bottom:340.027800px;}
.y331{bottom:340.030050px;}
.y2eb{bottom:340.032300px;}
.y10d{bottom:340.039050px;}
.y2ab{bottom:340.052550px;}
.y28b{bottom:340.057050px;}
.y15e{bottom:340.059300px;}
.y18d{bottom:340.061550px;}
.y13e{bottom:340.063800px;}
.y33f{bottom:340.066050px;}
.y7d{bottom:340.068300px;}
.yb1{bottom:340.070550px;}
.y1dc{bottom:340.072800px;}
.y22d{bottom:340.075050px;}
.y23c{bottom:340.077300px;}
.y37b{bottom:344.522175px;}
.ye4{bottom:345.187800px;}
.yc9{bottom:345.237300px;}
.y44d{bottom:346.785750px;}
.y480{bottom:346.785825px;}
.y3c1{bottom:346.786800px;}
.y407{bottom:346.860075px;}
.y2b{bottom:349.057050px;}
.y12{bottom:353.561550px;}
.y34b{bottom:358.012050px;}
.y37a{bottom:358.023300px;}
.y30b{bottom:358.027800px;}
.y1b7{bottom:358.030050px;}
.y330{bottom:358.032300px;}
.y2ea{bottom:358.034550px;}
.y10c{bottom:358.041300px;}
.y2aa{bottom:358.054800px;}
.y28a{bottom:358.059300px;}
.y15d{bottom:358.061550px;}
.y18c{bottom:358.063800px;}
.y13d{bottom:358.066050px;}
.y33e{bottom:358.068300px;}
.y7c{bottom:358.070550px;}
.yb0{bottom:358.072800px;}
.y1db{bottom:358.075050px;}
.y22c{bottom:358.077300px;}
.y44c{bottom:360.286950px;}
.y3c0{bottom:360.287925px;}
.y406{bottom:360.361200px;}
.ye3{bottom:363.190050px;}
.yc8{bottom:363.239550px;}
.y2a{bottom:367.059300px;}
.y379{bottom:371.524425px;}
.y11{bottom:371.563800px;}
.y44b{bottom:373.788075px;}
.y3bf{bottom:373.789050px;}
.y405{bottom:373.862325px;}
.y34a{bottom:376.014300px;}
.y30a{bottom:376.030050px;}
.y1b6{bottom:376.032300px;}
.y32f{bottom:376.034550px;}
.y2e9{bottom:376.036800px;}
.y10b{bottom:376.043550px;}
.y2a9{bottom:376.057050px;}
.y289{bottom:376.061550px;}
.y15c{bottom:376.063800px;}
.y18b{bottom:376.066050px;}
.y13c{bottom:376.068300px;}
.y33d{bottom:376.070550px;}
.y7b{bottom:376.072800px;}
.yaf{bottom:376.075050px;}
.y1da{bottom:376.077300px;}
.ye2{bottom:381.192300px;}
.y378{bottom:385.025550px;}
.y29{bottom:385.061550px;}
.y44a{bottom:387.289200px;}
.y3be{bottom:387.290175px;}
.y46f{bottom:387.363375px;}
.y404{bottom:387.363450px;}
.y10{bottom:389.566050px;}
.y349{bottom:394.016550px;}
.y309{bottom:394.032300px;}
.y1b5{bottom:394.034550px;}
.y32e{bottom:394.036800px;}
.y2e8{bottom:394.039050px;}
.y10a{bottom:394.045800px;}
.y2a8{bottom:394.059300px;}
.y288{bottom:394.063800px;}
.y15b{bottom:394.066050px;}
.y18a{bottom:394.068300px;}
.y13b{bottom:394.070550px;}
.y1d9{bottom:394.072800px;}
.y7a{bottom:394.075050px;}
.yae{bottom:394.077300px;}
.yc7{bottom:394.739550px;}
.y377{bottom:398.526675px;}
.ye1{bottom:399.194550px;}
.y449{bottom:400.790325px;}
.y3bd{bottom:400.791300px;}
.y46e{bottom:400.864500px;}
.y403{bottom:400.864575px;}
.y4c6{bottom:400.921200px;}
.y28{bottom:403.063800px;}
.yf{bottom:407.568300px;}
.y348{bottom:412.018800px;}
.y376{bottom:412.027800px;}
.y308{bottom:412.034550px;}
.y1b4{bottom:412.036800px;}
.y32d{bottom:412.039050px;}
.y2e7{bottom:412.041300px;}
.y109{bottom:412.048050px;}
.yad{bottom:412.061550px;}
.y287{bottom:412.066050px;}
.y15a{bottom:412.068300px;}
.y189{bottom:412.070550px;}
.y13a{bottom:412.072800px;}
.y1d8{bottom:412.075050px;}
.y79{bottom:412.077300px;}
.y448{bottom:414.291450px;}
.y3bc{bottom:414.292425px;}
.y402{bottom:414.365625px;}
.y46d{bottom:414.365700px;}
.y4c5{bottom:415.921200px;}
.ye0{bottom:417.196800px;}
.y27{bottom:421.066050px;}
.y375{bottom:425.528925px;}
.ye{bottom:425.570550px;}
.y447{bottom:427.792575px;}
.y3bb{bottom:427.793550px;}
.y401{bottom:427.866750px;}
.y46c{bottom:427.866825px;}
.y347{bottom:430.021050px;}
.y307{bottom:430.036800px;}
.y1b3{bottom:430.039050px;}
.y32c{bottom:430.041300px;}
.y2e6{bottom:430.043550px;}
.y108{bottom:430.050300px;}
.yac{bottom:430.063800px;}
.y23b{bottom:430.066050px;}
.y286{bottom:430.068300px;}
.y159{bottom:430.070550px;}
.y188{bottom:430.072800px;}
.y78{bottom:430.075050px;}
.y1d7{bottom:430.077300px;}
.y4c4{bottom:430.921200px;}
.ydf{bottom:435.199050px;}
.yc6{bottom:435.232800px;}
.y374{bottom:439.030125px;}
.y26{bottom:439.068300px;}
.y446{bottom:441.293700px;}
.y3ba{bottom:441.294675px;}
.y400{bottom:441.367950px;}
.y498{bottom:441.368025px;}
.yd{bottom:443.572800px;}
.y4c3{bottom:445.922700px;}
.y346{bottom:448.023300px;}
.y306{bottom:448.039050px;}
.y1b2{bottom:448.041300px;}
.y32b{bottom:448.043550px;}
.y2e5{bottom:448.045800px;}
.y107{bottom:448.052550px;}
.yab{bottom:448.066050px;}
.y1d6{bottom:448.068300px;}
.y285{bottom:448.070550px;}
.y158{bottom:448.072800px;}
.y187{bottom:448.075050px;}
.y77{bottom:448.077300px;}
.y373{bottom:452.531100px;}
.yde{bottom:453.201300px;}
.yc5{bottom:453.235050px;}
.y445{bottom:454.794825px;}
.y3b9{bottom:454.795800px;}
.y3ff{bottom:454.869075px;}
.y25{bottom:457.070550px;}
.y4c2{bottom:460.921200px;}
.yc{bottom:461.575050px;}
.y345{bottom:466.025550px;}
.y372{bottom:466.032300px;}
.y305{bottom:466.041300px;}
.y1b1{bottom:466.043550px;}
.y32a{bottom:466.045800px;}
.y2e4{bottom:466.048050px;}
.y267{bottom:466.052550px;}
.y106{bottom:466.054800px;}
.yaa{bottom:466.068300px;}
.y1d5{bottom:466.070550px;}
.y284{bottom:466.072800px;}
.y76{bottom:466.075050px;}
.y186{bottom:466.077300px;}
.y139{bottom:466.079550px;}
.y444{bottom:468.295950px;}
.y3b8{bottom:468.296925px;}
.y3fe{bottom:468.370200px;}
.ydd{bottom:471.203550px;}
.yc4{bottom:471.237300px;}
.y24{bottom:475.072800px;}
.y4c1{bottom:475.921200px;}
.y371{bottom:479.533425px;}
.yb{bottom:479.577300px;}
.y443{bottom:481.797075px;}
.y3b7{bottom:481.798050px;}
.y3fd{bottom:481.871325px;}
.y344{bottom:484.027800px;}
.y304{bottom:484.043550px;}
.y1b0{bottom:484.045800px;}
.y329{bottom:484.048050px;}
.y2e3{bottom:484.050300px;}
.y266{bottom:484.054800px;}
.y105{bottom:484.057050px;}
.y185{bottom:484.068300px;}
.ya9{bottom:484.070550px;}
.y1d4{bottom:484.072800px;}
.y283{bottom:484.075050px;}
.y75{bottom:484.077300px;}
.y217{bottom:484.079550px;}
.ydc{bottom:489.205800px;}
.yc3{bottom:489.228300px;}
.y4c0{bottom:490.921200px;}
.y370{bottom:493.034550px;}
.y23{bottom:493.075050px;}
.y442{bottom:495.298200px;}
.y3b6{bottom:495.299175px;}
.y3fc{bottom:495.372375px;}
.y46b{bottom:495.372450px;}
.ya{bottom:497.570550px;}
.y138{bottom:497.579550px;}
.y343{bottom:502.030050px;}
.y157{bottom:502.034550px;}
.y303{bottom:502.045800px;}
.y1af{bottom:502.048050px;}
.y328{bottom:502.050300px;}
.y2e2{bottom:502.052550px;}
.y74{bottom:502.054800px;}
.y265{bottom:502.057050px;}
.y104{bottom:502.059300px;}
.y184{bottom:502.070550px;}
.ya8{bottom:502.072800px;}
.y1d3{bottom:502.075050px;}
.y282{bottom:502.077300px;}
.y4bf{bottom:505.921200px;}
.y36f{bottom:506.535675px;}
.ydb{bottom:507.208050px;}
.yc2{bottom:507.230550px;}
.y441{bottom:508.799325px;}
.y3b5{bottom:508.800300px;}
.y3fb{bottom:508.873575px;}
.y22{bottom:511.077300px;}
.y9{bottom:515.572800px;}
.y216{bottom:515.579550px;}
.y281{bottom:520.032300px;}
.y156{bottom:520.036800px;}
.y302{bottom:520.048050px;}
.y1ae{bottom:520.050300px;}
.y327{bottom:520.052550px;}
.y2e1{bottom:520.054800px;}
.y73{bottom:520.057050px;}
.y264{bottom:520.059300px;}
.y103{bottom:520.061550px;}
.y183{bottom:520.072800px;}
.ya7{bottom:520.075050px;}
.y1d2{bottom:520.077300px;}
.y4be{bottom:520.921200px;}
.y440{bottom:522.300450px;}
.y3b4{bottom:522.301425px;}
.y3fa{bottom:522.374700px;}
.y497{bottom:522.374775px;}
.yda{bottom:525.210300px;}
.yc1{bottom:525.232800px;}
.y21{bottom:529.068300px;}
.y36e{bottom:533.537925px;}
.y8{bottom:533.575050px;}
.y43f{bottom:535.801575px;}
.y3b3{bottom:535.802475px;}
.y496{bottom:535.875750px;}
.y3f9{bottom:535.875825px;}
.y46a{bottom:535.875900px;}
.y4bd{bottom:535.921200px;}
.y33c{bottom:538.030050px;}
.y280{bottom:538.034550px;}
.y155{bottom:538.039050px;}
.y301{bottom:538.050300px;}
.y1ad{bottom:538.052550px;}
.y326{bottom:538.054800px;}
.y2e0{bottom:538.057050px;}
.y72{bottom:538.059300px;}
.y263{bottom:538.061550px;}
.y102{bottom:538.063800px;}
.y137{bottom:538.070550px;}
.y182{bottom:538.075050px;}
.ya6{bottom:538.077300px;}
.yd9{bottom:543.212550px;}
.yc0{bottom:543.235050px;}
.y36d{bottom:547.039050px;}
.y20{bottom:547.070550px;}
.y43e{bottom:549.302700px;}
.y3b2{bottom:549.303675px;}
.y3f8{bottom:549.376950px;}
.y469{bottom:549.377025px;}
.y4bc{bottom:550.921200px;}
.y7{bottom:551.577300px;}
.y33b{bottom:556.032300px;}
.y27f{bottom:556.036800px;}
.y154{bottom:556.041300px;}
.y300{bottom:556.052550px;}
.y1ac{bottom:556.054800px;}
.y325{bottom:556.057050px;}
.y2df{bottom:556.059300px;}
.y71{bottom:556.061550px;}
.y262{bottom:556.063800px;}
.y101{bottom:556.066050px;}
.y136{bottom:556.072800px;}
.ya5{bottom:556.075050px;}
.y181{bottom:556.077300px;}
.y23a{bottom:556.079550px;}
.y36c{bottom:560.540175px;}
.yd8{bottom:561.214800px;}
.ybf{bottom:561.237300px;}
.y43d{bottom:562.803825px;}
.y3b1{bottom:562.804800px;}
.y468{bottom:562.878000px;}
.y3f7{bottom:562.878075px;}
.y1f{bottom:565.072800px;}
.y4bb{bottom:565.919700px;}
.y6{bottom:569.572800px;}
.y33a{bottom:574.034550px;}
.y27e{bottom:574.039050px;}
.y36b{bottom:574.041300px;}
.y153{bottom:574.043550px;}
.y2ff{bottom:574.054800px;}
.y1ab{bottom:574.057050px;}
.y324{bottom:574.059300px;}
.y2de{bottom:574.061550px;}
.y70{bottom:574.063800px;}
.y261{bottom:574.066050px;}
.y100{bottom:574.068300px;}
.y180{bottom:574.072800px;}
.y135{bottom:574.075050px;}
.ya4{bottom:574.077300px;}
.y43c{bottom:576.304950px;}
.y3b0{bottom:576.305925px;}
.y467{bottom:576.379200px;}
.y3f6{bottom:576.379275px;}
.yd7{bottom:579.217050px;}
.ybe{bottom:579.239550px;}
.y1e{bottom:583.075050px;}
.y36a{bottom:587.542350px;}
.y5{bottom:587.575050px;}
.y239{bottom:587.579550px;}
.y43b{bottom:589.806075px;}
.y3af{bottom:589.807050px;}
.y3f5{bottom:589.880325px;}
.y339{bottom:592.036800px;}
.y27d{bottom:592.041300px;}
.y152{bottom:592.045800px;}
.y2fe{bottom:592.057050px;}
.y1aa{bottom:592.059300px;}
.ya3{bottom:592.061550px;}
.y2dd{bottom:592.063800px;}
.y6f{bottom:592.066050px;}
.y260{bottom:592.068300px;}
.yff{bottom:592.070550px;}
.y17f{bottom:592.075050px;}
.y134{bottom:592.077300px;}
.y4ba{bottom:594.419700px;}
.y49{bottom:598.575000px;}
.y369{bottom:601.043550px;}
.y1d{bottom:601.077300px;}
.y43a{bottom:603.307200px;}
.y3ae{bottom:603.308175px;}
.y3f4{bottom:603.381450px;}
.y4{bottom:605.577300px;}
.y338{bottom:610.039050px;}
.y27c{bottom:610.043550px;}
.y133{bottom:610.048050px;}
.y1fe{bottom:610.054800px;}
.y2fd{bottom:610.059300px;}
.y1a9{bottom:610.061550px;}
.ya2{bottom:610.063800px;}
.y2dc{bottom:610.066050px;}
.y6e{bottom:610.068300px;}
.y215{bottom:610.070550px;}
.yfe{bottom:610.072800px;}
.y17e{bottom:610.077300px;}
.y368{bottom:614.544675px;}
.y439{bottom:616.808325px;}
.y3ad{bottom:616.809300px;}
.y3f3{bottom:616.882575px;}
.y1c{bottom:619.068300px;}
.y3{bottom:623.579550px;}
.yf2{bottom:626.158875px;}
.y337{bottom:628.041300px;}
.y27b{bottom:628.045800px;}
.y132{bottom:628.050300px;}
.y1fd{bottom:628.057050px;}
.y238{bottom:628.061550px;}
.y1a8{bottom:628.063800px;}
.ya1{bottom:628.066050px;}
.y2db{bottom:628.068300px;}
.y6d{bottom:628.070550px;}
.y214{bottom:628.072800px;}
.yfd{bottom:628.075050px;}
.y438{bottom:630.309450px;}
.y3ac{bottom:630.310350px;}
.y4b9{bottom:630.321825px;}
.y466{bottom:630.383700px;}
.y3f2{bottom:630.383775px;}
.y1b{bottom:637.070550px;}
.yf1{bottom:639.660000px;}
.y367{bottom:641.546925px;}
.y437{bottom:643.810575px;}
.y3ab{bottom:643.811550px;}
.y4b8{bottom:643.822950px;}
.y3f1{bottom:643.884750px;}
.y495{bottom:643.884825px;}
.y465{bottom:643.884900px;}
.y336{bottom:646.043550px;}
.y27a{bottom:646.048050px;}
.y131{bottom:646.052550px;}
.y1fc{bottom:646.059300px;}
.y237{bottom:646.063800px;}
.y1a7{bottom:646.066050px;}
.ya0{bottom:646.068300px;}
.y2da{bottom:646.070550px;}
.y6c{bottom:646.072800px;}
.y213{bottom:646.075050px;}
.yfc{bottom:646.077300px;}
.y366{bottom:655.048050px;}
.y1a{bottom:655.072800px;}
.y2{bottom:655.080000px;}
.y436{bottom:657.311700px;}
.y3aa{bottom:657.312675px;}
.y4b7{bottom:657.324075px;}
.y3f0{bottom:657.385950px;}
.y464{bottom:657.386025px;}
.y24d{bottom:664.034550px;}
.y335{bottom:664.045800px;}
.y22b{bottom:664.048050px;}
.y279{bottom:664.050300px;}
.y130{bottom:664.054800px;}
.y2a7{bottom:664.057050px;}
.y1fb{bottom:664.061550px;}
.y236{bottom:664.066050px;}
.yfb{bottom:664.068300px;}
.y9f{bottom:664.070550px;}
.y2d9{bottom:664.072800px;}
.y6b{bottom:664.075050px;}
.y212{bottom:664.077300px;}
.y365{bottom:668.549100px;}
.y435{bottom:670.812825px;}
.y3a9{bottom:670.813800px;}
.y4b6{bottom:670.825200px;}
.y463{bottom:670.887000px;}
.y3ef{bottom:670.887075px;}
.y24c{bottom:682.036800px;}
.y334{bottom:682.048050px;}
.y22a{bottom:682.050300px;}
.y278{bottom:682.052550px;}
.y12f{bottom:682.057050px;}
.y2a6{bottom:682.059300px;}
.y25f{bottom:682.061550px;}
.y1fa{bottom:682.063800px;}
.y235{bottom:682.068300px;}
.yfa{bottom:682.070550px;}
.y9e{bottom:682.072800px;}
.y2d8{bottom:682.075050px;}
.y6a{bottom:682.077300px;}
.y434{bottom:684.313950px;}
.y3a8{bottom:684.314925px;}
.y4b5{bottom:684.326325px;}
.y494{bottom:684.388125px;}
.y3ee{bottom:684.388200px;}
.y364{bottom:695.551425px;}
.y433{bottom:697.815075px;}
.y3a7{bottom:697.816050px;}
.y4b4{bottom:697.827525px;}
.y3ed{bottom:697.889325px;}
.y24b{bottom:700.039050px;}
.y17d{bottom:700.043550px;}
.y333{bottom:700.050300px;}
.y229{bottom:700.052550px;}
.y277{bottom:700.054800px;}
.y12e{bottom:700.059300px;}
.y2a5{bottom:700.061550px;}
.y25e{bottom:700.063800px;}
.y1f9{bottom:700.066050px;}
.y69{bottom:700.070550px;}
.yf9{bottom:700.072800px;}
.y9d{bottom:700.075050px;}
.y2d7{bottom:700.077300px;}
.y48{bottom:705.611400px;}
.y363{bottom:709.052550px;}
.y432{bottom:711.316200px;}
.y47f{bottom:711.316275px;}
.y3a6{bottom:711.317175px;}
.y4b3{bottom:711.328575px;}
.y3ec{bottom:711.390450px;}
.y24a{bottom:718.041300px;}
.y17c{bottom:718.045800px;}
.y2d6{bottom:718.052550px;}
.y228{bottom:718.054800px;}
.y276{bottom:718.057050px;}
.y12d{bottom:718.061550px;}
.y2a4{bottom:718.063800px;}
.y25d{bottom:718.066050px;}
.y1f8{bottom:718.068300px;}
.y68{bottom:718.072800px;}
.yf8{bottom:718.075050px;}
.y9c{bottom:718.077300px;}
.y47{bottom:719.111400px;}
.y362{bottom:722.553675px;}
.y431{bottom:724.817325px;}
.y3a5{bottom:724.818300px;}
.y4b2{bottom:724.829625px;}
.y3eb{bottom:724.891575px;}
.y462{bottom:724.891650px;}
.y46{bottom:732.611400px;}
.y249{bottom:736.043550px;}
.y17b{bottom:736.048050px;}
.y9b{bottom:736.052550px;}
.y2d5{bottom:736.054800px;}
.y227{bottom:736.057050px;}
.y275{bottom:736.059300px;}
.y12c{bottom:736.063800px;}
.y2a3{bottom:736.066050px;}
.y25c{bottom:736.068300px;}
.y1f7{bottom:736.070550px;}
.y67{bottom:736.075050px;}
.yf7{bottom:736.077300px;}
.y323{bottom:736.079550px;}
.y47e{bottom:738.318450px;}
.y430{bottom:738.318525px;}
.y3a4{bottom:738.319425px;}
.y4b1{bottom:738.330750px;}
.y3ea{bottom:738.392700px;}
.y461{bottom:738.392775px;}
.y45{bottom:746.111400px;}
.y361{bottom:749.555925px;}
.y47d{bottom:751.819575px;}
.y42f{bottom:751.819650px;}
.y3a3{bottom:751.820475px;}
.y4b0{bottom:751.831950px;}
.y3e9{bottom:751.893825px;}
.y248{bottom:754.045800px;}
.y17a{bottom:754.050300px;}
.y9a{bottom:754.054800px;}
.y2d4{bottom:754.057050px;}
.y226{bottom:754.059300px;}
.y274{bottom:754.061550px;}
.y2be{bottom:754.063800px;}
.y12b{bottom:754.066050px;}
.y2a2{bottom:754.068300px;}
.yf6{bottom:754.070550px;}
.y1f6{bottom:754.072800px;}
.y66{bottom:754.077300px;}
.y1a6{bottom:754.079550px;}
.y44{bottom:759.611400px;}
.y360{bottom:763.057050px;}
.y42e{bottom:765.320700px;}
.y3a2{bottom:765.321675px;}
.y4af{bottom:765.333075px;}
.y3e8{bottom:765.394875px;}
.y460{bottom:765.394950px;}
.y322{bottom:767.579550px;}
.y247{bottom:772.048050px;}
.y179{bottom:772.052550px;}
.y1d1{bottom:772.054800px;}
.y99{bottom:772.057050px;}
.y2d3{bottom:772.059300px;}
.y225{bottom:772.061550px;}
.y273{bottom:772.063800px;}
.y2bd{bottom:772.066050px;}
.y12a{bottom:772.068300px;}
.y2a1{bottom:772.070550px;}
.y65{bottom:772.072800px;}
.y1f5{bottom:772.075050px;}
.y211{bottom:772.077300px;}
.y2fc{bottom:772.079550px;}
.y43{bottom:773.111400px;}
.y35f{bottom:776.558175px;}
.y42d{bottom:778.821825px;}
.y3a1{bottom:778.822800px;}
.y4ae{bottom:778.834200px;}
.y3e7{bottom:778.896075px;}
.y1a5{bottom:785.579550px;}
.y42{bottom:786.611400px;}
.y246{bottom:790.050300px;}
.y178{bottom:790.054800px;}
.y1d0{bottom:790.057050px;}
.y98{bottom:790.059300px;}
.y2d2{bottom:790.061550px;}
.y224{bottom:790.063800px;}
.y272{bottom:790.066050px;}
.y2bc{bottom:790.068300px;}
.y129{bottom:790.070550px;}
.y2a0{bottom:790.072800px;}
.y64{bottom:790.075050px;}
.y1f4{bottom:790.077300px;}
.y42c{bottom:792.322875px;}
.y47c{bottom:792.322950px;}
.y3a0{bottom:792.323925px;}
.y4ad{bottom:792.335325px;}
.y3e6{bottom:792.397200px;}
.y41{bottom:800.111400px;}
.y35e{bottom:803.560425px;}
.y2fb{bottom:803.579550px;}
.y47b{bottom:805.824075px;}
.y42b{bottom:805.824150px;}
.y39f{bottom:805.824975px;}
.y4ac{bottom:805.836450px;}
.y3e5{bottom:805.898325px;}
.y321{bottom:808.030050px;}
.y245{bottom:808.052550px;}
.y177{bottom:808.057050px;}
.y1cf{bottom:808.059300px;}
.y97{bottom:808.061550px;}
.y1f3{bottom:808.063800px;}
.y223{bottom:808.066050px;}
.y271{bottom:808.068300px;}
.y2bb{bottom:808.070550px;}
.y128{bottom:808.072800px;}
.y29f{bottom:808.075050px;}
.y63{bottom:808.077300px;}
.y234{bottom:808.079550px;}
.y40{bottom:813.611400px;}
.y35d{bottom:817.061550px;}
.y42a{bottom:819.325200px;}
.y39e{bottom:819.326175px;}
.y4ab{bottom:819.337575px;}
.y45f{bottom:819.399450px;}
.y3e4{bottom:819.399525px;}
.y320{bottom:826.032300px;}
.y1a4{bottom:826.052550px;}
.y62{bottom:826.054800px;}
.y176{bottom:826.059300px;}
.y1ce{bottom:826.061550px;}
.y96{bottom:826.063800px;}
.y1f2{bottom:826.066050px;}
.y222{bottom:826.068300px;}
.y270{bottom:826.070550px;}
.y2ba{bottom:826.072800px;}
.y127{bottom:826.075050px;}
.y29e{bottom:826.077300px;}
.y3f{bottom:827.111400px;}
.y35c{bottom:830.562675px;}
.y429{bottom:832.826325px;}
.y39d{bottom:832.827300px;}
.y4aa{bottom:832.838700px;}
.y493{bottom:832.900500px;}
.y3e3{bottom:832.900575px;}
.y233{bottom:839.579550px;}
.y3e{bottom:840.611400px;}
.y31f{bottom:844.034550px;}
.y29d{bottom:844.036800px;}
.y2fa{bottom:844.052550px;}
.y1a3{bottom:844.054800px;}
.y61{bottom:844.057050px;}
.y175{bottom:844.061550px;}
.y1cd{bottom:844.063800px;}
.y95{bottom:844.066050px;}
.y1f1{bottom:844.068300px;}
.y221{bottom:844.070550px;}
.y26f{bottom:844.072800px;}
.y2b9{bottom:844.075050px;}
.y126{bottom:844.077300px;}
.y428{bottom:846.327450px;}
.y39c{bottom:846.328425px;}
.y4a9{bottom:846.339825px;}
.y492{bottom:846.401625px;}
.y3e2{bottom:846.401700px;}
.y3d{bottom:854.111400px;}
.y35b{bottom:857.564925px;}
.y427{bottom:859.828500px;}
.y47a{bottom:859.828650px;}
.y39b{bottom:859.829550px;}
.y4a8{bottom:859.840950px;}
.y491{bottom:859.902750px;}
.y3e1{bottom:859.902825px;}
.y31e{bottom:862.036800px;}
.y29c{bottom:862.039050px;}
.y2f9{bottom:862.054800px;}
.y1a2{bottom:862.057050px;}
.y60{bottom:862.059300px;}
.y174{bottom:862.063800px;}
.y1cc{bottom:862.066050px;}
.y94{bottom:862.068300px;}
.y1f0{bottom:862.070550px;}
.y220{bottom:862.072800px;}
.y26e{bottom:862.075050px;}
.y125{bottom:862.077300px;}
.y151{bottom:862.079550px;}
.y3c{bottom:867.611400px;}
.y35a{bottom:871.066050px;}
.y426{bottom:873.329625px;}
.y479{bottom:873.329700px;}
.y39a{bottom:873.330675px;}
.y4a7{bottom:873.342075px;}
.y3e0{bottom:873.403950px;}
.y3b{bottom:875.711400px;}
.y124{bottom:879.996300px;}
.y31d{bottom:880.039050px;}
.y29b{bottom:880.041300px;}
.y2f8{bottom:880.057050px;}
.y1a1{bottom:880.059300px;}
.y5f{bottom:880.061550px;}
.y173{bottom:880.066050px;}
.y1cb{bottom:880.068300px;}
.y93{bottom:880.070550px;}
.y1ef{bottom:880.072800px;}
.y21f{bottom:880.075050px;}
.y26d{bottom:880.077300px;}
.y359{bottom:884.567175px;}
.y478{bottom:886.830825px;}
.y425{bottom:886.830900px;}
.y399{bottom:886.831800px;}
.y4a6{bottom:886.843200px;}
.y3df{bottom:886.905075px;}
.y150{bottom:893.579550px;}
.y3a{bottom:893.711400px;}
.y123{bottom:897.998550px;}
.y31c{bottom:898.041300px;}
.y29a{bottom:898.043550px;}
.y26c{bottom:898.059300px;}
.y1a0{bottom:898.061550px;}
.y5e{bottom:898.063800px;}
.y172{bottom:898.068300px;}
.y1ca{bottom:898.070550px;}
.y92{bottom:898.072800px;}
.y1ee{bottom:898.075050px;}
.y21e{bottom:898.077300px;}
.y342{bottom:898.079550px;}
.y424{bottom:900.331950px;}
.y398{bottom:900.332925px;}
.y4a5{bottom:900.344325px;}
.y3de{bottom:900.406200px;}
.y358{bottom:911.569425px;}
.y39{bottom:911.711400px;}
.y423{bottom:913.833075px;}
.y397{bottom:913.833975px;}
.y4a4{bottom:913.845450px;}
.y3dd{bottom:913.907325px;}
.y122{bottom:916.000800px;}
.y31b{bottom:916.043550px;}
.y299{bottom:916.045800px;}
.y26b{bottom:916.061550px;}
.y19f{bottom:916.063800px;}
.y5d{bottom:916.066050px;}
.y21d{bottom:916.068300px;}
.y171{bottom:916.070550px;}
.y1c9{bottom:916.072800px;}
.y91{bottom:916.075050px;}
.y1ed{bottom:916.077300px;}
.y357{bottom:925.070475px;}
.y477{bottom:927.334200px;}
.y422{bottom:927.334275px;}
.y396{bottom:927.335250px;}
.y4a3{bottom:927.346575px;}
.y3dc{bottom:927.408450px;}
.y341{bottom:929.579550px;}
.y121{bottom:934.003050px;}
.y2d1{bottom:934.036800px;}
.y31a{bottom:934.045800px;}
.y298{bottom:934.048050px;}
.y25b{bottom:934.050300px;}
.y14f{bottom:934.063800px;}
.y19e{bottom:934.066050px;}
.y5c{bottom:934.068300px;}
.y21c{bottom:934.070550px;}
.y170{bottom:934.072800px;}
.y1c8{bottom:934.075050px;}
.y90{bottom:934.077300px;}
.y356{bottom:938.571675px;}
.y421{bottom:940.835325px;}
.y395{bottom:940.836300px;}
.y4a2{bottom:940.847700px;}
.y3db{bottom:940.909575px;}
.y38{bottom:947.705400px;}
.y120{bottom:952.005300px;}
.y2d0{bottom:952.039050px;}
.y319{bottom:952.048050px;}
.y297{bottom:952.050300px;}
.y25a{bottom:952.052550px;}
.y210{bottom:952.059300px;}
.y14e{bottom:952.066050px;}
.y19d{bottom:952.068300px;}
.y5b{bottom:952.070550px;}
.y21b{bottom:952.072800px;}
.y16f{bottom:952.075050px;}
.y8f{bottom:952.077300px;}
.yf5{bottom:952.079550px;}
.y420{bottom:954.336450px;}
.y394{bottom:954.337425px;}
.y4a1{bottom:954.348825px;}
.y490{bottom:954.410625px;}
.y3da{bottom:954.410700px;}
.y355{bottom:965.573925px;}
.y41f{bottom:967.837575px;}
.y393{bottom:967.838550px;}
.y4a0{bottom:967.849950px;}
.y48f{bottom:967.911750px;}
.y3d9{bottom:967.911825px;}
.y11f{bottom:970.007550px;}
.y2cf{bottom:970.041300px;}
.y318{bottom:970.050300px;}
.y296{bottom:970.052550px;}
.y259{bottom:970.054800px;}
.y20f{bottom:970.061550px;}
.y14d{bottom:970.068300px;}
.y19c{bottom:970.070550px;}
.y5a{bottom:970.072800px;}
.y21a{bottom:970.075050px;}
.y16e{bottom:970.077300px;}
.y8e{bottom:970.079550px;}
.y37{bottom:971.708400px;}
.y354{bottom:979.074975px;}
.y476{bottom:981.338625px;}
.y41e{bottom:981.338700px;}
.y392{bottom:981.339675px;}
.y49f{bottom:981.351075px;}
.y3d8{bottom:981.412950px;}
.yf4{bottom:983.579550px;}
.y11e{bottom:988.009800px;}
.y2ce{bottom:988.043550px;}
.y317{bottom:988.052550px;}
.y295{bottom:988.054800px;}
.y258{bottom:988.057050px;}
.y20e{bottom:988.063800px;}
.y14c{bottom:988.070550px;}
.y19b{bottom:988.072800px;}
.y16d{bottom:988.073550px;}
.y59{bottom:988.075050px;}
.y219{bottom:988.077300px;}
.y353{bottom:992.576175px;}
.y41d{bottom:994.839825px;}
.y475{bottom:994.839900px;}
.y391{bottom:994.840800px;}
.y49e{bottom:994.852125px;}
.y3d7{bottom:994.914075px;}
.y36{bottom:995.711400px;}
.y8d{bottom:1001.579550px;}
.y11d{bottom:1006.012050px;}
.y2cd{bottom:1006.045800px;}
.y316{bottom:1006.054800px;}
.y294{bottom:1006.057050px;}
.y257{bottom:1006.059300px;}
.y20d{bottom:1006.066050px;}
.y14b{bottom:1006.072800px;}
.y19a{bottom:1006.075050px;}
.y16c{bottom:1006.075800px;}
.y58{bottom:1006.077300px;}
.y1c7{bottom:1006.079550px;}
.y41c{bottom:1008.340950px;}
.y390{bottom:1008.341925px;}
.y49d{bottom:1008.353250px;}
.y3d6{bottom:1008.415200px;}
.y352{bottom:1019.578425px;}
.y41b{bottom:1021.842075px;}
.y38f{bottom:1021.843050px;}
.y49c{bottom:1021.854450px;}
.y3d5{bottom:1021.916325px;}
.y11c{bottom:1024.014300px;}
.y2cc{bottom:1024.048050px;}
.y315{bottom:1024.057050px;}
.y293{bottom:1024.059300px;}
.y256{bottom:1024.061550px;}
.y20c{bottom:1024.068300px;}
.y57{bottom:1024.075050px;}
.yf3{bottom:1024.077300px;}
.y16b{bottom:1024.078050px;}
.y232{bottom:1024.081800px;}
.y351{bottom:1033.079550px;}
.y4d{bottom:1034.579550px;}
.y41a{bottom:1035.343200px;}
.y474{bottom:1035.343275px;}
.y38e{bottom:1035.344175px;}
.y49b{bottom:1035.355575px;}
.y3d4{bottom:1035.417450px;}
.y11b{bottom:1042.016550px;}
.y2cb{bottom:1042.050300px;}
.y314{bottom:1042.059300px;}
.y292{bottom:1042.061550px;}
.y8c{bottom:1042.063800px;}
.y20b{bottom:1042.070550px;}
.y56{bottom:1042.077300px;}
.y1c6{bottom:1042.079550px;}
.y16a{bottom:1042.080300px;}
.y231{bottom:1042.084050px;}
.y419{bottom:1048.844325px;}
.y473{bottom:1048.844400px;}
.y38d{bottom:1048.845300px;}
.y49a{bottom:1048.856700px;}
.y3d3{bottom:1048.918575px;}
.y4c{bottom:1049.579550px;}
.y11a{bottom:1060.018800px;}
.y2ca{bottom:1060.052550px;}
.y313{bottom:1060.061550px;}
.y291{bottom:1060.063800px;}
.y8b{bottom:1060.066050px;}
.y20a{bottom:1060.072800px;}
.y55{bottom:1060.079550px;}
.y169{bottom:1060.082550px;}
.y230{bottom:1060.086300px;}
.y472{bottom:1062.345450px;}
.y418{bottom:1062.345525px;}
.y38c{bottom:1062.346425px;}
.y499{bottom:1062.357825px;}
.y3d2{bottom:1062.419700px;}
.y4b{bottom:1067.579550px;}
.y4a{bottom:1085.579550px;}
.yb8{bottom:1089.000000px;}
.y53{bottom:1089.779550px;}
.yb9{bottom:1090.079550px;}
.hb{height:22.729688px;}
.he{height:34.968750px;}
.hf{height:43.336670px;}
.h10{height:43.336970px;}
.h25{height:43.337270px;}
.h17{height:43.341170px;}
.h1e{height:43.345670px;}
.h1f{height:43.363670px;}
.h2{height:43.681641px;}
.h1{height:43.710938px;}
.h26{height:43.885670px;}
.hd{height:44.329687px;}
.h3{height:55.155762px;}
.h13{height:55.164762px;}
.h11{height:55.173762px;}
.h1c{height:55.179762px;}
.h4{height:55.182762px;}
.h5{height:55.191762px;}
.h7{height:55.200762px;}
.h8{height:55.209762px;}
.h16{height:55.218762px;}
.h15{height:55.227762px;}
.h12{height:55.236762px;}
.h6{height:55.254762px;}
.h14{height:55.263762px;}
.h20{height:55.272762px;}
.h1a{height:55.281762px;}
.h1d{height:55.299762px;}
.h1b{height:55.317762px;}
.h23{height:55.326762px;}
.h21{height:55.335762px;}
.h22{height:55.344762px;}
.h18{height:55.362762px;}
.ha{height:55.393066px;}
.h24{height:55.470762px;}
.h19{height:55.488762px;}
.h9{height:61.154297px;}
.hc{height:73.195312px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:72.006000px;}
.x3{left:87.000000px;}
.x18{left:93.000375px;}
.x10{left:96.912000px;}
.xf{left:108.000000px;}
.x9{left:153.258000px;}
.x15{left:205.581300px;}
.x17{left:209.741400px;}
.x2{left:219.478200px;}
.xc{left:222.172800px;}
.x1{left:447.043200px;}
.x5{left:467.999400px;}
.x11{left:474.491400px;}
.x7{left:483.000000px;}
.x19{left:489.025125px;}
.xd{left:492.906900px;}
.x14{left:502.415100px;}
.xe{left:503.994900px;}
.xb{left:518.253600px;}
.x12{left:536.441400px;}
.x13{left:596.721750px;}
.x6{left:599.504850px;}
.x1a{left:627.831300px;}
.x16{left:631.163850px;}
.xa{left:820.973100px;}
.x8{left:873.285600px;}
@media print{
.v3{vertical-align:-24.000000pt;}
.v4{vertical-align:-19.200000pt;}
.v1{vertical-align:-10.056000pt;}
.v6{vertical-align:-7.920000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.920000pt;}
.v8{vertical-align:10.080000pt;}
.v5{vertical-align:19.200000pt;}
.v2{vertical-align:24.000000pt;}
.ls7{letter-spacing:-3.946667pt;}
.ls9{letter-spacing:-2.052267pt;}
.ls8{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.004267pt;}
.ls2{letter-spacing:0.005333pt;}
.ls20{letter-spacing:0.660000pt;}
.ls1b{letter-spacing:0.710267pt;}
.lsb{letter-spacing:0.714933pt;}
.ls1f{letter-spacing:0.880000pt;}
.lse{letter-spacing:0.903733pt;}
.ls1{letter-spacing:0.909867pt;}
.ls11{letter-spacing:0.910000pt;}
.lsd{letter-spacing:0.910267pt;}
.lsa{letter-spacing:0.910400pt;}
.ls1a{letter-spacing:1.003467pt;}
.ls15{letter-spacing:1.085600pt;}
.ls14{letter-spacing:1.091733pt;}
.ls13{letter-spacing:1.092267pt;}
.ls1d{letter-spacing:1.099733pt;}
.ls6{letter-spacing:1.100000pt;}
.ls10{letter-spacing:1.120000pt;}
.ls1e{letter-spacing:1.188000pt;}
.ls16{letter-spacing:1.288000pt;}
.lsc{letter-spacing:1.320533pt;}
.ls19{letter-spacing:1.364000pt;}
.ls0{letter-spacing:1.400000pt;}
.ls18{letter-spacing:1.408000pt;}
.ls1c{letter-spacing:1.672000pt;}
.ls12{letter-spacing:1.680000pt;}
.ls17{letter-spacing:2.024000pt;}
.ls21{letter-spacing:18.612000pt;}
.lsf{letter-spacing:40.824000pt;}
.ls3{letter-spacing:47.204800pt;}
.ls4{letter-spacing:47.205333pt;}
.ws165{word-spacing:-15.680000pt;}
.ws1{word-spacing:-15.400000pt;}
.ws13f{word-spacing:-14.826667pt;}
.ws9{word-spacing:-12.100000pt;}
.ws218{word-spacing:-11.880000pt;}
.ws223{word-spacing:-11.660000pt;}
.ws0{word-spacing:-10.880000pt;}
.ws106{word-spacing:-10.010000pt;}
.ws3{word-spacing:-9.637333pt;}
.ws2{word-spacing:-9.100000pt;}
.ws7{word-spacing:-7.709867pt;}
.ws169{word-spacing:-6.776000pt;}
.ws168{word-spacing:-5.768000pt;}
.ws8{word-spacing:-5.657600pt;}
.ws16b{word-spacing:-5.432000pt;}
.ws16c{word-spacing:-5.152000pt;}
.ws12d{word-spacing:-4.984000pt;}
.wsf8{word-spacing:-4.536000pt;}
.ws15b{word-spacing:-4.480000pt;}
.ws60{word-spacing:-4.312000pt;}
.wsd2{word-spacing:-4.256000pt;}
.wsd6{word-spacing:-3.976000pt;}
.ws66{word-spacing:-3.864000pt;}
.ws154{word-spacing:-3.808000pt;}
.ws167{word-spacing:-3.752000pt;}
.ws150{word-spacing:-3.696000pt;}
.wse3{word-spacing:-3.528000pt;}
.ws22a{word-spacing:-3.520000pt;}
.ws1b5{word-spacing:-3.432000pt;}
.ws144{word-spacing:-3.360000pt;}
.ws156{word-spacing:-3.248000pt;}
.wsb5{word-spacing:-3.192000pt;}
.ws152{word-spacing:-3.136000pt;}
.ws8e{word-spacing:-3.080000pt;}
.wsf0{word-spacing:-3.024000pt;}
.ws116{word-spacing:-2.968000pt;}
.ws24{word-spacing:-2.912000pt;}
.ws234{word-spacing:-2.904000pt;}
.ws194{word-spacing:-2.860000pt;}
.ws52{word-spacing:-2.856000pt;}
.ws10a{word-spacing:-2.800000pt;}
.ws200{word-spacing:-2.772000pt;}
.wsfc{word-spacing:-2.744000pt;}
.ws216{word-spacing:-2.728000pt;}
.wsa9{word-spacing:-2.688000pt;}
.ws17b{word-spacing:-2.684000pt;}
.ws1cf{word-spacing:-2.640000pt;}
.ws3f{word-spacing:-2.632000pt;}
.ws1d0{word-spacing:-2.596000pt;}
.ws6f{word-spacing:-2.576000pt;}
.ws8a{word-spacing:-2.520000pt;}
.ws65{word-spacing:-2.464000pt;}
.ws20d{word-spacing:-2.420000pt;}
.ws77{word-spacing:-2.408000pt;}
.wsb4{word-spacing:-2.352000pt;}
.ws148{word-spacing:-2.296000pt;}
.ws1b6{word-spacing:-2.288000pt;}
.ws1e7{word-spacing:-2.244000pt;}
.ws13c{word-spacing:-2.240000pt;}
.ws1fc{word-spacing:-2.200000pt;}
.wsfb{word-spacing:-2.184000pt;}
.ws237{word-spacing:-2.156000pt;}
.ws19b{word-spacing:-2.112000pt;}
.wsd5{word-spacing:-2.072000pt;}
.ws1d7{word-spacing:-2.068000pt;}
.ws19f{word-spacing:-2.024000pt;}
.ws34{word-spacing:-2.016000pt;}
.wsd1{word-spacing:-1.973333pt;}
.ws14f{word-spacing:-1.960000pt;}
.ws1d6{word-spacing:-1.936000pt;}
.wseb{word-spacing:-1.904000pt;}
.ws221{word-spacing:-1.892000pt;}
.wsbf{word-spacing:-1.848000pt;}
.ws232{word-spacing:-1.804000pt;}
.ws7e{word-spacing:-1.792000pt;}
.ws81{word-spacing:-1.760000pt;}
.wsbd{word-spacing:-1.736000pt;}
.ws21c{word-spacing:-1.716000pt;}
.ws39{word-spacing:-1.680000pt;}
.ws1ae{word-spacing:-1.672000pt;}
.ws19c{word-spacing:-1.628000pt;}
.ws35{word-spacing:-1.624000pt;}
.ws1a8{word-spacing:-1.584000pt;}
.ws40{word-spacing:-1.568000pt;}
.ws17e{word-spacing:-1.540000pt;}
.ws7c{word-spacing:-1.512000pt;}
.ws22d{word-spacing:-1.496000pt;}
.wsd7{word-spacing:-1.456000pt;}
.ws1bd{word-spacing:-1.408000pt;}
.ws46{word-spacing:-1.400000pt;}
.ws238{word-spacing:-1.364000pt;}
.ws55{word-spacing:-1.344000pt;}
.ws64{word-spacing:-1.288000pt;}
.ws9d{word-spacing:-1.276000pt;}
.ws109{word-spacing:-1.176000pt;}
.ws1cb{word-spacing:-1.144000pt;}
.ws58{word-spacing:-1.120000pt;}
.ws36{word-spacing:-1.100000pt;}
.ws94{word-spacing:-1.064000pt;}
.ws1b2{word-spacing:-1.056000pt;}
.ws198{word-spacing:-1.012000pt;}
.ws135{word-spacing:-1.008000pt;}
.ws1a7{word-spacing:-0.968000pt;}
.ws2c{word-spacing:-0.952000pt;}
.ws18e{word-spacing:-0.924000pt;}
.ws141{word-spacing:-0.896000pt;}
.ws1ed{word-spacing:-0.880000pt;}
.ws8c{word-spacing:-0.840000pt;}
.ws181{word-spacing:-0.836000pt;}
.ws20e{word-spacing:-0.792000pt;}
.ws151{word-spacing:-0.784000pt;}
.ws230{word-spacing:-0.748000pt;}
.ws83{word-spacing:-0.728000pt;}
.wsca{word-spacing:-0.672000pt;}
.ws1f0{word-spacing:-0.660000pt;}
.wsb9{word-spacing:-0.616000pt;}
.ws27{word-spacing:-0.560000pt;}
.ws1b9{word-spacing:-0.528000pt;}
.ws7a{word-spacing:-0.504000pt;}
.ws219{word-spacing:-0.484000pt;}
.ws3d{word-spacing:-0.448000pt;}
.ws17a{word-spacing:-0.440000pt;}
.ws191{word-spacing:-0.396000pt;}
.wsf7{word-spacing:-0.392000pt;}
.ws1e8{word-spacing:-0.352000pt;}
.wsd3{word-spacing:-0.336000pt;}
.ws1c9{word-spacing:-0.308000pt;}
.wsa0{word-spacing:-0.280000pt;}
.ws1b7{word-spacing:-0.264000pt;}
.ws68{word-spacing:-0.224000pt;}
.wsc3{word-spacing:-0.168000pt;}
.ws1dc{word-spacing:-0.132000pt;}
.ws9f{word-spacing:-0.112000pt;}
.ws1e0{word-spacing:-0.088000pt;}
.ws6e{word-spacing:-0.056000pt;}
.ws175{word-spacing:-0.044000pt;}
.wsa{word-spacing:0.000000pt;}
.ws103{word-spacing:0.044000pt;}
.ws143{word-spacing:0.056000pt;}
.ws1ab{word-spacing:0.088000pt;}
.wsb7{word-spacing:0.112000pt;}
.ws1c4{word-spacing:0.132000pt;}
.wsf1{word-spacing:0.168000pt;}
.ws1a4{word-spacing:0.176000pt;}
.ws100{word-spacing:0.220000pt;}
.ws67{word-spacing:0.224000pt;}
.ws1b3{word-spacing:0.264000pt;}
.wsb{word-spacing:0.280000pt;}
.ws1ac{word-spacing:0.308000pt;}
.ws37{word-spacing:0.336000pt;}
.ws102{word-spacing:0.352000pt;}
.ws130{word-spacing:0.392000pt;}
.ws224{word-spacing:0.396000pt;}
.ws196{word-spacing:0.440000pt;}
.wsa3{word-spacing:0.448000pt;}
.ws1c2{word-spacing:0.484000pt;}
.ws13e{word-spacing:0.504000pt;}
.ws1d3{word-spacing:0.528000pt;}
.ws9b{word-spacing:0.560000pt;}
.ws62{word-spacing:0.616000pt;}
.ws182{word-spacing:0.660000pt;}
.ws118{word-spacing:0.672000pt;}
.ws1fd{word-spacing:0.704000pt;}
.wsd8{word-spacing:0.728000pt;}
.ws47{word-spacing:0.784000pt;}
.ws195{word-spacing:0.792000pt;}
.ws105{word-spacing:0.836000pt;}
.ws29{word-spacing:0.840000pt;}
.ws1a2{word-spacing:0.880000pt;}
.wsd9{word-spacing:0.896000pt;}
.ws22f{word-spacing:0.924000pt;}
.wsed{word-spacing:0.952000pt;}
.ws217{word-spacing:0.968000pt;}
.wsb8{word-spacing:1.008000pt;}
.ws1af{word-spacing:1.012000pt;}
.ws235{word-spacing:1.056000pt;}
.ws4b{word-spacing:1.064000pt;}
.ws1ad{word-spacing:1.100000pt;}
.wsd4{word-spacing:1.120000pt;}
.ws1b8{word-spacing:1.144000pt;}
.ws25{word-spacing:1.176000pt;}
.ws222{word-spacing:1.188000pt;}
.ws15{word-spacing:1.232000pt;}
.ws183{word-spacing:1.276000pt;}
.ws6d{word-spacing:1.288000pt;}
.ws19e{word-spacing:1.320000pt;}
.wsdb{word-spacing:1.344000pt;}
.ws1b0{word-spacing:1.364000pt;}
.wscc{word-spacing:1.400000pt;}
.ws104{word-spacing:1.408000pt;}
.ws1f1{word-spacing:1.452000pt;}
.ws75{word-spacing:1.456000pt;}
.ws17f{word-spacing:1.496000pt;}
.ws5f{word-spacing:1.512000pt;}
.ws19d{word-spacing:1.540000pt;}
.ws10e{word-spacing:1.568000pt;}
.ws1fa{word-spacing:1.584000pt;}
.wse1{word-spacing:1.624000pt;}
.ws1f2{word-spacing:1.628000pt;}
.ws176{word-spacing:1.672000pt;}
.ws63{word-spacing:1.680000pt;}
.ws188{word-spacing:1.716000pt;}
.wsa2{word-spacing:1.736000pt;}
.ws185{word-spacing:1.760000pt;}
.wsf6{word-spacing:1.792000pt;}
.ws101{word-spacing:1.804000pt;}
.ws5e{word-spacing:1.848000pt;}
.ws192{word-spacing:1.892000pt;}
.wsac{word-spacing:1.904000pt;}
.ws1c5{word-spacing:1.936000pt;}
.ws4e{word-spacing:1.960000pt;}
.ws61{word-spacing:2.016000pt;}
.ws1ef{word-spacing:2.024000pt;}
.ws21b{word-spacing:2.068000pt;}
.ws3e{word-spacing:2.072000pt;}
.ws1e3{word-spacing:2.112000pt;}
.ws74{word-spacing:2.128000pt;}
.ws1ea{word-spacing:2.156000pt;}
.ws3c{word-spacing:2.184000pt;}
.ws220{word-spacing:2.200000pt;}
.ws30{word-spacing:2.240000pt;}
.ws1e6{word-spacing:2.244000pt;}
.ws207{word-spacing:2.288000pt;}
.ws78{word-spacing:2.296000pt;}
.ws2a{word-spacing:2.352000pt;}
.ws18b{word-spacing:2.376000pt;}
.wsdc{word-spacing:2.408000pt;}
.ws1aa{word-spacing:2.420000pt;}
.ws11{word-spacing:2.464000pt;}
.ws1f3{word-spacing:2.508000pt;}
.ws12c{word-spacing:2.520000pt;}
.ws1b4{word-spacing:2.552000pt;}
.ws12{word-spacing:2.576000pt;}
.ws213{word-spacing:2.596000pt;}
.wsc0{word-spacing:2.632000pt;}
.ws233{word-spacing:2.640000pt;}
.ws18a{word-spacing:2.684000pt;}
.ws8b{word-spacing:2.688000pt;}
.ws21d{word-spacing:2.728000pt;}
.ws9a{word-spacing:2.744000pt;}
.ws1b1{word-spacing:2.772000pt;}
.wsa5{word-spacing:2.800000pt;}
.ws189{word-spacing:2.816000pt;}
.ws2d{word-spacing:2.856000pt;}
.ws18c{word-spacing:2.860000pt;}
.ws93{word-spacing:2.912000pt;}
.ws1cc{word-spacing:2.992000pt;}
.wse2{word-spacing:3.024000pt;}
.ws1f9{word-spacing:3.036000pt;}
.ws14d{word-spacing:3.080000pt;}
.ws1c1{word-spacing:3.124000pt;}
.ws1c{word-spacing:3.136000pt;}
.ws1ce{word-spacing:3.168000pt;}
.ws5c{word-spacing:3.192000pt;}
.ws1ec{word-spacing:3.212000pt;}
.ws108{word-spacing:3.248000pt;}
.wsff{word-spacing:3.256000pt;}
.wsfd{word-spacing:3.300000pt;}
.wsf{word-spacing:3.304000pt;}
.wsc1{word-spacing:3.360000pt;}
.ws212{word-spacing:3.388000pt;}
.ws20{word-spacing:3.416000pt;}
.ws1bc{word-spacing:3.432000pt;}
.ws15a{word-spacing:3.472000pt;}
.ws17c{word-spacing:3.520000pt;}
.ws127{word-spacing:3.528000pt;}
.ws1e5{word-spacing:3.564000pt;}
.ws1b{word-spacing:3.584000pt;}
.ws22e{word-spacing:3.608000pt;}
.wsea{word-spacing:3.640000pt;}
.ws1f4{word-spacing:3.652000pt;}
.ws3a{word-spacing:3.696000pt;}
.ws7f{word-spacing:3.740000pt;}
.ws13{word-spacing:3.752000pt;}
.ws1c6{word-spacing:3.784000pt;}
.wsd{word-spacing:3.808000pt;}
.ws208{word-spacing:3.828000pt;}
.wsa8{word-spacing:3.864000pt;}
.ws1eb{word-spacing:3.872000pt;}
.ws153{word-spacing:3.920000pt;}
.ws20f{word-spacing:3.960000pt;}
.ws4f{word-spacing:3.976000pt;}
.ws80{word-spacing:4.004000pt;}
.wsb3{word-spacing:4.032000pt;}
.ws197{word-spacing:4.048000pt;}
.ws4c{word-spacing:4.088000pt;}
.ws1be{word-spacing:4.136000pt;}
.ws97{word-spacing:4.144000pt;}
.ws28{word-spacing:4.200000pt;}
.ws215{word-spacing:4.224000pt;}
.ws11b{word-spacing:4.256000pt;}
.ws214{word-spacing:4.268000pt;}
.wsa1{word-spacing:4.312000pt;}
.ws73{word-spacing:4.368000pt;}
.ws1f7{word-spacing:4.400000pt;}
.ws117{word-spacing:4.424000pt;}
.ws1c7{word-spacing:4.444000pt;}
.ws79{word-spacing:4.480000pt;}
.ws1f6{word-spacing:4.488000pt;}
.ws56{word-spacing:4.536000pt;}
.ws210{word-spacing:4.576000pt;}
.wsb1{word-spacing:4.592000pt;}
.ws179{word-spacing:4.620000pt;}
.ws38{word-spacing:4.648000pt;}
.ws1bb{word-spacing:4.664000pt;}
.ws69{word-spacing:4.704000pt;}
.ws17d{word-spacing:4.708000pt;}
.ws211{word-spacing:4.752000pt;}
.wsba{word-spacing:4.760000pt;}
.ws1fe{word-spacing:4.796000pt;}
.ws5d{word-spacing:4.816000pt;}
.ws1a9{word-spacing:4.840000pt;}
.wse{word-spacing:4.872000pt;}
.ws204{word-spacing:4.884000pt;}
.wse8{word-spacing:4.928000pt;}
.wsee{word-spacing:4.984000pt;}
.ws180{word-spacing:5.016000pt;}
.ws59{word-spacing:5.040000pt;}
.ws199{word-spacing:5.060000pt;}
.ws91{word-spacing:5.096000pt;}
.ws1a0{word-spacing:5.104000pt;}
.ws1e2{word-spacing:5.148000pt;}
.ws44{word-spacing:5.152000pt;}
.ws186{word-spacing:5.192000pt;}
.ws45{word-spacing:5.208000pt;}
.wsfe{word-spacing:5.236000pt;}
.ws85{word-spacing:5.264000pt;}
.ws209{word-spacing:5.280000pt;}
.ws95{word-spacing:5.320000pt;}
.ws1de{word-spacing:5.368000pt;}
.wsc8{word-spacing:5.376000pt;}
.wsaa{word-spacing:5.432000pt;}
.ws201{word-spacing:5.456000pt;}
.wsae{word-spacing:5.488000pt;}
.ws1a1{word-spacing:5.500000pt;}
.ws26{word-spacing:5.544000pt;}
.ws1c8{word-spacing:5.588000pt;}
.wsdd{word-spacing:5.600000pt;}
.ws1e9{word-spacing:5.632000pt;}
.ws12e{word-spacing:5.656000pt;}
.ws1d1{word-spacing:5.676000pt;}
.wsc2{word-spacing:5.712000pt;}
.ws187{word-spacing:5.720000pt;}
.ws18f{word-spacing:5.764000pt;}
.wsda{word-spacing:5.768000pt;}
.ws206{word-spacing:5.808000pt;}
.ws89{word-spacing:5.824000pt;}
.ws41{word-spacing:5.880000pt;}
.ws228{word-spacing:5.896000pt;}
.wsb2{word-spacing:5.936000pt;}
.wsa6{word-spacing:5.992000pt;}
.ws236{word-spacing:6.028000pt;}
.ws50{word-spacing:6.048000pt;}
.wsf9{word-spacing:6.104000pt;}
.wscf{word-spacing:6.160000pt;}
.ws1ba{word-spacing:6.204000pt;}
.ws1d{word-spacing:6.216000pt;}
.ws4a{word-spacing:6.272000pt;}
.wsbc{word-spacing:6.328000pt;}
.ws1bf{word-spacing:6.380000pt;}
.ws2b{word-spacing:6.384000pt;}
.ws9e{word-spacing:6.440000pt;}
.ws114{word-spacing:6.496000pt;}
.ws1da{word-spacing:6.512000pt;}
.ws1f{word-spacing:6.552000pt;}
.ws51{word-spacing:6.608000pt;}
.wscb{word-spacing:6.664000pt;}
.ws19a{word-spacing:6.688000pt;}
.ws159{word-spacing:6.720000pt;}
.wsc6{word-spacing:6.776000pt;}
.ws1c3{word-spacing:6.820000pt;}
.ws6b{word-spacing:6.832000pt;}
.ws131{word-spacing:6.888000pt;}
.ws6c{word-spacing:6.944000pt;}
.ws229{word-spacing:6.996000pt;}
.ws7d{word-spacing:7.000000pt;}
.ws90{word-spacing:7.056000pt;}
.ws1d9{word-spacing:7.084000pt;}
.ws31{word-spacing:7.112000pt;}
.ws87{word-spacing:7.168000pt;}
.ws1d8{word-spacing:7.216000pt;}
.ws22{word-spacing:7.224000pt;}
.ws32{word-spacing:7.280000pt;}
.wsa4{word-spacing:7.336000pt;}
.ws1ca{word-spacing:7.348000pt;}
.ws11d{word-spacing:7.392000pt;}
.ws162{word-spacing:7.448000pt;}
.ws1db{word-spacing:7.480000pt;}
.wsf5{word-spacing:7.504000pt;}
.ws19{word-spacing:7.560000pt;}
.wse7{word-spacing:7.616000pt;}
.ws177{word-spacing:7.656000pt;}
.ws14{word-spacing:7.672000pt;}
.wsbe{word-spacing:7.728000pt;}
.ws20a{word-spacing:7.744000pt;}
.ws11f{word-spacing:7.784000pt;}
.ws88{word-spacing:7.840000pt;}
.ws1a5{word-spacing:7.876000pt;}
.ws140{word-spacing:7.896000pt;}
.ws157{word-spacing:7.952000pt;}
.ws15f{word-spacing:8.008000pt;}
.ws115{word-spacing:8.064000pt;}
.ws14e{word-spacing:8.120000pt;}
.ws23{word-spacing:8.176000pt;}
.wsbb{word-spacing:8.232000pt;}
.ws123{word-spacing:8.288000pt;}
.ws21e{word-spacing:8.316000pt;}
.ws134{word-spacing:8.344000pt;}
.ws92{word-spacing:8.400000pt;}
.ws190{word-spacing:8.404000pt;}
.ws1cd{word-spacing:8.448000pt;}
.ws155{word-spacing:8.456000pt;}
.ws48{word-spacing:8.512000pt;}
.ws18{word-spacing:8.568000pt;}
.wsc7{word-spacing:8.624000pt;}
.ws21a{word-spacing:8.668000pt;}
.wsc4{word-spacing:8.680000pt;}
.ws1ff{word-spacing:8.712000pt;}
.ws53{word-spacing:8.736000pt;}
.wsef{word-spacing:8.792000pt;}
.ws17{word-spacing:8.848000pt;}
.ws21f{word-spacing:8.888000pt;}
.ws96{word-spacing:8.904000pt;}
.wsf4{word-spacing:8.960000pt;}
.ws1a6{word-spacing:8.976000pt;}
.wsc9{word-spacing:9.016000pt;}
.ws225{word-spacing:9.020000pt;}
.ws8f{word-spacing:9.072000pt;}
.ws149{word-spacing:9.128000pt;}
.ws227{word-spacing:9.152000pt;}
.ws70{word-spacing:9.184000pt;}
.ws1d5{word-spacing:9.196000pt;}
.ws184{word-spacing:9.284000pt;}
.wse0{word-spacing:9.296000pt;}
.ws1df{word-spacing:9.372000pt;}
.ws10f{word-spacing:9.464000pt;}
.ws13d{word-spacing:9.520000pt;}
.ws1e4{word-spacing:9.548000pt;}
.ws99{word-spacing:9.576000pt;}
.ws16f{word-spacing:9.632000pt;}
.ws1a3{word-spacing:9.636000pt;}
.ws13b{word-spacing:9.744000pt;}
.ws54{word-spacing:9.800000pt;}
.ws8d{word-spacing:9.856000pt;}
.ws120{word-spacing:9.912000pt;}
.ws15c{word-spacing:9.968000pt;}
.ws128{word-spacing:10.024000pt;}
.wsc{word-spacing:10.080000pt;}
.ws203{word-spacing:10.120000pt;}
.ws10d{word-spacing:10.136000pt;}
.ws98{word-spacing:10.192000pt;}
.ws13a{word-spacing:10.248000pt;}
.ws76{word-spacing:10.360000pt;}
.wsf2{word-spacing:10.416000pt;}
.wsd0{word-spacing:10.472000pt;}
.wsb0{word-spacing:10.528000pt;}
.ws1fb{word-spacing:10.604000pt;}
.ws178{word-spacing:10.692000pt;}
.ws10{word-spacing:10.696000pt;}
.ws9c{word-spacing:10.752000pt;}
.ws132{word-spacing:10.808000pt;}
.wse4{word-spacing:10.864000pt;}
.ws158{word-spacing:10.920000pt;}
.ws6a{word-spacing:11.144000pt;}
.ws22b{word-spacing:11.176000pt;}
.ws139{word-spacing:11.200000pt;}
.wscd{word-spacing:11.256000pt;}
.ws71{word-spacing:11.368000pt;}
.ws1c0{word-spacing:11.396000pt;}
.ws119{word-spacing:11.424000pt;}
.wsec{word-spacing:11.480000pt;}
.wsdf{word-spacing:11.536000pt;}
.ws1a{word-spacing:11.592000pt;}
.ws11e{word-spacing:11.648000pt;}
.ws84{word-spacing:11.760000pt;}
.ws20c{word-spacing:11.792000pt;}
.ws16{word-spacing:11.816000pt;}
.ws12f{word-spacing:11.872000pt;}
.wsc5{word-spacing:11.928000pt;}
.wse9{word-spacing:11.984000pt;}
.ws1e{word-spacing:12.096000pt;}
.ws146{word-spacing:12.152000pt;}
.ws121{word-spacing:12.264000pt;}
.ws5b{word-spacing:12.320000pt;}
.ws166{word-spacing:12.376000pt;}
.ws2f{word-spacing:12.432000pt;}
.ws133{word-spacing:12.488000pt;}
.ws205{word-spacing:12.496000pt;}
.ws112{word-spacing:12.544000pt;}
.ws226{word-spacing:12.584000pt;}
.ws20b{word-spacing:12.672000pt;}
.wsce{word-spacing:12.768000pt;}
.ws1f5{word-spacing:12.804000pt;}
.ws110{word-spacing:12.824000pt;}
.ws82{word-spacing:12.936000pt;}
.wse6{word-spacing:12.992000pt;}
.ws1dd{word-spacing:13.024000pt;}
.ws193{word-spacing:13.068000pt;}
.ws5a{word-spacing:13.104000pt;}
.wsa7{word-spacing:13.216000pt;}
.ws163{word-spacing:13.328000pt;}
.ws1f8{word-spacing:13.376000pt;}
.ws42{word-spacing:13.496000pt;}
.ws49{word-spacing:13.552000pt;}
.ws7b{word-spacing:13.720000pt;}
.ws10c{word-spacing:13.776000pt;}
.ws161{word-spacing:13.832000pt;}
.ws138{word-spacing:13.888000pt;}
.ws57{word-spacing:13.944000pt;}
.ws137{word-spacing:14.000000pt;}
.ws107{word-spacing:14.056000pt;}
.ws147{word-spacing:14.112000pt;}
.ws231{word-spacing:14.256000pt;}
.ws15d{word-spacing:14.280000pt;}
.wsf3{word-spacing:14.392000pt;}
.ws136{word-spacing:14.448000pt;}
.ws21{word-spacing:14.504000pt;}
.ws160{word-spacing:14.560000pt;}
.wsb6{word-spacing:14.616000pt;}
.wsfa{word-spacing:14.672000pt;}
.ws1e1{word-spacing:14.784000pt;}
.ws172{word-spacing:14.896000pt;}
.ws10b{word-spacing:15.120000pt;}
.ws72{word-spacing:15.176000pt;}
.ws111{word-spacing:15.232000pt;}
.wsad{word-spacing:15.288000pt;}
.ws171{word-spacing:15.400000pt;}
.ws202{word-spacing:15.664000pt;}
.ws11a{word-spacing:15.848000pt;}
.ws14c{word-spacing:16.072000pt;}
.ws33{word-spacing:16.520000pt;}
.ws4d{word-spacing:16.688000pt;}
.ws145{word-spacing:16.744000pt;}
.ws142{word-spacing:16.856000pt;}
.ws1d4{word-spacing:16.940000pt;}
.ws43{word-spacing:17.080000pt;}
.ws126{word-spacing:17.360000pt;}
.ws239{word-spacing:17.512000pt;}
.ws11c{word-spacing:17.584000pt;}
.ws125{word-spacing:17.752000pt;}
.ws3b{word-spacing:17.808000pt;}
.wsde{word-spacing:17.864000pt;}
.ws113{word-spacing:18.368000pt;}
.ws1d2{word-spacing:18.436000pt;}
.ws2e{word-spacing:18.480000pt;}
.ws129{word-spacing:18.760000pt;}
.ws173{word-spacing:18.872000pt;}
.ws86{word-spacing:18.984000pt;}
.ws14a{word-spacing:19.040000pt;}
.ws174{word-spacing:19.432000pt;}
.wse5{word-spacing:19.488000pt;}
.ws1ee{word-spacing:19.888000pt;}
.ws170{word-spacing:19.936000pt;}
.ws14b{word-spacing:20.216000pt;}
.ws122{word-spacing:20.328000pt;}
.wsaf{word-spacing:20.608000pt;}
.ws164{word-spacing:21.616000pt;}
.ws16e{word-spacing:22.344000pt;}
.wsab{word-spacing:22.512000pt;}
.ws12a{word-spacing:23.016000pt;}
.ws15e{word-spacing:23.744000pt;}
.ws12b{word-spacing:23.968000pt;}
.ws16a{word-spacing:24.472000pt;}
.ws22c{word-spacing:26.664000pt;}
.ws124{word-spacing:27.104000pt;}
.ws18d{word-spacing:36.476000pt;}
.ws4{word-spacing:37.567467pt;}
.ws5{word-spacing:37.572267pt;}
.ws6{word-spacing:37.572800pt;}
.ws16d{word-spacing:43.736000pt;}
._9{margin-left:-49.224000pt;}
._b{margin-left:-19.264000pt;}
._8{margin-left:-6.832000pt;}
._6{margin-left:-5.461333pt;}
._2{margin-left:-4.144000pt;}
._3{margin-left:-3.080000pt;}
._1{margin-left:-1.400000pt;}
._7{width:1.100000pt;}
._4{width:2.072000pt;}
._0{width:3.946667pt;}
._a{width:6.160000pt;}
._c{width:8.580000pt;}
._d{width:10.692000pt;}
._e{width:12.892000pt;}
._f{width:40.552533pt;}
._5{width:47.158933pt;}
.fs5{font-size:27.733333pt;}
.fs9{font-size:28.600000pt;}
.fs4{font-size:34.666667pt;}
.fs2{font-size:36.400000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:44.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs3{font-size:74.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:68.000000pt;}
.y1{bottom:68.533333pt;}
.y1ec{bottom:93.332333pt;}
.y4e{bottom:93.333333pt;}
.y1c5{bottom:94.220933pt;}
.y2b8{bottom:94.242933pt;}
.y218{bottom:94.250933pt;}
.y350{bottom:94.274933pt;}
.y209{bottom:94.276933pt;}
.yb7{bottom:94.282933pt;}
.y26a{bottom:94.284933pt;}
.y8a{bottom:94.286933pt;}
.yd6{bottom:98.863600pt;}
.yf0{bottom:98.871600pt;}
.y38b{bottom:102.224933pt;}
.y45e{bottom:104.359067pt;}
.y1eb{bottom:105.327333pt;}
.y168{bottom:108.943600pt;}
.y1c4{bottom:110.222933pt;}
.y2f7{bottom:110.226933pt;}
.y119{bottom:110.232933pt;}
.y2b7{bottom:110.244933pt;}
.y199{bottom:110.252933pt;}
.y2c9{bottom:110.262933pt;}
.y244{bottom:110.276933pt;}
.y208{bottom:110.278933pt;}
.yb6{bottom:110.284933pt;}
.y269{bottom:110.286933pt;}
.y89{bottom:110.288933pt;}
.y14a{bottom:110.290933pt;}
.y38a{bottom:114.225933pt;}
.yd5{bottom:114.865600pt;}
.yef{bottom:114.873600pt;}
.y48e{bottom:116.238067pt;}
.y3d1{bottom:116.238933pt;}
.y417{bottom:116.304133pt;}
.y45d{bottom:116.360067pt;}
.y1ea{bottom:117.328333pt;}
.y52{bottom:117.335400pt;}
.y35{bottom:118.288933pt;}
.y167{bottom:124.945600pt;}
.y1c3{bottom:126.224933pt;}
.y389{bottom:126.226933pt;}
.y2f6{bottom:126.228933pt;}
.y118{bottom:126.234933pt;}
.y2b6{bottom:126.246933pt;}
.y198{bottom:126.254933pt;}
.y149{bottom:126.256933pt;}
.y2c8{bottom:126.264933pt;}
.y243{bottom:126.278933pt;}
.y207{bottom:126.280933pt;}
.yb5{bottom:126.286933pt;}
.y268{bottom:126.288933pt;}
.y88{bottom:126.290933pt;}
.y48d{bottom:128.239067pt;}
.y3d0{bottom:128.239933pt;}
.y416{bottom:128.305067pt;}
.y45c{bottom:128.361067pt;}
.y1e9{bottom:129.329333pt;}
.y51{bottom:129.336333pt;}
.yd4{bottom:130.867600pt;}
.yee{bottom:130.875600pt;}
.y34{bottom:134.290933pt;}
.y388{bottom:138.227933pt;}
.y48c{bottom:140.240133pt;}
.y3cf{bottom:140.240933pt;}
.y415{bottom:140.306067pt;}
.y45b{bottom:140.362067pt;}
.y166{bottom:140.947600pt;}
.y1e8{bottom:141.330333pt;}
.y50{bottom:141.337333pt;}
.y1c2{bottom:142.226933pt;}
.y2f5{bottom:142.230933pt;}
.y117{bottom:142.236933pt;}
.y2b5{bottom:142.248933pt;}
.y197{bottom:142.256933pt;}
.y148{bottom:142.258933pt;}
.y2c7{bottom:142.266933pt;}
.y87{bottom:142.274933pt;}
.y242{bottom:142.280933pt;}
.y206{bottom:142.282933pt;}
.y255{bottom:142.284933pt;}
.yb4{bottom:142.288933pt;}
.y22f{bottom:142.290933pt;}
.yd3{bottom:146.869600pt;}
.yed{bottom:146.877600pt;}
.ybd{bottom:150.184667pt;}
.y387{bottom:150.228933pt;}
.y33{bottom:150.280933pt;}
.y48b{bottom:152.241067pt;}
.y3ce{bottom:152.241933pt;}
.y414{bottom:152.307067pt;}
.y45a{bottom:152.363067pt;}
.y1e7{bottom:153.331333pt;}
.y4f{bottom:153.338333pt;}
.y165{bottom:156.949600pt;}
.y1c1{bottom:158.228933pt;}
.y2f4{bottom:158.232933pt;}
.y116{bottom:158.238933pt;}
.y2b4{bottom:158.250933pt;}
.y196{bottom:158.258933pt;}
.y147{bottom:158.260933pt;}
.y2c6{bottom:158.268933pt;}
.y86{bottom:158.276933pt;}
.y241{bottom:158.282933pt;}
.y205{bottom:158.284933pt;}
.y254{bottom:158.286933pt;}
.yb3{bottom:158.290933pt;}
.y290{bottom:158.292933pt;}
.ybc{bottom:162.185667pt;}
.y386{bottom:162.229933pt;}
.yd2{bottom:162.871600pt;}
.yec{bottom:162.877600pt;}
.y48a{bottom:164.242000pt;}
.y3cd{bottom:164.242933pt;}
.y413{bottom:164.308067pt;}
.y459{bottom:164.364067pt;}
.y1e6{bottom:165.332333pt;}
.y32{bottom:166.282933pt;}
.y164{bottom:172.951600pt;}
.ybb{bottom:174.185667pt;}
.y1c0{bottom:174.230933pt;}
.y2f3{bottom:174.234933pt;}
.y115{bottom:174.240933pt;}
.y2b3{bottom:174.252933pt;}
.y195{bottom:174.260933pt;}
.y146{bottom:174.262933pt;}
.y2c5{bottom:174.270933pt;}
.y85{bottom:174.278933pt;}
.y1e2{bottom:174.284933pt;}
.y204{bottom:174.286933pt;}
.y253{bottom:174.288933pt;}
.y312{bottom:174.292933pt;}
.y489{bottom:176.243000pt;}
.y3cc{bottom:176.243933pt;}
.y412{bottom:176.309067pt;}
.y458{bottom:176.365067pt;}
.y1e5{bottom:177.331333pt;}
.yd1{bottom:178.873600pt;}
.yeb{bottom:178.877600pt;}
.y31{bottom:182.284933pt;}
.yba{bottom:186.186667pt;}
.y385{bottom:186.231933pt;}
.y28f{bottom:186.292933pt;}
.y488{bottom:188.244067pt;}
.y3cb{bottom:188.244933pt;}
.y411{bottom:188.310067pt;}
.y457{bottom:188.366067pt;}
.y163{bottom:188.953600pt;}
.y1e4{bottom:189.332333pt;}
.y1bf{bottom:190.232933pt;}
.y2f2{bottom:190.236933pt;}
.y114{bottom:190.242933pt;}
.y2b2{bottom:190.254933pt;}
.y194{bottom:190.262933pt;}
.y145{bottom:190.264933pt;}
.y2c4{bottom:190.272933pt;}
.y84{bottom:190.280933pt;}
.y1e1{bottom:190.286933pt;}
.y203{bottom:190.288933pt;}
.y252{bottom:190.290933pt;}
.yd0{bottom:194.875600pt;}
.yea{bottom:194.877600pt;}
.y384{bottom:198.232867pt;}
.y30{bottom:198.286933pt;}
.y487{bottom:200.245067pt;}
.y3ca{bottom:200.245933pt;}
.y410{bottom:200.311067pt;}
.y471{bottom:200.311133pt;}
.y456{bottom:200.367067pt;}
.y1e3{bottom:201.333333pt;}
.y19{bottom:202.284933pt;}
.y311{bottom:202.292933pt;}
.y162{bottom:204.955600pt;}
.y1be{bottom:206.234933pt;}
.y2f1{bottom:206.238933pt;}
.y113{bottom:206.244933pt;}
.y2b1{bottom:206.256933pt;}
.y193{bottom:206.264933pt;}
.y144{bottom:206.266933pt;}
.y2c3{bottom:206.274933pt;}
.y251{bottom:206.278933pt;}
.y83{bottom:206.282933pt;}
.y1e0{bottom:206.288933pt;}
.y202{bottom:206.290933pt;}
.y383{bottom:210.233867pt;}
.ycf{bottom:210.877600pt;}
.y486{bottom:212.246067pt;}
.y3c9{bottom:212.246933pt;}
.y470{bottom:212.312000pt;}
.y40f{bottom:212.312067pt;}
.y455{bottom:212.368067pt;}
.y2f{bottom:214.288933pt;}
.y18{bottom:218.286933pt;}
.y161{bottom:220.957600pt;}
.y382{bottom:222.234933pt;}
.y1bd{bottom:222.236933pt;}
.y2f0{bottom:222.240933pt;}
.y112{bottom:222.246933pt;}
.y2b0{bottom:222.258933pt;}
.y192{bottom:222.266933pt;}
.y143{bottom:222.268933pt;}
.y2c2{bottom:222.276933pt;}
.y250{bottom:222.280933pt;}
.y82{bottom:222.284933pt;}
.y28e{bottom:222.286933pt;}
.y1df{bottom:222.290933pt;}
.y201{bottom:222.292933pt;}
.y485{bottom:224.247067pt;}
.y3c8{bottom:224.247933pt;}
.y40e{bottom:224.313067pt;}
.y454{bottom:224.369067pt;}
.yce{bottom:226.867600pt;}
.ye9{bottom:226.875600pt;}
.y2e{bottom:230.290933pt;}
.y381{bottom:234.235933pt;}
.y17{bottom:234.288933pt;}
.y484{bottom:236.248067pt;}
.y3c7{bottom:236.248933pt;}
.y40d{bottom:236.314067pt;}
.y453{bottom:236.370067pt;}
.y160{bottom:236.959600pt;}
.y34f{bottom:238.222933pt;}
.y310{bottom:238.236933pt;}
.y1bc{bottom:238.238933pt;}
.y2ef{bottom:238.242933pt;}
.y111{bottom:238.248933pt;}
.y2af{bottom:238.260933pt;}
.y191{bottom:238.268933pt;}
.y142{bottom:238.270933pt;}
.y2c1{bottom:238.278933pt;}
.y24f{bottom:238.282933pt;}
.y81{bottom:238.286933pt;}
.y240{bottom:238.288933pt;}
.y1de{bottom:238.290933pt;}
.ycd{bottom:242.869600pt;}
.ye8{bottom:242.877600pt;}
.y380{bottom:246.236933pt;}
.y2d{bottom:246.292933pt;}
.y483{bottom:248.249067pt;}
.y3c6{bottom:248.249933pt;}
.y40c{bottom:248.315067pt;}
.y452{bottom:248.371067pt;}
.y16{bottom:250.290933pt;}
.y200{bottom:250.292933pt;}
.y34e{bottom:254.224933pt;}
.y30f{bottom:254.238933pt;}
.y1bb{bottom:254.240933pt;}
.y2ee{bottom:254.244933pt;}
.y110{bottom:254.250933pt;}
.y2ae{bottom:254.262933pt;}
.y190{bottom:254.270933pt;}
.y141{bottom:254.272933pt;}
.y2c0{bottom:254.280933pt;}
.y24e{bottom:254.284933pt;}
.y80{bottom:254.288933pt;}
.y23f{bottom:254.290933pt;}
.y37f{bottom:258.237933pt;}
.ycc{bottom:258.871600pt;}
.ye7{bottom:258.877600pt;}
.y482{bottom:260.250067pt;}
.y3c5{bottom:260.250933pt;}
.y40b{bottom:260.316067pt;}
.y451{bottom:260.372067pt;}
.y15{bottom:266.270933pt;}
.y15f{bottom:266.292933pt;}
.y34d{bottom:270.226933pt;}
.y37e{bottom:270.238933pt;}
.y30e{bottom:270.240933pt;}
.y1ba{bottom:270.242933pt;}
.y2ed{bottom:270.246933pt;}
.y10f{bottom:270.252933pt;}
.y2ad{bottom:270.264933pt;}
.y28d{bottom:270.268933pt;}
.y18f{bottom:270.272933pt;}
.y140{bottom:270.274933pt;}
.y2bf{bottom:270.282933pt;}
.y23e{bottom:270.286933pt;}
.y7f{bottom:270.290933pt;}
.y450{bottom:272.251067pt;}
.y3c4{bottom:272.251933pt;}
.y40a{bottom:272.317067pt;}
.y2c{bottom:274.292933pt;}
.ycb{bottom:274.873600pt;}
.ye6{bottom:274.875600pt;}
.y37d{bottom:282.239933pt;}
.y14{bottom:282.272933pt;}
.y44f{bottom:284.252067pt;}
.y3c3{bottom:284.252933pt;}
.y409{bottom:284.318067pt;}
.y34c{bottom:286.228933pt;}
.y30d{bottom:286.242933pt;}
.y1b9{bottom:286.244933pt;}
.y332{bottom:286.246933pt;}
.y2ec{bottom:286.248933pt;}
.y10e{bottom:286.254933pt;}
.y2ac{bottom:286.266933pt;}
.y28c{bottom:286.270933pt;}
.y18e{bottom:286.274933pt;}
.y13f{bottom:286.276933pt;}
.y340{bottom:286.278933pt;}
.y7e{bottom:286.280933pt;}
.yb2{bottom:286.282933pt;}
.y1ff{bottom:286.284933pt;}
.y22e{bottom:286.286933pt;}
.y23d{bottom:286.288933pt;}
.y1dd{bottom:286.290933pt;}
.yca{bottom:290.875600pt;}
.ye5{bottom:290.877600pt;}
.y37c{bottom:294.240933pt;}
.y481{bottom:296.253067pt;}
.y44e{bottom:296.253133pt;}
.y3c2{bottom:296.253933pt;}
.y408{bottom:296.319067pt;}
.y13{bottom:298.274933pt;}
.y30c{bottom:302.244933pt;}
.y1b8{bottom:302.246933pt;}
.y331{bottom:302.248933pt;}
.y2eb{bottom:302.250933pt;}
.y10d{bottom:302.256933pt;}
.y2ab{bottom:302.268933pt;}
.y28b{bottom:302.272933pt;}
.y15e{bottom:302.274933pt;}
.y18d{bottom:302.276933pt;}
.y13e{bottom:302.278933pt;}
.y33f{bottom:302.280933pt;}
.y7d{bottom:302.282933pt;}
.yb1{bottom:302.284933pt;}
.y1dc{bottom:302.286933pt;}
.y22d{bottom:302.288933pt;}
.y23c{bottom:302.290933pt;}
.y37b{bottom:306.241933pt;}
.ye4{bottom:306.833600pt;}
.yc9{bottom:306.877600pt;}
.y44d{bottom:308.254000pt;}
.y480{bottom:308.254067pt;}
.y3c1{bottom:308.254933pt;}
.y407{bottom:308.320067pt;}
.y2b{bottom:310.272933pt;}
.y12{bottom:314.276933pt;}
.y34b{bottom:318.232933pt;}
.y37a{bottom:318.242933pt;}
.y30b{bottom:318.246933pt;}
.y1b7{bottom:318.248933pt;}
.y330{bottom:318.250933pt;}
.y2ea{bottom:318.252933pt;}
.y10c{bottom:318.258933pt;}
.y2aa{bottom:318.270933pt;}
.y28a{bottom:318.274933pt;}
.y15d{bottom:318.276933pt;}
.y18c{bottom:318.278933pt;}
.y13d{bottom:318.280933pt;}
.y33e{bottom:318.282933pt;}
.y7c{bottom:318.284933pt;}
.yb0{bottom:318.286933pt;}
.y1db{bottom:318.288933pt;}
.y22c{bottom:318.290933pt;}
.y44c{bottom:320.255067pt;}
.y3c0{bottom:320.255933pt;}
.y406{bottom:320.321067pt;}
.ye3{bottom:322.835600pt;}
.yc8{bottom:322.879600pt;}
.y2a{bottom:326.274933pt;}
.y379{bottom:330.243933pt;}
.y11{bottom:330.278933pt;}
.y44b{bottom:332.256067pt;}
.y3bf{bottom:332.256933pt;}
.y405{bottom:332.322067pt;}
.y34a{bottom:334.234933pt;}
.y30a{bottom:334.248933pt;}
.y1b6{bottom:334.250933pt;}
.y32f{bottom:334.252933pt;}
.y2e9{bottom:334.254933pt;}
.y10b{bottom:334.260933pt;}
.y2a9{bottom:334.272933pt;}
.y289{bottom:334.276933pt;}
.y15c{bottom:334.278933pt;}
.y18b{bottom:334.280933pt;}
.y13c{bottom:334.282933pt;}
.y33d{bottom:334.284933pt;}
.y7b{bottom:334.286933pt;}
.yaf{bottom:334.288933pt;}
.y1da{bottom:334.290933pt;}
.ye2{bottom:338.837600pt;}
.y378{bottom:342.244933pt;}
.y29{bottom:342.276933pt;}
.y44a{bottom:344.257067pt;}
.y3be{bottom:344.257933pt;}
.y46f{bottom:344.323000pt;}
.y404{bottom:344.323067pt;}
.y10{bottom:346.280933pt;}
.y349{bottom:350.236933pt;}
.y309{bottom:350.250933pt;}
.y1b5{bottom:350.252933pt;}
.y32e{bottom:350.254933pt;}
.y2e8{bottom:350.256933pt;}
.y10a{bottom:350.262933pt;}
.y2a8{bottom:350.274933pt;}
.y288{bottom:350.278933pt;}
.y15b{bottom:350.280933pt;}
.y18a{bottom:350.282933pt;}
.y13b{bottom:350.284933pt;}
.y1d9{bottom:350.286933pt;}
.y7a{bottom:350.288933pt;}
.yae{bottom:350.290933pt;}
.yc7{bottom:350.879600pt;}
.y377{bottom:354.245933pt;}
.ye1{bottom:354.839600pt;}
.y449{bottom:356.258067pt;}
.y3bd{bottom:356.258933pt;}
.y46e{bottom:356.324000pt;}
.y403{bottom:356.324067pt;}
.y4c6{bottom:356.374400pt;}
.y28{bottom:358.278933pt;}
.yf{bottom:362.282933pt;}
.y348{bottom:366.238933pt;}
.y376{bottom:366.246933pt;}
.y308{bottom:366.252933pt;}
.y1b4{bottom:366.254933pt;}
.y32d{bottom:366.256933pt;}
.y2e7{bottom:366.258933pt;}
.y109{bottom:366.264933pt;}
.yad{bottom:366.276933pt;}
.y287{bottom:366.280933pt;}
.y15a{bottom:366.282933pt;}
.y189{bottom:366.284933pt;}
.y13a{bottom:366.286933pt;}
.y1d8{bottom:366.288933pt;}
.y79{bottom:366.290933pt;}
.y448{bottom:368.259067pt;}
.y3bc{bottom:368.259933pt;}
.y402{bottom:368.325000pt;}
.y46d{bottom:368.325067pt;}
.y4c5{bottom:369.707733pt;}
.ye0{bottom:370.841600pt;}
.y27{bottom:374.280933pt;}
.y375{bottom:378.247933pt;}
.ye{bottom:378.284933pt;}
.y447{bottom:380.260067pt;}
.y3bb{bottom:380.260933pt;}
.y401{bottom:380.326000pt;}
.y46c{bottom:380.326067pt;}
.y347{bottom:382.240933pt;}
.y307{bottom:382.254933pt;}
.y1b3{bottom:382.256933pt;}
.y32c{bottom:382.258933pt;}
.y2e6{bottom:382.260933pt;}
.y108{bottom:382.266933pt;}
.yac{bottom:382.278933pt;}
.y23b{bottom:382.280933pt;}
.y286{bottom:382.282933pt;}
.y159{bottom:382.284933pt;}
.y188{bottom:382.286933pt;}
.y78{bottom:382.288933pt;}
.y1d7{bottom:382.290933pt;}
.y4c4{bottom:383.041067pt;}
.ydf{bottom:386.843600pt;}
.yc6{bottom:386.873600pt;}
.y374{bottom:390.249000pt;}
.y26{bottom:390.282933pt;}
.y446{bottom:392.261067pt;}
.y3ba{bottom:392.261933pt;}
.y400{bottom:392.327067pt;}
.y498{bottom:392.327133pt;}
.yd{bottom:394.286933pt;}
.y4c3{bottom:396.375733pt;}
.y346{bottom:398.242933pt;}
.y306{bottom:398.256933pt;}
.y1b2{bottom:398.258933pt;}
.y32b{bottom:398.260933pt;}
.y2e5{bottom:398.262933pt;}
.y107{bottom:398.268933pt;}
.yab{bottom:398.280933pt;}
.y1d6{bottom:398.282933pt;}
.y285{bottom:398.284933pt;}
.y158{bottom:398.286933pt;}
.y187{bottom:398.288933pt;}
.y77{bottom:398.290933pt;}
.y373{bottom:402.249867pt;}
.yde{bottom:402.845600pt;}
.yc5{bottom:402.875600pt;}
.y445{bottom:404.262067pt;}
.y3b9{bottom:404.262933pt;}
.y3ff{bottom:404.328067pt;}
.y25{bottom:406.284933pt;}
.y4c2{bottom:409.707733pt;}
.yc{bottom:410.288933pt;}
.y345{bottom:414.244933pt;}
.y372{bottom:414.250933pt;}
.y305{bottom:414.258933pt;}
.y1b1{bottom:414.260933pt;}
.y32a{bottom:414.262933pt;}
.y2e4{bottom:414.264933pt;}
.y267{bottom:414.268933pt;}
.y106{bottom:414.270933pt;}
.yaa{bottom:414.282933pt;}
.y1d5{bottom:414.284933pt;}
.y284{bottom:414.286933pt;}
.y76{bottom:414.288933pt;}
.y186{bottom:414.290933pt;}
.y139{bottom:414.292933pt;}
.y444{bottom:416.263067pt;}
.y3b8{bottom:416.263933pt;}
.y3fe{bottom:416.329067pt;}
.ydd{bottom:418.847600pt;}
.yc4{bottom:418.877600pt;}
.y24{bottom:422.286933pt;}
.y4c1{bottom:423.041067pt;}
.y371{bottom:426.251933pt;}
.yb{bottom:426.290933pt;}
.y443{bottom:428.264067pt;}
.y3b7{bottom:428.264933pt;}
.y3fd{bottom:428.330067pt;}
.y344{bottom:430.246933pt;}
.y304{bottom:430.260933pt;}
.y1b0{bottom:430.262933pt;}
.y329{bottom:430.264933pt;}
.y2e3{bottom:430.266933pt;}
.y266{bottom:430.270933pt;}
.y105{bottom:430.272933pt;}
.y185{bottom:430.282933pt;}
.ya9{bottom:430.284933pt;}
.y1d4{bottom:430.286933pt;}
.y283{bottom:430.288933pt;}
.y75{bottom:430.290933pt;}
.y217{bottom:430.292933pt;}
.ydc{bottom:434.849600pt;}
.yc3{bottom:434.869600pt;}
.y4c0{bottom:436.374400pt;}
.y370{bottom:438.252933pt;}
.y23{bottom:438.288933pt;}
.y442{bottom:440.265067pt;}
.y3b6{bottom:440.265933pt;}
.y3fc{bottom:440.331000pt;}
.y46b{bottom:440.331067pt;}
.ya{bottom:442.284933pt;}
.y138{bottom:442.292933pt;}
.y343{bottom:446.248933pt;}
.y157{bottom:446.252933pt;}
.y303{bottom:446.262933pt;}
.y1af{bottom:446.264933pt;}
.y328{bottom:446.266933pt;}
.y2e2{bottom:446.268933pt;}
.y74{bottom:446.270933pt;}
.y265{bottom:446.272933pt;}
.y104{bottom:446.274933pt;}
.y184{bottom:446.284933pt;}
.ya8{bottom:446.286933pt;}
.y1d3{bottom:446.288933pt;}
.y282{bottom:446.290933pt;}
.y4bf{bottom:449.707733pt;}
.y36f{bottom:450.253933pt;}
.ydb{bottom:450.851600pt;}
.yc2{bottom:450.871600pt;}
.y441{bottom:452.266067pt;}
.y3b5{bottom:452.266933pt;}
.y3fb{bottom:452.332067pt;}
.y22{bottom:454.290933pt;}
.y9{bottom:458.286933pt;}
.y216{bottom:458.292933pt;}
.y281{bottom:462.250933pt;}
.y156{bottom:462.254933pt;}
.y302{bottom:462.264933pt;}
.y1ae{bottom:462.266933pt;}
.y327{bottom:462.268933pt;}
.y2e1{bottom:462.270933pt;}
.y73{bottom:462.272933pt;}
.y264{bottom:462.274933pt;}
.y103{bottom:462.276933pt;}
.y183{bottom:462.286933pt;}
.ya7{bottom:462.288933pt;}
.y1d2{bottom:462.290933pt;}
.y4be{bottom:463.041067pt;}
.y440{bottom:464.267067pt;}
.y3b4{bottom:464.267933pt;}
.y3fa{bottom:464.333067pt;}
.y497{bottom:464.333133pt;}
.yda{bottom:466.853600pt;}
.yc1{bottom:466.873600pt;}
.y21{bottom:470.282933pt;}
.y36e{bottom:474.255933pt;}
.y8{bottom:474.288933pt;}
.y43f{bottom:476.268067pt;}
.y3b3{bottom:476.268867pt;}
.y496{bottom:476.334000pt;}
.y3f9{bottom:476.334067pt;}
.y46a{bottom:476.334133pt;}
.y4bd{bottom:476.374400pt;}
.y33c{bottom:478.248933pt;}
.y280{bottom:478.252933pt;}
.y155{bottom:478.256933pt;}
.y301{bottom:478.266933pt;}
.y1ad{bottom:478.268933pt;}
.y326{bottom:478.270933pt;}
.y2e0{bottom:478.272933pt;}
.y72{bottom:478.274933pt;}
.y263{bottom:478.276933pt;}
.y102{bottom:478.278933pt;}
.y137{bottom:478.284933pt;}
.y182{bottom:478.288933pt;}
.ya6{bottom:478.290933pt;}
.yd9{bottom:482.855600pt;}
.yc0{bottom:482.875600pt;}
.y36d{bottom:486.256933pt;}
.y20{bottom:486.284933pt;}
.y43e{bottom:488.269067pt;}
.y3b2{bottom:488.269933pt;}
.y3f8{bottom:488.335067pt;}
.y469{bottom:488.335133pt;}
.y4bc{bottom:489.707733pt;}
.y7{bottom:490.290933pt;}
.y33b{bottom:494.250933pt;}
.y27f{bottom:494.254933pt;}
.y154{bottom:494.258933pt;}
.y300{bottom:494.268933pt;}
.y1ac{bottom:494.270933pt;}
.y325{bottom:494.272933pt;}
.y2df{bottom:494.274933pt;}
.y71{bottom:494.276933pt;}
.y262{bottom:494.278933pt;}
.y101{bottom:494.280933pt;}
.y136{bottom:494.286933pt;}
.ya5{bottom:494.288933pt;}
.y181{bottom:494.290933pt;}
.y23a{bottom:494.292933pt;}
.y36c{bottom:498.257933pt;}
.yd8{bottom:498.857600pt;}
.ybf{bottom:498.877600pt;}
.y43d{bottom:500.270067pt;}
.y3b1{bottom:500.270933pt;}
.y468{bottom:500.336000pt;}
.y3f7{bottom:500.336067pt;}
.y1f{bottom:502.286933pt;}
.y4bb{bottom:503.039733pt;}
.y6{bottom:506.286933pt;}
.y33a{bottom:510.252933pt;}
.y27e{bottom:510.256933pt;}
.y36b{bottom:510.258933pt;}
.y153{bottom:510.260933pt;}
.y2ff{bottom:510.270933pt;}
.y1ab{bottom:510.272933pt;}
.y324{bottom:510.274933pt;}
.y2de{bottom:510.276933pt;}
.y70{bottom:510.278933pt;}
.y261{bottom:510.280933pt;}
.y100{bottom:510.282933pt;}
.y180{bottom:510.286933pt;}
.y135{bottom:510.288933pt;}
.ya4{bottom:510.290933pt;}
.y43c{bottom:512.271067pt;}
.y3b0{bottom:512.271933pt;}
.y467{bottom:512.337067pt;}
.y3f6{bottom:512.337133pt;}
.yd7{bottom:514.859600pt;}
.ybe{bottom:514.879600pt;}
.y1e{bottom:518.288933pt;}
.y36a{bottom:522.259867pt;}
.y5{bottom:522.288933pt;}
.y239{bottom:522.292933pt;}
.y43b{bottom:524.272067pt;}
.y3af{bottom:524.272933pt;}
.y3f5{bottom:524.338067pt;}
.y339{bottom:526.254933pt;}
.y27d{bottom:526.258933pt;}
.y152{bottom:526.262933pt;}
.y2fe{bottom:526.272933pt;}
.y1aa{bottom:526.274933pt;}
.ya3{bottom:526.276933pt;}
.y2dd{bottom:526.278933pt;}
.y6f{bottom:526.280933pt;}
.y260{bottom:526.282933pt;}
.yff{bottom:526.284933pt;}
.y17f{bottom:526.288933pt;}
.y134{bottom:526.290933pt;}
.y4ba{bottom:528.373067pt;}
.y49{bottom:532.066667pt;}
.y369{bottom:534.260933pt;}
.y1d{bottom:534.290933pt;}
.y43a{bottom:536.273067pt;}
.y3ae{bottom:536.273933pt;}
.y3f4{bottom:536.339067pt;}
.y4{bottom:538.290933pt;}
.y338{bottom:542.256933pt;}
.y27c{bottom:542.260933pt;}
.y133{bottom:542.264933pt;}
.y1fe{bottom:542.270933pt;}
.y2fd{bottom:542.274933pt;}
.y1a9{bottom:542.276933pt;}
.ya2{bottom:542.278933pt;}
.y2dc{bottom:542.280933pt;}
.y6e{bottom:542.282933pt;}
.y215{bottom:542.284933pt;}
.yfe{bottom:542.286933pt;}
.y17e{bottom:542.290933pt;}
.y368{bottom:546.261933pt;}
.y439{bottom:548.274067pt;}
.y3ad{bottom:548.274933pt;}
.y3f3{bottom:548.340067pt;}
.y1c{bottom:550.282933pt;}
.y3{bottom:554.292933pt;}
.yf2{bottom:556.585667pt;}
.y337{bottom:558.258933pt;}
.y27b{bottom:558.262933pt;}
.y132{bottom:558.266933pt;}
.y1fd{bottom:558.272933pt;}
.y238{bottom:558.276933pt;}
.y1a8{bottom:558.278933pt;}
.ya1{bottom:558.280933pt;}
.y2db{bottom:558.282933pt;}
.y6d{bottom:558.284933pt;}
.y214{bottom:558.286933pt;}
.yfd{bottom:558.288933pt;}
.y438{bottom:560.275067pt;}
.y3ac{bottom:560.275867pt;}
.y4b9{bottom:560.286067pt;}
.y466{bottom:560.341067pt;}
.y3f2{bottom:560.341133pt;}
.y1b{bottom:566.284933pt;}
.yf1{bottom:568.586667pt;}
.y367{bottom:570.263933pt;}
.y437{bottom:572.276067pt;}
.y3ab{bottom:572.276933pt;}
.y4b8{bottom:572.287067pt;}
.y3f1{bottom:572.342000pt;}
.y495{bottom:572.342067pt;}
.y465{bottom:572.342133pt;}
.y336{bottom:574.260933pt;}
.y27a{bottom:574.264933pt;}
.y131{bottom:574.268933pt;}
.y1fc{bottom:574.274933pt;}
.y237{bottom:574.278933pt;}
.y1a7{bottom:574.280933pt;}
.ya0{bottom:574.282933pt;}
.y2da{bottom:574.284933pt;}
.y6c{bottom:574.286933pt;}
.y213{bottom:574.288933pt;}
.yfc{bottom:574.290933pt;}
.y366{bottom:582.264933pt;}
.y1a{bottom:582.286933pt;}
.y2{bottom:582.293333pt;}
.y436{bottom:584.277067pt;}
.y3aa{bottom:584.277933pt;}
.y4b7{bottom:584.288067pt;}
.y3f0{bottom:584.343067pt;}
.y464{bottom:584.343133pt;}
.y24d{bottom:590.252933pt;}
.y335{bottom:590.262933pt;}
.y22b{bottom:590.264933pt;}
.y279{bottom:590.266933pt;}
.y130{bottom:590.270933pt;}
.y2a7{bottom:590.272933pt;}
.y1fb{bottom:590.276933pt;}
.y236{bottom:590.280933pt;}
.yfb{bottom:590.282933pt;}
.y9f{bottom:590.284933pt;}
.y2d9{bottom:590.286933pt;}
.y6b{bottom:590.288933pt;}
.y212{bottom:590.290933pt;}
.y365{bottom:594.265867pt;}
.y435{bottom:596.278067pt;}
.y3a9{bottom:596.278933pt;}
.y4b6{bottom:596.289067pt;}
.y463{bottom:596.344000pt;}
.y3ef{bottom:596.344067pt;}
.y24c{bottom:606.254933pt;}
.y334{bottom:606.264933pt;}
.y22a{bottom:606.266933pt;}
.y278{bottom:606.268933pt;}
.y12f{bottom:606.272933pt;}
.y2a6{bottom:606.274933pt;}
.y25f{bottom:606.276933pt;}
.y1fa{bottom:606.278933pt;}
.y235{bottom:606.282933pt;}
.yfa{bottom:606.284933pt;}
.y9e{bottom:606.286933pt;}
.y2d8{bottom:606.288933pt;}
.y6a{bottom:606.290933pt;}
.y434{bottom:608.279067pt;}
.y3a8{bottom:608.279933pt;}
.y4b5{bottom:608.290067pt;}
.y494{bottom:608.345000pt;}
.y3ee{bottom:608.345067pt;}
.y364{bottom:618.267933pt;}
.y433{bottom:620.280067pt;}
.y3a7{bottom:620.280933pt;}
.y4b4{bottom:620.291133pt;}
.y3ed{bottom:620.346067pt;}
.y24b{bottom:622.256933pt;}
.y17d{bottom:622.260933pt;}
.y333{bottom:622.266933pt;}
.y229{bottom:622.268933pt;}
.y277{bottom:622.270933pt;}
.y12e{bottom:622.274933pt;}
.y2a5{bottom:622.276933pt;}
.y25e{bottom:622.278933pt;}
.y1f9{bottom:622.280933pt;}
.y69{bottom:622.284933pt;}
.yf9{bottom:622.286933pt;}
.y9d{bottom:622.288933pt;}
.y2d7{bottom:622.290933pt;}
.y48{bottom:627.210133pt;}
.y363{bottom:630.268933pt;}
.y432{bottom:632.281067pt;}
.y47f{bottom:632.281133pt;}
.y3a6{bottom:632.281933pt;}
.y4b3{bottom:632.292067pt;}
.y3ec{bottom:632.347067pt;}
.y24a{bottom:638.258933pt;}
.y17c{bottom:638.262933pt;}
.y2d6{bottom:638.268933pt;}
.y228{bottom:638.270933pt;}
.y276{bottom:638.272933pt;}
.y12d{bottom:638.276933pt;}
.y2a4{bottom:638.278933pt;}
.y25d{bottom:638.280933pt;}
.y1f8{bottom:638.282933pt;}
.y68{bottom:638.286933pt;}
.yf8{bottom:638.288933pt;}
.y9c{bottom:638.290933pt;}
.y47{bottom:639.210133pt;}
.y362{bottom:642.269933pt;}
.y431{bottom:644.282067pt;}
.y3a5{bottom:644.282933pt;}
.y4b2{bottom:644.293000pt;}
.y3eb{bottom:644.348067pt;}
.y462{bottom:644.348133pt;}
.y46{bottom:651.210133pt;}
.y249{bottom:654.260933pt;}
.y17b{bottom:654.264933pt;}
.y9b{bottom:654.268933pt;}
.y2d5{bottom:654.270933pt;}
.y227{bottom:654.272933pt;}
.y275{bottom:654.274933pt;}
.y12c{bottom:654.278933pt;}
.y2a3{bottom:654.280933pt;}
.y25c{bottom:654.282933pt;}
.y1f7{bottom:654.284933pt;}
.y67{bottom:654.288933pt;}
.yf7{bottom:654.290933pt;}
.y323{bottom:654.292933pt;}
.y47e{bottom:656.283067pt;}
.y430{bottom:656.283133pt;}
.y3a4{bottom:656.283933pt;}
.y4b1{bottom:656.294000pt;}
.y3ea{bottom:656.349067pt;}
.y461{bottom:656.349133pt;}
.y45{bottom:663.210133pt;}
.y361{bottom:666.271933pt;}
.y47d{bottom:668.284067pt;}
.y42f{bottom:668.284133pt;}
.y3a3{bottom:668.284867pt;}
.y4b0{bottom:668.295067pt;}
.y3e9{bottom:668.350067pt;}
.y248{bottom:670.262933pt;}
.y17a{bottom:670.266933pt;}
.y9a{bottom:670.270933pt;}
.y2d4{bottom:670.272933pt;}
.y226{bottom:670.274933pt;}
.y274{bottom:670.276933pt;}
.y2be{bottom:670.278933pt;}
.y12b{bottom:670.280933pt;}
.y2a2{bottom:670.282933pt;}
.yf6{bottom:670.284933pt;}
.y1f6{bottom:670.286933pt;}
.y66{bottom:670.290933pt;}
.y1a6{bottom:670.292933pt;}
.y44{bottom:675.210133pt;}
.y360{bottom:678.272933pt;}
.y42e{bottom:680.285067pt;}
.y3a2{bottom:680.285933pt;}
.y4af{bottom:680.296067pt;}
.y3e8{bottom:680.351000pt;}
.y460{bottom:680.351067pt;}
.y322{bottom:682.292933pt;}
.y247{bottom:686.264933pt;}
.y179{bottom:686.268933pt;}
.y1d1{bottom:686.270933pt;}
.y99{bottom:686.272933pt;}
.y2d3{bottom:686.274933pt;}
.y225{bottom:686.276933pt;}
.y273{bottom:686.278933pt;}
.y2bd{bottom:686.280933pt;}
.y12a{bottom:686.282933pt;}
.y2a1{bottom:686.284933pt;}
.y65{bottom:686.286933pt;}
.y1f5{bottom:686.288933pt;}
.y211{bottom:686.290933pt;}
.y2fc{bottom:686.292933pt;}
.y43{bottom:687.210133pt;}
.y35f{bottom:690.273933pt;}
.y42d{bottom:692.286067pt;}
.y3a1{bottom:692.286933pt;}
.y4ae{bottom:692.297067pt;}
.y3e7{bottom:692.352067pt;}
.y1a5{bottom:698.292933pt;}
.y42{bottom:699.210133pt;}
.y246{bottom:702.266933pt;}
.y178{bottom:702.270933pt;}
.y1d0{bottom:702.272933pt;}
.y98{bottom:702.274933pt;}
.y2d2{bottom:702.276933pt;}
.y224{bottom:702.278933pt;}
.y272{bottom:702.280933pt;}
.y2bc{bottom:702.282933pt;}
.y129{bottom:702.284933pt;}
.y2a0{bottom:702.286933pt;}
.y64{bottom:702.288933pt;}
.y1f4{bottom:702.290933pt;}
.y42c{bottom:704.287000pt;}
.y47c{bottom:704.287067pt;}
.y3a0{bottom:704.287933pt;}
.y4ad{bottom:704.298067pt;}
.y3e6{bottom:704.353067pt;}
.y41{bottom:711.210133pt;}
.y35e{bottom:714.275933pt;}
.y2fb{bottom:714.292933pt;}
.y47b{bottom:716.288067pt;}
.y42b{bottom:716.288133pt;}
.y39f{bottom:716.288867pt;}
.y4ac{bottom:716.299067pt;}
.y3e5{bottom:716.354067pt;}
.y321{bottom:718.248933pt;}
.y245{bottom:718.268933pt;}
.y177{bottom:718.272933pt;}
.y1cf{bottom:718.274933pt;}
.y97{bottom:718.276933pt;}
.y1f3{bottom:718.278933pt;}
.y223{bottom:718.280933pt;}
.y271{bottom:718.282933pt;}
.y2bb{bottom:718.284933pt;}
.y128{bottom:718.286933pt;}
.y29f{bottom:718.288933pt;}
.y63{bottom:718.290933pt;}
.y234{bottom:718.292933pt;}
.y40{bottom:723.210133pt;}
.y35d{bottom:726.276933pt;}
.y42a{bottom:728.289067pt;}
.y39e{bottom:728.289933pt;}
.y4ab{bottom:728.300067pt;}
.y45f{bottom:728.355067pt;}
.y3e4{bottom:728.355133pt;}
.y320{bottom:734.250933pt;}
.y1a4{bottom:734.268933pt;}
.y62{bottom:734.270933pt;}
.y176{bottom:734.274933pt;}
.y1ce{bottom:734.276933pt;}
.y96{bottom:734.278933pt;}
.y1f2{bottom:734.280933pt;}
.y222{bottom:734.282933pt;}
.y270{bottom:734.284933pt;}
.y2ba{bottom:734.286933pt;}
.y127{bottom:734.288933pt;}
.y29e{bottom:734.290933pt;}
.y3f{bottom:735.210133pt;}
.y35c{bottom:738.277933pt;}
.y429{bottom:740.290067pt;}
.y39d{bottom:740.290933pt;}
.y4aa{bottom:740.301067pt;}
.y493{bottom:740.356000pt;}
.y3e3{bottom:740.356067pt;}
.y233{bottom:746.292933pt;}
.y3e{bottom:747.210133pt;}
.y31f{bottom:750.252933pt;}
.y29d{bottom:750.254933pt;}
.y2fa{bottom:750.268933pt;}
.y1a3{bottom:750.270933pt;}
.y61{bottom:750.272933pt;}
.y175{bottom:750.276933pt;}
.y1cd{bottom:750.278933pt;}
.y95{bottom:750.280933pt;}
.y1f1{bottom:750.282933pt;}
.y221{bottom:750.284933pt;}
.y26f{bottom:750.286933pt;}
.y2b9{bottom:750.288933pt;}
.y126{bottom:750.290933pt;}
.y428{bottom:752.291067pt;}
.y39c{bottom:752.291933pt;}
.y4a9{bottom:752.302067pt;}
.y492{bottom:752.357000pt;}
.y3e2{bottom:752.357067pt;}
.y3d{bottom:759.210133pt;}
.y35b{bottom:762.279933pt;}
.y427{bottom:764.292000pt;}
.y47a{bottom:764.292133pt;}
.y39b{bottom:764.292933pt;}
.y4a8{bottom:764.303067pt;}
.y491{bottom:764.358000pt;}
.y3e1{bottom:764.358067pt;}
.y31e{bottom:766.254933pt;}
.y29c{bottom:766.256933pt;}
.y2f9{bottom:766.270933pt;}
.y1a2{bottom:766.272933pt;}
.y60{bottom:766.274933pt;}
.y174{bottom:766.278933pt;}
.y1cc{bottom:766.280933pt;}
.y94{bottom:766.282933pt;}
.y1f0{bottom:766.284933pt;}
.y220{bottom:766.286933pt;}
.y26e{bottom:766.288933pt;}
.y125{bottom:766.290933pt;}
.y151{bottom:766.292933pt;}
.y3c{bottom:771.210133pt;}
.y35a{bottom:774.280933pt;}
.y426{bottom:776.293000pt;}
.y479{bottom:776.293067pt;}
.y39a{bottom:776.293933pt;}
.y4a7{bottom:776.304067pt;}
.y3e0{bottom:776.359067pt;}
.y3b{bottom:778.410133pt;}
.y124{bottom:782.218933pt;}
.y31d{bottom:782.256933pt;}
.y29b{bottom:782.258933pt;}
.y2f8{bottom:782.272933pt;}
.y1a1{bottom:782.274933pt;}
.y5f{bottom:782.276933pt;}
.y173{bottom:782.280933pt;}
.y1cb{bottom:782.282933pt;}
.y93{bottom:782.284933pt;}
.y1ef{bottom:782.286933pt;}
.y21f{bottom:782.288933pt;}
.y26d{bottom:782.290933pt;}
.y359{bottom:786.281933pt;}
.y478{bottom:788.294067pt;}
.y425{bottom:788.294133pt;}
.y399{bottom:788.294933pt;}
.y4a6{bottom:788.305067pt;}
.y3df{bottom:788.360067pt;}
.y150{bottom:794.292933pt;}
.y3a{bottom:794.410133pt;}
.y123{bottom:798.220933pt;}
.y31c{bottom:798.258933pt;}
.y29a{bottom:798.260933pt;}
.y26c{bottom:798.274933pt;}
.y1a0{bottom:798.276933pt;}
.y5e{bottom:798.278933pt;}
.y172{bottom:798.282933pt;}
.y1ca{bottom:798.284933pt;}
.y92{bottom:798.286933pt;}
.y1ee{bottom:798.288933pt;}
.y21e{bottom:798.290933pt;}
.y342{bottom:798.292933pt;}
.y424{bottom:800.295067pt;}
.y398{bottom:800.295933pt;}
.y4a5{bottom:800.306067pt;}
.y3de{bottom:800.361067pt;}
.y358{bottom:810.283933pt;}
.y39{bottom:810.410133pt;}
.y423{bottom:812.296067pt;}
.y397{bottom:812.296867pt;}
.y4a4{bottom:812.307067pt;}
.y3dd{bottom:812.362067pt;}
.y122{bottom:814.222933pt;}
.y31b{bottom:814.260933pt;}
.y299{bottom:814.262933pt;}
.y26b{bottom:814.276933pt;}
.y19f{bottom:814.278933pt;}
.y5d{bottom:814.280933pt;}
.y21d{bottom:814.282933pt;}
.y171{bottom:814.284933pt;}
.y1c9{bottom:814.286933pt;}
.y91{bottom:814.288933pt;}
.y1ed{bottom:814.290933pt;}
.y357{bottom:822.284867pt;}
.y477{bottom:824.297067pt;}
.y422{bottom:824.297133pt;}
.y396{bottom:824.298000pt;}
.y4a3{bottom:824.308067pt;}
.y3dc{bottom:824.363067pt;}
.y341{bottom:826.292933pt;}
.y121{bottom:830.224933pt;}
.y2d1{bottom:830.254933pt;}
.y31a{bottom:830.262933pt;}
.y298{bottom:830.264933pt;}
.y25b{bottom:830.266933pt;}
.y14f{bottom:830.278933pt;}
.y19e{bottom:830.280933pt;}
.y5c{bottom:830.282933pt;}
.y21c{bottom:830.284933pt;}
.y170{bottom:830.286933pt;}
.y1c8{bottom:830.288933pt;}
.y90{bottom:830.290933pt;}
.y356{bottom:834.285933pt;}
.y421{bottom:836.298067pt;}
.y395{bottom:836.298933pt;}
.y4a2{bottom:836.309067pt;}
.y3db{bottom:836.364067pt;}
.y38{bottom:842.404800pt;}
.y120{bottom:846.226933pt;}
.y2d0{bottom:846.256933pt;}
.y319{bottom:846.264933pt;}
.y297{bottom:846.266933pt;}
.y25a{bottom:846.268933pt;}
.y210{bottom:846.274933pt;}
.y14e{bottom:846.280933pt;}
.y19d{bottom:846.282933pt;}
.y5b{bottom:846.284933pt;}
.y21b{bottom:846.286933pt;}
.y16f{bottom:846.288933pt;}
.y8f{bottom:846.290933pt;}
.yf5{bottom:846.292933pt;}
.y420{bottom:848.299067pt;}
.y394{bottom:848.299933pt;}
.y4a1{bottom:848.310067pt;}
.y490{bottom:848.365000pt;}
.y3da{bottom:848.365067pt;}
.y355{bottom:858.287933pt;}
.y41f{bottom:860.300067pt;}
.y393{bottom:860.300933pt;}
.y4a0{bottom:860.311067pt;}
.y48f{bottom:860.366000pt;}
.y3d9{bottom:860.366067pt;}
.y11f{bottom:862.228933pt;}
.y2cf{bottom:862.258933pt;}
.y318{bottom:862.266933pt;}
.y296{bottom:862.268933pt;}
.y259{bottom:862.270933pt;}
.y20f{bottom:862.276933pt;}
.y14d{bottom:862.282933pt;}
.y19c{bottom:862.284933pt;}
.y5a{bottom:862.286933pt;}
.y21a{bottom:862.288933pt;}
.y16e{bottom:862.290933pt;}
.y8e{bottom:862.292933pt;}
.y37{bottom:863.740800pt;}
.y354{bottom:870.288867pt;}
.y476{bottom:872.301000pt;}
.y41e{bottom:872.301067pt;}
.y392{bottom:872.301933pt;}
.y49f{bottom:872.312067pt;}
.y3d8{bottom:872.367067pt;}
.yf4{bottom:874.292933pt;}
.y11e{bottom:878.230933pt;}
.y2ce{bottom:878.260933pt;}
.y317{bottom:878.268933pt;}
.y295{bottom:878.270933pt;}
.y258{bottom:878.272933pt;}
.y20e{bottom:878.278933pt;}
.y14c{bottom:878.284933pt;}
.y19b{bottom:878.286933pt;}
.y16d{bottom:878.287600pt;}
.y59{bottom:878.288933pt;}
.y219{bottom:878.290933pt;}
.y353{bottom:882.289933pt;}
.y41d{bottom:884.302067pt;}
.y475{bottom:884.302133pt;}
.y391{bottom:884.302933pt;}
.y49e{bottom:884.313000pt;}
.y3d7{bottom:884.368067pt;}
.y36{bottom:885.076800pt;}
.y8d{bottom:890.292933pt;}
.y11d{bottom:894.232933pt;}
.y2cd{bottom:894.262933pt;}
.y316{bottom:894.270933pt;}
.y294{bottom:894.272933pt;}
.y257{bottom:894.274933pt;}
.y20d{bottom:894.280933pt;}
.y14b{bottom:894.286933pt;}
.y19a{bottom:894.288933pt;}
.y16c{bottom:894.289600pt;}
.y58{bottom:894.290933pt;}
.y1c7{bottom:894.292933pt;}
.y41c{bottom:896.303067pt;}
.y390{bottom:896.303933pt;}
.y49d{bottom:896.314000pt;}
.y3d6{bottom:896.369067pt;}
.y352{bottom:906.291933pt;}
.y41b{bottom:908.304067pt;}
.y38f{bottom:908.304933pt;}
.y49c{bottom:908.315067pt;}
.y3d5{bottom:908.370067pt;}
.y11c{bottom:910.234933pt;}
.y2cc{bottom:910.264933pt;}
.y315{bottom:910.272933pt;}
.y293{bottom:910.274933pt;}
.y256{bottom:910.276933pt;}
.y20c{bottom:910.282933pt;}
.y57{bottom:910.288933pt;}
.yf3{bottom:910.290933pt;}
.y16b{bottom:910.291600pt;}
.y232{bottom:910.294933pt;}
.y351{bottom:918.292933pt;}
.y4d{bottom:919.626267pt;}
.y41a{bottom:920.305067pt;}
.y474{bottom:920.305133pt;}
.y38e{bottom:920.305933pt;}
.y49b{bottom:920.316067pt;}
.y3d4{bottom:920.371067pt;}
.y11b{bottom:926.236933pt;}
.y2cb{bottom:926.266933pt;}
.y314{bottom:926.274933pt;}
.y292{bottom:926.276933pt;}
.y8c{bottom:926.278933pt;}
.y20b{bottom:926.284933pt;}
.y56{bottom:926.290933pt;}
.y1c6{bottom:926.292933pt;}
.y16a{bottom:926.293600pt;}
.y231{bottom:926.296933pt;}
.y419{bottom:932.306067pt;}
.y473{bottom:932.306133pt;}
.y38d{bottom:932.306933pt;}
.y49a{bottom:932.317067pt;}
.y3d3{bottom:932.372067pt;}
.y4c{bottom:932.959600pt;}
.y11a{bottom:942.238933pt;}
.y2ca{bottom:942.268933pt;}
.y313{bottom:942.276933pt;}
.y291{bottom:942.278933pt;}
.y8b{bottom:942.280933pt;}
.y20a{bottom:942.286933pt;}
.y55{bottom:942.292933pt;}
.y169{bottom:942.295600pt;}
.y230{bottom:942.298933pt;}
.y472{bottom:944.307067pt;}
.y418{bottom:944.307133pt;}
.y38c{bottom:944.307933pt;}
.y499{bottom:944.318067pt;}
.y3d2{bottom:944.373067pt;}
.y4b{bottom:948.959600pt;}
.y4a{bottom:964.959600pt;}
.yb8{bottom:968.000000pt;}
.y53{bottom:968.692933pt;}
.yb9{bottom:968.959600pt;}
.hb{height:20.204167pt;}
.he{height:31.083333pt;}
.hf{height:38.521484pt;}
.h10{height:38.521751pt;}
.h25{height:38.522018pt;}
.h17{height:38.525484pt;}
.h1e{height:38.529484pt;}
.h1f{height:38.545484pt;}
.h2{height:38.828125pt;}
.h1{height:38.854167pt;}
.h26{height:39.009484pt;}
.hd{height:39.404167pt;}
.h3{height:49.027344pt;}
.h13{height:49.035344pt;}
.h11{height:49.043344pt;}
.h1c{height:49.048677pt;}
.h4{height:49.051344pt;}
.h5{height:49.059344pt;}
.h7{height:49.067344pt;}
.h8{height:49.075344pt;}
.h16{height:49.083344pt;}
.h15{height:49.091344pt;}
.h12{height:49.099344pt;}
.h6{height:49.115344pt;}
.h14{height:49.123344pt;}
.h20{height:49.131344pt;}
.h1a{height:49.139344pt;}
.h1d{height:49.155344pt;}
.h1b{height:49.171344pt;}
.h23{height:49.179344pt;}
.h21{height:49.187344pt;}
.h22{height:49.195344pt;}
.h18{height:49.211344pt;}
.ha{height:49.238281pt;}
.h24{height:49.307344pt;}
.h19{height:49.323344pt;}
.h9{height:54.359375pt;}
.hc{height:65.062500pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:64.005333pt;}
.x3{left:77.333333pt;}
.x18{left:82.667000pt;}
.x10{left:86.144000pt;}
.xf{left:96.000000pt;}
.x9{left:136.229333pt;}
.x15{left:182.738933pt;}
.x17{left:186.436800pt;}
.x2{left:195.091733pt;}
.xc{left:197.486933pt;}
.x1{left:397.371733pt;}
.x5{left:415.999467pt;}
.x11{left:421.770133pt;}
.x7{left:429.333333pt;}
.x19{left:434.689000pt;}
.xd{left:438.139467pt;}
.x14{left:446.591200pt;}
.xe{left:447.995467pt;}
.xb{left:460.669867pt;}
.x12{left:476.836800pt;}
.x13{left:530.419333pt;}
.x6{left:532.893200pt;}
.x1a{left:558.072267pt;}
.x16{left:561.034533pt;}
.xa{left:729.753867pt;}
.x8{left:776.253867pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  