
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.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);}
.v1{vertical-align:-396.000000px;}
.v3{vertical-align:-324.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:408.000000px;}
.v4{vertical-align:540.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
.ws1{word-spacing:64.194603px;}
.ws5{word-spacing:138.011719px;}
.ws4{word-spacing:193.216370px;}
.ws3{word-spacing:9706.546638px;}
.ws2{word-spacing:9718.555428px;}
._18{margin-left:-5747.193735px;}
._2d{margin-left:-4856.568735px;}
._34{margin-left:-2255.101185px;}
._29{margin-left:-1920.765233px;}
._32{margin-left:-1505.218373px;}
._26{margin-left:-221.872473px;}
._a{margin-left:-115.218018px;}
._47{margin-left:-93.862793px;}
._3{margin-left:-62.691513px;}
._9{margin-left:-59.580369px;}
._b{margin-left:-54.062349px;}
._0{margin-left:-52.506591px;}
._8{margin-left:-50.544753px;}
._1a{margin-left:-48.468750px;}
._4{margin-left:-42.991059px;}
._5{margin-left:-41.940216px;}
._43{margin-left:-40.469410px;}
._6{margin-left:-39.126113px;}
._7{margin-left:-37.340332px;}
._1{margin-left:-33.895340px;}
._2{margin-left:-32.576295px;}
._c{margin-left:-30.648788px;}
._12{margin-left:-29.169913px;}
._e{margin-left:-27.188965px;}
._d{margin-left:-26.116424px;}
._39{margin-left:-23.450775px;}
._11{margin-left:-22.110123px;}
._f{margin-left:-19.376267px;}
._10{margin-left:-18.241219px;}
._42{margin-left:-15.721767px;}
._41{margin-left:-13.314377px;}
._1f{margin-left:-12.281204px;}
._16{margin-left:-11.159981px;}
._15{margin-left:-9.684654px;}
._1c{margin-left:-8.118988px;}
._1b{margin-left:-6.890946px;}
._2a{margin-left:-5.609516px;}
._13{margin-left:-4.483131px;}
._1d{margin-left:-3.355270px;}
._14{margin-left:-2.348465px;}
._1e{margin-left:-1.035690px;}
._23{width:1.111378px;}
._38{width:3.753113px;}
._3a{width:10.703246px;}
._3f{width:11.929779px;}
._3e{width:17.406006px;}
._2b{width:19.918740px;}
._24{width:24.419467px;}
._46{width:33.636520px;}
._40{width:34.764404px;}
._27{width:65.675354px;}
._20{width:80.269958px;}
._3c{width:96.757416px;}
._19{width:102.277500px;}
._45{width:104.370026px;}
._3b{width:106.951721px;}
._2e{width:116.808750px;}
._37{width:129.363635px;}
._36{width:131.951374px;}
._35{width:139.762974px;}
._25{width:156.092308px;}
._22{width:191.479980px;}
._44{width:398.243088px;}
._21{width:537.270904px;}
._2f{width:723.597199px;}
._30{width:1183.177279px;}
._31{width:1436.565966px;}
._28{width:1482.310547px;}
._33{width:2186.448778px;}
._2c{width:3600.078735px;}
._17{width:4490.703735px;}
._3d{width:12822.805270px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:240.000000px;}
.fs4{font-size:270.000000px;}
.fs9{font-size:300.000000px;}
.fs6{font-size:330.000000px;}
.fs3{font-size:360.000000px;}
.fs8{font-size:420.000000px;}
.fs2{font-size:480.000000px;}
.fs7{font-size:600.000000px;}
.fs1{font-size:660.000000px;}
.fs0{font-size:840.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:707.362792px;}
.y16{bottom:816.000000px;}
.y41{bottom:1012.568847px;}
.y48{bottom:1091.362793px;}
.y1b{bottom:1092.505371px;}
.y40{bottom:1093.568847px;}
.y3f{bottom:1093.568849px;}
.y50{bottom:1111.500000px;}
.y1c{bottom:1191.505371px;}
.y10{bottom:1261.500000px;}
.y1a{bottom:1290.505371px;}
.y34{bottom:1329.000000px;}
.y3e{bottom:1390.568115px;}
.y47{bottom:1460.362793px;}
.y3d{bottom:1471.568115px;}
.y4d{bottom:1492.500000px;}
.y21{bottom:1781.537843px;}
.y15{bottom:1821.000000px;}
.y46{bottom:1845.862792px;}
.y43{bottom:1848.068115px;}
.y20{bottom:1862.537842px;}
.y4e{bottom:1863.000000px;}
.y14{bottom:1902.000000px;}
.y8{bottom:1971.000000px;}
.y7{bottom:2079.000000px;}
.y1f{bottom:2124.946290px;}
.y23{bottom:2150.997803px;}
.y13{bottom:2191.500000px;}
.y1e{bottom:2205.946289px;}
.y22{bottom:2231.997802px;}
.y45{bottom:2232.862793px;}
.y42{bottom:2233.568115px;}
.y4f{bottom:2248.500000px;}
.y12{bottom:2272.500000px;}
.y1d{bottom:2341.500000px;}
.y11{bottom:2353.500000px;}
.y6{bottom:2377.500000px;}
.y5{bottom:2485.500000px;}
.y44{bottom:2589.862793px;}
.y19{bottom:2626.500000px;}
.y26{bottom:2627.187012px;}
.y18{bottom:2725.500000px;}
.y25{bottom:2726.187012px;}
.yf{bottom:2760.000000px;}
.y17{bottom:2824.500000px;}
.y24{bottom:2825.187012px;}
.y29{bottom:2848.862549px;}
.y3b{bottom:2853.000000px;}
.y3c{bottom:2856.000000px;}
.y33{bottom:2866.500000px;}
.y31{bottom:2871.000000px;}
.y28{bottom:2947.862549px;}
.y4a{bottom:2948.362793px;}
.y3a{bottom:2952.000000px;}
.y27{bottom:3046.862549px;}
.y32{bottom:3096.000000px;}
.y38{bottom:3165.000000px;}
.y39{bottom:3168.000000px;}
.y37{bottom:3264.000000px;}
.y4b{bottom:3306.862793px;}
.y2d{bottom:3328.135253px;}
.y2c{bottom:3328.135254px;}
.y2b{bottom:3427.135254px;}
.y2a{bottom:3526.135254px;}
.yc{bottom:3537.000000px;}
.y35{bottom:3556.500000px;}
.yb{bottom:3645.000000px;}
.y4c{bottom:3683.362793px;}
.y2f{bottom:3819.959472px;}
.ye{bottom:3900.000000px;}
.y30{bottom:3918.959474px;}
.y2e{bottom:4017.959472px;}
.ya{bottom:4038.000000px;}
.yd{bottom:4044.000000px;}
.y36{bottom:4051.500000px;}
.y9{bottom:4146.000000px;}
.ya6{bottom:4405.500000px;}
.yaf{bottom:4680.000000px;}
.yae{bottom:4806.000000px;}
.yad{bottom:4932.000000px;}
.y87{bottom:4975.500000px;}
.yac{bottom:5058.000000px;}
.y86{bottom:5110.500000px;}
.yab{bottom:5184.000000px;}
.y85{bottom:5260.500000px;}
.yaa{bottom:5310.000000px;}
.y84{bottom:5395.500000px;}
.ya9{bottom:5436.000000px;}
.y83{bottom:5530.500000px;}
.ya8{bottom:5562.000000px;}
.y82{bottom:5665.500000px;}
.ya5{bottom:5746.500000px;}
.y81{bottom:5872.500000px;}
.ya7{bottom:6057.000000px;}
.y80{bottom:6216.000366px;}
.y7f{bottom:6351.000366px;}
.y7e{bottom:6486.000366px;}
.y7d{bottom:6621.000366px;}
.y74{bottom:6756.000000px;}
.y72{bottom:6847.500366px;}
.y75{bottom:6940.500366px;}
.y71{bottom:6955.500366px;}
.ya4{bottom:7003.499817px;}
.y70{bottom:7063.500366px;}
.y73{bottom:7164.000000px;}
.ya3{bottom:7273.499817px;}
.y6b{bottom:7350.000000px;}
.ya2{bottom:7408.499817px;}
.y6a{bottom:7458.000000px;}
.ya1{bottom:7543.499817px;}
.y69{bottom:7566.000000px;}
.y7a{bottom:7672.499634px;}
.y68{bottom:7674.000000px;}
.ya0{bottom:7678.499817px;}
.y9f{bottom:7813.499817px;}
.y6f{bottom:7824.000366px;}
.y6e{bottom:7932.000366px;}
.y9e{bottom:7948.499817px;}
.y6d{bottom:8040.000366px;}
.y67{bottom:8081.999634px;}
.y9d{bottom:8083.499817px;}
.y6c{bottom:8148.000366px;}
.y7b{bottom:8181.000000px;}
.y66{bottom:8189.999634px;}
.y77{bottom:8455.499817px;}
.y65{bottom:8482.499634px;}
.y76{bottom:8554.499817px;}
.y79{bottom:8559.568359px;}
.y64{bottom:8590.499634px;}
.y78{bottom:8595.251953px;}
.y7c{bottom:8817.000000px;}
.y63{bottom:9030.000183px;}
.y9c{bottom:9364.500183px;}
.y62{bottom:9414.000000px;}
.y61{bottom:9549.000000px;}
.y60{bottom:9721.500000px;}
.y99{bottom:9848.999863px;}
.y5f{bottom:9856.500000px;}
.y9b{bottom:9983.999725px;}
.y98{bottom:9983.999863px;}
.y5e{bottom:10029.000000px;}
.y9a{bottom:10088.999725px;}
.y97{bottom:10088.999863px;}
.y5d{bottom:10164.000000px;}
.y96{bottom:10223.999863px;}
.y5c{bottom:10299.000000px;}
.y95{bottom:10358.999863px;}
.y94{bottom:10493.999863px;}
.y5b{bottom:10509.000138px;}
.y93{bottom:10699.500138px;}
.y92{bottom:11341.499862px;}
.y91{bottom:11446.499862px;}
.y90{bottom:11551.499862px;}
.y8f{bottom:11656.499862px;}
.y57{bottom:11863.500045px;}
.y8e{bottom:11959.500275px;}
.y56{bottom:11998.500045px;}
.y8d{bottom:12094.500275px;}
.y55{bottom:12133.500045px;}
.y8c{bottom:12229.500275px;}
.y5a{bottom:12338.999817px;}
.y8b{bottom:12382.500275px;}
.y59{bottom:12473.999817px;}
.y58{bottom:12608.999817px;}
.y54{bottom:12787.499634px;}
.y8a{bottom:12787.500275px;}
.y53{bottom:12922.499634px;}
.y89{bottom:12922.500275px;}
.y52{bottom:13057.499634px;}
.y88{bottom:13057.500275px;}
.y51{bottom:13261.499449px;}
.y4{bottom:13861.500000px;}
.y3{bottom:14028.000183px;}
.y2{bottom:14240.999268px;}
.y1{bottom:14492.999268px;}
.h6{height:228.000000px;}
.h5{height:256.500000px;}
.hc{height:285.000000px;}
.h7{height:313.500000px;}
.h4{height:342.000000px;}
.ha{height:399.000000px;}
.h3{height:456.000000px;}
.h9{height:570.000000px;}
.h2{height:627.000000px;}
.h8{height:721.500000px;}
.h1{height:798.000000px;}
.hb{height:939.000000px;}
.h0{height:14899.500000px;}
.w0{width:10524.000000px;}
.w1{width:10524.013500px;}
.x0{left:0.000000px;}
.x75{left:441.000000px;}
.xb0{left:489.295899px;}
.x76{left:490.548340px;}
.x16b{left:499.883057px;}
.x176{left:502.113282px;}
.x173{left:510.306153px;}
.x7b{left:529.500000px;}
.x171{left:552.651855px;}
.x174{left:562.513183px;}
.x7c{left:579.048340px;}
.xd4{left:598.500000px;}
.x172{left:615.654785px;}
.xe4{left:647.718750px;}
.xd5{left:648.949218px;}
.x116{left:655.409179px;}
.x103{left:658.792968px;}
.x195{left:666.688476px;}
.x175{left:676.675782px;}
.xb1{left:678.685547px;}
.xf4{left:688.314216px;}
.x17b{left:694.886718px;}
.xb2{left:703.500000px;}
.x12d{left:705.653321px;}
.x117{left:711.528237px;}
.x196{left:726.981446px;}
.xf5{left:743.172615px;}
.x17c{left:756.820312px;}
.x118{left:763.413002px;}
.x194{left:766.151367px;}
.x12e{left:775.379883px;}
.xb3{left:799.476562px;}
.xb4{left:851.579818px;}
.x17d{left:898.016601px;}
.xb5{left:921.716538px;}
.x119{left:925.147293px;}
.x11a{left:982.056472px;}
.x11b{left:1038.175552px;}
.x7e{left:1065.268067px;}
.x78{left:1077.000000px;}
.x11c{left:1092.111099px;}
.xb6{left:1113.067796px;}
.xf6{left:1146.653824px;}
.xd6{left:1153.338867px;}
.xb7{left:1156.544358px;}
.x17e{left:1166.463867px;}
.x7f{left:1178.449220px;}
.xd7{left:1192.303711px;}
.x181{left:1195.892578px;}
.x104{left:1199.789062px;}
.xb8{left:1205.571441px;}
.xf7{left:1216.175262px;}
.x187{left:1225.321289px;}
.x105{left:1237.215820px;}
.x17f{left:1245.624024px;}
.xb9{left:1248.125153px;}
.x182{left:1255.057617px;}
.xf8{left:1276.560790px;}
.x188{left:1287.767578px;}
.x12f{left:1325.707032px;}
.x79{left:1331.062500px;}
.xe5{left:1339.959961px;}
.x189{left:1342.728516px;}
.x11d{left:1373.231049px;}
.x106{left:1374.720703px;}
.x18a{left:1402.816407px;}
.x130{left:1404.457032px;}
.xe6{left:1410.814453px;}
.x11e{left:1430.242767px;}
.x107{left:1436.756836px;}
.xd8{left:1494.135955px;}
.xba{left:1523.250824px;}
.xd9{left:1550.840058px;}
.xbb{left:1580.160003px;}
.xbc{left:1632.263214px;}
.x108{left:1663.675782px;}
.x131{left:1673.006836px;}
.x132{left:1710.433593px;}
.xbd{left:1712.448760px;}
.x177{left:1733.812500px;}
.xbe{left:1764.552063px;}
.xf9{left:1770.573943px;}
.x178{left:1780.262695px;}
.x11f{left:1808.057098px;}
.xbf{left:1834.688781px;}
.xda{left:1837.086364px;}
.xfa{left:1841.633514px;}
.x109{left:1845.477539px;}
.x133{left:1847.938476px;}
.x167{left:1859.405274px;}
.x152{left:1868.018554px;}
.x8f{left:1875.000000px;}
.x14b{left:1887.401367px;}
.xdb{left:1892.559998px;}
.x90{left:1901.718750px;}
.x168{left:1908.008789px;}
.x134{left:1909.974609px;}
.x120{left:1911.519012px;}
.xe7{left:1935.301758px;}
.x89{left:1942.500000px;}
.x8c{left:1944.000000px;}
.x150{left:1954.949707px;}
.xfb{left:1968.874512px;}
.x14f{left:1983.421875px;}
.x8a{left:1995.937500px;}
.x8d{left:1997.437500px;}
.xc0{left:2003.891601px;}
.xe8{left:2028.407226px;}
.x14c{left:2031.219726px;}
.x121{left:2033.027711px;}
.x8b{left:2037.861328px;}
.x8e{left:2039.361328px;}
.x10a{left:2048.094726px;}
.xe9{left:2053.324218px;}
.x149{left:2060.956054px;}
.x163{left:2066.922363px;}
.xc1{left:2073.413087px;}
.xc2{left:2098.227539px;}
.x135{left:2107.464843px;}
.x14d{left:2111.405274px;}
.x10b{left:2117.206055px;}
.xa5{left:2122.207032px;}
.x164{left:2138.597168px;}
.x122{left:2139.975952px;}
.x91{left:2160.292968px;}
.x7a{left:2165.906250px;}
.xc3{left:2174.926758px;}
.x169{left:2196.290038px;}
.x165{left:2197.864746px;}
.x92{left:2204.824218px;}
.x153{left:2205.826171px;}
.xea{left:2207.030274px;}
.xa6{left:2218.593750px;}
.xc4{left:2222.928407px;}
.x16a{left:2246.124024px;}
.x166{left:2252.723145px;}
.xeb{left:2257.684570px;}
.xc5{left:2276.966492px;}
.x18d{left:2279.677734px;}
.x80{left:2292.228882px;}
.xa7{left:2304.873046px;}
.x81{left:2320.236693px;}
.xa1{left:2350.500000px;}
.xa8{left:2382.802734px;}
.xfc{left:2390.812683px;}
.x123{left:2396.866517px;}
.x84{left:2400.195191px;}
.x144{left:2406.826172px;}
.x93{left:2410.341796px;}
.x18e{left:2421.474609px;}
.x85{left:2431.703979px;}
.x86{left:2449.567749px;}
.x124{left:2453.570618px;}
.xa9{left:2476.406250px;}
.x87{left:2481.076538px;}
.xfd{left:2489.455262px;}
.xec{left:2501.317383px;}
.x82{left:2504.396850px;}
.xed{left:2528.182617px;}
.x83{left:2532.404663px;}
.x18f{left:2543.935547px;}
.xee{left:2554.227539px;}
.xaa{left:2566.347657px;}
.x125{left:2569.132142px;}
.x88{left:2570.395385px;}
.x136{left:2571.966796px;}
.x94{left:2626.406250px;}
.x190{left:2630.214843px;}
.x145{left:2634.902343px;}
.xef{left:2639.129883px;}
.x137{left:2641.078125px;}
.xab{left:2652.626954px;}
.x126{left:2677.208313px;}
.xc6{left:2699.454162px;}
.xf0{left:2707.318359px;}
.x14a{left:2711.874024px;}
.x146{left:2724.843750px;}
.x95{left:2740.517579px;}
.x14e{left:2741.610351px;}
.xc7{left:2742.930724px;}
.xc8{left:2767.745178px;}
.x151{left:2796.282716px;}
.x191{left:2798.818359px;}
.xac{left:2802.187500px;}
.xf1{left:2812.933593px;}
.x10c{left:2830.775391px;}
.x147{left:2840.419921px;}
.xa3{left:2848.019532px;}
.x96{left:2851.845704px;}
.x183{left:2858.255859px;}
.xa4{left:2886.984375px;}
.x184{left:2929.623046px;}
.xc9{left:2938.998963px;}
.xad{left:2957.607422px;}
.x148{left:2961.562500px;}
.xa2{left:2967.785157px;}
.x138{left:2989.403321px;}
.xca{left:3008.520447px;}
.xfe{left:3017.521545px;}
.x77{left:3021.002197px;}
.x192{left:3035.537109px;}
.xf2{left:3056.566407px;}
.x139{left:3058.514649px;}
.xf3{left:3081.380859px;}
.x97{left:3085.488282px;}
.x179{left:3105.477539px;}
.x7d{left:3106.500000px;}
.x193{left:3121.816407px;}
.x170{left:3136.500000px;}
.x17a{left:3167.411133px;}
.xcb{left:3171.160767px;}
.xae{left:3175.136718px;}
.xdc{left:3275.948364px;}
.xaf{left:3277.968750px;}
.x10d{left:3287.176758px;}
.x10e{left:3315.169921px;}
.xdd{left:3337.984497px;}
.x10f{left:3344.598633px;}
.x1{left:3371.401794px;}
.x185{left:3410.838867px;}
.x110{left:3414.735351px;}
.x158{left:3425.320312px;}
.x154{left:3430.908691px;}
.x111{left:3444.164062px;}
.x5{left:3447.724731px;}
.x186{left:3458.314454px;}
.xff{left:3460.275147px;}
.x180{left:3468.465821px;}
.x13a{left:3473.695313px;}
.x159{left:3516.111329px;}
.x100{left:3522.311280px;}
.x160{left:3524.329101px;}
.x156{left:3527.317383px;}
.x112{left:3535.218750px;}
.x15a{left:3536.853516px;}
.x13b{left:3544.754883px;}
.x16c{left:3556.732910px;}
.x127{left:3574.383179px;}
.x161{left:3576.536133px;}
.x113{left:3585.873046px;}
.x15b{left:3600.310546px;}
.x128{left:3624.524781px;}
.xcc{left:3673.205201px;}
.x2{left:3679.338867px;}
.xcd{left:3723.654419px;}
.xde{left:3759.112426px;}
.x13c{left:3785.619141px;}
.xdf{left:3796.539185px;}
.x114{left:3829.505859px;}
.x18b{left:3878.622070px;}
.xce{left:3915.710084px;}
.x18c{left:3917.586913px;}
.x15c{left:3934.734375px;}
.xe0{left:3942.777099px;}
.x15d{left:3962.244141px;}
.xcf{left:3971.183717px;}
.xe1{left:4004.813232px;}
.x162{left:4020.735351px;}
.x157{left:4033.655274px;}
.x15e{left:4035.105468px;}
.x4{left:4047.000000px;}
.x115{left:4049.554688px;}
.x15f{left:4080.281250px;}
.x155{left:4093.516113px;}
.x13d{left:4111.180663px;}
.xa{left:4141.982300px;}
.xc{left:4143.343506px;}
.xb{left:4148.788330px;}
.x129{left:4157.378173px;}
.x8{left:4159.620117px;}
.x13e{left:4161.834961px;}
.xe2{left:4206.669800px;}
.x12a{left:4207.827393px;}
.xd0{left:4222.417968px;}
.x16d{left:4229.133545px;}
.x3{left:4248.000000px;}
.xe3{left:4269.116090px;}
.xd1{left:4279.122070px;}
.x99{left:4305.000000px;}
.x9a{left:4361.499024px;}
.x13f{left:4405.467774px;}
.x9{left:4413.682617px;}
.x1ed{left:4420.227539px;}
.x140{left:4432.333008px;}
.x141{left:4458.377930px;}
.x9b{left:4473.061524px;}
.x9c{left:4512.026367px;}
.x16f{left:4553.941407px;}
.x16e{left:4557.486329px;}
.x1ee{left:4562.024413px;}
.x9d{left:4608.925782px;}
.x12b{left:4646.314453px;}
.x101{left:4648.570312px;}
.x9f{left:4667.885742px;}
.x1ef{left:4683.166992px;}
.xd2{left:4691.226562px;}
.x102{left:4698.711913px;}
.x12c{left:4709.068359px;}
.x9e{left:4710.336914px;}
.xa0{left:4715.361329px;}
.xd3{left:4730.191407px;}
.x1f0{left:4797.278320px;}
.x1f1{left:4883.557617px;}
.x142{left:4895.809571px;}
.xd{left:4917.795410px;}
.x98{left:4922.285157px;}
.x143{left:4923.802734px;}
.x1b{left:4943.386964px;}
.x19{left:4980.798339px;}
.x1f2{left:4988.440430px;}
.x1c{left:5019.588135px;}
.x10{left:5030.873657px;}
.x11{left:5077.441040px;}
.x1f3{left:5092.590820px;}
.x1f4{left:5187.512696px;}
.x1f5{left:5286.682617px;}
.x12{left:5289.411255px;}
.xe{left:5315.712890px;}
.x13{left:5333.481078px;}
.x1f6{left:5402.258788px;}
.x14{left:5410.099731px;}
.x19e{left:5482.500000px;}
.x15{left:5495.741822px;}
.x1a{left:5503.513184px;}
.x1ac{left:5525.566407px;}
.x1a5{left:5530.795899px;}
.x1f7{left:5536.731445px;}
.x19f{left:5560.737305px;}
.x16{left:5589.923949px;}
.x1b4{left:5618.569336px;}
.x1f8{left:5620.666992px;}
.x1a0{left:5626.567383px;}
.x1be{left:5629.497070px;}
.x17{left:5633.993774px;}
.x1a6{left:5640.000000px;}
.x18{left:5664.770141px;}
.x1b5{left:5687.783204px;}
.x21f{left:5690.141601px;}
.x1d0{left:5694.653320px;}
.x1a1{left:5702.651367px;}
.x1bf{left:5707.500000px;}
.x1dd{left:5711.059570px;}
.x1d4{left:5718.852539px;}
.xf{left:5729.626098px;}
.x1d5{left:5744.077149px;}
.x1b6{left:5751.152343px;}
.x1d{left:5758.343628px;}
.x1b7{left:5806.010742px;}
.x1f9{left:5809.778320px;}
.x1d6{left:5812.163086px;}
.x23f{left:5824.365234px;}
.x1e{left:5834.544800px;}
.x1a2{left:5844.565430px;}
.x240{left:5881.274414px;}
.x1b8{left:5891.220704px;}
.x1e0{left:5895.014649px;}
.x1a3{left:5924.443359px;}
.x273{left:5930.083008px;}
.x290{left:5942.592774px;}
.x241{left:5952.641601px;}
.x1c2{left:5982.890625px;}
.x1a4{left:5984.736329px;}
.x274{left:5993.247070px;}
.x25f{left:5999.501954px;}
.x242{left:6006.474609px;}
.x201{left:6013.242188px;}
.x1fa{left:6017.493163px;}
.x260{left:6026.367188px;}
.x238{left:6034.570312px;}
.x291{left:6038.466796px;}
.x1b9{left:6041.645508px;}
.x1c3{left:6045.336914px;}
.x202{left:6056.718750px;}
.x275{left:6064.614258px;}
.x239{left:6077.841796px;}
.x1e1{left:6106.552734px;}
.x261{left:6111.269532px;}
.x1ba{left:6115.371093px;}
.x276{left:6118.652343px;}
.x203{left:6132.187500px;}
.x1c1{left:6143.437500px;}
.x1de{left:6161.671463px;}
.x262{left:6179.458008px;}
.x1c0{left:6199.614258px;}
.x220{left:6214.218750px;}
.x64{left:6216.000000px;}
.x243{left:6219.345704px;}
.x277{left:6224.780274px;}
.x204{left:6228.164062px;}
.x23a{left:6234.213867px;}
.x65{left:6242.718750px;}
.x221{left:6256.772461px;}
.x1df{left:6258.365752px;}
.x244{left:6262.822266px;}
.x1bb{left:6272.666016px;}
.x278{left:6278.715820px;}
.x23b{left:6281.689454px;}
.x263{left:6283.125000px;}
.x66{left:6284.642579px;}
.x292{left:6306.811524px;}
.x264{left:6312.553711px;}
.x1bc{left:6332.958984px;}
.x67{left:6338.080079px;}
.x293{left:6368.847657px;}
.x68{left:6380.003907px;}
.x265{left:6382.690430px;}
.x245{left:6408.427734px;}
.x1c6{left:6425.997070px;}
.x266{left:6450.468750px;}
.x222{left:6463.901367px;}
.x1a8{left:6483.383789px;}
.x205{left:6497.329101px;}
.x1c7{left:6504.000000px;}
.x223{left:6514.042968px;}
.x23c{left:6525.322266px;}
.x2a4{left:6538.242188px;}
.x206{left:6544.804688px;}
.x1ca{left:6547.066407px;}
.x23d{left:6550.136718px;}
.x1c4{left:6567.568359px;}
.x1c8{left:6572.481445px;}
.x2a5{left:6588.896484px;}
.x207{left:6592.382812px;}
.x1c5{left:6615.043945px;}
.x267{left:6624.682617px;}
.x246{left:6631.655274px;}
.x208{left:6635.859375px;}
.x279{left:6668.364258px;}
.x268{left:6676.362305px;}
.x247{left:6685.590820px;}
.x1f{left:6707.408204px;}
.x27a{left:6711.840820px;}
.x1fb{left:6721.646484px;}
.x45{left:6722.881347px;}
.x224{left:6725.991211px;}
.x269{left:6738.808593px;}
.x248{left:6761.059570px;}
.x46{left:6767.998534px;}
.x225{left:6773.466796px;}
.x1fc{left:6777.955079px;}
.x20{left:6784.590821px;}
.x23e{left:6793.769532px;}
.x28{left:6800.542970px;}
.x294{left:6802.177734px;}
.x4e{left:6803.206054px;}
.x47{left:6812.068359px;}
.x249{left:6814.995117px;}
.x4c{left:6816.016113px;}
.x2c{left:6820.120607px;}
.x295{left:6829.042968px;}
.x209{left:6830.581055px;}
.x54{left:6835.593750px;}
.x4f{left:6846.792480px;}
.x21{left:6851.622071px;}
.x48{left:6855.654784px;}
.x1c9{left:6865.669921px;}
.x55{left:6880.710937px;}
.x50{left:6885.303222px;}
.x24a{left:6890.874024px;}
.x1d1{left:6899.487305px;}
.x56{left:6924.780760px;}
.x51{left:6932.112304px;}
.x24b{left:6960.395508px;}
.x1bd{left:6967.880859px;}
.x2a{left:6976.500000px;}
.x22{left:6982.059083px;}
.x27b{left:6999.770508px;}
.x57{left:7018.157226px;}
.x2b{left:7034.507813px;}
.x24c{left:7035.864258px;}
.x1e2{left:7038.325196px;}
.x226{left:7058.422851px;}
.x52{left:7062.629881px;}
.x2d{left:7063.995117px;}
.x27c{left:7069.291992px;}
.x296{left:7072.675782px;}
.x49{left:7086.880371px;}
.x24d{left:7092.363282px;}
.x27{left:7101.136232px;}
.x2e{left:7108.064942px;}
.x53{left:7109.438964px;}
.x1d2{left:7111.025391px;}
.x227{left:7118.715820px;}
.x297{left:7128.969726px;}
.x2a6{left:7137.070312px;}
.x4a{left:7139.973631px;}
.x1dc{left:7143.735351px;}
.x27d{left:7144.760742px;}
.x20a{left:7152.963867px;}
.x1e3{left:7172.138672px;}
.x23{left:7176.224121px;}
.x4b{left:7202.573730px;}
.x1d7{left:7217.255859px;}
.x27e{left:7219.511718px;}
.x58{left:7223.682129px;}
.x24{left:7233.909669px;}
.x27f{left:7246.376954px;}
.x1d8{left:7256.220704px;}
.x1ad{left:7276.646484px;}
.x4d{left:7288.538085px;}
.x280{left:7297.338867px;}
.x197{left:7298.912109px;}
.x24e{left:7306.772461px;}
.x2f{left:7309.078125px;}
.x298{left:7310.771484px;}
.x1d9{left:7316.308593px;}
.x1e4{left:7322.789062px;}
.x25{left:7323.982911px;}
.x1d3{left:7328.203125px;}
.x299{left:7357.324218px;}
.x2a7{left:7358.554688px;}
.x20b{left:7369.628907px;}
.x26{left:7377.076172px;}
.x30{left:7399.151367px;}
.x281{left:7406.542968px;}
.x1da{left:7414.028320px;}
.x1ae{left:7418.443359px;}
.x198{left:7440.708984px;}
.x26a{left:7446.635742px;}
.x24f{left:7452.377930px;}
.x1fd{left:7464.240234px;}
.x1db{left:7472.578125px;}
.x1cb{left:7476.377930px;}
.x2a8{left:7480.371093px;}
.x31{left:7499.617676px;}
.x1e5{left:7505.455079px;}
.x250{left:7515.131837px;}
.x1a7{left:7518.002930px;}
.x1fe{left:7520.548829px;}
.x282{left:7527.744141px;}
.x1af{left:7540.904297px;}
.x29a{left:7555.429688px;}
.x199{left:7563.169921px;}
.x1cc{left:7572.764649px;}
.x29b{left:7582.294921px;}
.x1e6{left:7590.416016px;}
.x26b{left:7603.417968px;}
.x29{left:7611.041016px;}
.x20c{left:7615.517579px;}
.x1b0{left:7627.183593px;}
.x19a{left:7649.449218px;}
.x29c{left:7651.406250px;}
.x1cd{left:7659.043945px;}
.x26c{left:7670.683593px;}
.x20d{left:7672.529297px;}
.x6e{left:7675.500000px;}
.x1e7{left:7676.695312px;}
.x251{left:7682.885742px;}
.x2a9{left:7687.910157px;}
.x6f{left:7702.218750px;}
.x1ce{left:7741.368164px;}
.x70{left:7744.142579px;}
.x20e{left:7747.998046px;}
.x252{left:7751.074218px;}
.x1e8{left:7773.082032px;}
.x1b1{left:7795.787109px;}
.x71{left:7797.580079px;}
.x228{left:7802.958984px;}
.x20f{left:7804.291992px;}
.x19b{left:7818.052734px;}
.x253{left:7826.542968px;}
.x72{left:7839.503907px;}
.x1cf{left:7852.696289px;}
.x1e9{left:7859.361328px;}
.x229{left:7864.995117px;}
.x73{left:7866.000000px;}
.x283{left:7879.042968px;}
.x254{left:7905.292968px;}
.x255{left:7932.158204px;}
.x284{left:7958.408204px;}
.x1ea{left:7974.937500px;}
.x285{left:7983.632812px;}
.x256{left:7986.093750px;}
.x1b2{left:8032.505859px;}
.x210{left:8051.513672px;}
.x19c{left:8054.771484px;}
.x1a9{left:8062.587891px;}
.x26d{left:8065.253907px;}
.x1eb{left:8074.107422px;}
.x26e{left:8108.525391px;}
.x286{left:8111.191407px;}
.x1b3{left:8118.785157px;}
.x1aa{left:8123.496093px;}
.x2aa{left:8126.367188px;}
.x19d{left:8141.050782px;}
.x257{left:8142.158204px;}
.x32{left:8156.793458px;}
.x1ec{left:8160.386718px;}
.x287{left:8164.306641px;}
.x258{left:8193.837891px;}
.x211{left:8198.041992px;}
.x3b{left:8203.683107px;}
.x33{left:8207.228028px;}
.x59{left:8218.990724px;}
.x288{left:8243.671875px;}
.x5e{left:8247.672365px;}
.x39{left:8249.928224px;}
.x5a{left:8263.060548px;}
.x26f{left:8264.897462px;}
.x40{left:8269.505861px;}
.x212{left:8272.792968px;}
.x3c{left:8277.320801px;}
.x29d{left:8285.917968px;}
.x5f{left:8293.998048px;}
.x22a{left:8298.325196px;}
.x213{left:8299.658203px;}
.x5b{left:8309.386232px;}
.x270{left:8312.373047px;}
.x41{left:8314.623048px;}
.x3d{left:8324.129883px;}
.x22b{left:8325.190430px;}
.x5c{left:8340.082032px;}
.x29e{left:8355.029297px;}
.x42{left:8358.692871px;}
.x2ab{left:8370.000000px;}
.x214{left:8375.332032px;}
.x5d{left:8386.649415px;}
.x34{left:8388.421875px;}
.x2ac{left:8394.814453px;}
.x60{left:8409.771974px;}
.x1ab{left:8423.525391px;}
.x35{left:8441.515137px;}
.x43{left:8452.069337px;}
.x61{left:8456.581055px;}
.x22c{left:8478.281250px;}
.x259{left:8493.457032px;}
.x3e{left:8495.172365px;}
.x3f{left:8541.981446px;}
.x25a{left:8545.136718px;}
.x36{left:8555.516603px;}
.x38{left:8562.042482px;}
.x271{left:8580.820312px;}
.x22d{left:8581.948242px;}
.x62{left:8587.098633px;}
.x37{left:8602.083986px;}
.x25b{left:8607.890625px;}
.x22e{left:8611.376953px;}
.x63{left:8633.907716px;}
.x2ad{left:8638.447266px;}
.x44{left:8657.594240px;}
.x2ae{left:8663.261718px;}
.x22f{left:8681.513672px;}
.x215{left:8716.582032px;}
.x3a{left:8722.450196px;}
.x289{left:8734.218750px;}
.x230{left:8749.291992px;}
.x272{left:8763.544922px;}
.x29f{left:8770.209962px;}
.x216{left:8782.412109px;}
.x28a{left:8797.382812px;}
.x217{left:8834.091797px;}
.x2a0{left:8841.269532px;}
.x231{left:8891.411133px;}
.x232{left:8923.505859px;}
.x25c{left:8940.322266px;}
.x233{left:8975.185547px;}
.x25d{left:8979.287109px;}
.x69{left:8997.000000px;}
.x6a{left:9023.718750px;}
.x234{left:9037.631837px;}
.x28b{left:9059.575195px;}
.x6b{left:9065.642578px;}
.x28c{left:9110.024413px;}
.x6c{left:9119.080078px;}
.x218{left:9133.710938px;}
.x6d{left:9161.003907px;}
.x219{left:9185.390625px;}
.x74{left:9187.500000px;}
.x21a{left:9264.550782px;}
.x2a1{left:9278.496093px;}
.x1ff{left:9310.833984px;}
.x2a2{left:9339.916992px;}
.x200{left:9367.142578px;}
.x25e{left:9390.571288px;}
.x21b{left:9461.220703px;}
.x2a3{left:9462.758788px;}
.x6{left:9502.500000px;}
.x7{left:9504.000000px;}
.x21c{left:9557.812500px;}
.x21d{left:9705.878907px;}
.x235{left:9745.458984px;}
.x21e{left:9788.525391px;}
.x28d{left:9798.676758px;}
.x236{left:9817.133788px;}
.x28e{left:9895.268555px;}
.x237{left:9902.241212px;}
.x28f{left:10043.334962px;}
@media print{
.v1{vertical-align:-352.000000pt;}
.v3{vertical-align:-288.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:362.666667pt;}
.v4{vertical-align:480.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1{word-spacing:57.061869pt;}
.ws5{word-spacing:122.677083pt;}
.ws4{word-spacing:171.747884pt;}
.ws3{word-spacing:8628.041456pt;}
.ws2{word-spacing:8638.715936pt;}
._18{margin-left:-5108.616654pt;}
._2d{margin-left:-4316.949987pt;}
._34{margin-left:-2004.534387pt;}
._29{margin-left:-1707.346874pt;}
._32{margin-left:-1337.971887pt;}
._26{margin-left:-197.219976pt;}
._a{margin-left:-102.416016pt;}
._47{margin-left:-83.433594pt;}
._3{margin-left:-55.725789pt;}
._9{margin-left:-52.960328pt;}
._b{margin-left:-48.055421pt;}
._0{margin-left:-46.672526pt;}
._8{margin-left:-44.928669pt;}
._1a{margin-left:-43.083333pt;}
._4{margin-left:-38.214275pt;}
._5{margin-left:-37.280192pt;}
._43{margin-left:-35.972809pt;}
._6{margin-left:-34.778767pt;}
._7{margin-left:-33.191406pt;}
._1{margin-left:-30.129191pt;}
._2{margin-left:-28.956706pt;}
._c{margin-left:-27.243367pt;}
._12{margin-left:-25.928812pt;}
._e{margin-left:-24.167969pt;}
._d{margin-left:-23.214599pt;}
._39{margin-left:-20.845133pt;}
._11{margin-left:-19.653443pt;}
._f{margin-left:-17.223348pt;}
._10{margin-left:-16.214417pt;}
._42{margin-left:-13.974904pt;}
._41{margin-left:-11.835002pt;}
._1f{margin-left:-10.916626pt;}
._16{margin-left:-9.919983pt;}
._15{margin-left:-8.608581pt;}
._1c{margin-left:-7.216878pt;}
._1b{margin-left:-6.125285pt;}
._2a{margin-left:-4.986236pt;}
._13{margin-left:-3.985006pt;}
._1d{margin-left:-2.982463pt;}
._14{margin-left:-2.087524pt;}
._1e{margin-left:-0.920614pt;}
._23{width:0.987891pt;}
._38{width:3.336100pt;}
._3a{width:9.513997pt;}
._3f{width:10.604248pt;}
._3e{width:15.472005pt;}
._2b{width:17.705547pt;}
._24{width:21.706193pt;}
._46{width:29.899129pt;}
._40{width:30.901693pt;}
._27{width:58.378092pt;}
._20{width:71.351074pt;}
._3c{width:86.006592pt;}
._19{width:90.913333pt;}
._45{width:92.773356pt;}
._3b{width:95.068197pt;}
._2e{width:103.830000pt;}
._37{width:114.989898pt;}
._36{width:117.290110pt;}
._35{width:124.233754pt;}
._25{width:138.748719pt;}
._22{width:170.204427pt;}
._44{width:353.993856pt;}
._21{width:477.574137pt;}
._2f{width:643.197510pt;}
._30{width:1051.713137pt;}
._31{width:1276.947525pt;}
._28{width:1317.609375pt;}
._33{width:1943.510025pt;}
._2c{width:3200.069987pt;}
._17{width:3991.736654pt;}
._3d{width:11398.049129pt;}
.fs5{font-size:213.333333pt;}
.fs4{font-size:240.000000pt;}
.fs9{font-size:266.666667pt;}
.fs6{font-size:293.333333pt;}
.fs3{font-size:320.000000pt;}
.fs8{font-size:373.333333pt;}
.fs2{font-size:426.666667pt;}
.fs7{font-size:533.333333pt;}
.fs1{font-size:586.666667pt;}
.fs0{font-size:746.666667pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:628.766927pt;}
.y16{bottom:725.333333pt;}
.y41{bottom:900.061197pt;}
.y48{bottom:970.100260pt;}
.y1b{bottom:971.115885pt;}
.y40{bottom:972.061197pt;}
.y3f{bottom:972.061199pt;}
.y50{bottom:988.000000pt;}
.y1c{bottom:1059.115885pt;}
.y10{bottom:1121.333333pt;}
.y1a{bottom:1147.115885pt;}
.y34{bottom:1181.333333pt;}
.y3e{bottom:1236.060547pt;}
.y47{bottom:1298.100260pt;}
.y3d{bottom:1308.060547pt;}
.y4d{bottom:1326.666667pt;}
.y21{bottom:1583.589193pt;}
.y15{bottom:1618.666667pt;}
.y46{bottom:1640.766927pt;}
.y43{bottom:1642.727213pt;}
.y20{bottom:1655.589193pt;}
.y4e{bottom:1656.000000pt;}
.y14{bottom:1690.666667pt;}
.y8{bottom:1752.000000pt;}
.y7{bottom:1848.000000pt;}
.y1f{bottom:1888.841147pt;}
.y23{bottom:1911.998047pt;}
.y13{bottom:1948.000000pt;}
.y1e{bottom:1960.841145pt;}
.y22{bottom:1983.998047pt;}
.y45{bottom:1984.766927pt;}
.y42{bottom:1985.393880pt;}
.y4f{bottom:1998.666667pt;}
.y12{bottom:2020.000000pt;}
.y1d{bottom:2081.333333pt;}
.y11{bottom:2092.000000pt;}
.y6{bottom:2113.333333pt;}
.y5{bottom:2209.333333pt;}
.y44{bottom:2302.100260pt;}
.y19{bottom:2334.666667pt;}
.y26{bottom:2335.277344pt;}
.y18{bottom:2422.666667pt;}
.y25{bottom:2423.277344pt;}
.yf{bottom:2453.333333pt;}
.y17{bottom:2510.666667pt;}
.y24{bottom:2511.277344pt;}
.y29{bottom:2532.322265pt;}
.y3b{bottom:2536.000000pt;}
.y3c{bottom:2538.666667pt;}
.y33{bottom:2548.000000pt;}
.y31{bottom:2552.000000pt;}
.y28{bottom:2620.322265pt;}
.y4a{bottom:2620.766927pt;}
.y3a{bottom:2624.000000pt;}
.y27{bottom:2708.322265pt;}
.y32{bottom:2752.000000pt;}
.y38{bottom:2813.333333pt;}
.y39{bottom:2816.000000pt;}
.y37{bottom:2901.333333pt;}
.y4b{bottom:2939.433593pt;}
.y2d{bottom:2958.342447pt;}
.y2c{bottom:2958.342448pt;}
.y2b{bottom:3046.342448pt;}
.y2a{bottom:3134.342448pt;}
.yc{bottom:3144.000000pt;}
.y35{bottom:3161.333333pt;}
.yb{bottom:3240.000000pt;}
.y4c{bottom:3274.100260pt;}
.y2f{bottom:3395.519531pt;}
.ye{bottom:3466.666667pt;}
.y30{bottom:3483.519532pt;}
.y2e{bottom:3571.519531pt;}
.ya{bottom:3589.333333pt;}
.yd{bottom:3594.666667pt;}
.y36{bottom:3601.333333pt;}
.y9{bottom:3685.333333pt;}
.ya6{bottom:3916.000000pt;}
.yaf{bottom:4160.000000pt;}
.yae{bottom:4272.000000pt;}
.yad{bottom:4384.000000pt;}
.y87{bottom:4422.666667pt;}
.yac{bottom:4496.000000pt;}
.y86{bottom:4542.666667pt;}
.yab{bottom:4608.000000pt;}
.y85{bottom:4676.000000pt;}
.yaa{bottom:4720.000000pt;}
.y84{bottom:4796.000000pt;}
.ya9{bottom:4832.000000pt;}
.y83{bottom:4916.000000pt;}
.ya8{bottom:4944.000000pt;}
.y82{bottom:5036.000000pt;}
.ya5{bottom:5108.000000pt;}
.y81{bottom:5220.000000pt;}
.ya7{bottom:5384.000000pt;}
.y80{bottom:5525.333659pt;}
.y7f{bottom:5645.333659pt;}
.y7e{bottom:5765.333659pt;}
.y7d{bottom:5885.333659pt;}
.y74{bottom:6005.333333pt;}
.y72{bottom:6086.666992pt;}
.y75{bottom:6169.333659pt;}
.y71{bottom:6182.666992pt;}
.ya4{bottom:6225.333171pt;}
.y70{bottom:6278.666992pt;}
.y73{bottom:6368.000000pt;}
.ya3{bottom:6465.333171pt;}
.y6b{bottom:6533.333333pt;}
.ya2{bottom:6585.333171pt;}
.y6a{bottom:6629.333333pt;}
.ya1{bottom:6705.333171pt;}
.y69{bottom:6725.333333pt;}
.y7a{bottom:6819.999675pt;}
.y68{bottom:6821.333333pt;}
.ya0{bottom:6825.333171pt;}
.y9f{bottom:6945.333171pt;}
.y6f{bottom:6954.666992pt;}
.y6e{bottom:7050.666992pt;}
.y9e{bottom:7065.333171pt;}
.y6d{bottom:7146.666992pt;}
.y67{bottom:7183.999675pt;}
.y9d{bottom:7185.333171pt;}
.y6c{bottom:7242.666992pt;}
.y7b{bottom:7272.000000pt;}
.y66{bottom:7279.999675pt;}
.y77{bottom:7515.999837pt;}
.y65{bottom:7539.999675pt;}
.y76{bottom:7603.999837pt;}
.y79{bottom:7608.505208pt;}
.y64{bottom:7635.999675pt;}
.y78{bottom:7640.223959pt;}
.y7c{bottom:7837.333333pt;}
.y63{bottom:8026.666829pt;}
.y9c{bottom:8324.000163pt;}
.y62{bottom:8368.000000pt;}
.y61{bottom:8488.000000pt;}
.y60{bottom:8641.333333pt;}
.y99{bottom:8754.666545pt;}
.y5f{bottom:8761.333333pt;}
.y9b{bottom:8874.666423pt;}
.y98{bottom:8874.666545pt;}
.y5e{bottom:8914.666667pt;}
.y9a{bottom:8967.999756pt;}
.y97{bottom:8967.999879pt;}
.y5d{bottom:9034.666667pt;}
.y96{bottom:9087.999879pt;}
.y5c{bottom:9154.666667pt;}
.y95{bottom:9207.999879pt;}
.y94{bottom:9327.999879pt;}
.y5b{bottom:9341.333456pt;}
.y93{bottom:9510.666789pt;}
.y92{bottom:10081.333211pt;}
.y91{bottom:10174.666544pt;}
.y90{bottom:10267.999877pt;}
.y8f{bottom:10361.333211pt;}
.y57{bottom:10545.333373pt;}
.y8e{bottom:10630.666911pt;}
.y56{bottom:10665.333373pt;}
.y8d{bottom:10750.666911pt;}
.y55{bottom:10785.333373pt;}
.y8c{bottom:10870.666911pt;}
.y5a{bottom:10967.999837pt;}
.y8b{bottom:11006.666911pt;}
.y59{bottom:11087.999837pt;}
.y58{bottom:11207.999837pt;}
.y54{bottom:11366.666341pt;}
.y8a{bottom:11366.666911pt;}
.y53{bottom:11486.666341pt;}
.y89{bottom:11486.666911pt;}
.y52{bottom:11606.666341pt;}
.y88{bottom:11606.666911pt;}
.y51{bottom:11787.999511pt;}
.y4{bottom:12321.333333pt;}
.y3{bottom:12469.333496pt;}
.y2{bottom:12658.666016pt;}
.y1{bottom:12882.666016pt;}
.h6{height:202.666667pt;}
.h5{height:228.000000pt;}
.hc{height:253.333333pt;}
.h7{height:278.666667pt;}
.h4{height:304.000000pt;}
.ha{height:354.666667pt;}
.h3{height:405.333333pt;}
.h9{height:506.666667pt;}
.h2{height:557.333333pt;}
.h8{height:641.333333pt;}
.h1{height:709.333333pt;}
.hb{height:834.666667pt;}
.h0{height:13244.000000pt;}
.w0{width:9354.666667pt;}
.w1{width:9354.678667pt;}
.x0{left:0.000000pt;}
.x75{left:392.000000pt;}
.xb0{left:434.929688pt;}
.x76{left:436.042969pt;}
.x16b{left:444.340495pt;}
.x176{left:446.322917pt;}
.x173{left:453.605469pt;}
.x7b{left:470.666667pt;}
.x171{left:491.246093pt;}
.x174{left:500.011719pt;}
.x7c{left:514.709636pt;}
.xd4{left:532.000000pt;}
.x172{left:547.248697pt;}
.xe4{left:575.750000pt;}
.xd5{left:576.843749pt;}
.x116{left:582.585937pt;}
.x103{left:585.593749pt;}
.x195{left:592.611979pt;}
.x175{left:601.489584pt;}
.xb1{left:603.276041pt;}
.xf4{left:611.834859pt;}
.x17b{left:617.677083pt;}
.xb2{left:625.333333pt;}
.x12d{left:627.247396pt;}
.x117{left:632.469544pt;}
.x196{left:646.205729pt;}
.xf5{left:660.597880pt;}
.x17c{left:672.729167pt;}
.x118{left:678.589335pt;}
.x194{left:681.023437pt;}
.x12e{left:689.226563pt;}
.xb3{left:710.645833pt;}
.xb4{left:756.959839pt;}
.x17d{left:798.236979pt;}
.xb5{left:819.303589pt;}
.x119{left:822.353149pt;}
.x11a{left:872.939087pt;}
.x11b{left:922.822713pt;}
.x7e{left:946.904948pt;}
.x78{left:957.333333pt;}
.x11c{left:970.765421pt;}
.xb6{left:989.393596pt;}
.xf6{left:1019.247844pt;}
.xd6{left:1025.190104pt;}
.xb7{left:1028.039429pt;}
.x17e{left:1036.856771pt;}
.x7f{left:1047.510417pt;}
.xd7{left:1059.825521pt;}
.x181{left:1063.015625pt;}
.x104{left:1066.479167pt;}
.xb8{left:1071.619059pt;}
.xf7{left:1081.044677pt;}
.x187{left:1089.174479pt;}
.x105{left:1099.747396pt;}
.x17f{left:1107.221355pt;}
.xb9{left:1109.444580pt;}
.x182{left:1115.606771pt;}
.xf8{left:1134.720703pt;}
.x188{left:1144.682292pt;}
.x12f{left:1178.406251pt;}
.x79{left:1183.166667pt;}
.xe5{left:1191.075521pt;}
.x189{left:1193.536459pt;}
.x11d{left:1220.649821pt;}
.x106{left:1221.973959pt;}
.x18a{left:1246.947917pt;}
.x130{left:1248.406251pt;}
.xe6{left:1254.057292pt;}
.x11e{left:1271.326904pt;}
.x107{left:1277.117188pt;}
.xd8{left:1328.120849pt;}
.xba{left:1354.000732pt;}
.xd9{left:1378.524496pt;}
.xbb{left:1404.586669pt;}
.xbc{left:1450.900635pt;}
.x108{left:1478.822917pt;}
.x131{left:1487.117188pt;}
.x132{left:1520.385416pt;}
.xbd{left:1522.176676pt;}
.x177{left:1541.166667pt;}
.xbe{left:1568.490723pt;}
.xf9{left:1573.843505pt;}
.x178{left:1582.455729pt;}
.x11f{left:1607.161865pt;}
.xbf{left:1630.834472pt;}
.xda{left:1632.965657pt;}
.xfa{left:1637.007568pt;}
.x109{left:1640.424479pt;}
.x133{left:1642.611979pt;}
.x167{left:1652.804688pt;}
.x152{left:1660.460937pt;}
.x8f{left:1666.666667pt;}
.x14b{left:1677.690104pt;}
.xdb{left:1682.275553pt;}
.x90{left:1690.416667pt;}
.x168{left:1696.007812pt;}
.x134{left:1697.755208pt;}
.x120{left:1699.128011pt;}
.xe7{left:1720.268229pt;}
.x89{left:1726.666667pt;}
.x8c{left:1728.000000pt;}
.x150{left:1737.733073pt;}
.xfb{left:1750.110677pt;}
.x14f{left:1763.041667pt;}
.x8a{left:1774.166667pt;}
.x8d{left:1775.500000pt;}
.xc0{left:1781.236979pt;}
.xe8{left:1803.028645pt;}
.x14c{left:1805.528645pt;}
.x121{left:1807.135743pt;}
.x8b{left:1811.432292pt;}
.x8e{left:1812.765625pt;}
.x10a{left:1820.528645pt;}
.xe9{left:1825.177083pt;}
.x149{left:1831.960937pt;}
.x163{left:1837.264323pt;}
.xc1{left:1843.033855pt;}
.xc2{left:1865.091145pt;}
.x135{left:1873.302083pt;}
.x14d{left:1876.804688pt;}
.x10b{left:1881.960937pt;}
.xa5{left:1886.406251pt;}
.x164{left:1900.975260pt;}
.x122{left:1902.200847pt;}
.x91{left:1920.260416pt;}
.x7a{left:1925.250000pt;}
.xc3{left:1933.268229pt;}
.x169{left:1952.257812pt;}
.x165{left:1953.657552pt;}
.x92{left:1959.843749pt;}
.x153{left:1960.734375pt;}
.xea{left:1961.804688pt;}
.xa6{left:1972.083333pt;}
.xc4{left:1975.936361pt;}
.x16a{left:1996.554688pt;}
.x166{left:2002.420573pt;}
.xeb{left:2006.830729pt;}
.xc5{left:2023.970215pt;}
.x18d{left:2026.380208pt;}
.x80{left:2037.536784pt;}
.xa7{left:2048.776041pt;}
.x81{left:2062.432616pt;}
.xa1{left:2089.333333pt;}
.xa8{left:2118.046875pt;}
.xfc{left:2125.166829pt;}
.x123{left:2130.548015pt;}
.x84{left:2133.506836pt;}
.x144{left:2139.401041pt;}
.x93{left:2142.526041pt;}
.x18e{left:2152.421875pt;}
.x85{left:2161.514648pt;}
.x86{left:2177.393555pt;}
.x124{left:2180.951660pt;}
.xa9{left:2201.250000pt;}
.x87{left:2205.401367pt;}
.xfd{left:2212.849121pt;}
.xec{left:2223.393229pt;}
.x82{left:2226.130533pt;}
.xed{left:2247.273437pt;}
.x83{left:2251.026367pt;}
.x18f{left:2261.276041pt;}
.xee{left:2270.424479pt;}
.xaa{left:2281.197917pt;}
.x125{left:2283.673015pt;}
.x88{left:2284.795897pt;}
.x136{left:2286.192708pt;}
.x94{left:2334.583333pt;}
.x190{left:2337.968749pt;}
.x145{left:2342.135416pt;}
.xef{left:2345.893229pt;}
.x137{left:2347.625000pt;}
.xab{left:2357.890625pt;}
.x126{left:2379.740723pt;}
.xc6{left:2399.514811pt;}
.xf0{left:2406.505208pt;}
.x14a{left:2410.554688pt;}
.x146{left:2422.083333pt;}
.x95{left:2436.015625pt;}
.x14e{left:2436.986979pt;}
.xc7{left:2438.160644pt;}
.xc8{left:2460.217936pt;}
.x151{left:2485.584636pt;}
.x191{left:2487.838541pt;}
.xac{left:2490.833333pt;}
.xf1{left:2500.385416pt;}
.x10c{left:2516.244792pt;}
.x147{left:2524.817708pt;}
.xa3{left:2531.572917pt;}
.x96{left:2534.973959pt;}
.x183{left:2540.671875pt;}
.xa4{left:2566.208333pt;}
.x184{left:2604.109375pt;}
.xc9{left:2612.443523pt;}
.xad{left:2628.984375pt;}
.x148{left:2632.500000pt;}
.xa2{left:2638.031251pt;}
.x138{left:2657.247396pt;}
.xca{left:2674.240397pt;}
.xfe{left:2682.241373pt;}
.x77{left:2685.335287pt;}
.x192{left:2698.255208pt;}
.xf2{left:2716.947917pt;}
.x139{left:2718.679688pt;}
.xf3{left:2739.005208pt;}
.x97{left:2742.656251pt;}
.x179{left:2760.424479pt;}
.x7d{left:2761.333333pt;}
.x193{left:2774.947917pt;}
.x170{left:2788.000000pt;}
.x17a{left:2815.476563pt;}
.xcb{left:2818.809571pt;}
.xae{left:2822.343749pt;}
.xdc{left:2911.954101pt;}
.xaf{left:2913.750000pt;}
.x10d{left:2921.934896pt;}
.x10e{left:2946.817708pt;}
.xdd{left:2967.097331pt;}
.x10f{left:2972.976563pt;}
.x1{left:2996.801595pt;}
.x185{left:3031.856771pt;}
.x110{left:3035.320312pt;}
.x158{left:3044.729167pt;}
.x154{left:3049.696615pt;}
.x111{left:3061.479167pt;}
.x5{left:3064.644205pt;}
.x186{left:3074.057292pt;}
.xff{left:3075.800131pt;}
.x180{left:3083.080729pt;}
.x13a{left:3087.729167pt;}
.x159{left:3125.432292pt;}
.x100{left:3130.943360pt;}
.x160{left:3132.736979pt;}
.x156{left:3135.393229pt;}
.x112{left:3142.416667pt;}
.x15a{left:3143.869792pt;}
.x13b{left:3150.893229pt;}
.x16c{left:3161.540364pt;}
.x127{left:3177.229492pt;}
.x161{left:3179.143229pt;}
.x113{left:3187.442708pt;}
.x15b{left:3200.276041pt;}
.x128{left:3221.799805pt;}
.xcc{left:3265.071289pt;}
.x2{left:3270.523437pt;}
.xcd{left:3309.915039pt;}
.xde{left:3341.433268pt;}
.x13c{left:3364.994792pt;}
.xdf{left:3374.701497pt;}
.x114{left:3404.005208pt;}
.x18b{left:3447.664063pt;}
.xce{left:3480.631185pt;}
.x18c{left:3482.299479pt;}
.x15c{left:3497.541667pt;}
.xe0{left:3504.690755pt;}
.x15d{left:3521.994792pt;}
.xcf{left:3529.941081pt;}
.xe1{left:3559.833984pt;}
.x162{left:3573.986979pt;}
.x157{left:3585.471355pt;}
.x15e{left:3586.760416pt;}
.x4{left:3597.333333pt;}
.x115{left:3599.604167pt;}
.x15f{left:3626.916667pt;}
.x155{left:3638.680989pt;}
.x13d{left:3654.382812pt;}
.xa{left:3681.762044pt;}
.xc{left:3682.972005pt;}
.xb{left:3687.811849pt;}
.x129{left:3695.447265pt;}
.x8{left:3697.440104pt;}
.x13e{left:3699.408855pt;}
.xe2{left:3739.262044pt;}
.x12a{left:3740.291016pt;}
.xd0{left:3753.260416pt;}
.x16d{left:3759.229817pt;}
.x3{left:3776.000000pt;}
.xe3{left:3794.769857pt;}
.xd1{left:3803.664063pt;}
.x99{left:3826.666667pt;}
.x9a{left:3876.888021pt;}
.x13f{left:3915.971355pt;}
.x9{left:3923.273437pt;}
.x1ed{left:3929.091145pt;}
.x140{left:3939.851563pt;}
.x141{left:3963.002604pt;}
.x9b{left:3976.054688pt;}
.x9c{left:4010.690104pt;}
.x16f{left:4047.947917pt;}
.x16e{left:4051.098959pt;}
.x1ee{left:4055.132812pt;}
.x9d{left:4096.822917pt;}
.x12b{left:4130.057292pt;}
.x101{left:4132.062500pt;}
.x9f{left:4149.231771pt;}
.x1ef{left:4162.815104pt;}
.xd2{left:4169.979167pt;}
.x102{left:4176.632812pt;}
.x12c{left:4185.838541pt;}
.x9e{left:4186.966145pt;}
.xa0{left:4191.432292pt;}
.xd3{left:4204.614584pt;}
.x1f0{left:4264.247396pt;}
.x1f1{left:4340.940104pt;}
.x142{left:4351.830729pt;}
.xd{left:4371.373697pt;}
.x98{left:4375.364584pt;}
.x143{left:4376.713541pt;}
.x1b{left:4394.121745pt;}
.x19{left:4427.376301pt;}
.x1f2{left:4434.169271pt;}
.x1c{left:4461.856120pt;}
.x10{left:4471.887695pt;}
.x11{left:4513.280924pt;}
.x1f3{left:4526.747396pt;}
.x1f4{left:4611.122396pt;}
.x1f5{left:4699.273437pt;}
.x12{left:4701.698893pt;}
.xe{left:4725.078124pt;}
.x13{left:4740.872069pt;}
.x1f6{left:4802.007812pt;}
.x14{left:4808.977539pt;}
.x19e{left:4873.333333pt;}
.x15{left:4885.103841pt;}
.x1a{left:4892.011719pt;}
.x1ac{left:4911.614584pt;}
.x1a5{left:4916.263021pt;}
.x1f7{left:4921.539063pt;}
.x19f{left:4942.877604pt;}
.x16{left:4968.821288pt;}
.x1b4{left:4994.283855pt;}
.x1f8{left:4996.148437pt;}
.x1a0{left:5001.393229pt;}
.x1be{left:5003.997396pt;}
.x17{left:5007.994465pt;}
.x1a6{left:5013.333333pt;}
.x18{left:5035.351236pt;}
.x1b5{left:5055.807292pt;}
.x21f{left:5057.903645pt;}
.x1d0{left:5061.914063pt;}
.x1a1{left:5069.023437pt;}
.x1bf{left:5073.333333pt;}
.x1dd{left:5076.497396pt;}
.x1d4{left:5083.424479pt;}
.xf{left:5093.000976pt;}
.x1d5{left:5105.846355pt;}
.x1b6{left:5112.135416pt;}
.x1d{left:5118.527669pt;}
.x1b7{left:5160.898437pt;}
.x1f9{left:5164.247396pt;}
.x1d6{left:5166.367188pt;}
.x23f{left:5177.213541pt;}
.x1e{left:5186.262044pt;}
.x1a2{left:5195.169271pt;}
.x240{left:5227.799479pt;}
.x1b8{left:5236.640625pt;}
.x1e0{left:5240.013021pt;}
.x1a3{left:5266.171875pt;}
.x273{left:5271.184896pt;}
.x290{left:5282.304688pt;}
.x241{left:5291.236979pt;}
.x1c2{left:5318.125000pt;}
.x1a4{left:5319.765625pt;}
.x274{left:5327.330729pt;}
.x25f{left:5332.890625pt;}
.x242{left:5339.088541pt;}
.x201{left:5345.104167pt;}
.x1fa{left:5348.882812pt;}
.x260{left:5356.770833pt;}
.x238{left:5364.062500pt;}
.x291{left:5367.526041pt;}
.x1b9{left:5370.351563pt;}
.x1c3{left:5373.632812pt;}
.x202{left:5383.750000pt;}
.x275{left:5390.768229pt;}
.x239{left:5402.526041pt;}
.x1e1{left:5428.046875pt;}
.x261{left:5432.239584pt;}
.x1ba{left:5435.885416pt;}
.x276{left:5438.802083pt;}
.x203{left:5450.833333pt;}
.x1c1{left:5460.833333pt;}
.x1de{left:5477.041300pt;}
.x262{left:5492.851563pt;}
.x1c0{left:5510.768229pt;}
.x220{left:5523.750000pt;}
.x64{left:5525.333333pt;}
.x243{left:5528.307292pt;}
.x277{left:5533.138021pt;}
.x204{left:5536.145833pt;}
.x23a{left:5541.523437pt;}
.x65{left:5549.083333pt;}
.x221{left:5561.575521pt;}
.x1df{left:5562.991780pt;}
.x244{left:5566.953125pt;}
.x1bb{left:5575.703125pt;}
.x278{left:5581.080729pt;}
.x23b{left:5583.723959pt;}
.x263{left:5585.000000pt;}
.x66{left:5586.348959pt;}
.x292{left:5606.054688pt;}
.x264{left:5611.158855pt;}
.x1bc{left:5629.296875pt;}
.x67{left:5633.848959pt;}
.x293{left:5661.197917pt;}
.x68{left:5671.114584pt;}
.x265{left:5673.502604pt;}
.x245{left:5696.380208pt;}
.x1c6{left:5711.997396pt;}
.x266{left:5733.750000pt;}
.x222{left:5745.690104pt;}
.x1a8{left:5763.007812pt;}
.x205{left:5775.403645pt;}
.x1c7{left:5781.333333pt;}
.x223{left:5790.260416pt;}
.x23c{left:5800.286459pt;}
.x2a4{left:5811.770833pt;}
.x206{left:5817.604167pt;}
.x1ca{left:5819.614584pt;}
.x23d{left:5822.343749pt;}
.x1c4{left:5837.838541pt;}
.x1c8{left:5842.205729pt;}
.x2a5{left:5856.796875pt;}
.x207{left:5859.895833pt;}
.x1c5{left:5880.039063pt;}
.x267{left:5888.606771pt;}
.x246{left:5894.804688pt;}
.x208{left:5898.541667pt;}
.x279{left:5927.434896pt;}
.x268{left:5934.544271pt;}
.x247{left:5942.747396pt;}
.x1f{left:5962.140625pt;}
.x27a{left:5966.080729pt;}
.x1fb{left:5974.796875pt;}
.x45{left:5975.894531pt;}
.x224{left:5978.658855pt;}
.x269{left:5990.052083pt;}
.x248{left:6009.830729pt;}
.x46{left:6015.998697pt;}
.x225{left:6020.859375pt;}
.x1fc{left:6024.848959pt;}
.x20{left:6030.747396pt;}
.x23e{left:6038.906251pt;}
.x28{left:6044.927084pt;}
.x294{left:6046.380208pt;}
.x4e{left:6047.294271pt;}
.x47{left:6055.171875pt;}
.x249{left:6057.773437pt;}
.x4c{left:6058.680989pt;}
.x2c{left:6062.329428pt;}
.x295{left:6070.260416pt;}
.x209{left:6071.627604pt;}
.x54{left:6076.083333pt;}
.x4f{left:6086.037760pt;}
.x21{left:6090.330729pt;}
.x48{left:6093.915364pt;}
.x1c9{left:6102.817708pt;}
.x55{left:6116.187500pt;}
.x50{left:6120.269531pt;}
.x24a{left:6125.221355pt;}
.x1d1{left:6132.877604pt;}
.x56{left:6155.360676pt;}
.x51{left:6161.877604pt;}
.x24b{left:6187.018229pt;}
.x1bd{left:6193.671875pt;}
.x2a{left:6201.333333pt;}
.x22{left:6206.274740pt;}
.x27b{left:6222.018229pt;}
.x57{left:6238.361979pt;}
.x2b{left:6252.895833pt;}
.x24c{left:6254.101563pt;}
.x1e2{left:6256.289063pt;}
.x226{left:6274.153645pt;}
.x52{left:6277.893228pt;}
.x2d{left:6279.106771pt;}
.x27c{left:6283.815104pt;}
.x296{left:6286.822917pt;}
.x49{left:6299.449219pt;}
.x24d{left:6304.322917pt;}
.x27{left:6312.121095pt;}
.x2e{left:6318.279948pt;}
.x53{left:6319.501301pt;}
.x1d2{left:6320.911459pt;}
.x227{left:6327.747396pt;}
.x297{left:6336.861979pt;}
.x2a6{left:6344.062500pt;}
.x4a{left:6346.643228pt;}
.x1dc{left:6349.986979pt;}
.x27d{left:6350.898437pt;}
.x20a{left:6358.190104pt;}
.x1e3{left:6375.234375pt;}
.x23{left:6378.865885pt;}
.x4b{left:6402.287760pt;}
.x1d7{left:6415.338541pt;}
.x27e{left:6417.343749pt;}
.x58{left:6421.050781pt;}
.x24{left:6430.141928pt;}
.x27f{left:6441.223959pt;}
.x1d8{left:6449.973959pt;}
.x1ad{left:6468.130208pt;}
.x4d{left:6478.700520pt;}
.x280{left:6486.523437pt;}
.x197{left:6487.921875pt;}
.x24e{left:6494.908855pt;}
.x2f{left:6496.958333pt;}
.x298{left:6498.463541pt;}
.x1d9{left:6503.385416pt;}
.x1e4{left:6509.145833pt;}
.x25{left:6510.207032pt;}
.x1d3{left:6513.958333pt;}
.x299{left:6539.843749pt;}
.x2a7{left:6540.937500pt;}
.x20b{left:6550.781251pt;}
.x26{left:6557.401041pt;}
.x30{left:6577.023437pt;}
.x281{left:6583.593749pt;}
.x1da{left:6590.247396pt;}
.x1ae{left:6594.171875pt;}
.x198{left:6613.963541pt;}
.x26a{left:6619.231771pt;}
.x24f{left:6624.335937pt;}
.x1fd{left:6634.880208pt;}
.x1db{left:6642.291667pt;}
.x1cb{left:6645.669271pt;}
.x2a8{left:6649.218749pt;}
.x31{left:6666.326823pt;}
.x1e5{left:6671.515625pt;}
.x250{left:6680.117188pt;}
.x1a7{left:6682.669271pt;}
.x1fe{left:6684.932292pt;}
.x282{left:6691.328125pt;}
.x1af{left:6703.026041pt;}
.x29a{left:6715.937500pt;}
.x199{left:6722.817708pt;}
.x1cc{left:6731.346355pt;}
.x29b{left:6739.817708pt;}
.x1e6{left:6747.036459pt;}
.x26b{left:6758.593749pt;}
.x29{left:6765.369792pt;}
.x20c{left:6769.348959pt;}
.x1b0{left:6779.718749pt;}
.x19a{left:6799.510416pt;}
.x29c{left:6801.250000pt;}
.x1cd{left:6808.039063pt;}
.x26c{left:6818.385416pt;}
.x20d{left:6820.026041pt;}
.x6e{left:6822.666667pt;}
.x1e7{left:6823.729167pt;}
.x251{left:6829.231771pt;}
.x2a9{left:6833.697917pt;}
.x6f{left:6846.416667pt;}
.x1ce{left:6881.216145pt;}
.x70{left:6883.682292pt;}
.x20e{left:6887.109375pt;}
.x252{left:6889.843749pt;}
.x1e8{left:6909.406251pt;}
.x1b1{left:6929.588541pt;}
.x71{left:6931.182292pt;}
.x228{left:6935.963541pt;}
.x20f{left:6937.148437pt;}
.x19b{left:6949.380208pt;}
.x253{left:6956.927083pt;}
.x72{left:6968.447917pt;}
.x1cf{left:6980.174479pt;}
.x1e9{left:6986.098959pt;}
.x229{left:6991.106771pt;}
.x73{left:6992.000000pt;}
.x283{left:7003.593749pt;}
.x254{left:7026.927083pt;}
.x255{left:7050.807292pt;}
.x284{left:7074.140625pt;}
.x1ea{left:7088.833333pt;}
.x285{left:7096.562500pt;}
.x256{left:7098.750000pt;}
.x1b2{left:7140.005208pt;}
.x210{left:7156.901041pt;}
.x19c{left:7159.796875pt;}
.x1a9{left:7166.744792pt;}
.x26d{left:7169.114584pt;}
.x1eb{left:7176.984375pt;}
.x26e{left:7207.578125pt;}
.x286{left:7209.947917pt;}
.x1b3{left:7216.697917pt;}
.x1aa{left:7220.885416pt;}
.x2aa{left:7223.437500pt;}
.x19d{left:7236.489584pt;}
.x257{left:7237.473959pt;}
.x32{left:7250.483073pt;}
.x1ec{left:7253.677083pt;}
.x287{left:7257.161459pt;}
.x258{left:7283.411459pt;}
.x211{left:7287.148437pt;}
.x3b{left:7292.162761pt;}
.x33{left:7295.313803pt;}
.x59{left:7305.769532pt;}
.x288{left:7327.708333pt;}
.x5e{left:7331.264324pt;}
.x39{left:7333.269532pt;}
.x5a{left:7344.942709pt;}
.x26f{left:7346.575521pt;}
.x40{left:7350.671876pt;}
.x212{left:7353.593749pt;}
.x3c{left:7357.618489pt;}
.x29d{left:7365.260416pt;}
.x5f{left:7372.442709pt;}
.x22a{left:7376.289063pt;}
.x213{left:7377.473959pt;}
.x5b{left:7386.121095pt;}
.x270{left:7388.776041pt;}
.x41{left:7390.776043pt;}
.x3d{left:7399.226563pt;}
.x22b{left:7400.169271pt;}
.x5c{left:7413.406251pt;}
.x29e{left:7426.692708pt;}
.x42{left:7429.949219pt;}
.x2ab{left:7440.000000pt;}
.x214{left:7444.739584pt;}
.x5d{left:7454.799480pt;}
.x34{left:7456.375000pt;}
.x2ac{left:7462.057292pt;}
.x60{left:7475.352865pt;}
.x1ab{left:7487.578125pt;}
.x35{left:7503.569011pt;}
.x43{left:7512.950521pt;}
.x61{left:7516.960937pt;}
.x22c{left:7536.250000pt;}
.x259{left:7549.739584pt;}
.x3e{left:7551.264324pt;}
.x3f{left:7592.872396pt;}
.x25a{left:7595.677083pt;}
.x36{left:7604.903647pt;}
.x38{left:7610.704428pt;}
.x271{left:7627.395833pt;}
.x22d{left:7628.398437pt;}
.x62{left:7632.976563pt;}
.x37{left:7646.296876pt;}
.x25b{left:7651.458333pt;}
.x22e{left:7654.557292pt;}
.x63{left:7674.584636pt;}
.x2ad{left:7678.619792pt;}
.x44{left:7695.639324pt;}
.x2ae{left:7700.677083pt;}
.x22f{left:7716.901041pt;}
.x215{left:7748.072917pt;}
.x3a{left:7753.289063pt;}
.x289{left:7763.750000pt;}
.x230{left:7777.148437pt;}
.x272{left:7789.817708pt;}
.x29f{left:7795.742188pt;}
.x216{left:7806.588541pt;}
.x28a{left:7819.895833pt;}
.x217{left:7852.526041pt;}
.x2a0{left:7858.906251pt;}
.x231{left:7903.476563pt;}
.x232{left:7932.005208pt;}
.x25c{left:7946.953125pt;}
.x233{left:7977.942708pt;}
.x25d{left:7981.588541pt;}
.x69{left:7997.333333pt;}
.x6a{left:8021.083333pt;}
.x234{left:8033.450521pt;}
.x28b{left:8052.955729pt;}
.x6b{left:8058.348959pt;}
.x28c{left:8097.799479pt;}
.x6c{left:8105.848959pt;}
.x218{left:8118.854167pt;}
.x6d{left:8143.114584pt;}
.x219{left:8164.791667pt;}
.x74{left:8166.666667pt;}
.x21a{left:8235.156251pt;}
.x2a1{left:8247.552083pt;}
.x1ff{left:8276.296875pt;}
.x2a2{left:8302.148437pt;}
.x200{left:8326.348959pt;}
.x25e{left:8347.174479pt;}
.x21b{left:8409.973959pt;}
.x2a3{left:8411.341145pt;}
.x6{left:8446.666667pt;}
.x7{left:8448.000000pt;}
.x21c{left:8495.833333pt;}
.x21d{left:8627.447917pt;}
.x235{left:8662.630208pt;}
.x21e{left:8700.911459pt;}
.x28d{left:8709.934896pt;}
.x236{left:8726.341145pt;}
.x28e{left:8795.794271pt;}
.x237{left:8801.992188pt;}
.x28f{left:8927.408855pt;}
}




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