
    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_13055c79060288c4220c540c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_68a5954378cab6d94898b160.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_25518df13d5f4edfccfcc95f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_d2a1e4fc6245990c27e0d060.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1dbce6b0aa2d668f5b0fafa8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_aad97ee32d21e14e367e2009.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.856934;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_8abe3978bb414110b4584930.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.915039;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_f37f4c2b04c42f976adefb14.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_555608225c506bf51d3ce7bd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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:ffa;src:url('chunks/assets/font_f90d29c71bd60ee8a1e7e733.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.866699;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:ffb;src:url('chunks/assets/font_5b75bac9fd8a97dd7b894d7a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.911133;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:ffc;src:url('chunks/assets/font_7998bf1fc56c56f6374c90c1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861328;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:ffd;src:url('chunks/assets/font_eb15bed723ab9b40b1445276.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7221342b23a02678bc6e8e45.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-3.599999px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:41.039984px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.010337px;}
.ls17{letter-spacing:0.010552px;}
.lse{letter-spacing:0.010641px;}
.ls1{letter-spacing:0.018600px;}
.ls16{letter-spacing:0.021238px;}
.ls13{letter-spacing:0.021282px;}
.ls3{letter-spacing:0.187843px;}
.ls2{letter-spacing:4.511938px;}
.ls15{letter-spacing:28.217269px;}
.ls12{letter-spacing:28.252489px;}
.ls11{letter-spacing:34.010173px;}
.ls6{letter-spacing:34.010286px;}
.lsb{letter-spacing:34.013642px;}
.ls8{letter-spacing:34.014502px;}
.ls7{letter-spacing:34.015788px;}
.lsa{letter-spacing:34.015846px;}
.lsf{letter-spacing:34.016042px;}
.lsc{letter-spacing:34.016103px;}
.ls10{letter-spacing:34.016513px;}
.ls5{letter-spacing:34.019642px;}
.ls9{letter-spacing:34.019735px;}
.lsd{letter-spacing:70.611985px;}
.ls0{letter-spacing:1273.159553px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(227,108,10),0 0.015em rgb(227,108,10),0.015em 0 rgb(227,108,10),0 -0.015em  rgb(227,108,10);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(227,108,10);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-35.855986px;}
.ws3{word-spacing:-32.418587px;}
.wsa{word-spacing:-18.021275px;}
.wsb{word-spacing:-18.021231px;}
.ws8{word-spacing:-17.999993px;}
.ws5{word-spacing:-16.271993px;}
.ws2{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws4{word-spacing:-14.939994px;}
.ws1{word-spacing:-14.374074px;}
.ws6{word-spacing:-13.505755px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-8.387695px;}
._2{margin-left:-4.242803px;}
._1{margin-left:-3.229332px;}
._4{margin-left:-1.570800px;}
._0{width:1.003097px;}
._11{width:2.190851px;}
._9{width:3.290363px;}
._14{width:4.337001px;}
._6{width:5.498300px;}
._7{width:7.410520px;}
._13{width:9.077404px;}
._19{width:10.487728px;}
._a{width:11.866700px;}
._8{width:13.750329px;}
._c{width:15.581438px;}
._1a{width:16.981316px;}
._b{width:19.601246px;}
._5{width:20.618519px;}
._18{width:21.697132px;}
._17{width:22.793893px;}
._f{width:24.548760px;}
._10{width:25.874644px;}
._12{width:27.606409px;}
._16{width:29.295471px;}
._e{width:33.280697px;}
._d{width:34.459412px;}
._15{width:38.434251px;}
._1e{width:56.713777px;}
._1d{width:68.654182px;}
._1b{width:74.770770px;}
._1c{width:178.810728px;}
.fc9{color:rgb(0,0,255);}
.fc7{color:rgb(44,62,80);}
.fc6{color:rgb(0,32,96);}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(0,176,240);}
.fc3{color:rgb(192,0,0);}
.fcb{color:rgb(0,176,80);}
.fca{color:rgb(34,34,34);}
.fc8{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.fs6{font-size:95.759962px;}
.y6{bottom:-10.079990px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y4e{bottom:1.439251px;}
.y18{bottom:2.699074px;}
.yd{bottom:3.060047px;}
.ydc{bottom:3.958974px;}
.ye1{bottom:3.958999px;}
.ye7{bottom:3.959024px;}
.yef{bottom:3.959049px;}
.yf2{bottom:3.959066px;}
.yf6{bottom:3.959083px;}
.yfd{bottom:3.959100px;}
.y134{bottom:3.959217px;}
.y13a{bottom:3.959242px;}
.y142{bottom:3.959275px;}
.y14a{bottom:3.959317px;}
.y150{bottom:3.960002px;}
.y15{bottom:4.319065px;}
.yfa{bottom:4.319096px;}
.y48{bottom:4.498950px;}
.y16{bottom:4.499065px;}
.y26{bottom:4.499076px;}
.yb{bottom:4.500038px;}
.yc{bottom:28.560240px;}
.ya{bottom:50.520240px;}
.y8{bottom:55.020278px;}
.y9{bottom:55.920278px;}
.y73{bottom:127.919949px;}
.y42{bottom:129.720248px;}
.y8b{bottom:130.799948px;}
.yb8{bottom:132.779947px;}
.y14f{bottom:140.520240px;}
.y112{bottom:148.079941px;}
.y41{bottom:149.519940px;}
.y72{bottom:151.679939px;}
.y156{bottom:154.559938px;}
.y14c{bottom:154.739938px;}
.yb7{bottom:157.619937px;}
.ya3{bottom:160.139936px;}
.y14e{bottom:165.179934px;}
.yd8{bottom:168.959932px;}
.y40{bottom:169.679932px;}
.y111{bottom:171.839931px;}
.y14b{bottom:175.439930px;}
.y8a{bottom:175.619930px;}
.y155{bottom:178.319929px;}
.yb6{bottom:182.459927px;}
.y14d{bottom:185.879926px;}
.y3f{bottom:189.659924px;}
.y110{bottom:195.779922px;}
.y71{bottom:196.499921px;}
.y89{bottom:199.379920px;}
.y154{bottom:202.079919px;}
.y149{bottom:203.340600px;}
.ya2{bottom:204.959918px;}
.y3e{bottom:209.819916px;}
.yd7{bottom:214.859914px;}
.y10f{bottom:219.539912px;}
.y70{bottom:220.259912px;}
.y88{bottom:223.139911px;}
.y153{bottom:226.019910px;}
.y148{bottom:227.999909px;}
.yb5{bottom:228.359909px;}
.ya1{bottom:228.719909px;}
.y3d{bottom:230.339908px;}
.y144{bottom:238.439905px;}
.y10e{bottom:243.299903px;}
.y6f{bottom:244.199902px;}
.y87{bottom:246.899901px;}
.y143{bottom:248.699901px;}
.y3c{bottom:251.219900px;}
.ya0{bottom:252.479899px;}
.yb4{bottom:253.199899px;}
.y145{bottom:258.959896px;}
.yd6{bottom:260.759896px;}
.y10d{bottom:267.059893px;}
.y6e{bottom:267.959893px;}
.y147{bottom:269.399892px;}
.y86{bottom:270.839892px;}
.y3b{bottom:271.019892px;}
.yb3{bottom:278.039889px;}
.yd5{bottom:285.599886px;}
.y146{bottom:290.099884px;}
.y10c{bottom:290.999884px;}
.y6d{bottom:291.719883px;}
.y85{bottom:294.599882px;}
.y3a{bottom:294.959882px;}
.y9f{bottom:297.299881px;}
.y24{bottom:302.159879px;}
.yb2{bottom:302.879879px;}
.y141{bottom:307.560600px;}
.y39{bottom:310.799876px;}
.y10b{bottom:314.759874px;}
.y6c{bottom:315.479874px;}
.y84{bottom:318.359873px;}
.y9e{bottom:321.239872px;}
.y13f{bottom:321.959871px;}
.yb1{bottom:327.719869px;}
.yd4{bottom:331.319867px;}
.y13c{bottom:332.219867px;}
.y6b{bottom:339.419864px;}
.y83{bottom:342.119863px;}
.y13e{bottom:342.659863px;}
.y9d{bottom:344.999862px;}
.y38{bottom:347.339861px;}
.yb0{bottom:352.559859px;}
.y13b{bottom:352.919859px;}
.yd3{bottom:356.159858px;}
.y10a{bottom:359.579856px;}
.y11c{bottom:360.299856px;}
.y6a{bottom:363.179855px;}
.y13d{bottom:363.359855px;}
.y82{bottom:366.059854px;}
.y9c{bottom:368.759852px;}
.y4d{bottom:372.000600px;}
.y140{bottom:373.619851px;}
.yd2{bottom:380.999848px;}
.y109{bottom:383.339847px;}
.y11b{bottom:384.239846px;}
.y69{bottom:386.939845px;}
.y81{bottom:389.819844px;}
.y139{bottom:391.080600px;}
.y9b{bottom:392.519843px;}
.y4c{bottom:394.319842px;}
.yaf{bottom:398.279841px;}
.y137{bottom:405.479838px;}
.yd1{bottom:405.839838px;}
.y108{bottom:407.099837px;}
.y11a{bottom:407.999837px;}
.y68{bottom:410.699836px;}
.y4b{bottom:415.379834px;}
.y138{bottom:415.739834px;}
.y9a{bottom:416.459833px;}
.y136{bottom:426.179830px;}
.yd0{bottom:430.679828px;}
.y107{bottom:430.859828px;}
.y119{bottom:431.759827px;}
.y67{bottom:434.639826px;}
.y4a{bottom:436.439825px;}
.y99{bottom:440.219824px;}
.yae{bottom:444.179822px;}
.y23{bottom:446.879821px;}
.y133{bottom:453.900600px;}
.y106{bottom:454.799818px;}
.ycf{bottom:455.519818px;}
.y49{bottom:457.499817px;}
.y132{bottom:457.859817px;}
.y66{bottom:458.399817px;}
.y98{bottom:463.979814px;}
.y135{bottom:468.299813px;}
.yad{bottom:469.019812px;}
.y131{bottom:478.559809px;}
.yce{bottom:480.359808px;}
.y65{bottom:482.159807px;}
.y97{bottom:487.739805px;}
.yac{bottom:493.859802px;}
.y165{bottom:494.759802px;}
.y105{bottom:499.619800px;}
.y118{bottom:500.339800px;}
.y64{bottom:505.919798px;}
.y37{bottom:514.379794px;}
.y22{bottom:515.819794px;}
.yab{bottom:518.699793px;}
.y104{bottom:523.379791px;}
.y117{bottom:524.099790px;}
.ycd{bottom:526.259789px;}
.y80{bottom:529.859788px;}
.y36{bottom:531.659787px;}
.y96{bottom:532.559787px;}
.y164{bottom:539.579784px;}
.yaa{bottom:543.539783px;}
.y103{bottom:547.139781px;}
.y116{bottom:548.039781px;}
.y63{bottom:550.739780px;}
.ycc{bottom:551.099780px;}
.y95{bottom:556.319777px;}
.y21{bottom:558.299777px;}
.y163{bottom:563.339775px;}
.ya9{bottom:568.379773px;}
.y130{bottom:568.919772px;}
.y35{bottom:569.999772px;}
.y102{bottom:570.899772px;}
.y115{bottom:571.799771px;}
.y62{bottom:574.679770px;}
.ycb{bottom:575.939770px;}
.y162{bottom:587.099765px;}
.y34{bottom:587.279765px;}
.y12f{bottom:592.859763px;}
.y101{bottom:594.839762px;}
.y114{bottom:595.559762px;}
.y61{bottom:598.439761px;}
.yca{bottom:600.779760px;}
.y94{bottom:601.139760px;}
.y20{bottom:602.039759px;}
.y33{bottom:604.559758px;}
.y161{bottom:611.039756px;}
.ya8{bottom:614.279754px;}
.y1f{bottom:617.339753px;}
.y7f{bottom:619.319752px;}
.y32{bottom:621.659751px;}
.yc9{bottom:625.619750px;}
.y1e{bottom:632.639747px;}
.y160{bottom:634.799746px;}
.y12e{bottom:637.679745px;}
.y31{bottom:638.939744px;}
.ya7{bottom:639.119744px;}
.y100{bottom:639.479744px;}
.y60{bottom:643.259743px;}
.y93{bottom:645.959742px;}
.y1d{bottom:646.679741px;}
.yc8{bottom:650.459740px;}
.y30{bottom:656.219738px;}
.y15f{bottom:658.559737px;}
.y12d{bottom:661.439735px;}
.ya6{bottom:663.959734px;}
.y152{bottom:664.139734px;}
.y7e{bottom:667.019733px;}
.y92{bottom:669.719732px;}
.y2f{bottom:673.499731px;}
.yc7{bottom:675.299730px;}
.y15e{bottom:682.319727px;}
.yff{bottom:684.299726px;}
.y12c{bottom:685.199726px;}
.y5f{bottom:688.079725px;}
.ya5{bottom:688.799724px;}
.y1c{bottom:689.159724px;}
.y2e{bottom:690.779724px;}
.y91{bottom:693.659723px;}
.yc6{bottom:700.139720px;}
.y15d{bottom:706.259717px;}
.y2d{bottom:708.059717px;}
.y12b{bottom:708.959716px;}
.y5e{bottom:711.839715px;}
.ya4{bottom:713.639715px;}
.y7d{bottom:714.539714px;}
.y90{bottom:717.419713px;}
.y2c{bottom:725.159710px;}
.yfe{bottom:729.119708px;}
.y15c{bottom:730.019708px;}
.y1b{bottom:731.819707px;}
.y12a{bottom:732.719707px;}
.y5d{bottom:735.599706px;}
.y7c{bottom:738.479705px;}
.y8f{bottom:741.179704px;}
.y2b{bottom:742.439703px;}
.yc5{bottom:746.039702px;}
.yfc{bottom:746.580600px;}
.y15b{bottom:753.779698px;}
.y129{bottom:756.659697px;}
.yf9{bottom:756.660600px;}
.y5c{bottom:759.359696px;}
.y2a{bottom:759.719696px;}
.yf8{bottom:760.979696px;}
.y7b{bottom:762.239695px;}
.y8e{bottom:764.939694px;}
.yfb{bottom:771.239692px;}
.y1a{bottom:774.299690px;}
.y29{bottom:776.999689px;}
.y15a{bottom:777.539689px;}
.y128{bottom:780.419688px;}
.y5b{bottom:783.299687px;}
.y113{bottom:785.999686px;}
.yf5{bottom:788.880600px;}
.y19{bottom:789.779684px;}
.yc4{bottom:791.759683px;}
.y28{bottom:794.279682px;}
.y159{bottom:801.479679px;}
.yf7{bottom:803.099679px;}
.y25{bottom:805.260600px;}
.y5a{bottom:807.059677px;}
.y8d{bottom:809.759676px;}
.y27{bottom:811.379675px;}
.y17{bottom:811.380600px;}
.yf4{bottom:813.539675px;}
.yc3{bottom:816.599673px;}
.y127{bottom:825.239670px;}
.y59{bottom:830.819668px;}
.yf1{bottom:831.000600px;}
.y14{bottom:833.880600px;}
.yc2{bottom:841.439663px;}
.yf3{bottom:845.219662px;}
.y126{bottom:848.999660px;}
.y58{bottom:854.579658px;}
.yf0{bottom:855.659658px;}
.yc1{bottom:866.279653px;}
.y125{bottom:872.759651px;}
.yee{bottom:873.120600px;}
.y151{bottom:875.639650px;}
.y7a{bottom:878.339649px;}
.yeb{bottom:887.339645px;}
.y13{bottom:887.699645px;}
.yc0{bottom:891.119644px;}
.y124{bottom:896.699641px;}
.yed{bottom:897.779641px;}
.y57{bottom:899.399640px;}
.y79{bottom:902.279639px;}
.yea{bottom:908.039637px;}
.y12{bottom:911.279635px;}
.yec{bottom:918.479633px;}
.y123{bottom:920.459632px;}
.y56{bottom:923.159631px;}
.y78{bottom:926.039630px;}
.y11{bottom:931.979627px;}
.ye6{bottom:935.940600px;}
.ybf{bottom:937.019625px;}
.y122{bottom:944.219622px;}
.y55{bottom:947.099621px;}
.y77{bottom:949.799620px;}
.ye9{bottom:950.339620px;}
.y10{bottom:952.679619px;}
.ye5{bottom:960.599616px;}
.y121{bottom:967.979613px;}
.y54{bottom:970.859612px;}
.ye8{bottom:971.039612px;}
.y76{bottom:973.559611px;}
.ye4{bottom:981.299607px;}
.ybe{bottom:982.739607px;}
.yf{bottom:982.919607px;}
.y120{bottom:991.919603px;}
.y53{bottom:994.619602px;}
.y8c{bottom:997.499601px;}
.ye0{bottom:998.760600px;}
.ye{bottom:1007.039597px;}
.ybd{bottom:1007.579597px;}
.ye3{bottom:1013.159595px;}
.y158{bottom:1015.679594px;}
.y52{bottom:1018.379593px;}
.ydf{bottom:1023.419591px;}
.ybc{bottom:1032.419587px;}
.ye2{bottom:1033.859586px;}
.y11f{bottom:1036.559585px;}
.y157{bottom:1039.439584px;}
.y51{bottom:1042.319583px;}
.yde{bottom:1044.119582px;}
.y46{bottom:1050.059580px;}
.ybb{bottom:1057.259577px;}
.y11e{bottom:1060.499576px;}
.ydb{bottom:1061.580600px;}
.y75{bottom:1063.199575px;}
.yda{bottom:1065.539574px;}
.y45{bottom:1069.499572px;}
.ydd{bottom:1075.979570px;}
.yba{bottom:1082.099567px;}
.y11d{bottom:1084.259566px;}
.yd9{bottom:1086.239566px;}
.y50{bottom:1086.959565px;}
.y44{bottom:1090.379564px;}
.yb9{bottom:1106.939557px;}
.y74{bottom:1108.019557px;}
.y43{bottom:1118.459553px;}
.y47{bottom:1121.160600px;}
.y4f{bottom:1131.779547px;}
.y4{bottom:1153.019539px;}
.y7{bottom:1182.179527px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h3{height:5.760000px;}
.hf{height:14.040000px;}
.h16{height:15.660000px;}
.h7{height:18.900000px;}
.hc{height:20.160000px;}
.h6{height:20.340000px;}
.h1b{height:20.520000px;}
.h10{height:33.706744px;}
.h12{height:36.624009px;}
.h4{height:36.703110px;}
.h5{height:38.759750px;}
.h11{height:39.313461px;}
.h1{height:42.894123px;}
.h18{height:43.506897px;}
.hd{height:44.149201px;}
.h13{height:44.893107px;}
.he{height:45.022482px;}
.h15{height:46.283888px;}
.h2{height:47.545293px;}
.ha{height:48.796855px;}
.hb{height:51.679667px;}
.h17{height:52.417948px;}
.h8{height:57.092321px;}
.h9{height:60.465210px;}
.h14{height:67.144192px;}
.h19{height:89.836839px;}
.h1c{height:92.719650px;}
.h1a{height:93.439650px;}
.h0{height:1263.000000px;}
.w5{width:3.600000px;}
.w3{width:4.500000px;}
.wb{width:7.020000px;}
.w1a{width:7.560000px;}
.w8{width:8.100000px;}
.w7{width:8.280000px;}
.wd{width:8.820000px;}
.we{width:9.000000px;}
.w2{width:9.720000px;}
.w6{width:33.660000px;}
.w10{width:37.080000px;}
.wf{width:48.960000px;}
.w14{width:52.020000px;}
.w19{width:56.520000px;}
.w13{width:57.420000px;}
.w4{width:58.500000px;}
.w9{width:70.380000px;}
.w15{width:75.420000px;}
.w1b{width:76.500000px;}
.w1d{width:90.540000px;}
.w17{width:99.540000px;}
.wa{width:113.760000px;}
.w11{width:119.520000px;}
.w12{width:121.500000px;}
.w1c{width:136.980000px;}
.w18{width:144.900000px;}
.w1f{width:162.540000px;}
.w16{width:181.980000px;}
.w20{width:188.460000px;}
.w1e{width:199.440000px;}
.w21{width:211.500000px;}
.wc{width:279.180000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x18{left:101.339959px;}
.x16{left:103.319959px;}
.x15{left:106.019958px;}
.x1{left:107.999957px;}
.x9{left:115.199954px;}
.x12{left:117.360000px;}
.x1a{left:118.439953px;}
.x14{left:123.299901px;}
.xb{left:126.360000px;}
.x4{left:132.659947px;}
.x26{left:134.999007px;}
.x19{left:149.939940px;}
.x28{left:154.440000px;}
.x17{left:160.019936px;}
.x27{left:162.000395px;}
.x2c{left:165.420000px;}
.x30{left:168.480000px;}
.x1b{left:174.239931px;}
.xc{left:184.860000px;}
.xd{left:188.460000px;}
.x7{left:192.600699px;}
.x33{left:216.000000px;}
.xe{left:222.120000px;}
.x13{left:231.120000px;}
.x1c{left:244.079912px;}
.x1d{left:245.159902px;}
.xa{left:255.239726px;}
.x38{left:259.559896px;}
.xf{left:267.300000px;}
.x22{left:289.439884px;}
.x1e{left:291.779883px;}
.x10{left:300.240000px;}
.x2{left:302.579879px;}
.x20{left:321.479871px;}
.x8{left:326.879869px;}
.x21{left:330.659870px;}
.x3c{left:350.100000px;}
.x39{left:360.540000px;}
.x11{left:370.440000px;}
.x35{left:375.120000px;}
.x29{left:391.139844px;}
.x23{left:394.739835px;}
.x5{left:433.259827px;}
.x2a{left:446.040000px;}
.x31{left:466.560000px;}
.x36{left:467.640000px;}
.x2d{left:510.660000px;}
.x2e{left:512.640000px;}
.x34{left:536.040000px;}
.x3a{left:553.500000px;}
.x2b{left:557.279777px;}
.x3b{left:576.899769px;}
.x25{left:582.660000px;}
.x1f{left:598.499761px;}
.x2f{left:614.700000px;}
.x24{left:656.460000px;}
.x3{left:666.179734px;}
.x37{left:694.260000px;}
.x32{left:739.260000px;}
.x3e{left:765.360000px;}
.x3d{left:776.340000px;}
.x6{left:780.120000px;}
.x3f{left:788.400000px;}
@media print{
.v1{vertical-align:-3.199999pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:36.479985pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.009189pt;}
.ls17{letter-spacing:0.009380pt;}
.lse{letter-spacing:0.009459pt;}
.ls1{letter-spacing:0.016533pt;}
.ls16{letter-spacing:0.018878pt;}
.ls13{letter-spacing:0.018917pt;}
.ls3{letter-spacing:0.166972pt;}
.ls2{letter-spacing:4.010612pt;}
.ls15{letter-spacing:25.082017pt;}
.ls12{letter-spacing:25.113323pt;}
.ls11{letter-spacing:30.231265pt;}
.ls6{letter-spacing:30.231365pt;}
.lsb{letter-spacing:30.234348pt;}
.ls8{letter-spacing:30.235113pt;}
.ls7{letter-spacing:30.236256pt;}
.lsa{letter-spacing:30.236308pt;}
.lsf{letter-spacing:30.236481pt;}
.lsc{letter-spacing:30.236536pt;}
.ls10{letter-spacing:30.236901pt;}
.ls5{letter-spacing:30.239681pt;}
.ls9{letter-spacing:30.239764pt;}
.lsd{letter-spacing:62.766209pt;}
.ls0{letter-spacing:1131.697380pt;}
.ws9{word-spacing:-31.871987pt;}
.ws3{word-spacing:-28.816521pt;}
.wsa{word-spacing:-16.018911pt;}
.wsb{word-spacing:-16.018872pt;}
.ws8{word-spacing:-15.999994pt;}
.ws5{word-spacing:-14.463994pt;}
.ws2{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws4{word-spacing:-13.279995pt;}
.ws1{word-spacing:-12.776955pt;}
.ws6{word-spacing:-12.005115pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-7.455729pt;}
._2{margin-left:-3.771380pt;}
._1{margin-left:-2.870517pt;}
._4{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._11{width:1.947423pt;}
._9{width:2.924767pt;}
._14{width:3.855112pt;}
._6{width:4.887378pt;}
._7{width:6.587129pt;}
._13{width:8.068803pt;}
._19{width:9.322425pt;}
._a{width:10.548178pt;}
._8{width:12.222515pt;}
._c{width:13.850167pt;}
._1a{width:15.094503pt;}
._b{width:17.423330pt;}
._5{width:18.327572pt;}
._18{width:19.286340pt;}
._17{width:20.261238pt;}
._f{width:21.821120pt;}
._10{width:22.999683pt;}
._12{width:24.539030pt;}
._16{width:26.040419pt;}
._e{width:29.582842pt;}
._d{width:30.630588pt;}
._15{width:34.163779pt;}
._1e{width:50.412247pt;}
._1d{width:61.025940pt;}
._1b{width:66.462907pt;}
._1c{width:158.942870pt;}
.fs5{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.fs6{font-size:85.119966pt;}
.y6{bottom:-8.959991pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y4e{bottom:1.279334pt;}
.y18{bottom:2.399177pt;}
.yd{bottom:2.720042pt;}
.ydc{bottom:3.519088pt;}
.ye1{bottom:3.519110pt;}
.ye7{bottom:3.519132pt;}
.yef{bottom:3.519155pt;}
.yf2{bottom:3.519170pt;}
.yf6{bottom:3.519185pt;}
.yfd{bottom:3.519200pt;}
.y134{bottom:3.519304pt;}
.y13a{bottom:3.519326pt;}
.y142{bottom:3.519356pt;}
.y14a{bottom:3.519393pt;}
.y150{bottom:3.520002pt;}
.y15{bottom:3.839169pt;}
.yfa{bottom:3.839196pt;}
.y48{bottom:3.999066pt;}
.y16{bottom:3.999169pt;}
.y26{bottom:3.999179pt;}
.yb{bottom:4.000034pt;}
.yc{bottom:25.386880pt;}
.ya{bottom:44.906880pt;}
.y8{bottom:48.906914pt;}
.y9{bottom:49.706913pt;}
.y73{bottom:113.706621pt;}
.y42{bottom:115.306887pt;}
.y8b{bottom:116.266620pt;}
.yb8{bottom:118.026619pt;}
.y14f{bottom:124.906880pt;}
.y112{bottom:131.626614pt;}
.y41{bottom:132.906614pt;}
.y72{bottom:134.826613pt;}
.y156{bottom:137.386612pt;}
.y14c{bottom:137.546612pt;}
.yb7{bottom:140.106611pt;}
.ya3{bottom:142.346610pt;}
.y14e{bottom:146.826608pt;}
.yd8{bottom:150.186607pt;}
.y40{bottom:150.826606pt;}
.y111{bottom:152.746606pt;}
.y14b{bottom:155.946604pt;}
.y8a{bottom:156.106604pt;}
.y155{bottom:158.506603pt;}
.yb6{bottom:162.186602pt;}
.y14d{bottom:165.226601pt;}
.y3f{bottom:168.586599pt;}
.y110{bottom:174.026597pt;}
.y71{bottom:174.666597pt;}
.y89{bottom:177.226596pt;}
.y154{bottom:179.626595pt;}
.y149{bottom:180.747200pt;}
.ya2{bottom:182.186594pt;}
.y3e{bottom:186.506592pt;}
.yd7{bottom:190.986590pt;}
.y10f{bottom:195.146589pt;}
.y70{bottom:195.786588pt;}
.y88{bottom:198.346587pt;}
.y153{bottom:200.906586pt;}
.y148{bottom:202.666586pt;}
.yb5{bottom:202.986585pt;}
.ya1{bottom:203.306585pt;}
.y3d{bottom:204.746585pt;}
.y144{bottom:211.946582pt;}
.y10e{bottom:216.266580pt;}
.y6f{bottom:217.066580pt;}
.y87{bottom:219.466579pt;}
.y143{bottom:221.066578pt;}
.y3c{bottom:223.306577pt;}
.ya0{bottom:224.426577pt;}
.yb4{bottom:225.066577pt;}
.y145{bottom:230.186575pt;}
.yd6{bottom:231.786574pt;}
.y10d{bottom:237.386572pt;}
.y6e{bottom:238.186571pt;}
.y147{bottom:239.466571pt;}
.y86{bottom:240.746570pt;}
.y3b{bottom:240.906570pt;}
.yb3{bottom:247.146568pt;}
.yd5{bottom:253.866565pt;}
.y146{bottom:257.866564pt;}
.y10c{bottom:258.666563pt;}
.y6d{bottom:259.306563pt;}
.y85{bottom:261.866562pt;}
.y3a{bottom:262.186562pt;}
.y9f{bottom:264.266561pt;}
.y24{bottom:268.586559pt;}
.yb2{bottom:269.226559pt;}
.y141{bottom:273.387200pt;}
.y39{bottom:276.266556pt;}
.y10b{bottom:279.786555pt;}
.y6c{bottom:280.426554pt;}
.y84{bottom:282.986553pt;}
.y9e{bottom:285.546552pt;}
.y13f{bottom:286.186552pt;}
.yb1{bottom:291.306550pt;}
.yd4{bottom:294.506549pt;}
.y13c{bottom:295.306549pt;}
.y6b{bottom:301.706546pt;}
.y83{bottom:304.106545pt;}
.y13e{bottom:304.586545pt;}
.y9d{bottom:306.666544pt;}
.y38{bottom:308.746543pt;}
.yb0{bottom:313.386541pt;}
.y13b{bottom:313.706541pt;}
.yd3{bottom:316.586540pt;}
.y10a{bottom:319.626539pt;}
.y11c{bottom:320.266539pt;}
.y6a{bottom:322.826538pt;}
.y13d{bottom:322.986537pt;}
.y82{bottom:325.386537pt;}
.y9c{bottom:327.786536pt;}
.y4d{bottom:330.667200pt;}
.y140{bottom:332.106534pt;}
.yd2{bottom:338.666531pt;}
.y109{bottom:340.746530pt;}
.y11b{bottom:341.546530pt;}
.y69{bottom:343.946529pt;}
.y81{bottom:346.506528pt;}
.y139{bottom:347.627200pt;}
.y9b{bottom:348.906527pt;}
.y4c{bottom:350.506526pt;}
.yaf{bottom:354.026525pt;}
.y137{bottom:360.426522pt;}
.yd1{bottom:360.746522pt;}
.y108{bottom:361.866522pt;}
.y11a{bottom:362.666522pt;}
.y68{bottom:365.066521pt;}
.y4b{bottom:369.226519pt;}
.y138{bottom:369.546519pt;}
.y9a{bottom:370.186519pt;}
.y136{bottom:378.826515pt;}
.yd0{bottom:382.826514pt;}
.y107{bottom:382.986513pt;}
.y119{bottom:383.786513pt;}
.y67{bottom:386.346512pt;}
.y4a{bottom:387.946511pt;}
.y99{bottom:391.306510pt;}
.yae{bottom:394.826509pt;}
.y23{bottom:397.226508pt;}
.y133{bottom:403.467200pt;}
.y106{bottom:404.266505pt;}
.ycf{bottom:404.906505pt;}
.y49{bottom:406.666504pt;}
.y132{bottom:406.986504pt;}
.y66{bottom:407.466504pt;}
.y98{bottom:412.426502pt;}
.y135{bottom:416.266500pt;}
.yad{bottom:416.906500pt;}
.y131{bottom:425.386497pt;}
.yce{bottom:426.986496pt;}
.y65{bottom:428.586495pt;}
.y97{bottom:433.546493pt;}
.yac{bottom:438.986491pt;}
.y165{bottom:439.786491pt;}
.y105{bottom:444.106489pt;}
.y118{bottom:444.746489pt;}
.y64{bottom:449.706487pt;}
.y37{bottom:457.226484pt;}
.y22{bottom:458.506483pt;}
.yab{bottom:461.066482pt;}
.y104{bottom:465.226481pt;}
.y117{bottom:465.866480pt;}
.ycd{bottom:467.786480pt;}
.y80{bottom:470.986478pt;}
.y36{bottom:472.586478pt;}
.y96{bottom:473.386477pt;}
.y164{bottom:479.626475pt;}
.yaa{bottom:483.146473pt;}
.y103{bottom:486.346472pt;}
.y116{bottom:487.146472pt;}
.y63{bottom:489.546471pt;}
.ycc{bottom:489.866471pt;}
.y95{bottom:494.506469pt;}
.y21{bottom:496.266468pt;}
.y163{bottom:500.746466pt;}
.ya9{bottom:505.226465pt;}
.y130{bottom:505.706464pt;}
.y35{bottom:506.666464pt;}
.y102{bottom:507.466464pt;}
.y115{bottom:508.266463pt;}
.y62{bottom:510.826462pt;}
.ycb{bottom:511.946462pt;}
.y162{bottom:521.866458pt;}
.y34{bottom:522.026458pt;}
.y12f{bottom:526.986456pt;}
.y101{bottom:528.746455pt;}
.y114{bottom:529.386455pt;}
.y61{bottom:531.946454pt;}
.yca{bottom:534.026453pt;}
.y94{bottom:534.346453pt;}
.y20{bottom:535.146453pt;}
.y33{bottom:537.386452pt;}
.y161{bottom:543.146449pt;}
.ya8{bottom:546.026448pt;}
.y1f{bottom:548.746447pt;}
.y7f{bottom:550.506446pt;}
.y32{bottom:552.586446pt;}
.yc9{bottom:556.106444pt;}
.y1e{bottom:562.346442pt;}
.y160{bottom:564.266441pt;}
.y12e{bottom:566.826440pt;}
.y31{bottom:567.946439pt;}
.ya7{bottom:568.106439pt;}
.y100{bottom:568.426439pt;}
.y60{bottom:571.786438pt;}
.y93{bottom:574.186437pt;}
.y1d{bottom:574.826437pt;}
.yc8{bottom:578.186435pt;}
.y30{bottom:583.306433pt;}
.y15f{bottom:585.386433pt;}
.y12d{bottom:587.946431pt;}
.ya6{bottom:590.186431pt;}
.y152{bottom:590.346431pt;}
.y7e{bottom:592.906430pt;}
.y92{bottom:595.306429pt;}
.y2f{bottom:598.666427pt;}
.yc7{bottom:600.266427pt;}
.y15e{bottom:606.506424pt;}
.yff{bottom:608.266423pt;}
.y12c{bottom:609.066423pt;}
.y5f{bottom:611.626422pt;}
.ya5{bottom:612.266422pt;}
.y1c{bottom:612.586422pt;}
.y2e{bottom:614.026421pt;}
.y91{bottom:616.586420pt;}
.yc6{bottom:622.346418pt;}
.y15d{bottom:627.786416pt;}
.y2d{bottom:629.386415pt;}
.y12b{bottom:630.186415pt;}
.y5e{bottom:632.746414pt;}
.ya4{bottom:634.346413pt;}
.y7d{bottom:635.146413pt;}
.y90{bottom:637.706412pt;}
.y2c{bottom:644.586409pt;}
.yfe{bottom:648.106407pt;}
.y15c{bottom:648.906407pt;}
.y1b{bottom:650.506406pt;}
.y12a{bottom:651.306406pt;}
.y5d{bottom:653.866405pt;}
.y7c{bottom:656.426404pt;}
.y8f{bottom:658.826403pt;}
.y2b{bottom:659.946403pt;}
.yc5{bottom:663.146401pt;}
.yfc{bottom:663.627200pt;}
.y15b{bottom:670.026399pt;}
.y129{bottom:672.586398pt;}
.yf9{bottom:672.587200pt;}
.y5c{bottom:674.986397pt;}
.y2a{bottom:675.306397pt;}
.yf8{bottom:676.426396pt;}
.y7b{bottom:677.546396pt;}
.y8e{bottom:679.946395pt;}
.yfb{bottom:685.546392pt;}
.y1a{bottom:688.266391pt;}
.y29{bottom:690.666390pt;}
.y15a{bottom:691.146390pt;}
.y128{bottom:693.706389pt;}
.y5b{bottom:696.266388pt;}
.y113{bottom:698.666387pt;}
.yf5{bottom:701.227200pt;}
.y19{bottom:702.026386pt;}
.yc4{bottom:703.786385pt;}
.y28{bottom:706.026384pt;}
.y159{bottom:712.426382pt;}
.yf7{bottom:713.866381pt;}
.y25{bottom:715.787200pt;}
.y5a{bottom:717.386380pt;}
.y8d{bottom:719.786379pt;}
.y27{bottom:721.226378pt;}
.y17{bottom:721.227200pt;}
.yf4{bottom:723.146377pt;}
.yc3{bottom:725.866376pt;}
.y127{bottom:733.546373pt;}
.y59{bottom:738.506371pt;}
.yf1{bottom:738.667200pt;}
.y14{bottom:741.227200pt;}
.yc2{bottom:747.946367pt;}
.yf3{bottom:751.306366pt;}
.y126{bottom:754.666365pt;}
.y58{bottom:759.626363pt;}
.yf0{bottom:760.586362pt;}
.yc1{bottom:770.026359pt;}
.y125{bottom:775.786356pt;}
.yee{bottom:776.107200pt;}
.y151{bottom:778.346355pt;}
.y7a{bottom:780.746354pt;}
.yeb{bottom:788.746351pt;}
.y13{bottom:789.066351pt;}
.yc0{bottom:792.106350pt;}
.y124{bottom:797.066348pt;}
.yed{bottom:798.026347pt;}
.y57{bottom:799.466347pt;}
.y79{bottom:802.026346pt;}
.yea{bottom:807.146344pt;}
.y12{bottom:810.026343pt;}
.yec{bottom:816.426340pt;}
.y123{bottom:818.186339pt;}
.y56{bottom:820.586338pt;}
.y78{bottom:823.146337pt;}
.y11{bottom:828.426335pt;}
.ye6{bottom:831.947200pt;}
.ybf{bottom:832.906334pt;}
.y122{bottom:839.306331pt;}
.y55{bottom:841.866330pt;}
.y77{bottom:844.266329pt;}
.ye9{bottom:844.746329pt;}
.y10{bottom:846.826328pt;}
.ye5{bottom:853.866325pt;}
.y121{bottom:860.426322pt;}
.y54{bottom:862.986321pt;}
.ye8{bottom:863.146321pt;}
.y76{bottom:865.386321pt;}
.ye4{bottom:872.266318pt;}
.ybe{bottom:873.546317pt;}
.yf{bottom:873.706317pt;}
.y120{bottom:881.706314pt;}
.y53{bottom:884.106313pt;}
.y8c{bottom:886.666312pt;}
.ye0{bottom:887.787200pt;}
.ye{bottom:895.146309pt;}
.ybd{bottom:895.626308pt;}
.ye3{bottom:900.586306pt;}
.y158{bottom:902.826306pt;}
.y52{bottom:905.226305pt;}
.ydf{bottom:909.706303pt;}
.ybc{bottom:917.706300pt;}
.ye2{bottom:918.986299pt;}
.y11f{bottom:921.386298pt;}
.y157{bottom:923.946297pt;}
.y51{bottom:926.506296pt;}
.yde{bottom:928.106295pt;}
.y46{bottom:933.386293pt;}
.ybb{bottom:939.786291pt;}
.y11e{bottom:942.666290pt;}
.ydb{bottom:943.627200pt;}
.y75{bottom:945.066289pt;}
.yda{bottom:947.146288pt;}
.y45{bottom:950.666286pt;}
.ydd{bottom:956.426284pt;}
.yba{bottom:961.866282pt;}
.y11d{bottom:963.786281pt;}
.yd9{bottom:965.546280pt;}
.y50{bottom:966.186280pt;}
.y44{bottom:969.226279pt;}
.yb9{bottom:983.946273pt;}
.y74{bottom:984.906273pt;}
.y43{bottom:994.186269pt;}
.y47{bottom:996.587200pt;}
.y4f{bottom:1006.026264pt;}
.y4{bottom:1024.906257pt;}
.y7{bottom:1050.826246pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h3{height:5.120000pt;}
.hf{height:12.480000pt;}
.h16{height:13.920000pt;}
.h7{height:16.800000pt;}
.hc{height:17.920000pt;}
.h6{height:18.080000pt;}
.h1b{height:18.240000pt;}
.h10{height:29.961551pt;}
.h12{height:32.554674pt;}
.h4{height:32.624987pt;}
.h5{height:34.453111pt;}
.h11{height:34.945299pt;}
.h1{height:38.128110pt;}
.h18{height:38.672797pt;}
.hd{height:39.243734pt;}
.h13{height:39.904984pt;}
.he{height:40.019984pt;}
.h15{height:41.141234pt;}
.h2{height:42.262483pt;}
.ha{height:43.374983pt;}
.hb{height:45.937482pt;}
.h17{height:46.593731pt;}
.h8{height:50.748730pt;}
.h9{height:53.746854pt;}
.h14{height:59.683726pt;}
.h19{height:79.854968pt;}
.h1c{height:82.417467pt;}
.h1a{height:83.057467pt;}
.h0{height:1122.666667pt;}
.w5{width:3.200000pt;}
.w3{width:4.000000pt;}
.wb{width:6.240000pt;}
.w1a{width:6.720000pt;}
.w8{width:7.200000pt;}
.w7{width:7.360000pt;}
.wd{width:7.840000pt;}
.we{width:8.000000pt;}
.w2{width:8.640000pt;}
.w6{width:29.920000pt;}
.w10{width:32.960000pt;}
.wf{width:43.520000pt;}
.w14{width:46.240000pt;}
.w19{width:50.240000pt;}
.w13{width:51.040000pt;}
.w4{width:52.000000pt;}
.w9{width:62.560000pt;}
.w15{width:67.040000pt;}
.w1b{width:68.000000pt;}
.w1d{width:80.480000pt;}
.w17{width:88.480000pt;}
.wa{width:101.120000pt;}
.w11{width:106.240000pt;}
.w12{width:108.000000pt;}
.w1c{width:121.760000pt;}
.w18{width:128.800000pt;}
.w1f{width:144.480000pt;}
.w16{width:161.760000pt;}
.w20{width:167.520000pt;}
.w1e{width:177.280000pt;}
.w21{width:188.000000pt;}
.wc{width:248.160000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x18{left:90.079964pt;}
.x16{left:91.839963pt;}
.x15{left:94.239962pt;}
.x1{left:95.999962pt;}
.x9{left:102.399959pt;}
.x12{left:104.320000pt;}
.x1a{left:105.279958pt;}
.x14{left:109.599912pt;}
.xb{left:112.320000pt;}
.x4{left:117.919953pt;}
.x26{left:119.999117pt;}
.x19{left:133.279947pt;}
.x28{left:137.280000pt;}
.x17{left:142.239943pt;}
.x27{left:144.000351pt;}
.x2c{left:147.040000pt;}
.x30{left:149.760000pt;}
.x1b{left:154.879939pt;}
.xc{left:164.320000pt;}
.xd{left:167.520000pt;}
.x7{left:171.200621pt;}
.x33{left:192.000000pt;}
.xe{left:197.440000pt;}
.x13{left:205.440000pt;}
.x1c{left:216.959922pt;}
.x1d{left:217.919913pt;}
.xa{left:226.879756pt;}
.x38{left:230.719908pt;}
.xf{left:237.600000pt;}
.x22{left:257.279897pt;}
.x1e{left:259.359896pt;}
.x10{left:266.880000pt;}
.x2{left:268.959892pt;}
.x20{left:285.759886pt;}
.x8{left:290.559884pt;}
.x21{left:293.919885pt;}
.x3c{left:311.200000pt;}
.x39{left:320.480000pt;}
.x11{left:329.280000pt;}
.x35{left:333.440000pt;}
.x29{left:347.679861pt;}
.x23{left:350.879853pt;}
.x5{left:385.119846pt;}
.x2a{left:396.480000pt;}
.x31{left:414.720000pt;}
.x36{left:415.680000pt;}
.x2d{left:453.920000pt;}
.x2e{left:455.680000pt;}
.x34{left:476.480000pt;}
.x3a{left:492.000000pt;}
.x2b{left:495.359802pt;}
.x3b{left:512.799795pt;}
.x25{left:517.920000pt;}
.x1f{left:531.999787pt;}
.x2f{left:546.400000pt;}
.x24{left:583.520000pt;}
.x3{left:592.159763pt;}
.x37{left:617.120000pt;}
.x32{left:657.120000pt;}
.x3e{left:680.320000pt;}
.x3d{left:690.080000pt;}
.x6{left:693.440000pt;}
.x3f{left:700.800000pt;}
}




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