
    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_fb6237e23a3b0e6eaba71e37.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_b512ccdc8a1685470828fe08.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_1314e5645c91943283e42488.woff2')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_add3381d01f97197c4e536df.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c791b305cdceaf8588aeac39.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734375;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;}
.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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:18.000000px;}
.ls7{letter-spacing:22.500000px;}
.ls9{letter-spacing:27.000000px;}
.lsb{letter-spacing:40.500000px;}
.ls6{letter-spacing:45.000000px;}
.ls1{letter-spacing:64.511718px;}
.ls5{letter-spacing:82.511718px;}
.ls4{letter-spacing:87.011718px;}
.ls2{letter-spacing:91.511718px;}
.lsa{letter-spacing:100.511718px;}
.ls3{letter-spacing:105.011718px;}
.lsd{letter-spacing:109.511718px;}
.lsc{letter-spacing:154.511718px;}
.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;}
}
.ws15{word-spacing:-0.120000px;}
.ws9{word-spacing:-0.084000px;}
.ws3b{word-spacing:-0.072000px;}
.ws14{word-spacing:0.000000px;}
.ws7{word-spacing:17.927966px;}
.ws5{word-spacing:17.927977px;}
.ws4f{word-spacing:17.927986px;}
.wsb{word-spacing:17.927988px;}
.ws18{word-spacing:17.927997px;}
.ws10{word-spacing:17.927999px;}
.ws8{word-spacing:17.928000px;}
.ws2a{word-spacing:17.928002px;}
.ws6{word-spacing:17.928011px;}
.ws48{word-spacing:17.928020px;}
.ws37{word-spacing:17.928022px;}
.ws66{word-spacing:17.928033px;}
.ws16{word-spacing:17.928034px;}
.ws22{word-spacing:20.867739px;}
.ws6b{word-spacing:20.867810px;}
.ws52{word-spacing:20.867822px;}
.ws69{word-spacing:20.867823px;}
.ws6a{word-spacing:20.867837px;}
.ws1b{word-spacing:20.870348px;}
.ws23{word-spacing:20.870429px;}
.ws57{word-spacing:20.870440px;}
.ws35{word-spacing:20.870446px;}
.ws3d{word-spacing:20.870451px;}
.ws4c{word-spacing:20.873015px;}
.ws33{word-spacing:20.878214px;}
.ws13{word-spacing:20.880845px;}
.wse{word-spacing:20.886039px;}
.ws3a{word-spacing:22.427966px;}
.ws12{word-spacing:22.427977px;}
.ws55{word-spacing:22.427987px;}
.ws1c{word-spacing:22.427988px;}
.ws26{word-spacing:22.427997px;}
.wsd{word-spacing:22.427999px;}
.ws2d{word-spacing:22.428000px;}
.ws31{word-spacing:22.428002px;}
.ws2c{word-spacing:22.428011px;}
.ws24{word-spacing:22.428021px;}
.ws21{word-spacing:22.428033px;}
.ws2{word-spacing:26.891967px;}
.ws4{word-spacing:26.891969px;}
.ws3{word-spacing:26.891971px;}
.ws1{word-spacing:26.892000px;}
.ws2e{word-spacing:26.927965px;}
.ws30{word-spacing:26.927977px;}
.ws47{word-spacing:26.927978px;}
.ws53{word-spacing:26.927987px;}
.ws28{word-spacing:26.927988px;}
.ws45{word-spacing:26.927997px;}
.ws29{word-spacing:26.927999px;}
.ws1e{word-spacing:26.928000px;}
.ws3f{word-spacing:26.928002px;}
.ws41{word-spacing:26.928011px;}
.ws60{word-spacing:26.928022px;}
.ws4a{word-spacing:26.928023px;}
.ws34{word-spacing:29.831838px;}
.ws4b{word-spacing:29.834376px;}
.ws40{word-spacing:29.834381px;}
.ws56{word-spacing:29.834400px;}
.ws67{word-spacing:29.842149px;}
.ws68{word-spacing:29.842266px;}
.ws65{word-spacing:29.856563px;}
.ws50{word-spacing:31.427965px;}
.wsc{word-spacing:31.427977px;}
.ws25{word-spacing:31.427987px;}
.wsf{word-spacing:31.427988px;}
.ws3e{word-spacing:31.427999px;}
.ws11{word-spacing:31.428000px;}
.ws44{word-spacing:31.428011px;}
.ws39{word-spacing:31.428022px;}
.ws0{word-spacing:35.855977px;}
.ws49{word-spacing:35.927966px;}
.ws43{word-spacing:35.927977px;}
.ws20{word-spacing:35.927988px;}
.wsa{word-spacing:35.928000px;}
.ws38{word-spacing:35.928011px;}
.ws42{word-spacing:35.928022px;}
.ws5b{word-spacing:40.427965px;}
.ws36{word-spacing:40.427977px;}
.ws1d{word-spacing:40.427988px;}
.ws2f{word-spacing:40.428000px;}
.ws4d{word-spacing:40.428033px;}
.ws32{word-spacing:44.927988px;}
.ws46{word-spacing:44.928000px;}
.ws3c{word-spacing:44.928010px;}
.ws5e{word-spacing:44.928022px;}
.ws54{word-spacing:49.427987px;}
.ws51{word-spacing:49.427988px;}
.ws62{word-spacing:49.427999px;}
.ws27{word-spacing:49.428000px;}
.ws5d{word-spacing:49.428011px;}
.ws5f{word-spacing:53.927976px;}
.ws2b{word-spacing:53.928000px;}
.ws5c{word-spacing:58.427977px;}
.ws1f{word-spacing:58.427988px;}
.ws61{word-spacing:58.428000px;}
.ws64{word-spacing:62.927978px;}
.ws5a{word-spacing:62.927999px;}
.ws63{word-spacing:62.928022px;}
.ws59{word-spacing:67.427999px;}
.ws4e{word-spacing:71.928000px;}
.ws58{word-spacing:76.427989px;}
.ws19{word-spacing:2127.433207px;}
.ws17{word-spacing:2211.526957px;}
.ws1a{word-spacing:2335.523051px;}
._1{margin-left:-13.218751px;}
._0{margin-left:-10.687499px;}
._9{margin-left:-9.281249px;}
._3c{margin-left:-7.980175px;}
._45{margin-left:-6.563792px;}
._3{margin-left:-5.343716px;}
._f{margin-left:-4.324219px;}
._41{margin-left:-3.139305px;}
._2{margin-left:-1.951173px;}
._37{width:18.000002px;}
._5{width:22.500000px;}
._7{width:27.000002px;}
._4{width:30.919933px;}
._38{width:32.080076px;}
._6{width:36.000002px;}
._39{width:40.500002px;}
._3a{width:45.000002px;}
._44{width:48.023438px;}
._3d{width:49.500021px;}
._43{width:52.066406px;}
._3e{width:54.000000px;}
._47{width:58.500002px;}
._3b{width:63.000002px;}
._42{width:67.500010px;}
._46{width:72.000065px;}
._48{width:80.999996px;}
._3f{width:84.023438px;}
._40{width:102.023438px;}
._25{width:344.380511px;}
._10{width:595.325488px;}
._1a{width:743.245456px;}
._a{width:994.876305px;}
._13{width:1087.583369px;}
._21{width:1262.942672px;}
._1f{width:1267.970049px;}
._e{width:1317.716193px;}
._2f{width:1321.583335px;}
._35{width:1330.020841px;}
._1d{width:1347.985674px;}
._34{width:1358.075529px;}
._1e{width:1365.985675px;}
._33{width:1405.852863px;}
._29{width:1415.028611px;}
._31{width:1469.415363px;}
._20{width:1507.489581px;}
._23{width:1515.962236px;}
._1b{width:1559.661459px;}
._24{width:1569.891933px;}
._11{width:1583.427081px;}
._27{width:1586.028650px;}
._1c{width:1631.643886px;}
._12{width:1637.673179px;}
._28{width:1679.807949px;}
._18{width:1701.868487px;}
._19{width:1703.802081px;}
._17{width:1719.710293px;}
._14{width:1763.813800px;}
._2e{width:1775.239547px;}
._26{width:1803.786456px;}
._36{width:1811.028648px;}
._2b{width:1813.735676px;}
._16{width:1859.755207px;}
._2a{width:1861.688800px;}
._15{width:1870.794270px;}
._32{width:1933.513020px;}
._b{width:1949.579428px;}
._d{width:1961.638019px;}
._2d{width:1975.700519px;}
._22{width:1977.669270px;}
._30{width:1987.513020px;}
._2c{width:2001.716144px;}
._8{width:2019.610675px;}
._c{width:2071.641927px;}
.fc2{color:rgb(112,164,252);}
.fc1{color:rgb(60,120,216);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:72.000000px;}
.fs3{font-size:83.999997px;}
.fs1{font-size:108.000000px;}
.fs4{font-size:119.999997px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y2c0{bottom:11.765614px;}
.y2bd{bottom:11.765622px;}
.y2c9{bottom:11.765623px;}
.y29f{bottom:11.765625px;}
.y2a6{bottom:11.765627px;}
.y2ac{bottom:11.765629px;}
.y2cd{bottom:11.765634px;}
.y2b0{bottom:11.765637px;}
.y2b9{bottom:11.771474px;}
.y2d4{bottom:11.771479px;}
.y29a{bottom:11.771484px;}
.y2a2{bottom:11.771485px;}
.y2c2{bottom:11.771487px;}
.y2d1{bottom:11.771489px;}
.y2b3{bottom:11.771494px;}
.y298{bottom:12.416015px;}
.y2bc{bottom:32.460927px;}
.y2dc{bottom:32.460936px;}
.y2cc{bottom:32.460939px;}
.y2cf{bottom:32.460942px;}
.y2c8{bottom:32.460943px;}
.y2ab{bottom:32.460949px;}
.y2b8{bottom:32.466794px;}
.y2a5{bottom:32.466797px;}
.y29e{bottom:32.466798px;}
.y2bf{bottom:32.466800px;}
.y2d7{bottom:32.466804px;}
.y2af{bottom:32.466807px;}
.y2df{bottom:32.472654px;}
.y2a1{bottom:32.472657px;}
.y2b2{bottom:32.472664px;}
.y2b7{bottom:53.162098px;}
.y2cb{bottom:53.162109px;}
.y2bb{bottom:53.162112px;}
.y2c7{bottom:53.162113px;}
.y2aa{bottom:53.162119px;}
.y29d{bottom:53.167970px;}
.y2ae{bottom:53.167977px;}
.y208{bottom:60.621098px;}
.y1e{bottom:60.623288px;}
.yd0{bottom:60.624023px;}
.y29c{bottom:73.863282px;}
.y2b6{bottom:73.863284px;}
.y2a9{bottom:73.863289px;}
.y2a8{bottom:94.558594px;}
.y2c6{bottom:94.558604px;}
.y2b5{bottom:94.564454px;}
.y202{bottom:113.156242px;}
.y215{bottom:113.396483px;}
.y206{bottom:113.513678px;}
.y27b{bottom:113.630858px;}
.yb1{bottom:113.632327px;}
.y10d{bottom:113.988278px;}
.y2c5{bottom:115.253908px;}
.y24d{bottom:117.328117px;}
.y1c8{bottom:118.570312px;}
.y44{bottom:122.017088px;}
.y25d{bottom:123.626947px;}
.y299{bottom:125.402339px;}
.yf9{bottom:133.499992px;}
.y2c4{bottom:135.955079px;}
.yfc{bottom:137.393558px;}
.y2d6{bottom:139.201168px;}
.y1d3{bottom:139.385738px;}
.y1f1{bottom:143.967773px;}
.y201{bottom:144.205073px;}
.y178{bottom:144.442387px;}
.y205{bottom:144.562492px;}
.y207{bottom:144.600586px;}
.yb0{bottom:144.679688px;}
.y10c{bottom:145.035638px;}
.y43{bottom:147.215332px;}
.y24c{bottom:148.376947px;}
.ycf{bottom:149.261722px;}
.y1c7{bottom:149.616217px;}
.y9{bottom:151.892212px;}
.y158{bottom:151.892573px;}
.y25c{bottom:154.672852px;}
.y273{bottom:155.027348px;}
.y11b{bottom:158.535638px;}
.y297{bottom:162.978516px;}
.y101{bottom:163.816402px;}
.yf8{bottom:164.547367px;}
.ybe{bottom:164.903317px;}
.y90{bottom:165.377933px;}
.yfb{bottom:168.440918px;}
.y221{bottom:169.957028px;}
.y1d2{bottom:170.434567px;}
.y18b{bottom:170.551762px;}
.y42{bottom:172.413577px;}
.y234{bottom:174.896483px;}
.y1f0{bottom:175.013678px;}
.y200{bottom:175.253903px;}
.y177{bottom:175.488278px;}
.y212{bottom:175.529296px;}
.y204{bottom:175.608398px;}
.y209{bottom:175.649416px;}
.yaf{bottom:175.727048px;}
.y18f{bottom:175.728517px;}
.y10b{bottom:176.083012px;}
.y24b{bottom:179.422852px;}
.yce{bottom:180.307613px;}
.ye3{bottom:180.544928px;}
.y2d8{bottom:180.597653px;}
.y1c6{bottom:180.665033px;}
.y71{bottom:180.901612px;}
.y157{bottom:182.941403px;}
.y25b{bottom:185.718742px;}
.y272{bottom:186.076178px;}
.y11a{bottom:189.583012px;}
.y100{bottom:194.863763px;}
.yf7{bottom:195.594727px;}
.ybd{bottom:195.950677px;}
.y143{bottom:196.333012px;}
.y8f{bottom:196.425293px;}
.y41{bottom:197.611823px;}
.yfa{bottom:199.488278px;}
.y220{bottom:201.043951px;}
.y1d1{bottom:201.480473px;}
.y18a{bottom:201.600592px;}
.y233{bottom:205.945312px;}
.y1ef{bottom:206.062492px;}
.y1ff{bottom:206.299808px;}
.y176{bottom:206.537107px;}
.y214{bottom:206.575201px;}
.y210{bottom:206.654303px;}
.y203{bottom:206.695306px;}
.ybf{bottom:206.774408px;}
.y27a{bottom:206.777348px;}
.y10a{bottom:207.130373px;}
.y24a{bottom:210.468742px;}
.ycd{bottom:211.356442px;}
.ye2{bottom:211.593742px;}
.y1c5{bottom:211.751956px;}
.y70{bottom:211.948973px;}
.y156{bottom:213.987308px;}
.y25a{bottom:216.767572px;}
.y2d3{bottom:218.167968px;}
.y119{bottom:220.630373px;}
.y40{bottom:222.810052px;}
.y288{bottom:224.367187px;}
.yff{bottom:225.911137px;}
.yf6{bottom:226.642088px;}
.ybc{bottom:226.998053px;}
.y142{bottom:227.380373px;}
.y8e{bottom:227.472652px;}
.y21f{bottom:232.174807px;}
.y1d0{bottom:232.529302px;}
.y189{bottom:232.646483px;}
.y232{bottom:236.991217px;}
.y1ee{bottom:237.111323px;}
.y1fe{bottom:237.345698px;}
.y1a8{bottom:237.465817px;}
.y175{bottom:237.585938px;}
.y20f{bottom:237.703117px;}
.y18e{bottom:237.820312px;}
.yae{bottom:237.821783px;}
.y109{bottom:238.177733px;}
.y249{bottom:241.555666px;}
.ycc{bottom:242.402347px;}
.ye1{bottom:242.639648px;}
.y1c4{bottom:242.876947px;}
.y6f{bottom:242.996332px;}
.y155{bottom:245.036137px;}
.y259{bottom:247.816402px;}
.y3f{bottom:248.008298px;}
.y271{bottom:248.167973px;}
.y2ef{bottom:248.727541px;}
.y118{bottom:251.677733px;}
.yfe{bottom:256.958498px;}
.yf5{bottom:257.689447px;}
.y141{bottom:258.427733px;}
.y8d{bottom:258.520013px;}
.y2d5{bottom:259.564454px;}
.ybb{bottom:260.419196px;}
.y21e{bottom:263.217773px;}
.y1cf{bottom:263.616211px;}
.y188{bottom:263.695312px;}
.y231{bottom:268.037107px;}
.y1ed{bottom:268.157227px;}
.y1fd{bottom:268.394528px;}
.y1a7{bottom:268.511722px;}
.y174{bottom:268.631842px;}
.y20e{bottom:268.751947px;}
.yad{bottom:268.869142px;}
.y296{bottom:268.916021px;}
.y108{bottom:269.225092px;}
.y8{bottom:270.907103px;}
.y248{bottom:272.683598px;}
.y3e{bottom:273.206543px;}
.ycb{bottom:273.489256px;}
.ye0{bottom:273.688478px;}
.y1c3{bottom:273.925777px;}
.y6e{bottom:274.043707px;}
.y154{bottom:276.082028px;}
.y258{bottom:278.862307px;}
.y270{bottom:279.216803px;}
.y117{bottom:282.725092px;}
.y287{bottom:286.464848px;}
.yfd{bottom:288.005857px;}
.yf4{bottom:288.736823px;}
.y140{bottom:289.475092px;}
.y8c{bottom:289.567387px;}
.y2ee{bottom:290.282221px;}
.y21d{bottom:294.269528px;}
.yba{bottom:294.306886px;}
.y7{bottom:294.710078px;}
.y187{bottom:294.741217px;}
.y3d{bottom:298.404788px;}
.y230{bottom:299.085938px;}
.y1ec{bottom:299.203117px;}
.y1fc{bottom:299.443358px;}
.y1a6{bottom:299.560552px;}
.y173{bottom:299.677733px;}
.y20d{bottom:299.797853px;}
.yac{bottom:299.916503px;}
.y18d{bottom:299.917973px;}
.y107{bottom:300.272467px;}
.y247{bottom:303.732428px;}
.yca{bottom:304.617187px;}
.ydf{bottom:304.734367px;}
.y1c2{bottom:304.971683px;}
.y6d{bottom:305.091068px;}
.y153{bottom:307.130858px;}
.y257{bottom:309.908197px;}
.y26f{bottom:310.265617px;}
.y116{bottom:313.772467px;}
.y286{bottom:317.507812px;}
.yf3{bottom:319.784183px;}
.y13f{bottom:320.522467px;}
.y8b{bottom:320.614748px;}
.y3c{bottom:323.603033px;}
.yb9{bottom:325.433348px;}
.y186{bottom:325.790033px;}
.y21c{bottom:327.688481px;}
.y22f{bottom:330.134767px;}
.y1eb{bottom:330.290041px;}
.y1fb{bottom:330.489262px;}
.y1a5{bottom:330.609367px;}
.y172{bottom:330.726563px;}
.y20c{bottom:330.843742px;}
.y213{bottom:330.884761px;}
.y279{bottom:330.960938px;}
.yab{bottom:330.963863px;}
.y106{bottom:331.319828px;}
.y2ed{bottom:331.836916px;}
.y295{bottom:333.808598px;}
.y246{bottom:334.778317px;}
.yc9{bottom:335.704096px;}
.y1c1{bottom:336.020512px;}
.y6c{bottom:336.138427px;}
.y152{bottom:338.176762px;}
.y256{bottom:340.957028px;}
.y115{bottom:344.819828px;}
.yde{bottom:345.278316px;}
.y3b{bottom:348.801263px;}
.yf2{bottom:350.831543px;}
.y13e{bottom:351.569828px;}
.y12d{bottom:354.272467px;}
.yb8{bottom:356.520271px;}
.y1ce{bottom:356.835938px;}
.y185{bottom:359.208986px;}
.y22e{bottom:361.180657px;}
.y1ea{bottom:361.417973px;}
.y1fa{bottom:361.535152px;}
.y1a4{bottom:361.655272px;}
.y171{bottom:361.813471px;}
.y20b{bottom:361.892573px;}
.y18c{bottom:362.009768px;}
.yaa{bottom:362.011238px;}
.y105{bottom:362.367187px;}
.y294{bottom:364.857428px;}
.y245{bottom:365.824223px;}
.yc8{bottom:366.829102px;}
.y1c0{bottom:367.066402px;}
.y6b{bottom:367.185788px;}
.y151{bottom:369.225592px;}
.y255{bottom:372.005857px;}
.y26e{bottom:372.363278px;}
.y2ec{bottom:373.391596px;}
.y3a{bottom:373.999507px;}
.y2d2{bottom:374.126951px;}
.y114{bottom:375.867187px;}
.yf1{bottom:381.878902px;}
.y13d{bottom:382.617187px;}
.y8a{bottom:382.709468px;}
.y12c{bottom:385.319828px;}
.ydd{bottom:387.568366px;}
.yb7{bottom:387.686281px;}
.y1cd{bottom:387.884767px;}
.y22d{bottom:392.226563px;}
.y1e9{bottom:392.466803px;}
.y21b{bottom:392.583983px;}
.y1f9{bottom:392.622076px;}
.y1a3{bottom:392.701178px;}
.y170{bottom:392.941403px;}
.y20a{bottom:392.979496px;}
.ya9{bottom:393.058598px;}
.y104{bottom:393.414548px;}
.y293{bottom:395.906242px;}
.y244{bottom:396.873052px;}
.yc7{bottom:397.877933px;}
.y1bf{bottom:398.115233px;}
.y6a{bottom:398.233148px;}
.y39{bottom:399.197752px;}
.y150{bottom:400.271483px;}
.y26d{bottom:403.406242px;}
.y113{bottom:406.914548px;}
.y285{bottom:410.654303px;}
.y254{bottom:412.546866px;}
.yf0{bottom:412.926263px;}
.y13c{bottom:413.664548px;}
.y89{bottom:413.756842px;}
.y2eb{bottom:414.946291px;}
.y12b{bottom:416.367187px;}
.ydc{bottom:418.693358px;}
.yb6{bottom:418.852291px;}
.y1cc{bottom:418.930657px;}
.y22c{bottom:423.275392px;}
.y1e8{bottom:423.512693px;}
.y21a{bottom:423.632812px;}
.y1a2{bottom:423.749992px;}
.y16f{bottom:423.987307px;}
.ya8{bottom:424.105957px;}
.y184{bottom:424.107428px;}
.y38{bottom:424.395998px;}
.y103{bottom:424.461908px;}
.y292{bottom:426.955073px;}
.y243{bottom:427.959961px;}
.yc6{bottom:428.923823px;}
.y1be{bottom:429.161137px;}
.y69{bottom:429.280522px;}
.y14f{bottom:431.320312px;}
.y2d0{bottom:432.802734px;}
.y112{bottom:437.961908px;}
.y1d{bottom:438.594727px;}
.y284{bottom:441.697268px;}
.yef{bottom:443.973637px;}
.y13b{bottom:444.711908px;}
.y88{bottom:444.804202px;}
.y12a{bottom:447.414548px;}
.y37{bottom:449.594243px;}
.ydb{bottom:449.780266px;}
.yb5{bottom:449.978753px;}
.y1cb{bottom:449.979488px;}
.y2ce{bottom:453.503906px;}
.y22b{bottom:454.362301px;}
.y1e7{bottom:454.558598px;}
.y219{bottom:454.678717px;}
.y1f8{bottom:454.798823px;}
.y16e{bottom:455.033198px;}
.ya7{bottom:455.153318px;}
.y278{bottom:455.156242px;}
.y102{bottom:455.509283px;}
.y2ea{bottom:456.500971px;}
.y291{bottom:458.003903px;}
.y242{bottom:459.087892px;}
.yc5{bottom:460.011481px;}
.y1bd{bottom:460.209967px;}
.y68{bottom:460.327883px;}
.y14e{bottom:462.366217px;}
.y26c{bottom:465.503903px;}
.y111{bottom:469.009283px;}
.y1c{bottom:472.015871px;}
.y36{bottom:474.792488px;}
.yee{bottom:475.020998px;}
.y13a{bottom:475.759283px;}
.y87{bottom:475.851563px;}
.y129{bottom:478.461908px;}
.yda{bottom:480.908198px;}
.y1ca{bottom:481.025392px;}
.yb4{bottom:481.026128px;}
.y22a{bottom:485.490233px;}
.y1e6{bottom:485.645506px;}
.y218{bottom:485.724608px;}
.y1a1{bottom:485.844728px;}
.y16d{bottom:486.082027px;}
.y183{bottom:486.199222px;}
.ya6{bottom:486.200677px;}
.y6{bottom:488.633058px;}
.y290{bottom:489.046867px;}
.y241{bottom:490.133783px;}
.yc4{bottom:491.177491px;}
.y1bc{bottom:491.255858px;}
.y67{bottom:491.375243px;}
.y14d{bottom:493.415033px;}
.y26b{bottom:496.546867px;}
.y2e9{bottom:498.055666px;}
.y35{bottom:499.990718px;}
.y110{bottom:500.056643px;}
.y283{bottom:503.789063px;}
.yed{bottom:506.068358px;}
.y139{bottom:506.806643px;}
.y86{bottom:506.898922px;}
.y128{bottom:509.509282px;}
.yd9{bottom:511.995121px;}
.yb3{bottom:512.073488px;}
.y1c9{bottom:512.074223px;}
.y229{bottom:516.536137px;}
.y1e5{bottom:516.773438px;}
.y1a0{bottom:516.890618px;}
.y16c{bottom:517.130857px;}
.ya5{bottom:517.248052px;}
.y240{bottom:521.179688px;}
.yc3{bottom:522.303952px;}
.y1bb{bottom:522.304688px;}
.y66{bottom:522.422603px;}
.y28f{bottom:522.468746px;}
.y5{bottom:524.337528px;}
.y14c{bottom:524.460938px;}
.y34{bottom:525.188963px;}
.y10f{bottom:531.104002px;}
.y282{bottom:534.843742px;}
.y138{bottom:537.854002px;}
.y85{bottom:537.946283px;}
.yec{bottom:539.490236px;}
.y127{bottom:540.556643px;}
.y1b{bottom:542.085938px;}
.yd8{bottom:543.120113px;}
.yb2{bottom:545.494631px;}
.y228{bottom:547.623046px;}
.y1e4{bottom:547.822268px;}
.y217{bottom:547.860346px;}
.y19f{bottom:547.939448px;}
.y16b{bottom:548.176762px;}
.y211{bottom:548.217766px;}
.ya4{bottom:548.295412px;}
.y182{bottom:548.296867px;}
.y33{bottom:550.387207px;}
.y23f{bottom:552.228517px;}
.y2c3{bottom:553.171869px;}
.y1ba{bottom:553.350592px;}
.yc2{bottom:553.390876px;}
.y65{bottom:553.469978px;}
.y14b{bottom:555.509768px;}
.y26a{bottom:558.644527px;}
.y4{bottom:560.041998px;}
.y2e8{bottom:561.632816px;}
.y10e{bottom:562.151363px;}
.y281{bottom:565.886723px;}
.y137{bottom:568.901363px;}
.y84{bottom:568.993658px;}
.y126{bottom:571.604002px;}
.y1a{bottom:573.133298px;}
.yeb{bottom:573.377926px;}
.yd7{bottom:574.168942px;}
.y32{bottom:575.585452px;}
.y227{bottom:578.748052px;}
.y1e3{bottom:578.868158px;}
.y19e{bottom:578.988277px;}
.y253{bottom:579.026371px;}
.y16a{bottom:579.222652px;}
.y277{bottom:579.339848px;}
.ya3{bottom:579.342773px;}
.y23e{bottom:583.277348px;}
.y1b9{bottom:584.399408px;}
.y64{bottom:584.517337px;}
.y14a{bottom:586.596676px;}
.y269{bottom:589.693357px;}
.y136{bottom:599.948738px;}
.y83{bottom:600.041018px;}
.y31{bottom:600.783698px;}
.y125{bottom:602.651363px;}
.y19{bottom:604.180658px;}
.yea{bottom:604.543951px;}
.yd6{bottom:605.214848px;}
.y2e7{bottom:605.909176px;}
.y226{bottom:609.834961px;}
.y1e2{bottom:609.914062px;}
.y19d{bottom:610.034182px;}
.y252{bottom:610.154303px;}
.y169{bottom:610.271482px;}
.y181{bottom:610.388678px;}
.ya2{bottom:610.390133px;}
.y23d{bottom:614.323238px;}
.y28e{bottom:615.398436px;}
.y1b8{bottom:615.445312px;}
.y63{bottom:615.564698px;}
.y149{bottom:617.721683px;}
.y30{bottom:625.981928px;}
.y280{bottom:627.984367px;}
.y135{bottom:630.996098px;}
.y82{bottom:631.088377px;}
.y124{bottom:633.698738px;}
.y18{bottom:635.228033px;}
.ye9{bottom:635.709961px;}
.y2ca{bottom:635.964839px;}
.yd5{bottom:636.263678px;}
.y1e1{bottom:640.962893px;}
.y19c{bottom:641.080073px;}
.y251{bottom:641.200192px;}
.y168{bottom:641.320312px;}
.ya1{bottom:641.437492px;}
.y23c{bottom:645.369142px;}
.y1b7{bottom:646.494142px;}
.y62{bottom:646.612058px;}
.y2e6{bottom:647.463871px;}
.y148{bottom:648.770512px;}
.y2f{bottom:651.180173px;}
.y268{bottom:651.785152px;}
.y27f{bottom:659.033198px;}
.y134{bottom:662.043458px;}
.y81{bottom:662.135738px;}
.y123{bottom:664.746098px;}
.y17{bottom:666.275392px;}
.ye8{bottom:666.875971px;}
.yd4{bottom:667.309568px;}
.y1e0{bottom:672.011723px;}
.y19b{bottom:672.128902px;}
.y250{bottom:672.246098px;}
.y167{bottom:672.366217px;}
.ya0{bottom:672.484868px;}
.y180{bottom:672.486322px;}
.y2e{bottom:676.378418px;}
.y23b{bottom:676.417973px;}
.y1b6{bottom:677.540033px;}
.y61{bottom:677.659418px;}
.y147{bottom:682.190921px;}
.y267{bottom:682.833982px;}
.y2e5{bottom:689.018551px;}
.y133{bottom:693.090818px;}
.y80{bottom:693.183112px;}
.y3{bottom:694.925538px;}
.y122{bottom:695.793458px;}
.y16{bottom:697.322752px;}
.ye7{bottom:698.041996px;}
.yd3{bottom:698.358398px;}
.y2d{bottom:701.576662px;}
.y1df{bottom:703.057613px;}
.y19a{bottom:703.177733px;}
.y1f7{bottom:703.215826px;}
.y24f{bottom:703.294928px;}
.y166{bottom:703.412107px;}
.y9f{bottom:703.532228px;}
.y23a{bottom:707.466802px;}
.y1b5{bottom:708.588863px;}
.y60{bottom:708.706792px;}
.y2b4{bottom:714.931644px;}
.y27e{bottom:721.124992px;}
.y132{bottom:724.138178px;}
.y7f{bottom:724.230473px;}
.y146{bottom:725.534181px;}
.y2c{bottom:726.774908px;}
.y121{bottom:726.840818px;}
.ye6{bottom:729.208006px;}
.yd2{bottom:729.404303px;}
.y2e4{bottom:730.573246px;}
.y2{bottom:730.630008px;}
.y15{bottom:730.743896px;}
.y225{bottom:734.103518px;}
.y1de{bottom:734.144536px;}
.y199{bottom:734.223637px;}
.y1f6{bottom:734.343742px;}
.y165{bottom:734.460938px;}
.y17f{bottom:734.578118px;}
.y9e{bottom:734.579588px;}
.y2ba{bottom:735.632815px;}
.y239{bottom:738.512692px;}
.y1b4{bottom:739.675786px;}
.y5f{bottom:739.754152px;}
.y266{bottom:744.928717px;}
.y2b{bottom:751.973138px;}
.y27d{bottom:752.167973px;}
.y131{bottom:755.185552px;}
.y7e{bottom:755.277833px;}
.y2be{bottom:756.328128px;}
.y120{bottom:757.888178px;}
.ye5{bottom:760.374016px;}
.yd1{bottom:762.826166px;}
.y14{bottom:764.592038px;}
.y224{bottom:765.190426px;}
.y1dd{bottom:765.269527px;}
.y198{bottom:765.310546px;}
.y1f5{bottom:765.389648px;}
.y164{bottom:765.509768px;}
.y9d{bottom:765.626948px;}
.y238{bottom:769.558598px;}
.y1b3{bottom:770.800777px;}
.y5e{bottom:770.801513px;}
.y2e3{bottom:772.127926px;}
.y2c1{bottom:777.023440px;}
.y2a{bottom:777.171382px;}
.y145{bottom:777.279786px;}
.y28d{bottom:783.222652px;}
.y130{bottom:786.232912px;}
.y7d{bottom:786.325192px;}
.y11f{bottom:788.935552px;}
.ye4{bottom:793.873541px;}
.y1dc{bottom:796.318358px;}
.y216{bottom:796.356451px;}
.y197{bottom:796.435552px;}
.y163{bottom:796.555658px;}
.y9c{bottom:796.674322px;}
.y17e{bottom:796.675777px;}
.y13{bottom:798.013181px;}
.y237{bottom:800.607428px;}
.y5d{bottom:801.848872px;}
.y1b2{bottom:801.849608px;}
.y29{bottom:802.369627px;}
.y1{bottom:805.538085px;}
.y52{bottom:806.118158px;}
.y265{bottom:807.023438px;}
.y2e2{bottom:813.682621px;}
.y12f{bottom:817.280273px;}
.y7c{bottom:817.372552px;}
.y11e{bottom:819.982912px;}
.y27c{bottom:823.757811px;}
.y1db{bottom:827.367188px;}
.y196{bottom:827.484367px;}
.y24e{bottom:827.522461px;}
.y28{bottom:827.567873px;}
.y162{bottom:827.601562px;}
.y276{bottom:827.718742px;}
.y9b{bottom:827.721683px;}
.y51{bottom:831.316402px;}
.y236{bottom:831.694336px;}
.y1b1{bottom:832.895512px;}
.y5c{bottom:832.896248px;}
.y12{bottom:834.235106px;}
.y2a7{bottom:835.300773px;}
.y264{bottom:838.072268px;}
.y28c{bottom:845.320312px;}
.y12e{bottom:848.327633px;}
.y7b{bottom:848.419928px;}
.y144{bottom:850.577633px;}
.y11d{bottom:851.030273px;}
.y27{bottom:852.766118px;}
.y2e1{bottom:855.237301px;}
.y2ad{bottom:855.996086px;}
.y50{bottom:856.514648px;}
.y1da{bottom:858.413092px;}
.y223{bottom:858.454096px;}
.y195{bottom:858.533198px;}
.y161{bottom:858.650392px;}
.y17d{bottom:858.767573px;}
.y9a{bottom:858.769043px;}
.y5b{bottom:863.943607px;}
.y1b0{bottom:863.944342px;}
.y235{bottom:865.195316px;}
.y11{bottom:868.083247px;}
.y263{bottom:869.118158px;}
.y28b{bottom:876.363277px;}
.y2b1{bottom:876.691398px;}
.y26{bottom:877.964362px;}
.y7a{bottom:879.467287px;}
.y4f{bottom:881.712892px;}
.y11c{bottom:882.077633px;}
.y1d9{bottom:889.500001px;}
.y194{bottom:889.579103px;}
.y160{bottom:889.699223px;}
.y99{bottom:889.816402px;}
.y1af{bottom:894.990233px;}
.y5a{bottom:894.990968px;}
.y10{bottom:899.130622px;}
.y2e0{bottom:900.808586px;}
.y25{bottom:903.162592px;}
.y4e{bottom:906.911137px;}
.y79{bottom:910.514647px;}
.y193{bottom:920.624992px;}
.y1f4{bottom:920.666011px;}
.y15f{bottom:920.745113px;}
.y98{bottom:920.863762px;}
.y17c{bottom:920.865232px;}
.y59{bottom:926.038327px;}
.y1ae{bottom:926.039062px;}
.y24{bottom:928.360838px;}
.yf{bottom:930.177982px;}
.y262{bottom:931.212892px;}
.y4d{bottom:932.109367px;}
.y28a{bottom:938.455073px;}
.y78{bottom:941.562007px;}
.y1d8{bottom:951.673823px;}
.y192{bottom:951.711916px;}
.y1f3{bottom:951.791018px;}
.y15e{bottom:951.792488px;}
.y97{bottom:951.911137px;}
.y275{bottom:951.914062px;}
.y23{bottom:953.559082px;}
.y2a4{bottom:955.664061px;}
.y1ad{bottom:957.084967px;}
.y58{bottom:957.085688px;}
.y4c{bottom:957.307613px;}
.y2de{bottom:959.484373px;}
.ye{bottom:961.225343px;}
.y261{bottom:962.261723px;}
.y77{bottom:972.609367px;}
.y22{bottom:974.257327px;}
.y2a3{bottom:976.359373px;}
.y289{bottom:979.001946px;}
.y4b{bottom:982.505858px;}
.y1d7{bottom:982.722652px;}
.y222{bottom:982.760746px;}
.y15d{bottom:982.839848px;}
.y17b{bottom:982.957027px;}
.y96{bottom:982.958498px;}
.y57{bottom:988.133063px;}
.y1ac{bottom:988.133783px;}
.yc1{bottom:990.506831px;}
.yd{bottom:992.272702px;}
.y21{bottom:999.455567px;}
.y76{bottom:1003.656738px;}
.y4a{bottom:1007.704101px;}
.y1d6{bottom:1013.809570px;}
.y15c{bottom:1013.887207px;}
.y191{bottom:1013.888671px;}
.y95{bottom:1014.005859px;}
.y2db{bottom:1017.761720px;}
.y1ab{bottom:1019.179688px;}
.y56{bottom:1019.180419px;}
.yc{bottom:1023.320068px;}
.y260{bottom:1024.353516px;}
.y20{bottom:1024.653808px;}
.y49{bottom:1032.902343px;}
.yc0{bottom:1033.850096px;}
.y75{bottom:1034.704101px;}
.y1d5{bottom:1044.934571px;}
.y190{bottom:1044.975586px;}
.y94{bottom:1045.053222px;}
.y17a{bottom:1045.054688px;}
.y55{bottom:1050.227783px;}
.y1aa{bottom:1050.228516px;}
.yb{bottom:1054.367432px;}
.y29b{bottom:1055.332030px;}
.y25f{bottom:1055.402343px;}
.y48{bottom:1058.100586px;}
.y2dd{bottom:1059.152345px;}
.y74{bottom:1065.751465px;}
.y1d4{bottom:1075.980468px;}
.y15b{bottom:1075.981933px;}
.y1f2{bottom:1076.021485px;}
.y2a0{bottom:1076.027343px;}
.y274{bottom:1076.097655px;}
.y93{bottom:1076.100586px;}
.y47{bottom:1083.298828px;}
.y54{bottom:1083.648926px;}
.y1a9{bottom:1083.650390px;}
.y25e{bottom:1086.451171px;}
.ya{bottom:1087.788573px;}
.y1f{bottom:1091.444823px;}
.y2d9{bottom:1096.728516px;}
.y73{bottom:1099.172607px;}
.y15a{bottom:1107.029296px;}
.y179{bottom:1107.146484px;}
.y92{bottom:1107.147950px;}
.y46{bottom:1108.497071px;}
.y2da{bottom:1117.429688px;}
.y53{bottom:1126.992186px;}
.y45{bottom:1133.695312px;}
.y72{bottom:1135.394531px;}
.y159{bottom:1138.116211px;}
.y91{bottom:1138.195312px;}
.h12{height:36.445312px;}
.ha{height:36.451172px;}
.h9{height:39.896484px;}
.h13{height:57.146484px;}
.hf{height:57.152345px;}
.h5{height:63.949219px;}
.h4{height:64.546875px;}
.h6{height:74.607419px;}
.h11{height:77.841796px;}
.hc{height:77.847657px;}
.h2{height:95.923828px;}
.h3{height:96.820313px;}
.hb{height:98.542970px;}
.h8{height:106.582029px;}
.h7{height:107.625000px;}
.hd{height:119.238282px;}
.he{height:119.244141px;}
.h1{height:127.898438px;}
.h10{height:160.634766px;}
.h0{height:1263.000000px;}
.w2{width:153.000000px;}
.w3{width:205.875000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x3a{left:8.893879px;}
.x43{left:11.219238px;}
.x45{left:12.963867px;}
.x3d{left:14.198731px;}
.x37{left:16.083083px;}
.x40{left:17.204590px;}
.x4f{left:18.439453px;}
.x44{left:19.713867px;}
.x50{left:20.961914px;}
.x47{left:22.460449px;}
.x3c{left:23.466797px;}
.x49{left:25.453125px;}
.x46{left:27.206543px;}
.x42{left:28.208496px;}
.x4b{left:29.689453px;}
.x59{left:30.893555px;}
.x48{left:33.200684px;}
.x3e{left:35.195801px;}
.x41{left:37.445801px;}
.x3f{left:38.957519px;}
.x38{left:40.960447px;}
.x4a{left:44.187012px;}
.x57{left:45.650391px;}
.x5a{left:46.652344px;}
.x4e{left:48.700196px;}
.x4c{left:50.941406px;}
.x4d{left:56.197266px;}
.x58{left:60.899415px;}
.x52{left:67.895508px;}
.x56{left:89.375977px;}
.x54{left:94.372559px;}
.x4{left:108.126127px;}
.xb{left:112.500000px;}
.x31{left:113.625000px;}
.x1{left:114.748685px;}
.x11{left:115.875000px;}
.xa{left:117.747070px;}
.xe{left:135.000000px;}
.x1d{left:142.627771px;}
.xf{left:162.000000px;}
.x36{left:163.125000px;}
.x2f{left:166.500000px;}
.x12{left:189.000000px;}
.x6{left:195.467437px;}
.x32{left:203.585294px;}
.x17{left:206.704253px;}
.x23{left:211.514325px;}
.x13{left:216.000000px;}
.x15{left:219.831388px;}
.x5{left:230.496245px;}
.x1f{left:235.125000px;}
.x21{left:243.000000px;}
.x51{left:260.744224px;}
.x20{left:262.125000px;}
.x22{left:270.000000px;}
.x2{left:272.090475px;}
.x2d{left:274.500000px;}
.x25{left:275.625000px;}
.x27{left:276.750000px;}
.x28{left:277.875000px;}
.x26{left:279.000000px;}
.x29{left:280.125000px;}
.x24{left:281.250000px;}
.x2a{left:282.375000px;}
.x3{left:287.825094px;}
.x1a{left:291.734030px;}
.x14{left:298.594541px;}
.x33{left:300.234533px;}
.x5b{left:309.628823px;}
.x30{left:311.480134px;}
.x1b{left:317.547506px;}
.x18{left:322.390283px;}
.x2c{left:324.000000px;}
.x2e{left:330.750000px;}
.x2b{left:336.375000px;}
.x34{left:340.633778px;}
.x9{left:345.944970px;}
.x10{left:352.661614px;}
.x1e{left:359.801100px;}
.x1c{left:363.725246px;}
.x53{left:370.125000px;}
.x19{left:371.718889px;}
.x35{left:383.968901px;}
.xd{left:392.300606px;}
.x7{left:406.280565px;}
.x8{left:468.559856px;}
.x39{left:471.375000px;}
.x55{left:577.125000px;}
.x3b{left:625.500000px;}
.x16{left:766.913411px;}
.xc{left:775.913411px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:16.000000pt;}
.ls7{letter-spacing:20.000000pt;}
.ls9{letter-spacing:24.000000pt;}
.lsb{letter-spacing:36.000000pt;}
.ls6{letter-spacing:40.000000pt;}
.ls1{letter-spacing:57.343750pt;}
.ls5{letter-spacing:73.343750pt;}
.ls4{letter-spacing:77.343750pt;}
.ls2{letter-spacing:81.343750pt;}
.lsa{letter-spacing:89.343750pt;}
.ls3{letter-spacing:93.343750pt;}
.lsd{letter-spacing:97.343750pt;}
.lsc{letter-spacing:137.343750pt;}
.ws15{word-spacing:-0.106667pt;}
.ws9{word-spacing:-0.074667pt;}
.ws3b{word-spacing:-0.064000pt;}
.ws14{word-spacing:0.000000pt;}
.ws7{word-spacing:15.935970pt;}
.ws5{word-spacing:15.935980pt;}
.ws4f{word-spacing:15.935987pt;}
.wsb{word-spacing:15.935990pt;}
.ws18{word-spacing:15.935998pt;}
.ws10{word-spacing:15.935999pt;}
.ws8{word-spacing:15.936000pt;}
.ws2a{word-spacing:15.936002pt;}
.ws6{word-spacing:15.936010pt;}
.ws48{word-spacing:15.936018pt;}
.ws37{word-spacing:15.936020pt;}
.ws66{word-spacing:15.936029pt;}
.ws16{word-spacing:15.936030pt;}
.ws22{word-spacing:18.549101pt;}
.ws6b{word-spacing:18.549164pt;}
.ws52{word-spacing:18.549175pt;}
.ws69{word-spacing:18.549176pt;}
.ws6a{word-spacing:18.549188pt;}
.ws1b{word-spacing:18.551420pt;}
.ws23{word-spacing:18.551492pt;}
.ws57{word-spacing:18.551503pt;}
.ws35{word-spacing:18.551507pt;}
.ws3d{word-spacing:18.551512pt;}
.ws4c{word-spacing:18.553791pt;}
.ws33{word-spacing:18.558413pt;}
.ws13{word-spacing:18.560751pt;}
.wse{word-spacing:18.565368pt;}
.ws3a{word-spacing:19.935970pt;}
.ws12{word-spacing:19.935980pt;}
.ws55{word-spacing:19.935989pt;}
.ws1c{word-spacing:19.935990pt;}
.ws26{word-spacing:19.935997pt;}
.wsd{word-spacing:19.935999pt;}
.ws2d{word-spacing:19.936000pt;}
.ws31{word-spacing:19.936002pt;}
.ws2c{word-spacing:19.936010pt;}
.ws24{word-spacing:19.936019pt;}
.ws21{word-spacing:19.936030pt;}
.ws2{word-spacing:23.903970pt;}
.ws4{word-spacing:23.903973pt;}
.ws3{word-spacing:23.903974pt;}
.ws1{word-spacing:23.904000pt;}
.ws2e{word-spacing:23.935969pt;}
.ws30{word-spacing:23.935979pt;}
.ws47{word-spacing:23.935980pt;}
.ws53{word-spacing:23.935988pt;}
.ws28{word-spacing:23.935990pt;}
.ws45{word-spacing:23.935998pt;}
.ws29{word-spacing:23.935999pt;}
.ws1e{word-spacing:23.936000pt;}
.ws3f{word-spacing:23.936002pt;}
.ws41{word-spacing:23.936010pt;}
.ws60{word-spacing:23.936019pt;}
.ws4a{word-spacing:23.936020pt;}
.ws34{word-spacing:26.517190pt;}
.ws4b{word-spacing:26.519445pt;}
.ws40{word-spacing:26.519450pt;}
.ws56{word-spacing:26.519466pt;}
.ws67{word-spacing:26.526355pt;}
.ws68{word-spacing:26.526459pt;}
.ws65{word-spacing:26.539167pt;}
.ws50{word-spacing:27.935969pt;}
.wsc{word-spacing:27.935980pt;}
.ws25{word-spacing:27.935989pt;}
.wsf{word-spacing:27.935990pt;}
.ws3e{word-spacing:27.935999pt;}
.ws11{word-spacing:27.936000pt;}
.ws44{word-spacing:27.936010pt;}
.ws39{word-spacing:27.936020pt;}
.ws0{word-spacing:31.871980pt;}
.ws49{word-spacing:31.935970pt;}
.ws43{word-spacing:31.935980pt;}
.ws20{word-spacing:31.935990pt;}
.wsa{word-spacing:31.936000pt;}
.ws38{word-spacing:31.936010pt;}
.ws42{word-spacing:31.936019pt;}
.ws5b{word-spacing:35.935969pt;}
.ws36{word-spacing:35.935980pt;}
.ws1d{word-spacing:35.935990pt;}
.ws2f{word-spacing:35.936000pt;}
.ws4d{word-spacing:35.936030pt;}
.ws32{word-spacing:39.935990pt;}
.ws46{word-spacing:39.936000pt;}
.ws3c{word-spacing:39.936009pt;}
.ws5e{word-spacing:39.936020pt;}
.ws54{word-spacing:43.935989pt;}
.ws51{word-spacing:43.935990pt;}
.ws62{word-spacing:43.935999pt;}
.ws27{word-spacing:43.936000pt;}
.ws5d{word-spacing:43.936010pt;}
.ws5f{word-spacing:47.935979pt;}
.ws2b{word-spacing:47.936000pt;}
.ws5c{word-spacing:51.935979pt;}
.ws1f{word-spacing:51.935990pt;}
.ws61{word-spacing:51.936000pt;}
.ws64{word-spacing:55.935980pt;}
.ws5a{word-spacing:55.935999pt;}
.ws63{word-spacing:55.936019pt;}
.ws59{word-spacing:59.935999pt;}
.ws4e{word-spacing:63.936000pt;}
.ws58{word-spacing:67.935990pt;}
.ws19{word-spacing:1891.051739pt;}
.ws17{word-spacing:1965.801740pt;}
.ws1a{word-spacing:2076.020490pt;}
._1{margin-left:-11.750001pt;}
._0{margin-left:-9.500000pt;}
._9{margin-left:-8.249999pt;}
._3c{margin-left:-7.093489pt;}
._45{margin-left:-5.834482pt;}
._3{margin-left:-4.749969pt;}
._f{margin-left:-3.843750pt;}
._41{margin-left:-2.790493pt;}
._2{margin-left:-1.734376pt;}
._37{width:16.000002pt;}
._5{width:20.000000pt;}
._7{width:24.000001pt;}
._4{width:27.484385pt;}
._38{width:28.515623pt;}
._6{width:32.000002pt;}
._39{width:36.000002pt;}
._3a{width:40.000002pt;}
._44{width:42.687500pt;}
._3d{width:44.000019pt;}
._43{width:46.281250pt;}
._3e{width:48.000000pt;}
._47{width:52.000002pt;}
._3b{width:56.000002pt;}
._42{width:60.000009pt;}
._46{width:64.000058pt;}
._48{width:71.999996pt;}
._3f{width:74.687500pt;}
._40{width:90.687500pt;}
._25{width:306.116010pt;}
._10{width:529.178211pt;}
._1a{width:660.662627pt;}
._a{width:884.334493pt;}
._13{width:966.740773pt;}
._21{width:1122.615709pt;}
._1f{width:1127.084488pt;}
._e{width:1171.303282pt;}
._2f{width:1174.740742pt;}
._35{width:1182.240748pt;}
._1d{width:1198.209488pt;}
._34{width:1207.178248pt;}
._1e{width:1214.209489pt;}
._33{width:1249.646989pt;}
._29{width:1257.803209pt;}
._31{width:1306.146989pt;}
._20{width:1339.990738pt;}
._23{width:1347.521988pt;}
._1b{width:1386.365741pt;}
._24{width:1395.459496pt;}
._11{width:1407.490739pt;}
._27{width:1409.803245pt;}
._1c{width:1450.350121pt;}
._12{width:1455.709492pt;}
._28{width:1493.162622pt;}
._18{width:1512.771989pt;}
._19{width:1514.490739pt;}
._17{width:1528.631372pt;}
._14{width:1567.834489pt;}
._2e{width:1577.990709pt;}
._26{width:1603.365739pt;}
._36{width:1609.803243pt;}
._2b{width:1612.209490pt;}
._16{width:1653.115739pt;}
._2a{width:1654.834489pt;}
._15{width:1662.928240pt;}
._32{width:1718.678240pt;}
._b{width:1732.959492pt;}
._d{width:1743.678239pt;}
._2d{width:1756.178239pt;}
._22{width:1757.928240pt;}
._30{width:1766.678240pt;}
._2c{width:1779.303239pt;}
._8{width:1795.209489pt;}
._c{width:1841.459490pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666664pt;}
.fs1{font-size:96.000000pt;}
.fs4{font-size:106.666664pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y2c0{bottom:10.458324pt;}
.y2bd{bottom:10.458331pt;}
.y2c9{bottom:10.458332pt;}
.y29f{bottom:10.458333pt;}
.y2a6{bottom:10.458335pt;}
.y2ac{bottom:10.458337pt;}
.y2cd{bottom:10.458341pt;}
.y2b0{bottom:10.458344pt;}
.y2b9{bottom:10.463532pt;}
.y2d4{bottom:10.463537pt;}
.y29a{bottom:10.463541pt;}
.y2a2{bottom:10.463543pt;}
.y2c2{bottom:10.463544pt;}
.y2d1{bottom:10.463545pt;}
.y2b3{bottom:10.463551pt;}
.y298{bottom:11.036457pt;}
.y2bc{bottom:28.854157pt;}
.y2dc{bottom:28.854165pt;}
.y2cc{bottom:28.854168pt;}
.y2cf{bottom:28.854171pt;}
.y2c8{bottom:28.854172pt;}
.y2ab{bottom:28.854177pt;}
.y2b8{bottom:28.859372pt;}
.y2a5{bottom:28.859375pt;}
.y29e{bottom:28.859376pt;}
.y2bf{bottom:28.859377pt;}
.y2d7{bottom:28.859381pt;}
.y2af{bottom:28.859384pt;}
.y2df{bottom:28.864581pt;}
.y2a1{bottom:28.864584pt;}
.y2b2{bottom:28.864591pt;}
.y2b7{bottom:47.255199pt;}
.y2cb{bottom:47.255208pt;}
.y2bb{bottom:47.255211pt;}
.y2c7{bottom:47.255212pt;}
.y2aa{bottom:47.255217pt;}
.y29d{bottom:47.260417pt;}
.y2ae{bottom:47.260424pt;}
.y208{bottom:53.885420pt;}
.y1e{bottom:53.887367pt;}
.yd0{bottom:53.888020pt;}
.y29c{bottom:65.656251pt;}
.y2b6{bottom:65.656252pt;}
.y2a9{bottom:65.656257pt;}
.y2a8{bottom:84.052084pt;}
.y2c6{bottom:84.052092pt;}
.y2b5{bottom:84.057292pt;}
.y202{bottom:100.583327pt;}
.y215{bottom:100.796873pt;}
.y206{bottom:100.901047pt;}
.y27b{bottom:101.005207pt;}
.yb1{bottom:101.006513pt;}
.y10d{bottom:101.322913pt;}
.y2c5{bottom:102.447919pt;}
.y24d{bottom:104.291660pt;}
.y1c8{bottom:105.395833pt;}
.y44{bottom:108.459633pt;}
.y25d{bottom:109.890620pt;}
.y299{bottom:111.468745pt;}
.yf9{bottom:118.666660pt;}
.y2c4{bottom:120.848959pt;}
.yfc{bottom:122.127607pt;}
.y2d6{bottom:123.734372pt;}
.y1d3{bottom:123.898433pt;}
.y1f1{bottom:127.971353pt;}
.y201{bottom:128.182287pt;}
.y178{bottom:128.393233pt;}
.y205{bottom:128.499993pt;}
.y207{bottom:128.533854pt;}
.yb0{bottom:128.604167pt;}
.y10c{bottom:128.920567pt;}
.y43{bottom:130.858073pt;}
.y24c{bottom:131.890620pt;}
.ycf{bottom:132.677087pt;}
.y1c7{bottom:132.992193pt;}
.y9{bottom:135.015300pt;}
.y158{bottom:135.015620pt;}
.y25c{bottom:137.486980pt;}
.y273{bottom:137.802087pt;}
.y11b{bottom:140.920567pt;}
.y297{bottom:144.869792pt;}
.y101{bottom:145.614580pt;}
.yf8{bottom:146.264327pt;}
.ybe{bottom:146.580727pt;}
.y90{bottom:147.002607pt;}
.yfb{bottom:149.725260pt;}
.y221{bottom:151.072913pt;}
.y1d2{bottom:151.497393pt;}
.y18b{bottom:151.601567pt;}
.y42{bottom:153.256513pt;}
.y234{bottom:155.463540pt;}
.y1f0{bottom:155.567713pt;}
.y200{bottom:155.781247pt;}
.y177{bottom:155.989580pt;}
.y212{bottom:156.026041pt;}
.y204{bottom:156.096353pt;}
.y209{bottom:156.132814pt;}
.yaf{bottom:156.201820pt;}
.y18f{bottom:156.203127pt;}
.y10b{bottom:156.518233pt;}
.y24b{bottom:159.486980pt;}
.yce{bottom:160.273433pt;}
.ye3{bottom:160.484380pt;}
.y2d8{bottom:160.531247pt;}
.y1c6{bottom:160.591140pt;}
.y71{bottom:160.801433pt;}
.y157{bottom:162.614580pt;}
.y25b{bottom:165.083327pt;}
.y272{bottom:165.401047pt;}
.y11a{bottom:168.518233pt;}
.y100{bottom:173.212233pt;}
.yf7{bottom:173.861980pt;}
.ybd{bottom:174.178380pt;}
.y143{bottom:174.518233pt;}
.y8f{bottom:174.600260pt;}
.y41{bottom:175.654953pt;}
.yfa{bottom:177.322913pt;}
.y220{bottom:178.705734pt;}
.y1d1{bottom:179.093753pt;}
.y18a{bottom:179.200527pt;}
.y233{bottom:183.062500pt;}
.y1ef{bottom:183.166660pt;}
.y1ff{bottom:183.377607pt;}
.y176{bottom:183.588540pt;}
.y214{bottom:183.622401pt;}
.y210{bottom:183.692713pt;}
.y203{bottom:183.729161pt;}
.ybf{bottom:183.799473pt;}
.y27a{bottom:183.802087pt;}
.y10a{bottom:184.115887pt;}
.y24a{bottom:187.083327pt;}
.ycd{bottom:187.872393pt;}
.ye2{bottom:188.083327pt;}
.y1c5{bottom:188.223961pt;}
.y70{bottom:188.399087pt;}
.y156{bottom:190.210940pt;}
.y25a{bottom:192.682287pt;}
.y2d3{bottom:193.927083pt;}
.y119{bottom:196.115887pt;}
.y40{bottom:198.053380pt;}
.y288{bottom:199.437500pt;}
.yff{bottom:200.809900pt;}
.yf6{bottom:201.459633pt;}
.ybc{bottom:201.776047pt;}
.y142{bottom:202.115887pt;}
.y8e{bottom:202.197913pt;}
.y21f{bottom:206.377607pt;}
.y1d0{bottom:206.692713pt;}
.y189{bottom:206.796873pt;}
.y232{bottom:210.658860pt;}
.y1ee{bottom:210.765620pt;}
.y1fe{bottom:210.973953pt;}
.y1a8{bottom:211.080727pt;}
.y175{bottom:211.187500pt;}
.y20f{bottom:211.291660pt;}
.y18e{bottom:211.395833pt;}
.yae{bottom:211.397140pt;}
.y109{bottom:211.713540pt;}
.y249{bottom:214.716147pt;}
.ycc{bottom:215.468753pt;}
.ye1{bottom:215.679687pt;}
.y1c4{bottom:215.890620pt;}
.y6f{bottom:215.996740pt;}
.y155{bottom:217.809900pt;}
.y259{bottom:220.281247pt;}
.y3f{bottom:220.451820pt;}
.y271{bottom:220.593753pt;}
.y2ef{bottom:221.091147pt;}
.y118{bottom:223.713540pt;}
.yfe{bottom:228.407553pt;}
.yf5{bottom:229.057287pt;}
.y141{bottom:229.713540pt;}
.y8d{bottom:229.795567pt;}
.y2d5{bottom:230.723959pt;}
.ybb{bottom:231.483729pt;}
.y21e{bottom:233.971353pt;}
.y1cf{bottom:234.325521pt;}
.y188{bottom:234.395833pt;}
.y231{bottom:238.255207pt;}
.y1ed{bottom:238.361980pt;}
.y1fd{bottom:238.572913pt;}
.y1a7{bottom:238.677087pt;}
.y174{bottom:238.783860pt;}
.y20e{bottom:238.890620pt;}
.yad{bottom:238.994793pt;}
.y296{bottom:239.036463pt;}
.y108{bottom:239.311193pt;}
.y8{bottom:240.806313pt;}
.y248{bottom:242.385420pt;}
.y3e{bottom:242.850260pt;}
.ycb{bottom:243.101561pt;}
.ye0{bottom:243.278647pt;}
.y1c3{bottom:243.489580pt;}
.y6e{bottom:243.594407pt;}
.y154{bottom:245.406247pt;}
.y258{bottom:247.877607pt;}
.y270{bottom:248.192713pt;}
.y117{bottom:251.311193pt;}
.y287{bottom:254.635420pt;}
.yfd{bottom:256.005207pt;}
.yf4{bottom:256.654953pt;}
.y140{bottom:257.311193pt;}
.y8c{bottom:257.393233pt;}
.y2ee{bottom:258.028641pt;}
.y21d{bottom:261.572913pt;}
.yba{bottom:261.606121pt;}
.y7{bottom:261.964513pt;}
.y187{bottom:261.992193pt;}
.y3d{bottom:265.248700pt;}
.y230{bottom:265.854167pt;}
.y1ec{bottom:265.958327pt;}
.y1fc{bottom:266.171873pt;}
.y1a6{bottom:266.276047pt;}
.y173{bottom:266.380207pt;}
.y20d{bottom:266.486980pt;}
.yac{bottom:266.592447pt;}
.y18d{bottom:266.593753pt;}
.y107{bottom:266.908860pt;}
.y247{bottom:269.984380pt;}
.yca{bottom:270.770833pt;}
.ydf{bottom:270.874993pt;}
.y1c2{bottom:271.085940pt;}
.y6d{bottom:271.192060pt;}
.y153{bottom:273.005207pt;}
.y257{bottom:275.473953pt;}
.y26f{bottom:275.791660pt;}
.y116{bottom:278.908860pt;}
.y286{bottom:282.229167pt;}
.yf3{bottom:284.252607pt;}
.y13f{bottom:284.908860pt;}
.y8b{bottom:284.990887pt;}
.y3c{bottom:287.647140pt;}
.yb9{bottom:289.274087pt;}
.y186{bottom:289.591140pt;}
.y21c{bottom:291.278649pt;}
.y22f{bottom:293.453127pt;}
.y1eb{bottom:293.591147pt;}
.y1fb{bottom:293.768233pt;}
.y1a5{bottom:293.874993pt;}
.y172{bottom:293.979167pt;}
.y20c{bottom:294.083327pt;}
.y213{bottom:294.119787pt;}
.y279{bottom:294.187500pt;}
.yab{bottom:294.190100pt;}
.y106{bottom:294.506513pt;}
.y2ed{bottom:294.966147pt;}
.y295{bottom:296.718753pt;}
.y246{bottom:297.580727pt;}
.yc9{bottom:298.403641pt;}
.y1c1{bottom:298.684900pt;}
.y6c{bottom:298.789713pt;}
.y152{bottom:300.601567pt;}
.y256{bottom:303.072913pt;}
.y115{bottom:306.506513pt;}
.yde{bottom:306.914059pt;}
.y3b{bottom:310.045567pt;}
.yf2{bottom:311.850260pt;}
.y13e{bottom:312.506513pt;}
.y12d{bottom:314.908860pt;}
.yb8{bottom:316.906908pt;}
.y1ce{bottom:317.187500pt;}
.y185{bottom:319.296876pt;}
.y22e{bottom:321.049473pt;}
.y1ea{bottom:321.260420pt;}
.y1fa{bottom:321.364580pt;}
.y1a4{bottom:321.471353pt;}
.y171{bottom:321.611974pt;}
.y20b{bottom:321.682287pt;}
.y18c{bottom:321.786460pt;}
.yaa{bottom:321.787767pt;}
.y105{bottom:322.104167pt;}
.y294{bottom:324.317713pt;}
.y245{bottom:325.177087pt;}
.yc8{bottom:326.070313pt;}
.y1c0{bottom:326.281247pt;}
.y6b{bottom:326.387367pt;}
.y151{bottom:328.200527pt;}
.y255{bottom:330.671873pt;}
.y26e{bottom:330.989580pt;}
.y2ec{bottom:331.903641pt;}
.y3a{bottom:332.444007pt;}
.y2d2{bottom:332.557289pt;}
.y114{bottom:334.104167pt;}
.yf1{bottom:339.447913pt;}
.y13d{bottom:340.104167pt;}
.y8a{bottom:340.186193pt;}
.y12c{bottom:342.506513pt;}
.ydd{bottom:344.505214pt;}
.yb7{bottom:344.610027pt;}
.y1cd{bottom:344.786460pt;}
.y22d{bottom:348.645833pt;}
.y1e9{bottom:348.859380pt;}
.y21b{bottom:348.963540pt;}
.y1f9{bottom:348.997401pt;}
.y1a3{bottom:349.067713pt;}
.y170{bottom:349.281247pt;}
.y20a{bottom:349.315108pt;}
.ya9{bottom:349.385420pt;}
.y104{bottom:349.701820pt;}
.y293{bottom:351.916660pt;}
.y244{bottom:352.776047pt;}
.yc7{bottom:353.669273pt;}
.y1bf{bottom:353.880207pt;}
.y6a{bottom:353.985020pt;}
.y39{bottom:354.842447pt;}
.y150{bottom:355.796873pt;}
.y26d{bottom:358.583327pt;}
.y113{bottom:361.701820pt;}
.y285{bottom:365.026047pt;}
.y254{bottom:366.708326pt;}
.yf0{bottom:367.045567pt;}
.y13c{bottom:367.701820pt;}
.y89{bottom:367.783860pt;}
.y2eb{bottom:368.841147pt;}
.y12b{bottom:370.104167pt;}
.ydc{bottom:372.171873pt;}
.yb6{bottom:372.313148pt;}
.y1cc{bottom:372.382807pt;}
.y22c{bottom:376.244793pt;}
.y1e8{bottom:376.455727pt;}
.y21a{bottom:376.562500pt;}
.y1a2{bottom:376.666660pt;}
.y16f{bottom:376.877607pt;}
.ya8{bottom:376.983073pt;}
.y184{bottom:376.984380pt;}
.y38{bottom:377.240887pt;}
.y103{bottom:377.299473pt;}
.y292{bottom:379.515620pt;}
.y243{bottom:380.408854pt;}
.yc6{bottom:381.265620pt;}
.y1be{bottom:381.476567pt;}
.y69{bottom:381.582687pt;}
.y14f{bottom:383.395833pt;}
.y2d0{bottom:384.713541pt;}
.y112{bottom:389.299473pt;}
.y1d{bottom:389.861980pt;}
.y284{bottom:392.619793pt;}
.yef{bottom:394.643233pt;}
.y13b{bottom:395.299473pt;}
.y88{bottom:395.381513pt;}
.y12a{bottom:397.701820pt;}
.y37{bottom:399.639327pt;}
.ydb{bottom:399.804681pt;}
.yb5{bottom:399.981113pt;}
.y1cb{bottom:399.981767pt;}
.y2ce{bottom:403.114583pt;}
.y22b{bottom:403.877601pt;}
.y1e7{bottom:404.052087pt;}
.y219{bottom:404.158860pt;}
.y1f8{bottom:404.265620pt;}
.y16e{bottom:404.473953pt;}
.ya7{bottom:404.580727pt;}
.y278{bottom:404.583327pt;}
.y102{bottom:404.897140pt;}
.y2ea{bottom:405.778641pt;}
.y291{bottom:407.114580pt;}
.y242{bottom:408.078127pt;}
.yc5{bottom:408.899094pt;}
.y1bd{bottom:409.075527pt;}
.y68{bottom:409.180340pt;}
.y14e{bottom:410.992193pt;}
.y26c{bottom:413.781247pt;}
.y111{bottom:416.897140pt;}
.y1c{bottom:419.569663pt;}
.y36{bottom:422.037767pt;}
.yee{bottom:422.240887pt;}
.y13a{bottom:422.897140pt;}
.y87{bottom:422.979167pt;}
.y129{bottom:425.299473pt;}
.yda{bottom:427.473953pt;}
.y1ca{bottom:427.578127pt;}
.yb4{bottom:427.578780pt;}
.y22a{bottom:431.546873pt;}
.y1e6{bottom:431.684894pt;}
.y218{bottom:431.755207pt;}
.y1a1{bottom:431.861980pt;}
.y16d{bottom:432.072913pt;}
.y183{bottom:432.177087pt;}
.ya6{bottom:432.178380pt;}
.y6{bottom:434.340496pt;}
.y290{bottom:434.708327pt;}
.y241{bottom:435.674473pt;}
.yc4{bottom:436.602214pt;}
.y1bc{bottom:436.671873pt;}
.y67{bottom:436.777993pt;}
.y14d{bottom:438.591140pt;}
.y26b{bottom:441.374993pt;}
.y2e9{bottom:442.716148pt;}
.y35{bottom:444.436193pt;}
.y110{bottom:444.494793pt;}
.y283{bottom:447.812500pt;}
.yed{bottom:449.838540pt;}
.y139{bottom:450.494793pt;}
.y86{bottom:450.576820pt;}
.y128{bottom:452.897140pt;}
.yd9{bottom:455.106774pt;}
.yb3{bottom:455.176433pt;}
.y1c9{bottom:455.177087pt;}
.y229{bottom:459.143233pt;}
.y1e5{bottom:459.354167pt;}
.y1a0{bottom:459.458327pt;}
.y16c{bottom:459.671873pt;}
.ya5{bottom:459.776047pt;}
.y240{bottom:463.270833pt;}
.yc3{bottom:464.270180pt;}
.y1bb{bottom:464.270833pt;}
.y66{bottom:464.375647pt;}
.y28f{bottom:464.416663pt;}
.y5{bottom:466.077803pt;}
.y14c{bottom:466.187500pt;}
.y34{bottom:466.834633pt;}
.y10f{bottom:472.092447pt;}
.y282{bottom:475.416660pt;}
.y138{bottom:478.092447pt;}
.y85{bottom:478.174473pt;}
.yec{bottom:479.546876pt;}
.y127{bottom:480.494793pt;}
.y1b{bottom:481.854167pt;}
.yd8{bottom:482.773433pt;}
.yb2{bottom:484.884116pt;}
.y228{bottom:486.776041pt;}
.y1e4{bottom:486.953127pt;}
.y217{bottom:486.986974pt;}
.y19f{bottom:487.057287pt;}
.y16b{bottom:487.268233pt;}
.y211{bottom:487.304681pt;}
.ya4{bottom:487.373700pt;}
.y182{bottom:487.374993pt;}
.y33{bottom:489.233073pt;}
.y23f{bottom:490.869793pt;}
.y2c3{bottom:491.708328pt;}
.y1ba{bottom:491.867193pt;}
.yc2{bottom:491.903001pt;}
.y65{bottom:491.973313pt;}
.y14b{bottom:493.786460pt;}
.y26a{bottom:496.572913pt;}
.y4{bottom:497.815110pt;}
.y2e8{bottom:499.229169pt;}
.y10e{bottom:499.690100pt;}
.y281{bottom:503.010420pt;}
.y137{bottom:505.690100pt;}
.y84{bottom:505.772140pt;}
.y126{bottom:508.092447pt;}
.y1a{bottom:509.451820pt;}
.yeb{bottom:509.669268pt;}
.yd7{bottom:510.372393pt;}
.y32{bottom:511.631513pt;}
.y227{bottom:514.442713pt;}
.y1e3{bottom:514.549473pt;}
.y19e{bottom:514.656247pt;}
.y253{bottom:514.690108pt;}
.y16a{bottom:514.864580pt;}
.y277{bottom:514.968753pt;}
.ya3{bottom:514.971353pt;}
.y23e{bottom:518.468753pt;}
.y1b9{bottom:519.466140pt;}
.y64{bottom:519.570967pt;}
.y14a{bottom:521.419267pt;}
.y269{bottom:524.171873pt;}
.y136{bottom:533.287767pt;}
.y83{bottom:533.369793pt;}
.y31{bottom:534.029953pt;}
.y125{bottom:535.690100pt;}
.y19{bottom:537.049473pt;}
.yea{bottom:537.372401pt;}
.yd6{bottom:537.968753pt;}
.y2e7{bottom:538.585934pt;}
.y226{bottom:542.075521pt;}
.y1e2{bottom:542.145833pt;}
.y19d{bottom:542.252607pt;}
.y252{bottom:542.359380pt;}
.y169{bottom:542.463540pt;}
.y181{bottom:542.567713pt;}
.ya2{bottom:542.569007pt;}
.y23d{bottom:546.065100pt;}
.y28e{bottom:547.020832pt;}
.y1b8{bottom:547.062500pt;}
.y63{bottom:547.168620pt;}
.y149{bottom:549.085940pt;}
.y30{bottom:556.428380pt;}
.y280{bottom:558.208327pt;}
.y135{bottom:560.885420pt;}
.y82{bottom:560.967447pt;}
.y124{bottom:563.287767pt;}
.y18{bottom:564.647140pt;}
.ye9{bottom:565.075521pt;}
.y2ca{bottom:565.302079pt;}
.yd5{bottom:565.567713pt;}
.y1e1{bottom:569.744793pt;}
.y19c{bottom:569.848953pt;}
.y251{bottom:569.955727pt;}
.y168{bottom:570.062500pt;}
.ya1{bottom:570.166660pt;}
.y23c{bottom:573.661460pt;}
.y1b7{bottom:574.661460pt;}
.y62{bottom:574.766273pt;}
.y2e6{bottom:575.523441pt;}
.y148{bottom:576.684900pt;}
.y2f{bottom:578.826820pt;}
.y268{bottom:579.364580pt;}
.y27f{bottom:585.807287pt;}
.y134{bottom:588.483073pt;}
.y81{bottom:588.565100pt;}
.y123{bottom:590.885420pt;}
.y17{bottom:592.244793pt;}
.ye8{bottom:592.778641pt;}
.yd4{bottom:593.164060pt;}
.y1e0{bottom:597.343753pt;}
.y19b{bottom:597.447913pt;}
.y250{bottom:597.552087pt;}
.y167{bottom:597.658860pt;}
.ya0{bottom:597.764327pt;}
.y180{bottom:597.765620pt;}
.y2e{bottom:601.225260pt;}
.y23b{bottom:601.260420pt;}
.y1b6{bottom:602.257807pt;}
.y61{bottom:602.363927pt;}
.y147{bottom:606.391929pt;}
.y267{bottom:606.963540pt;}
.y2e5{bottom:612.460934pt;}
.y133{bottom:616.080727pt;}
.y80{bottom:616.162767pt;}
.y3{bottom:617.711590pt;}
.y122{bottom:618.483073pt;}
.y16{bottom:619.842447pt;}
.ye7{bottom:620.481774pt;}
.yd3{bottom:620.763020pt;}
.y2d{bottom:623.623700pt;}
.y1df{bottom:624.940100pt;}
.y19a{bottom:625.046873pt;}
.y1f7{bottom:625.080734pt;}
.y24f{bottom:625.151047pt;}
.y166{bottom:625.255207pt;}
.y9f{bottom:625.361980pt;}
.y23a{bottom:628.859380pt;}
.y1b5{bottom:629.856767pt;}
.y60{bottom:629.961593pt;}
.y2b4{bottom:635.494795pt;}
.y27e{bottom:640.999993pt;}
.y132{bottom:643.678380pt;}
.y7f{bottom:643.760420pt;}
.y146{bottom:644.919272pt;}
.y2c{bottom:646.022140pt;}
.y121{bottom:646.080727pt;}
.ye6{bottom:648.184894pt;}
.yd2{bottom:648.359380pt;}
.y2e4{bottom:649.398441pt;}
.y2{bottom:649.448896pt;}
.y15{bottom:649.550129pt;}
.y225{bottom:652.536460pt;}
.y1de{bottom:652.572921pt;}
.y199{bottom:652.643233pt;}
.y1f6{bottom:652.749993pt;}
.y165{bottom:652.854167pt;}
.y17f{bottom:652.958327pt;}
.y9e{bottom:652.959633pt;}
.y2ba{bottom:653.895836pt;}
.y239{bottom:656.455727pt;}
.y1b4{bottom:657.489587pt;}
.y5f{bottom:657.559247pt;}
.y266{bottom:662.158860pt;}
.y2b{bottom:668.420567pt;}
.y27d{bottom:668.593753pt;}
.y131{bottom:671.276047pt;}
.y7e{bottom:671.358073pt;}
.y2be{bottom:672.291669pt;}
.y120{bottom:673.678380pt;}
.ye5{bottom:675.888014pt;}
.yd1{bottom:678.067703pt;}
.y14{bottom:679.637367pt;}
.y224{bottom:680.169267pt;}
.y1dd{bottom:680.239580pt;}
.y198{bottom:680.276041pt;}
.y1f5{bottom:680.346353pt;}
.y164{bottom:680.453127pt;}
.y9d{bottom:680.557287pt;}
.y238{bottom:684.052087pt;}
.y1b3{bottom:685.156247pt;}
.y5e{bottom:685.156900pt;}
.y2e3{bottom:686.335934pt;}
.y2c1{bottom:690.687503pt;}
.y2a{bottom:690.819007pt;}
.y145{bottom:690.915366pt;}
.y28d{bottom:696.197913pt;}
.y130{bottom:698.873700pt;}
.y7d{bottom:698.955727pt;}
.y11f{bottom:701.276047pt;}
.ye4{bottom:705.665369pt;}
.y1dc{bottom:707.838540pt;}
.y216{bottom:707.872401pt;}
.y197{bottom:707.942713pt;}
.y163{bottom:708.049473pt;}
.y9c{bottom:708.154953pt;}
.y17e{bottom:708.156247pt;}
.y13{bottom:709.345049pt;}
.y237{bottom:711.651047pt;}
.y5d{bottom:712.754553pt;}
.y1b2{bottom:712.755207pt;}
.y29{bottom:713.217447pt;}
.y1{bottom:716.033853pt;}
.y52{bottom:716.549473pt;}
.y265{bottom:717.354167pt;}
.y2e2{bottom:723.273441pt;}
.y12f{bottom:726.471353pt;}
.y7c{bottom:726.553380pt;}
.y11e{bottom:728.873700pt;}
.y27c{bottom:732.229166pt;}
.y1db{bottom:735.437500pt;}
.y196{bottom:735.541660pt;}
.y24e{bottom:735.575521pt;}
.y28{bottom:735.615887pt;}
.y162{bottom:735.645833pt;}
.y276{bottom:735.749993pt;}
.y9b{bottom:735.752607pt;}
.y51{bottom:738.947913pt;}
.y236{bottom:739.283854pt;}
.y1b1{bottom:740.351567pt;}
.y5c{bottom:740.352220pt;}
.y12{bottom:741.542316pt;}
.y2a7{bottom:742.489576pt;}
.y264{bottom:744.953127pt;}
.y28c{bottom:751.395833pt;}
.y12e{bottom:754.069007pt;}
.y7b{bottom:754.151047pt;}
.y144{bottom:756.069007pt;}
.y11d{bottom:756.471353pt;}
.y27{bottom:758.014327pt;}
.y2e1{bottom:760.210934pt;}
.y2ad{bottom:760.885409pt;}
.y50{bottom:761.346353pt;}
.y1da{bottom:763.033860pt;}
.y223{bottom:763.070308pt;}
.y195{bottom:763.140620pt;}
.y161{bottom:763.244793pt;}
.y17d{bottom:763.348953pt;}
.y9a{bottom:763.350260pt;}
.y5b{bottom:767.949873pt;}
.y1b0{bottom:767.950527pt;}
.y235{bottom:769.062503pt;}
.y11{bottom:771.629553pt;}
.y263{bottom:772.549473pt;}
.y28b{bottom:778.989580pt;}
.y2b1{bottom:779.281243pt;}
.y26{bottom:780.412767pt;}
.y7a{bottom:781.748700pt;}
.y4f{bottom:783.744793pt;}
.y11c{bottom:784.069007pt;}
.y1d9{bottom:790.666668pt;}
.y194{bottom:790.736980pt;}
.y160{bottom:790.843753pt;}
.y99{bottom:790.947913pt;}
.y1af{bottom:795.546873pt;}
.y5a{bottom:795.547527pt;}
.y10{bottom:799.227220pt;}
.y2e0{bottom:800.718743pt;}
.y25{bottom:802.811193pt;}
.y4e{bottom:806.143233pt;}
.y79{bottom:809.346353pt;}
.y193{bottom:818.333327pt;}
.y1f4{bottom:818.369787pt;}
.y15f{bottom:818.440100pt;}
.y98{bottom:818.545567pt;}
.y17c{bottom:818.546873pt;}
.y59{bottom:823.145180pt;}
.y1ae{bottom:823.145833pt;}
.y24{bottom:825.209633pt;}
.yf{bottom:826.824873pt;}
.y262{bottom:827.744793pt;}
.y4d{bottom:828.541660pt;}
.y28a{bottom:834.182287pt;}
.y78{bottom:836.944007pt;}
.y1d8{bottom:845.932287pt;}
.y192{bottom:845.966148pt;}
.y1f3{bottom:846.036460pt;}
.y15e{bottom:846.037767pt;}
.y97{bottom:846.143233pt;}
.y275{bottom:846.145833pt;}
.y23{bottom:847.608073pt;}
.y2a4{bottom:849.479165pt;}
.y1ad{bottom:850.742193pt;}
.y58{bottom:850.742833pt;}
.y4c{bottom:850.940100pt;}
.y2de{bottom:852.874999pt;}
.ye{bottom:854.422527pt;}
.y261{bottom:855.343753pt;}
.y77{bottom:864.541660pt;}
.y22{bottom:866.006513pt;}
.y2a3{bottom:867.874999pt;}
.y289{bottom:870.223952pt;}
.y4b{bottom:873.338540pt;}
.y1d7{bottom:873.531247pt;}
.y222{bottom:873.565107pt;}
.y15d{bottom:873.635420pt;}
.y17b{bottom:873.739580pt;}
.y96{bottom:873.740887pt;}
.y57{bottom:878.340500pt;}
.y1ac{bottom:878.341140pt;}
.yc1{bottom:880.450516pt;}
.yd{bottom:882.020180pt;}
.y21{bottom:888.404948pt;}
.y76{bottom:892.139323pt;}
.y4a{bottom:895.736979pt;}
.y1d6{bottom:901.164062pt;}
.y15c{bottom:901.233073pt;}
.y191{bottom:901.234375pt;}
.y95{bottom:901.338541pt;}
.y2db{bottom:904.677084pt;}
.y1ab{bottom:905.937500pt;}
.y56{bottom:905.938151pt;}
.yc{bottom:909.617839pt;}
.y260{bottom:910.536459pt;}
.y20{bottom:910.803385pt;}
.y49{bottom:918.135416pt;}
.yc0{bottom:918.977863pt;}
.y75{bottom:919.736979pt;}
.y1d5{bottom:928.830729pt;}
.y190{bottom:928.867188pt;}
.y94{bottom:928.936197pt;}
.y17a{bottom:928.937500pt;}
.y55{bottom:933.535807pt;}
.y1aa{bottom:933.536459pt;}
.yb{bottom:937.215495pt;}
.y29b{bottom:938.072916pt;}
.y25f{bottom:938.135416pt;}
.y48{bottom:940.533855pt;}
.y2dd{bottom:941.468751pt;}
.y74{bottom:947.334636pt;}
.y1d4{bottom:956.427083pt;}
.y15b{bottom:956.428385pt;}
.y1f2{bottom:956.463542pt;}
.y2a0{bottom:956.468749pt;}
.y274{bottom:956.531249pt;}
.y93{bottom:956.533855pt;}
.y47{bottom:962.932292pt;}
.y54{bottom:963.243489pt;}
.y1a9{bottom:963.244791pt;}
.y25e{bottom:965.734375pt;}
.ya{bottom:966.923176pt;}
.y1f{bottom:970.173176pt;}
.y2d9{bottom:974.869792pt;}
.y73{bottom:977.042317pt;}
.y15a{bottom:984.026041pt;}
.y179{bottom:984.130208pt;}
.y92{bottom:984.131511pt;}
.y46{bottom:985.330729pt;}
.y2da{bottom:993.270833pt;}
.y53{bottom:1001.770832pt;}
.y45{bottom:1007.729167pt;}
.y72{bottom:1009.239583pt;}
.y159{bottom:1011.658854pt;}
.y91{bottom:1011.729167pt;}
.h12{height:32.395833pt;}
.ha{height:32.401041pt;}
.h9{height:35.463541pt;}
.h13{height:50.796875pt;}
.hf{height:50.802084pt;}
.h5{height:56.843750pt;}
.h4{height:57.375000pt;}
.h6{height:66.317706pt;}
.h11{height:69.192708pt;}
.hc{height:69.197917pt;}
.h2{height:85.265625pt;}
.h3{height:86.062500pt;}
.hb{height:87.593751pt;}
.h8{height:94.739581pt;}
.h7{height:95.666667pt;}
.hd{height:105.989584pt;}
.he{height:105.994792pt;}
.h1{height:113.687500pt;}
.h10{height:142.786459pt;}
.h0{height:1122.666667pt;}
.w2{width:136.000000pt;}
.w3{width:183.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x3a{left:7.905670pt;}
.x43{left:9.972656pt;}
.x45{left:11.523438pt;}
.x3d{left:12.621094pt;}
.x37{left:14.296074pt;}
.x40{left:15.292969pt;}
.x4f{left:16.390625pt;}
.x44{left:17.523438pt;}
.x50{left:18.632812pt;}
.x47{left:19.964844pt;}
.x3c{left:20.859375pt;}
.x49{left:22.625000pt;}
.x46{left:24.183594pt;}
.x42{left:25.074219pt;}
.x4b{left:26.390625pt;}
.x59{left:27.460938pt;}
.x48{left:29.511719pt;}
.x3e{left:31.285156pt;}
.x41{left:33.285156pt;}
.x3f{left:34.628906pt;}
.x38{left:36.409286pt;}
.x4a{left:39.277344pt;}
.x57{left:40.578125pt;}
.x5a{left:41.468750pt;}
.x4e{left:43.289063pt;}
.x4c{left:45.281250pt;}
.x4d{left:49.953125pt;}
.x58{left:54.132813pt;}
.x52{left:60.351563pt;}
.x56{left:79.445313pt;}
.x54{left:83.886719pt;}
.x4{left:96.112112pt;}
.xb{left:100.000000pt;}
.x31{left:101.000000pt;}
.x1{left:101.998831pt;}
.x11{left:103.000000pt;}
.xa{left:104.664062pt;}
.xe{left:120.000000pt;}
.x1d{left:126.780241pt;}
.xf{left:144.000000pt;}
.x36{left:145.000000pt;}
.x2f{left:148.000000pt;}
.x12{left:168.000000pt;}
.x6{left:173.748833pt;}
.x32{left:180.964706pt;}
.x17{left:183.737114pt;}
.x23{left:188.012733pt;}
.x13{left:192.000000pt;}
.x15{left:195.405678pt;}
.x5{left:204.885551pt;}
.x1f{left:209.000000pt;}
.x21{left:216.000000pt;}
.x51{left:231.772644pt;}
.x20{left:233.000000pt;}
.x22{left:240.000000pt;}
.x2{left:241.858200pt;}
.x2d{left:244.000000pt;}
.x25{left:245.000000pt;}
.x27{left:246.000000pt;}
.x28{left:247.000000pt;}
.x26{left:248.000000pt;}
.x29{left:249.000000pt;}
.x24{left:250.000000pt;}
.x2a{left:251.000000pt;}
.x3{left:255.844528pt;}
.x1a{left:259.319138pt;}
.x14{left:265.417370pt;}
.x33{left:266.875140pt;}
.x5b{left:275.225620pt;}
.x30{left:276.871230pt;}
.x1b{left:282.264450pt;}
.x18{left:286.569140pt;}
.x2c{left:288.000000pt;}
.x2e{left:294.000000pt;}
.x2b{left:299.000000pt;}
.x34{left:302.785580pt;}
.x9{left:307.506640pt;}
.x10{left:313.476990pt;}
.x1e{left:319.823200pt;}
.x1c{left:323.311330pt;}
.x53{left:329.000000pt;}
.x19{left:330.416790pt;}
.x35{left:341.305690pt;}
.xd{left:348.711650pt;}
.x7{left:361.138280pt;}
.x8{left:416.497650pt;}
.x39{left:419.000000pt;}
.x55{left:513.000000pt;}
.x3b{left:556.000000pt;}
.x16{left:681.700810pt;}
.xc{left:689.700810pt;}
}




    .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; }
  