
    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_2a0c2f3d833aad0b99de00fb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_7215330d98b70e4c8682ab0f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945000;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_b625326e2afcb09335cdb3d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.388000;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_e0229cacade78c0abd1d30fa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.899000;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_97fd1ddf3f749c45de26387c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.889000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_208b5afde208e8628bf7912a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.714046;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6bd2a6fae26cde39284448e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.638672;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:ff8;src:url('chunks/assets/font_a076c4eed9bb9a4e57f8da47.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904000;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;}
.m2{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);}
.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);}
.v6{vertical-align:-18.414000px;}
.v5{vertical-align:-8.962599px;}
.v7{vertical-align:-7.614029px;}
.v4{vertical-align:-5.562015px;}
.v1{vertical-align:-2.969424px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.969424px;}
.v8{vertical-align:18.414006px;}
.v3{vertical-align:21.709907px;}
.ls23{letter-spacing:-4.674446px;}
.ls28{letter-spacing:-3.800528px;}
.ls12{letter-spacing:-1.506345px;}
.ls26{letter-spacing:-0.741809px;}
.lsd{letter-spacing:-0.025405px;}
.ls9{letter-spacing:-0.023910px;}
.lsc{letter-spacing:-0.020324px;}
.ls8{letter-spacing:-0.017933px;}
.ls1d{letter-spacing:-0.016737px;}
.lsb{letter-spacing:-0.015243px;}
.ls6{letter-spacing:-0.011955px;}
.ls13{letter-spacing:-0.010162px;}
.ls1a{letter-spacing:-0.008369px;}
.ls7{letter-spacing:-0.005978px;}
.lsa{letter-spacing:-0.005081px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.005081px;}
.ls1b{letter-spacing:0.005978px;}
.lse{letter-spacing:0.007173px;}
.ls1c{letter-spacing:0.008369px;}
.ls3{letter-spacing:0.010162px;}
.ls17{letter-spacing:0.015243px;}
.ls18{letter-spacing:0.017933px;}
.ls27{letter-spacing:0.020324px;}
.ls19{letter-spacing:0.021519px;}
.lsf{letter-spacing:0.023910px;}
.ls24{letter-spacing:1.112721px;}
.ls16{letter-spacing:1.327018px;}
.ls11{letter-spacing:2.967637px;}
.ls14{letter-spacing:2.967817px;}
.ls15{letter-spacing:2.967823px;}
.ls20{letter-spacing:3.008177px;}
.ls25{letter-spacing:3.048588px;}
.ls21{letter-spacing:3.051011px;}
.ls1e{letter-spacing:3.051197px;}
.ls0{letter-spacing:14.913185px;}
.ls1{letter-spacing:14.913278px;}
.ls2{letter-spacing:14.967197px;}
.ls10{letter-spacing:41.824202px;}
.ls22{letter-spacing:192.535374px;}
.ls1f{letter-spacing:319.710028px;}
.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;}
}
.wsc{word-spacing:-46.505411px;}
.ws0{word-spacing:-0.073674px;}
.ws14{word-spacing:-0.071133px;}
.ws6{word-spacing:-0.059776px;}
.ws7{word-spacing:-0.053798px;}
.wse{word-spacing:-0.050809px;}
.wsa{word-spacing:-0.050211px;}
.ws16{word-spacing:-0.045728px;}
.ws5{word-spacing:-0.041843px;}
.ws13{word-spacing:-0.040647px;}
.ws3{word-spacing:-0.035865px;}
.ws9{word-spacing:-0.033474px;}
.ws8{word-spacing:-0.025405px;}
.wsb{word-spacing:-0.025106px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:12.621003px;}
.ws2{word-spacing:12.626084px;}
.ws4{word-spacing:12.661651px;}
.ws12{word-spacing:12.732784px;}
.wsf{word-spacing:22.000380px;}
.ws15{word-spacing:46.548263px;}
.ws10{word-spacing:355.393963px;}
.wsd{word-spacing:355.394509px;}
._3{margin-left:-8.818174px;}
._20{margin-left:-7.398337px;}
._1e{margin-left:-6.028242px;}
._c{margin-left:-5.016351px;}
._8{margin-left:-3.909324px;}
._1b{margin-left:-2.867084px;}
._1{margin-left:-1.750245px;}
._17{width:1.482435px;}
._18{width:2.866775px;}
._21{width:3.950194px;}
._23{width:5.363130px;}
._33{width:6.476270px;}
._14{width:7.543680px;}
._15{width:8.582595px;}
._13{width:9.849837px;}
._d{width:10.891113px;}
._b{width:12.134445px;}
._e{width:13.915758px;}
._4{width:14.919988px;}
._9{width:16.498064px;}
._a{width:17.585979px;}
._6{width:19.170033px;}
._7{width:21.100784px;}
._0{width:22.896647px;}
._2{width:23.939143px;}
._19{width:25.075230px;}
._1a{width:26.682645px;}
._1d{width:27.719122px;}
._12{width:28.805858px;}
._22{width:31.155040px;}
._f{width:35.099049px;}
._1c{width:36.219170px;}
._5{width:37.694487px;}
._2d{width:40.711085px;}
._24{width:44.545156px;}
._1f{width:46.608038px;}
._11{width:65.748261px;}
._31{width:81.121076px;}
._32{width:112.023227px;}
._29{width:132.822138px;}
._2c{width:140.013131px;}
._2a{width:157.166315px;}
._2b{width:308.184064px;}
._25{width:318.692343px;}
._26{width:330.514062px;}
._2e{width:331.682080px;}
._28{width:333.309210px;}
._30{width:334.519519px;}
._27{width:347.484242px;}
._2f{width:348.654643px;}
._16{width:703.308344px;}
._10{width:1584.865742px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.614800px;}
.fs6{font-size:41.842795px;}
.fs3{font-size:50.809193px;}
.fs1{font-size:59.775593px;}
.fs5{font-size:71.730595px;}
.fs4{font-size:73.673996px;}
.fs2{font-size:83.686192px;}
.fs0{font-size:95.641800px;}
.y0{bottom:0.000000px;}
.y25{bottom:56.479640px;}
.y24{bottom:71.424236px;}
.y23{bottom:86.368489px;}
.yf7{bottom:110.019848px;}
.yd1{bottom:110.020021px;}
.y15c{bottom:110.020500px;}
.y198{bottom:110.021171px;}
.y11f{bottom:112.788002px;}
.y15d{bottom:114.272999px;}
.y77{bottom:114.462147px;}
.y22{bottom:120.482989px;}
.y4d{bottom:121.981193px;}
.y13d{bottom:123.641964px;}
.y197{bottom:124.965412px;}
.y76{bottom:127.772999px;}
.yf6{bottom:127.961476px;}
.yd0{bottom:127.961665px;}
.y10e{bottom:130.418663px;}
.y15b{bottom:133.308020px;}
.y21{bottom:135.427646px;}
.yac{bottom:139.828503px;}
.y4c{bottom:139.909373px;}
.y196{bottom:139.909653px;}
.y13c{bottom:141.570145px;}
.yf5{bottom:145.889671px;}
.ycf{bottom:145.889846px;}
.y75{bottom:147.334648px;}
.y10d{bottom:148.346857px;}
.y15a{bottom:151.249649px;}
.y195{bottom:154.854149px;}
.yab{bottom:156.378976px;}
.y4b{bottom:157.851001px;}
.y20{bottom:159.335990px;}
.y74{bottom:160.659003px;}
.yf4{bottom:163.817865px;}
.yce{bottom:163.818026px;}
.y10c{bottom:166.287994px;}
.y13b{bottom:168.475315px;}
.y159{bottom:169.177188px;}
.y194{bottom:169.798898px;}
.y1f{bottom:174.280646px;}
.yaa{bottom:174.307171px;}
.y73{bottom:180.207000px;}
.yf3{bottom:181.759494px;}
.ycd{bottom:181.759655px;}
.y10b{bottom:184.216174px;}
.y193{bottom:184.743151px;}
.y158{bottom:187.105368px;}
.y13a{bottom:187.794147px;}
.ya9{bottom:192.235365px;}
.y1e{bottom:198.189139px;}
.yf2{bottom:199.686327px;}
.y4a{bottom:199.687500px;}
.y192{bottom:199.688158px;}
.y10a{bottom:202.144354px;}
.y139{bottom:204.344952px;}
.y157{bottom:205.046997px;}
.ya8{bottom:211.567497px;}
.y1d{bottom:213.133636px;}
.y191{bottom:214.632399px;}
.yf1{bottom:217.614521px;}
.y72{bottom:217.615322px;}
.y109{bottom:220.086157px;}
.y16c{bottom:223.582154px;}
.y15e{bottom:223.582488px;}
.ycc{bottom:223.595992px;}
.y138{bottom:223.663489px;}
.y1c{bottom:228.077995px;}
.y190{bottom:229.576653px;}
.y156{bottom:231.939147px;}
.yf0{bottom:235.556150px;}
.y71{bottom:235.556951px;}
.ya7{bottom:237.068675px;}
.y108{bottom:238.013165px;}
.y18f{bottom:244.521010px;}
.y137{bottom:249.164482px;}
.y155{bottom:249.879959px;}
.yef{bottom:253.484345px;}
.y70{bottom:253.484877px;}
.ya6{bottom:255.010304px;}
.y107{bottom:255.941329px;}
.y18e{bottom:259.465749px;}
.y49{bottom:265.445633px;}
.y136{bottom:267.106126px;}
.y154{bottom:267.808154px;}
.yee{bottom:271.425973px;}
.y6f{bottom:271.426506px;}
.ya5{bottom:272.938499px;}
.y106{bottom:273.882973px;}
.y18d{bottom:274.410003px;}
.y48{bottom:283.373814px;}
.y135{bottom:285.034321px;}
.y153{bottom:285.736348px;}
.ycb{bottom:289.354003px;}
.yed{bottom:289.354168px;}
.y6e{bottom:289.354458px;}
.y18c{bottom:289.354499px;}
.y105{bottom:291.811168px;}
.y1b{bottom:300.073486px;}
.y47{bottom:301.301994px;}
.y134{bottom:302.962515px;}
.y152{bottom:303.678153px;}
.y18b{bottom:304.299237px;}
.yca{bottom:307.282183px;}
.y6d{bottom:307.282184px;}
.yec{bottom:307.282362px;}
.y104{bottom:309.739362px;}
.ya4{bottom:314.788490px;}
.y1bd{bottom:316.246997px;}
.y1a{bottom:318.001504px;}
.y46{bottom:319.242675px;}
.y18a{bottom:319.243491px;}
.y133{bottom:320.904144px;}
.y6c{bottom:325.223813px;}
.yc9{bottom:325.223827px;}
.yeb{bottom:325.223991px;}
.y103{bottom:327.681151px;}
.y1bc{bottom:331.191251px;}
.y189{bottom:334.188390px;}
.y45{bottom:337.170855px;}
.y132{bottom:338.831520px;}
.y91{bottom:341.856494px;}
.y6b{bottom:343.152007px;}
.y151{bottom:345.514503px;}
.y102{bottom:345.608489px;}
.y1bb{bottom:346.135505px;}
.y188{bottom:349.132644px;}
.y19{bottom:353.868010px;}
.y44{bottom:355.099036px;}
.y131{bottom:356.759715px;}
.y90{bottom:356.800748px;}
.yc8{bottom:361.078721px;}
.y6a{bottom:361.079353px;}
.y1ba{bottom:361.080243px;}
.y15f{bottom:362.524497px;}
.y101{bottom:363.536683px;}
.y187{bottom:364.077245px;}
.yea{bottom:367.059929px;}
.y8f{bottom:371.745002px;}
.y18{bottom:371.796204px;}
.y169{bottom:372.904802px;}
.y163{bottom:372.906004px;}
.y166{bottom:372.906085px;}
.y43{bottom:373.040664px;}
.y130{bottom:374.701343px;}
.y1b9{bottom:376.024497px;}
.yc7{bottom:379.020350px;}
.y69{bottom:379.020997px;}
.y186{bottom:379.021499px;}
.ya3{bottom:380.533327px;}
.y100{bottom:381.478312px;}
.ye9{bottom:387.985518px;}
.y17{bottom:389.724369px;}
.y42{bottom:390.968845px;}
.y1b8{bottom:390.969492px;}
.y12f{bottom:392.629538px;}
.y185{bottom:393.966250px;}
.yc6{bottom:396.948530px;}
.y68{bottom:396.949162px;}
.ya2{bottom:398.475002px;}
.yff{bottom:399.406476px;}
.y1b7{bottom:405.913745px;}
.y16{bottom:407.666044px;}
.y41{bottom:408.910473px;}
.y184{bottom:408.910491px;}
.y12e{bottom:410.571166px;}
.y150{bottom:411.272815px;}
.yc5{bottom:414.876711px;}
.y8e{bottom:414.877169px;}
.y67{bottom:414.877356px;}
.ya1{bottom:416.402698px;}
.yfe{bottom:417.334671px;}
.y1b6{bottom:420.857986px;}
.y183{bottom:423.855698px;}
.y15{bottom:425.594208px;}
.y40{bottom:426.838668px;}
.y12d{bottom:428.498978px;}
.y14f{bottom:429.201009px;}
.yc4{bottom:432.818339px;}
.y8d{bottom:432.818797px;}
.y66{bottom:432.818985px;}
.ya0{bottom:434.330892px;}
.y1b5{bottom:435.803002px;}
.y182{bottom:438.785979px;}
.y14{bottom:443.522372px;}
.yfd{bottom:444.239834px;}
.y3f{bottom:444.766006px;}
.y12c{bottom:446.427016px;}
.y14e{bottom:447.142638px;}
.yc3{bottom:450.746520px;}
.y8c{bottom:450.746838px;}
.y1b4{bottom:450.747256px;}
.y9f{bottom:452.272351px;}
.ye8{bottom:453.730177px;}
.y181{bottom:453.730498px;}
.y65{bottom:459.710666px;}
.y13{bottom:461.464047px;}
.yfc{bottom:462.167998px;}
.y3e{bottom:462.707650px;}
.y14d{bottom:465.069977px;}
.y1b3{bottom:465.691497px;}
.yc2{bottom:468.674700px;}
.y8b{bottom:468.674888px;}
.y180{bottom:468.675386px;}
.y9e{bottom:470.200516px;}
.ye7{bottom:471.671806px;}
.y12b{bottom:473.332488px;}
.y64{bottom:477.652295px;}
.y12{bottom:479.392212px;}
.yfb{bottom:480.109307px;}
.y3d{bottom:480.635830px;}
.y1b2{bottom:480.636651px;}
.y14c{bottom:482.998172px;}
.y17f{bottom:483.619627px;}
.y8a{bottom:486.616329px;}
.y9d{bottom:488.128515px;}
.ye6{bottom:489.599986px;}
.y1b1{bottom:495.580904px;}
.y63{bottom:496.971129px;}
.y11{bottom:497.333840px;}
.yfa{bottom:498.037502px;}
.y3c{bottom:498.564010px;}
.y12a{bottom:500.224508px;}
.y14b{bottom:500.939800px;}
.y160{bottom:503.937010px;}
.y89{bottom:504.544128px;}
.yc1{bottom:504.544509px;}
.y9c{bottom:506.068831px;}
.ye5{bottom:507.528166px;}
.y1b0{bottom:510.525146px;}
.y62{bottom:513.508198px;}
.y17e{bottom:513.508760px;}
.y165{bottom:514.318573px;}
.y16a{bottom:514.318602px;}
.y164{bottom:514.318973px;}
.y10{bottom:515.262035px;}
.yf9{bottom:515.965666px;}
.y3b{bottom:516.505459px;}
.y129{bottom:518.165966px;}
.y14a{bottom:518.867980px;}
.yc0{bottom:522.472167px;}
.y88{bottom:522.472309px;}
.y9b{bottom:523.997025px;}
.ye4{bottom:525.469482px;}
.y17d{bottom:528.453002px;}
.y61{bottom:531.449826px;}
.yf{bottom:533.190199px;}
.y3a{bottom:534.432796px;}
.y128{bottom:536.093662px;}
.y149{bottom:536.795170px;}
.ybf{bottom:540.413796px;}
.y87{bottom:540.413937px;}
.y1af{bottom:540.414266px;}
.y9a{bottom:541.925190px;}
.ye3{bottom:543.396871px;}
.y17c{bottom:543.397521px;}
.y60{bottom:550.768478px;}
.ye{bottom:551.131828px;}
.y39{bottom:552.360977px;}
.y127{bottom:554.021857px;}
.y148{bottom:554.736799px;}
.y1ae{bottom:555.358519px;}
.y86{bottom:558.341190px;}
.ybe{bottom:558.341991px;}
.y17b{bottom:558.342260px;}
.y99{bottom:559.866818px;}
.ye2{bottom:561.338500px;}
.yf8{bottom:563.552992px;}
.y5f{bottom:567.305883px;}
.yd{bottom:569.060022px;}
.y38{bottom:570.302605px;}
.y1ad{bottom:570.302992px;}
.y126{bottom:571.963159px;}
.y147{bottom:572.664993px;}
.y17a{bottom:573.286513px;}
.y85{bottom:576.269370px;}
.ybd{bottom:576.270171px;}
.y98{bottom:577.795013px;}
.ye1{bottom:579.266680px;}
.y1ac{bottom:585.247914px;}
.y5e{bottom:586.638016px;}
.yc{bottom:586.988187px;}
.y37{bottom:588.230786px;}
.y179{bottom:588.231252px;}
.y125{bottom:589.891354px;}
.y146{bottom:590.593188px;}
.y84{bottom:594.210999px;}
.ybc{bottom:594.211669px;}
.y97{bottom:595.723177px;}
.ye0{bottom:597.194860px;}
.y1ab{bottom:600.192168px;}
.y178{bottom:603.175506px;}
.y11e{bottom:604.065864px;}
.yb{bottom:604.929815px;}
.y36{bottom:606.158981px;}
.y124{bottom:607.819388px;}
.y145{bottom:608.534817px;}
.ybb{bottom:612.138676px;}
.y5d{bottom:612.139023px;}
.y83{bottom:612.139193px;}
.y96{bottom:613.664852px;}
.ydf{bottom:615.136504px;}
.y177{bottom:618.120522px;}
.y11d{bottom:622.007493px;}
.ya{bottom:622.858010px;}
.y35{bottom:624.098966px;}
.y123{bottom:625.760644px;}
.y144{bottom:626.462997px;}
.yba{bottom:630.080305px;}
.y5c{bottom:630.080651px;}
.y82{bottom:630.080822px;}
.y1aa{bottom:630.081243px;}
.y95{bottom:631.592846px;}
.yde{bottom:633.063979px;}
.y176{bottom:633.064763px;}
.y11c{bottom:639.935657px;}
.y9{bottom:640.786174px;}
.y34{bottom:642.027146px;}
.y122{bottom:643.688839px;}
.y143{bottom:644.390516px;}
.y1a9{bottom:645.025497px;}
.y161{bottom:645.349501px;}
.y16b{bottom:645.349653px;}
.yb9{bottom:648.008499px;}
.y5b{bottom:648.008846px;}
.y81{bottom:648.009016px;}
.y94{bottom:649.521010px;}
.ydd{bottom:650.992159px;}
.y167{bottom:655.731064px;}
.y11b{bottom:657.863852px;}
.y8{bottom:658.727803px;}
.y33{bottom:659.955326px;}
.y1a8{bottom:659.956927px;}
.y121{bottom:661.617003px;}
.y142{bottom:662.332160px;}
.y175{bottom:662.953628px;}
.y80{bottom:665.935988px;}
.yb8{bottom:665.936694px;}
.y5a{bottom:665.937010px;}
.ydc{bottom:668.933803px;}
.y1a7{bottom:674.901168px;}
.y11a{bottom:675.805480px;}
.y7{bottom:676.655998px;}
.y32{bottom:677.896971px;}
.y174{bottom:677.898009px;}
.y141{bottom:680.260341px;}
.y59{bottom:683.877488px;}
.y7f{bottom:683.877632px;}
.yb7{bottom:683.878323px;}
.ydb{bottom:686.861983px;}
.y1a6{bottom:689.845724px;}
.y173{bottom:692.843026px;}
.y119{bottom:693.733189px;}
.y31{bottom:695.825151px;}
.y93{bottom:697.122725px;}
.y140{bottom:698.188521px;}
.y58{bottom:701.805652px;}
.y7e{bottom:701.805812px;}
.yb6{bottom:701.805984px;}
.y1a5{bottom:704.789978px;}
.y172{bottom:707.787267px;}
.y120{bottom:709.056013px;}
.y118{bottom:711.661383px;}
.y92{bottom:712.052992px;}
.yda{bottom:712.268826px;}
.y30{bottom:713.766795px;}
.y57{bottom:719.733847px;}
.y7d{bottom:719.733993px;}
.yb5{bottom:719.734179px;}
.y1a4{bottom:719.734775px;}
.y171{bottom:722.731521px;}
.y117{bottom:729.602680px;}
.yd9{bottom:730.197006px;}
.y2f{bottom:731.694976px;}
.y1a3{bottom:734.679234px;}
.y56{bottom:737.675475px;}
.y7c{bottom:737.675621px;}
.yb4{bottom:737.675808px;}
.y170{bottom:737.676132px;}
.y6{bottom:742.090345px;}
.y116{bottom:747.530874px;}
.yd8{bottom:748.138030px;}
.y2e{bottom:749.623156px;}
.y1a2{bottom:749.623488px;}
.y16f{bottom:752.620745px;}
.y55{bottom:755.603640px;}
.y7b{bottom:755.603802px;}
.yb3{bottom:755.603988px;}
.y5{bottom:760.031974px;}
.y1a1{bottom:764.568008px;}
.y1c4{bottom:764.569035px;}
.y115{bottom:765.472378px;}
.yd7{bottom:766.066210px;}
.y2d{bottom:767.564800px;}
.y16e{bottom:767.564987px;}
.y54{bottom:773.531804px;}
.yb2{bottom:773.531850px;}
.y7a{bottom:773.531982px;}
.y1a0{bottom:779.512481px;}
.y1c3{bottom:779.513314px;}
.y114{bottom:783.400479px;}
.yd6{bottom:783.994390px;}
.y2c{bottom:785.492980px;}
.y162{bottom:786.762176px;}
.yb1{bottom:791.472678px;}
.y53{bottom:791.473479px;}
.y19f{bottom:794.457530px;}
.y1c2{bottom:794.457555px;}
.y113{bottom:801.328674px;}
.yd5{bottom:801.936035px;}
.y2b{bottom:803.420487px;}
.y16d{bottom:806.418181px;}
.yb0{bottom:809.400858px;}
.y52{bottom:809.401272px;}
.y19e{bottom:809.401784px;}
.y1c1{bottom:809.401796px;}
.y79{bottom:815.382018px;}
.y4{bottom:817.148711px;}
.y2a{bottom:821.362115px;}
.y19d{bottom:824.346037px;}
.y112{bottom:827.328878px;}
.yaf{bottom:827.329039px;}
.y51{bottom:827.329054px;}
.yd4{bottom:827.329321px;}
.y29{bottom:839.290310px;}
.y19c{bottom:839.290465px;}
.y1c0{bottom:839.291299px;}
.y3{bottom:844.040771px;}
.y111{bottom:845.270553px;}
.yae{bottom:845.270683px;}
.y50{bottom:845.270729px;}
.yd3{bottom:845.271007px;}
.y19b{bottom:854.235249px;}
.y1bf{bottom:854.235540px;}
.y168{bottom:855.449981px;}
.y28{bottom:857.218505px;}
.y110{bottom:863.198747px;}
.y4f{bottom:863.198849px;}
.yad{bottom:863.198863px;}
.yd2{bottom:863.199187px;}
.y19a{bottom:869.179503px;}
.y1be{bottom:869.179781px;}
.y2{bottom:870.947200px;}
.y10f{bottom:881.126867px;}
.y78{bottom:881.126913px;}
.y4e{bottom:881.127043px;}
.y199{bottom:884.124301px;}
.y13f{bottom:889.051931px;}
.y1{bottom:897.853629px;}
.y27{bottom:899.068542px;}
.y13e{bottom:903.996184px;}
.y26{bottom:935.747955px;}
.h13{height:28.072960px;}
.h7{height:36.938283px;}
.h2f{height:37.894250px;}
.h1f{height:37.894844px;}
.hd{height:37.895030px;}
.h2e{height:37.895486px;}
.h3{height:42.619998px;}
.h4{height:43.456856px;}
.h28{height:43.457107px;}
.h29{height:43.457357px;}
.h14{height:43.457376px;}
.h18{height:43.457378px;}
.h21{height:43.457382px;}
.h5{height:43.457400px;}
.h19{height:43.457416px;}
.h1d{height:43.457534px;}
.h1b{height:43.457537px;}
.h17{height:43.457606px;}
.h12{height:43.457928px;}
.h1e{height:43.458159px;}
.h2c{height:43.458163px;}
.h2a{height:43.458185px;}
.hb{height:43.458211px;}
.h2b{height:43.458346px;}
.h16{height:43.458378px;}
.h26{height:43.458693px;}
.h2d{height:43.458728px;}
.h11{height:43.458731px;}
.hf{height:43.458734px;}
.h23{height:43.458744px;}
.h1a{height:43.458860px;}
.h27{height:43.458888px;}
.h22{height:43.458930px;}
.h25{height:43.459456px;}
.h10{height:43.459995px;}
.h20{height:43.460061px;}
.h9{height:43.460228px;}
.h30{height:43.460253px;}
.h15{height:43.460625px;}
.h1c{height:43.462109px;}
.h24{height:43.462522px;}
.h34{height:46.485942px;}
.h35{height:46.486960px;}
.h32{height:46.486966px;}
.hc{height:46.511565px;}
.h33{height:46.539911px;}
.he{height:46.565772px;}
.h31{height:50.139686px;}
.h8{height:51.143914px;}
.ha{height:52.129619px;}
.h6{height:63.263499px;}
.h2{height:68.192603px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x1{left:80.365490px;}
.x6{left:90.004498px;}
.x3{left:98.293499px;}
.x4{left:103.207500px;}
.x5{left:105.772457px;}
.x7{left:110.335499px;}
.x8{left:131.881496px;}
.x9{left:146.825738px;}
.xa{left:161.769991px;}
.xb{left:176.714245px;}
.xc{left:191.658499px;}
.x22{left:196.762504px;}
.xd{left:211.707000px;}
.xe{left:226.651254px;}
.xf{left:241.595737px;}
.x10{left:256.539736px;}
.x23{left:275.048996px;}
.x11{left:276.601500px;}
.x24{left:289.993237px;}
.x12{left:291.545767px;}
.x13{left:305.923507px;}
.x14{left:320.867749px;}
.x15{left:336.378503px;}
.x25{left:341.428504px;}
.x16{left:351.322744px;}
.x26{left:356.372746px;}
.x17{left:371.371489px;}
.x18{left:386.315731px;}
.x19{left:401.260010px;}
.x1a{left:402.759016px;}
.x27{left:405.337509px;}
.x1b{left:416.204251px;}
.x28{left:420.281750px;}
.x29{left:435.225991px;}
.x1c{left:436.252487px;}
.x2a{left:450.170270px;}
.x1d{left:451.196728px;}
.x1e{left:466.141007px;}
.x1f{left:480.532238px;}
.x20{left:495.476479px;}
.x21{left:514.160979px;}
.x2{left:565.136984px;}
@media print{
.v6{vertical-align:-16.368000pt;}
.v5{vertical-align:-7.966755pt;}
.v7{vertical-align:-6.768026pt;}
.v4{vertical-align:-4.944013pt;}
.v1{vertical-align:-2.639488pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.639488pt;}
.v8{vertical-align:16.368005pt;}
.v3{vertical-align:19.297695pt;}
.ls23{letter-spacing:-4.155063pt;}
.ls28{letter-spacing:-3.378247pt;}
.ls12{letter-spacing:-1.338973pt;}
.ls26{letter-spacing:-0.659386pt;}
.lsd{letter-spacing:-0.022582pt;}
.ls9{letter-spacing:-0.021254pt;}
.lsc{letter-spacing:-0.018065pt;}
.ls8{letter-spacing:-0.015940pt;}
.ls1d{letter-spacing:-0.014877pt;}
.lsb{letter-spacing:-0.013549pt;}
.ls6{letter-spacing:-0.010627pt;}
.ls13{letter-spacing:-0.009033pt;}
.ls1a{letter-spacing:-0.007439pt;}
.ls7{letter-spacing:-0.005313pt;}
.lsa{letter-spacing:-0.004516pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004516pt;}
.ls1b{letter-spacing:0.005313pt;}
.lse{letter-spacing:0.006376pt;}
.ls1c{letter-spacing:0.007439pt;}
.ls3{letter-spacing:0.009033pt;}
.ls17{letter-spacing:0.013549pt;}
.ls18{letter-spacing:0.015940pt;}
.ls27{letter-spacing:0.018065pt;}
.ls19{letter-spacing:0.019128pt;}
.lsf{letter-spacing:0.021254pt;}
.ls24{letter-spacing:0.989086pt;}
.ls16{letter-spacing:1.179572pt;}
.ls11{letter-spacing:2.637899pt;}
.ls14{letter-spacing:2.638059pt;}
.ls15{letter-spacing:2.638065pt;}
.ls20{letter-spacing:2.673935pt;}
.ls25{letter-spacing:2.709856pt;}
.ls21{letter-spacing:2.712010pt;}
.ls1e{letter-spacing:2.712175pt;}
.ls0{letter-spacing:13.256164pt;}
.ls1{letter-spacing:13.256247pt;}
.ls2{letter-spacing:13.304175pt;}
.ls10{letter-spacing:37.177068pt;}
.ls22{letter-spacing:171.142555pt;}
.ls1f{letter-spacing:284.186691pt;}
.wsc{word-spacing:-41.338143pt;}
.ws0{word-spacing:-0.065488pt;}
.ws14{word-spacing:-0.063229pt;}
.ws6{word-spacing:-0.053134pt;}
.ws7{word-spacing:-0.047820pt;}
.wse{word-spacing:-0.045164pt;}
.wsa{word-spacing:-0.044632pt;}
.ws16{word-spacing:-0.040647pt;}
.ws5{word-spacing:-0.037194pt;}
.ws13{word-spacing:-0.036131pt;}
.ws3{word-spacing:-0.031880pt;}
.ws9{word-spacing:-0.029755pt;}
.ws8{word-spacing:-0.022582pt;}
.wsb{word-spacing:-0.022316pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:11.218670pt;}
.ws2{word-spacing:11.223186pt;}
.ws4{word-spacing:11.254801pt;}
.ws12{word-spacing:11.318030pt;}
.wsf{word-spacing:19.555894pt;}
.ws15{word-spacing:41.376233pt;}
.ws10{word-spacing:315.905745pt;}
.wsd{word-spacing:315.906230pt;}
._3{margin-left:-7.838377pt;}
._20{margin-left:-6.576299pt;}
._1e{margin-left:-5.358437pt;}
._c{margin-left:-4.458978pt;}
._8{margin-left:-3.474955pt;}
._1b{margin-left:-2.548519pt;}
._1{margin-left:-1.555773pt;}
._17{width:1.317720pt;}
._18{width:2.548244pt;}
._21{width:3.511284pt;}
._23{width:4.767227pt;}
._33{width:5.756685pt;}
._14{width:6.705493pt;}
._15{width:7.628973pt;}
._13{width:8.755411pt;}
._d{width:9.680989pt;}
._b{width:10.786174pt;}
._e{width:12.369563pt;}
._4{width:13.262211pt;}
._9{width:14.664945pt;}
._a{width:15.631981pt;}
._6{width:17.040029pt;}
._7{width:18.756253pt;}
._0{width:20.352575pt;}
._2{width:21.279238pt;}
._19{width:22.289093pt;}
._1a{width:23.717907pt;}
._1d{width:24.639219pt;}
._12{width:25.605207pt;}
._22{width:27.693369pt;}
._f{width:31.199155pt;}
._1c{width:32.194818pt;}
._5{width:33.506211pt;}
._2d{width:36.187631pt;}
._24{width:39.595694pt;}
._1f{width:41.429367pt;}
._11{width:58.442899pt;}
._31{width:72.107623pt;}
._32{width:99.576202pt;}
._29{width:118.064123pt;}
._2c{width:124.456117pt;}
._2a{width:139.703391pt;}
._2b{width:273.941390pt;}
._25{width:283.282083pt;}
._26{width:293.790277pt;}
._2e{width:294.828516pt;}
._28{width:296.274853pt;}
._30{width:297.350684pt;}
._27{width:308.874882pt;}
._2f{width:309.915238pt;}
._16{width:625.162972pt;}
._10{width:1408.769548pt;}
.fs7{font-size:34.324267pt;}
.fs6{font-size:37.193596pt;}
.fs3{font-size:45.163727pt;}
.fs1{font-size:53.133860pt;}
.fs5{font-size:63.760529pt;}
.fs4{font-size:65.487996pt;}
.fs2{font-size:74.387726pt;}
.fs0{font-size:85.014933pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:50.204125pt;}
.y24{bottom:63.488209pt;}
.y23{bottom:76.771991pt;}
.yf7{bottom:97.795420pt;}
.yd1{bottom:97.795574pt;}
.y15c{bottom:97.796000pt;}
.y198{bottom:97.796596pt;}
.y11f{bottom:100.256002pt;}
.y15d{bottom:101.575999pt;}
.y77{bottom:101.744130pt;}
.y22{bottom:107.095991pt;}
.y4d{bottom:108.427727pt;}
.y13d{bottom:109.903968pt;}
.y197{bottom:111.080366pt;}
.y76{bottom:113.575999pt;}
.yf6{bottom:113.743534pt;}
.yd0{bottom:113.743702pt;}
.y10e{bottom:115.927700pt;}
.y15b{bottom:118.496018pt;}
.y21{bottom:120.380130pt;}
.yac{bottom:124.292002pt;}
.y4c{bottom:124.363887pt;}
.y196{bottom:124.364136pt;}
.y13c{bottom:125.840129pt;}
.yf5{bottom:129.679707pt;}
.ycf{bottom:129.679863pt;}
.y75{bottom:130.964132pt;}
.y10d{bottom:131.863873pt;}
.y15a{bottom:134.444132pt;}
.y195{bottom:137.648132pt;}
.yab{bottom:139.003534pt;}
.y4b{bottom:140.312001pt;}
.y20{bottom:141.631991pt;}
.y74{bottom:142.808003pt;}
.yf4{bottom:145.615880pt;}
.yce{bottom:145.616023pt;}
.y10c{bottom:147.811550pt;}
.y13b{bottom:149.755836pt;}
.y159{bottom:150.379723pt;}
.y194{bottom:150.932354pt;}
.y1f{bottom:154.916130pt;}
.yaa{bottom:154.939707pt;}
.y73{bottom:160.184000pt;}
.yf3{bottom:161.563995pt;}
.ycd{bottom:161.564137pt;}
.y10b{bottom:163.747710pt;}
.y193{bottom:164.216135pt;}
.y158{bottom:166.315883pt;}
.y13a{bottom:166.928131pt;}
.ya9{bottom:170.875880pt;}
.y1e{bottom:176.168123pt;}
.yf2{bottom:177.498957pt;}
.y4a{bottom:177.500000pt;}
.y192{bottom:177.500585pt;}
.y10a{bottom:179.683871pt;}
.y139{bottom:181.639958pt;}
.y157{bottom:182.263997pt;}
.ya8{bottom:188.059997pt;}
.y1d{bottom:189.452121pt;}
.y191{bottom:190.784354pt;}
.yf1{bottom:193.435130pt;}
.y72{bottom:193.435842pt;}
.y109{bottom:195.632140pt;}
.y16c{bottom:198.739693pt;}
.y15e{bottom:198.739989pt;}
.ycc{bottom:198.751993pt;}
.y138{bottom:198.811991pt;}
.y1c{bottom:202.735995pt;}
.y190{bottom:204.068136pt;}
.y156{bottom:206.168131pt;}
.yf0{bottom:209.383244pt;}
.y71{bottom:209.383956pt;}
.ya7{bottom:210.727711pt;}
.y108{bottom:211.567257pt;}
.y18f{bottom:217.352009pt;}
.y137{bottom:221.479539pt;}
.y155{bottom:222.115519pt;}
.yef{bottom:225.319417pt;}
.y70{bottom:225.319891pt;}
.ya6{bottom:226.675826pt;}
.y107{bottom:227.503403pt;}
.y18e{bottom:230.636222pt;}
.y49{bottom:235.951674pt;}
.y136{bottom:237.427668pt;}
.y154{bottom:238.051692pt;}
.yee{bottom:241.267532pt;}
.y6f{bottom:241.268005pt;}
.ya5{bottom:242.611999pt;}
.y106{bottom:243.451532pt;}
.y18d{bottom:243.920003pt;}
.y48{bottom:251.887834pt;}
.y135{bottom:253.363841pt;}
.y153{bottom:253.987865pt;}
.ycb{bottom:257.203558pt;}
.yed{bottom:257.203705pt;}
.y6e{bottom:257.203963pt;}
.y18c{bottom:257.203999pt;}
.y105{bottom:259.387705pt;}
.y1b{bottom:266.731987pt;}
.y47{bottom:267.823995pt;}
.y134{bottom:269.300014pt;}
.y152{bottom:269.936136pt;}
.y18b{bottom:270.488211pt;}
.yca{bottom:273.139718pt;}
.y6d{bottom:273.139719pt;}
.yec{bottom:273.139878pt;}
.y104{bottom:275.323878pt;}
.ya4{bottom:279.811991pt;}
.y1bd{bottom:281.108442pt;}
.y1a{bottom:282.668003pt;}
.y46{bottom:283.771267pt;}
.y18a{bottom:283.771992pt;}
.y133{bottom:285.248128pt;}
.y6c{bottom:289.087834pt;}
.yc9{bottom:289.087846pt;}
.yeb{bottom:289.087992pt;}
.y103{bottom:291.272135pt;}
.y1bc{bottom:294.392223pt;}
.y189{bottom:297.056347pt;}
.y45{bottom:299.707427pt;}
.y132{bottom:301.183573pt;}
.y91{bottom:303.872439pt;}
.y6b{bottom:305.024007pt;}
.y151{bottom:307.124003pt;}
.y102{bottom:307.207546pt;}
.y1bb{bottom:307.676004pt;}
.y188{bottom:310.340128pt;}
.y19{bottom:314.549342pt;}
.y44{bottom:315.643587pt;}
.y131{bottom:317.119746pt;}
.y90{bottom:317.156220pt;}
.yc8{bottom:320.958863pt;}
.y6a{bottom:320.959425pt;}
.y1ba{bottom:320.960216pt;}
.y15f{bottom:322.243997pt;}
.y101{bottom:323.143719pt;}
.y187{bottom:323.624218pt;}
.yea{bottom:326.275492pt;}
.y8f{bottom:330.440001pt;}
.y18{bottom:330.485515pt;}
.y169{bottom:331.470935pt;}
.y163{bottom:331.472004pt;}
.y166{bottom:331.472076pt;}
.y43{bottom:331.591702pt;}
.y130{bottom:333.067861pt;}
.y1b9{bottom:334.243997pt;}
.yc7{bottom:336.906978pt;}
.y69{bottom:336.907553pt;}
.y186{bottom:336.907999pt;}
.ya3{bottom:338.251846pt;}
.y100{bottom:339.091833pt;}
.ye9{bottom:344.876016pt;}
.y17{bottom:346.421661pt;}
.y42{bottom:347.527862pt;}
.y1b8{bottom:347.528437pt;}
.y12f{bottom:349.004034pt;}
.y185{bottom:350.192222pt;}
.yc6{bottom:352.843138pt;}
.y68{bottom:352.843699pt;}
.ya2{bottom:354.200002pt;}
.yff{bottom:355.027979pt;}
.y1b7{bottom:360.812218pt;}
.y16{bottom:362.369817pt;}
.y41{bottom:363.475976pt;}
.y184{bottom:363.475992pt;}
.y12e{bottom:364.952148pt;}
.y150{bottom:365.575835pt;}
.yc5{bottom:368.779298pt;}
.y8e{bottom:368.779705pt;}
.y67{bottom:368.779872pt;}
.ya1{bottom:370.135731pt;}
.yfe{bottom:370.964152pt;}
.y1b6{bottom:374.095988pt;}
.y183{bottom:376.760620pt;}
.y15{bottom:378.305963pt;}
.y40{bottom:379.412149pt;}
.y12d{bottom:380.887980pt;}
.y14f{bottom:381.512008pt;}
.yc4{bottom:384.727413pt;}
.y8d{bottom:384.727820pt;}
.y66{bottom:384.727987pt;}
.ya0{bottom:386.071904pt;}
.y1b5{bottom:387.380446pt;}
.y182{bottom:390.031981pt;}
.y14{bottom:394.242109pt;}
.yfd{bottom:394.879853pt;}
.y3f{bottom:395.347560pt;}
.y12c{bottom:396.824015pt;}
.y14e{bottom:397.460123pt;}
.yc3{bottom:400.663573pt;}
.y8c{bottom:400.663856pt;}
.y1b4{bottom:400.664227pt;}
.y9f{bottom:402.019868pt;}
.ye8{bottom:403.315713pt;}
.y181{bottom:403.315999pt;}
.y65{bottom:408.631703pt;}
.y13{bottom:410.190264pt;}
.yfc{bottom:410.815999pt;}
.y3e{bottom:411.295689pt;}
.y14d{bottom:413.395535pt;}
.y1b3{bottom:413.947997pt;}
.yc2{bottom:416.599733pt;}
.y8b{bottom:416.599900pt;}
.y180{bottom:416.600343pt;}
.y9e{bottom:417.956014pt;}
.ye7{bottom:419.263827pt;}
.y12b{bottom:420.739989pt;}
.y64{bottom:424.579818pt;}
.y12{bottom:426.126410pt;}
.yfb{bottom:426.763829pt;}
.y3d{bottom:427.231849pt;}
.y1b2{bottom:427.232578pt;}
.y14c{bottom:429.331708pt;}
.y17f{bottom:429.884113pt;}
.y8a{bottom:432.547848pt;}
.y9d{bottom:433.892014pt;}
.ye6{bottom:435.199988pt;}
.y1b1{bottom:440.516359pt;}
.y63{bottom:441.752115pt;}
.y11{bottom:442.074525pt;}
.yfa{bottom:442.700002pt;}
.y3c{bottom:443.168009pt;}
.y12a{bottom:444.644007pt;}
.y14b{bottom:445.279822pt;}
.y160{bottom:447.944009pt;}
.y89{bottom:448.483670pt;}
.yc1{bottom:448.484008pt;}
.y9c{bottom:449.838961pt;}
.ye5{bottom:451.136148pt;}
.y1b0{bottom:453.800129pt;}
.y62{bottom:456.451731pt;}
.y17e{bottom:456.452231pt;}
.y165{bottom:457.172065pt;}
.y16a{bottom:457.172091pt;}
.y164{bottom:457.172420pt;}
.y10{bottom:458.010698pt;}
.yf9{bottom:458.636148pt;}
.y3b{bottom:459.115964pt;}
.y129{bottom:460.591970pt;}
.y14a{bottom:461.215983pt;}
.yc0{bottom:464.419704pt;}
.y88{bottom:464.419830pt;}
.y9b{bottom:465.775134pt;}
.ye4{bottom:467.083984pt;}
.y17d{bottom:469.736001pt;}
.y61{bottom:472.399846pt;}
.yf{bottom:473.946844pt;}
.y3a{bottom:475.051375pt;}
.y128{bottom:476.527700pt;}
.y149{bottom:477.151262pt;}
.ybf{bottom:480.367819pt;}
.y87{bottom:480.367944pt;}
.y1af{bottom:480.368236pt;}
.y9a{bottom:481.711280pt;}
.ye3{bottom:483.019441pt;}
.y17c{bottom:483.020019pt;}
.y60{bottom:489.571980pt;}
.ye{bottom:489.894958pt;}
.y39{bottom:490.987535pt;}
.y127{bottom:492.463873pt;}
.y148{bottom:493.099377pt;}
.y1ae{bottom:493.652017pt;}
.y86{bottom:496.303280pt;}
.ybe{bottom:496.303992pt;}
.y17b{bottom:496.304231pt;}
.y99{bottom:497.659394pt;}
.ye2{bottom:498.967555pt;}
.yf8{bottom:500.935993pt;}
.y5f{bottom:504.271896pt;}
.yd{bottom:505.831131pt;}
.y38{bottom:506.935649pt;}
.y1ad{bottom:506.935993pt;}
.y126{bottom:508.411697pt;}
.y147{bottom:509.035550pt;}
.y17a{bottom:509.588012pt;}
.y85{bottom:512.239440pt;}
.ybd{bottom:512.240152pt;}
.y98{bottom:513.595567pt;}
.ye1{bottom:514.903715pt;}
.y1ac{bottom:520.220368pt;}
.y5e{bottom:521.456014pt;}
.yc{bottom:521.767277pt;}
.y37{bottom:522.871810pt;}
.y179{bottom:522.872224pt;}
.y125{bottom:524.347870pt;}
.y146{bottom:524.971723pt;}
.y84{bottom:528.187554pt;}
.ybc{bottom:528.188151pt;}
.y97{bottom:529.531713pt;}
.ye0{bottom:530.839876pt;}
.y1ab{bottom:533.504149pt;}
.y178{bottom:536.156005pt;}
.y11e{bottom:536.947435pt;}
.yb{bottom:537.715391pt;}
.y36{bottom:538.807983pt;}
.y124{bottom:540.283900pt;}
.y145{bottom:540.919837pt;}
.ybb{bottom:544.123268pt;}
.y5d{bottom:544.123576pt;}
.y83{bottom:544.123727pt;}
.y96{bottom:545.479869pt;}
.ydf{bottom:546.788004pt;}
.y177{bottom:549.440464pt;}
.y11d{bottom:552.895549pt;}
.ya{bottom:553.651564pt;}
.y35{bottom:554.754636pt;}
.y123{bottom:556.231684pt;}
.y144{bottom:556.855997pt;}
.yba{bottom:560.071382pt;}
.y5c{bottom:560.071690pt;}
.y82{bottom:560.071842pt;}
.y1aa{bottom:560.072216pt;}
.y95{bottom:561.415863pt;}
.yde{bottom:562.723536pt;}
.y176{bottom:562.724234pt;}
.y11c{bottom:568.831695pt;}
.y9{bottom:569.587711pt;}
.y34{bottom:570.690796pt;}
.y122{bottom:572.167857pt;}
.y143{bottom:572.791570pt;}
.y1a9{bottom:573.355997pt;}
.y161{bottom:573.644001pt;}
.y16b{bottom:573.644136pt;}
.yb9{bottom:576.007555pt;}
.y5b{bottom:576.007863pt;}
.y81{bottom:576.008015pt;}
.y94{bottom:577.352009pt;}
.ydd{bottom:578.659697pt;}
.y167{bottom:582.872057pt;}
.y11b{bottom:584.767868pt;}
.y8{bottom:585.535825pt;}
.y33{bottom:586.626957pt;}
.y1a8{bottom:586.628379pt;}
.y121{bottom:588.104003pt;}
.y142{bottom:588.739698pt;}
.y175{bottom:589.292113pt;}
.y80{bottom:591.943100pt;}
.yb8{bottom:591.943728pt;}
.y5a{bottom:591.944009pt;}
.ydc{bottom:594.607825pt;}
.y1a7{bottom:599.912149pt;}
.y11a{bottom:600.715983pt;}
.y7{bottom:601.471998pt;}
.y32{bottom:602.575085pt;}
.y174{bottom:602.576008pt;}
.y141{bottom:604.675858pt;}
.y59{bottom:607.891100pt;}
.y7f{bottom:607.891228pt;}
.yb7{bottom:607.891842pt;}
.ydb{bottom:610.543985pt;}
.y1a6{bottom:613.196199pt;}
.y173{bottom:615.860468pt;}
.y119{bottom:616.651723pt;}
.y31{bottom:618.511245pt;}
.y93{bottom:619.664644pt;}
.y140{bottom:620.612019pt;}
.y58{bottom:623.827246pt;}
.y7e{bottom:623.827389pt;}
.yb6{bottom:623.827542pt;}
.y1a5{bottom:626.479980pt;}
.y172{bottom:629.144238pt;}
.y120{bottom:630.272012pt;}
.y118{bottom:632.587896pt;}
.y92{bottom:632.935993pt;}
.yda{bottom:633.127845pt;}
.y30{bottom:634.459373pt;}
.y57{bottom:639.763419pt;}
.y7d{bottom:639.763549pt;}
.yb5{bottom:639.763715pt;}
.y1a4{bottom:639.764244pt;}
.y171{bottom:642.428019pt;}
.y117{bottom:648.535715pt;}
.yd9{bottom:649.064005pt;}
.y2f{bottom:650.395534pt;}
.y1a3{bottom:653.048208pt;}
.y56{bottom:655.711534pt;}
.y7c{bottom:655.711663pt;}
.yb4{bottom:655.711829pt;}
.y170{bottom:655.712117pt;}
.y6{bottom:659.635863pt;}
.y116{bottom:664.471888pt;}
.yd8{bottom:665.011582pt;}
.y2e{bottom:666.331694pt;}
.y1a2{bottom:666.331989pt;}
.y16f{bottom:668.996218pt;}
.y55{bottom:671.647680pt;}
.y7b{bottom:671.647824pt;}
.yb3{bottom:671.647989pt;}
.y5{bottom:675.583977pt;}
.y1a1{bottom:679.616007pt;}
.y1c4{bottom:679.616920pt;}
.y115{bottom:680.419891pt;}
.yd7{bottom:680.947742pt;}
.y2d{bottom:682.279822pt;}
.y16e{bottom:682.279988pt;}
.y54{bottom:687.583826pt;}
.yb2{bottom:687.583867pt;}
.y7a{bottom:687.583984pt;}
.y1a0{bottom:692.899983pt;}
.y1c3{bottom:692.900724pt;}
.y114{bottom:696.355982pt;}
.yd6{bottom:696.883903pt;}
.y2c{bottom:698.215983pt;}
.y162{bottom:699.344156pt;}
.yb1{bottom:703.531269pt;}
.y53{bottom:703.531981pt;}
.y19f{bottom:706.184471pt;}
.y1c2{bottom:706.184494pt;}
.y113{bottom:712.292155pt;}
.yd5{bottom:712.832031pt;}
.y2b{bottom:714.151544pt;}
.y16d{bottom:716.816161pt;}
.yb0{bottom:719.467429pt;}
.y52{bottom:719.467798pt;}
.y19e{bottom:719.468252pt;}
.y1c1{bottom:719.468263pt;}
.y79{bottom:724.784016pt;}
.y4{bottom:726.354410pt;}
.y2a{bottom:730.099658pt;}
.y19d{bottom:732.752033pt;}
.y112{bottom:735.403447pt;}
.yaf{bottom:735.403590pt;}
.y51{bottom:735.403604pt;}
.yd4{bottom:735.403841pt;}
.y29{bottom:746.035831pt;}
.y19c{bottom:746.035969pt;}
.y1c0{bottom:746.036710pt;}
.y3{bottom:750.258463pt;}
.y111{bottom:751.351602pt;}
.yae{bottom:751.351718pt;}
.y50{bottom:751.351759pt;}
.yd3{bottom:751.352006pt;}
.y19b{bottom:759.320222pt;}
.y1bf{bottom:759.320480pt;}
.y168{bottom:760.399983pt;}
.y28{bottom:761.972004pt;}
.y110{bottom:767.287775pt;}
.y4f{bottom:767.287866pt;}
.yad{bottom:767.287878pt;}
.yd2{bottom:767.288167pt;}
.y19a{bottom:772.604003pt;}
.y1be{bottom:772.604250pt;}
.y2{bottom:774.175289pt;}
.y10f{bottom:783.223882pt;}
.y78{bottom:783.223923pt;}
.y4e{bottom:783.224039pt;}
.y199{bottom:785.888267pt;}
.y13f{bottom:790.268383pt;}
.y1{bottom:798.092115pt;}
.y27{bottom:799.172037pt;}
.y13e{bottom:803.552164pt;}
.y26{bottom:831.775960pt;}
.h13{height:24.953742pt;}
.h7{height:32.834029pt;}
.h2f{height:33.683778pt;}
.h1f{height:33.684306pt;}
.hd{height:33.684471pt;}
.h2e{height:33.684876pt;}
.h3{height:37.884442pt;}
.h4{height:38.628316pt;}
.h28{height:38.628539pt;}
.h29{height:38.628762pt;}
.h14{height:38.628779pt;}
.h18{height:38.628780pt;}
.h21{height:38.628784pt;}
.h5{height:38.628800pt;}
.h19{height:38.628814pt;}
.h1d{height:38.628919pt;}
.h1b{height:38.628922pt;}
.h17{height:38.628983pt;}
.h12{height:38.629270pt;}
.h1e{height:38.629475pt;}
.h2c{height:38.629478pt;}
.h2a{height:38.629498pt;}
.hb{height:38.629521pt;}
.h2b{height:38.629641pt;}
.h16{height:38.629670pt;}
.h26{height:38.629950pt;}
.h2d{height:38.629980pt;}
.h11{height:38.629983pt;}
.hf{height:38.629986pt;}
.h23{height:38.629995pt;}
.h1a{height:38.630098pt;}
.h27{height:38.630122pt;}
.h22{height:38.630160pt;}
.h25{height:38.630628pt;}
.h10{height:38.631107pt;}
.h20{height:38.631165pt;}
.h9{height:38.631314pt;}
.h30{height:38.631336pt;}
.h15{height:38.631667pt;}
.h1c{height:38.632986pt;}
.h24{height:38.633353pt;}
.h34{height:41.320837pt;}
.h35{height:41.321742pt;}
.h32{height:41.321747pt;}
.hc{height:41.343614pt;}
.h33{height:41.368810pt;}
.he{height:41.391798pt;}
.h31{height:44.568609pt;}
.h8{height:45.461257pt;}
.ha{height:46.337439pt;}
.h6{height:56.234221pt;}
.h2{height:60.615647pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x1{left:71.435991pt;}
.x6{left:80.003998pt;}
.x3{left:87.371999pt;}
.x4{left:91.740000pt;}
.x5{left:94.019962pt;}
.x7{left:98.075999pt;}
.x8{left:117.227997pt;}
.x9{left:130.511767pt;}
.xa{left:143.795548pt;}
.xb{left:157.079329pt;}
.xc{left:170.363110pt;}
.x22{left:174.900004pt;}
.xd{left:188.184000pt;}
.xe{left:201.467781pt;}
.xf{left:214.751766pt;}
.x10{left:228.035321pt;}
.x23{left:244.487996pt;}
.x11{left:245.868000pt;}
.x24{left:257.771766pt;}
.x12{left:259.151793pt;}
.x13{left:271.932007pt;}
.x14{left:285.215777pt;}
.x15{left:299.003114pt;}
.x25{left:303.492004pt;}
.x16{left:312.286884pt;}
.x26{left:316.775774pt;}
.x17{left:330.107991pt;}
.x18{left:343.391761pt;}
.x19{left:356.675564pt;}
.x1a{left:358.008015pt;}
.x27{left:360.300008pt;}
.x1b{left:369.959334pt;}
.x28{left:373.583778pt;}
.x29{left:386.867548pt;}
.x1c{left:387.779988pt;}
.x2a{left:400.151351pt;}
.x1d{left:401.063758pt;}
.x1e{left:414.347561pt;}
.x1f{left:427.139767pt;}
.x20{left:440.423537pt;}
.x21{left:457.031981pt;}
.x2{left:502.343986pt;}
}




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