
    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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_db7a04dbda1c88399f92f56f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_75a50d5f755c4e8a0ff34cf5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a6fe5588c2cf66866bea8654.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_e4af766037b567bf352c6c04.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c9c7ff200fc3848f0c2ca29d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.899221px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321678px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws4{word-spacing:-11.250000px;}
.ws3{word-spacing:-10.800000px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-9.281240px;}
._22{margin-left:-7.980468px;}
._21{margin-left:-6.609354px;}
._0{margin-left:-5.343751px;}
._1{margin-left:-3.972668px;}
._3{margin-left:-2.671873px;}
._2{margin-left:-1.300782px;}
._6{width:3.497952px;}
._5{width:4.637419px;}
._4{width:8.905751px;}
._a{width:9.982077px;}
._7{width:13.423972px;}
._18{width:17.686264px;}
._9{width:22.500011px;}
._8{width:27.000000px;}
._b{width:31.499999px;}
._e{width:35.999999px;}
._14{width:40.441465px;}
._d{width:44.789061px;}
._c{width:49.500002px;}
._16{width:58.319086px;}
._11{width:62.832064px;}
._12{width:67.420599px;}
._1c{width:71.845132px;}
._1b{width:80.894550px;}
._10{width:85.394530px;}
._17{width:89.954429px;}
._1a{width:98.786513px;}
._1e{width:107.822999px;}
._15{width:112.389332px;}
._1d{width:116.834789px;}
._19{width:175.332064px;}
._13{width:184.339869px;}
._20{width:238.269599px;}
._1f{width:382.467476px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:43.200002px;}
.fs2{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.496571px;}
.y6d{bottom:3.496581px;}
.y29{bottom:3.496583px;}
.ycc{bottom:3.569080px;}
.ye0{bottom:3.569082px;}
.yd9{bottom:3.569085px;}
.y97{bottom:3.569086px;}
.yb8{bottom:3.569088px;}
.yd7{bottom:3.569089px;}
.yec{bottom:3.569091px;}
.y90{bottom:3.569092px;}
.y94{bottom:3.569094px;}
.ya2{bottom:3.569097px;}
.yc1{bottom:3.569098px;}
.yb3{bottom:3.569101px;}
.yb1{bottom:22.542472px;}
.y93{bottom:22.542474px;}
.ycb{bottom:22.542475px;}
.ydf{bottom:22.542477px;}
.y96{bottom:22.542481px;}
.yb7{bottom:22.542483px;}
.yd6{bottom:22.542484px;}
.yeb{bottom:22.542486px;}
.ya5{bottom:22.542489px;}
.ya1{bottom:22.542492px;}
.yc0{bottom:22.542493px;}
.yde{bottom:41.515857px;}
.yb6{bottom:41.515863px;}
.yd5{bottom:41.515864px;}
.yea{bottom:41.515866px;}
.yb0{bottom:41.515867px;}
.y92{bottom:41.515869px;}
.yca{bottom:41.515870px;}
.ya0{bottom:41.515872px;}
.ybf{bottom:41.515873px;}
.yaf{bottom:60.489247px;}
.yc9{bottom:60.489250px;}
.ydd{bottom:60.489252px;}
.yb5{bottom:60.489258px;}
.yd4{bottom:60.489259px;}
.ye9{bottom:60.489261px;}
.y9f{bottom:60.489267px;}
.ybe{bottom:60.489268px;}
.yd3{bottom:79.462639px;}
.ye8{bottom:79.462641px;}
.yae{bottom:79.462642px;}
.yc8{bottom:79.462645px;}
.y9e{bottom:79.462647px;}
.ybd{bottom:79.462648px;}
.y116{bottom:94.434526px;}
.yff{bottom:94.691166px;}
.yad{bottom:98.436022px;}
.yc7{bottom:98.436025px;}
.yd2{bottom:98.436036px;}
.ybc{bottom:98.436043px;}
.y155{bottom:99.811528px;}
.y8d{bottom:101.178961px;}
.y4a{bottom:107.480560px;}
.y6b{bottom:112.877189px;}
.yc2{bottom:115.278813px;}
.yac{bottom:117.409417px;}
.yc6{bottom:117.409420px;}
.ybb{bottom:117.409423px;}
.y178{bottom:117.811523px;}
.y154{bottom:120.509770px;}
.y131{bottom:120.527338px;}
.yfe{bottom:125.738529px;}
.y8c{bottom:132.226324px;}
.yab{bottom:136.382812px;}
.yc5{bottom:136.382815px;}
.y177{bottom:138.509768px;}
.y49{bottom:138.527928px;}
.y153{bottom:141.208012px;}
.yba{bottom:143.738520px;}
.y6a{bottom:143.924557px;}
.y130{bottom:151.574701px;}
.yc4{bottom:155.356195px;}
.yd1{bottom:155.356201px;}
.yfd{bottom:156.785893px;}
.y8b{bottom:163.273688px;}
.y115{bottom:168.226319px;}
.y48{bottom:169.575284px;}
.yc3{bottom:174.329590px;}
.y69{bottom:174.971924px;}
.y176{bottom:177.208000px;}
.y152{bottom:179.906245px;}
.yb9{bottom:181.685300px;}
.y12f{bottom:182.622064px;}
.yfc{bottom:187.833256px;}
.yd0{bottom:193.302979px;}
.y8a{bottom:194.321049px;}
.y175{bottom:197.906242px;}
.y114{bottom:199.273675px;}
.y151{bottom:200.604488px;}
.y47{bottom:200.622618px;}
.y68{bottom:206.019280px;}
.y12e{bottom:213.669428px;}
.yfb{bottom:218.880619px;}
.y27{bottom:222.237303px;}
.y89{bottom:225.368413px;}
.y113{bottom:230.321043px;}
.y46{bottom:231.669805px;}
.y174{bottom:236.604498px;}
.y67{bottom:237.066648px;}
.y150{bottom:239.302735px;}
.y12d{bottom:244.716794px;}
.y26{bottom:248.485833px;}
.yfa{bottom:249.927982px;}
.y88{bottom:256.415776px;}
.y173{bottom:257.302741px;}
.y14f{bottom:260.000978px;}
.y112{bottom:261.368406px;}
.y45{bottom:262.717173px;}
.y66{bottom:268.114011px;}
.y25{bottom:274.734365px;}
.y12c{bottom:275.764150px;}
.y172{bottom:278.000983px;}
.yf9{bottom:280.975338px;}
.y87{bottom:287.463139px;}
.y24{bottom:291.982900px;}
.y111{bottom:292.415769px;}
.y44{bottom:293.764529px;}
.y14e{bottom:298.699225px;}
.y65{bottom:299.161374px;}
.yb4{bottom:305.012696px;}
.y12b{bottom:306.811518px;}
.y23{bottom:309.231435px;}
.yf8{bottom:312.022701px;}
.y86{bottom:318.510503px;}
.y14d{bottom:319.397468px;}
.y110{bottom:323.463133px;}
.yb2{bottom:323.986077px;}
.y43{bottom:324.811897px;}
.y22{bottom:326.479979px;}
.y64{bottom:330.208738px;}
.y12a{bottom:337.858874px;}
.yf7{bottom:343.070064px;}
.y21{bottom:343.728515px;}
.y10f{bottom:354.510496px;}
.y42{bottom:355.859264px;}
.y14c{bottom:358.095700px;}
.y171{bottom:358.095703px;}
.y20{bottom:360.977050px;}
.y63{bottom:361.256101px;}
.y85{bottom:367.557862px;}
.y129{bottom:368.906242px;}
.yf6{bottom:374.117428px;}
.y1f{bottom:378.225585px;}
.y14b{bottom:378.793943px;}
.y170{bottom:378.793945px;}
.yaa{bottom:380.906256px;}
.y10e{bottom:385.557859px;}
.y41{bottom:386.906620px;}
.y62{bottom:392.303464px;}
.y1e{bottom:395.474120px;}
.y16f{bottom:399.492188px;}
.y128{bottom:399.953609px;}
.yf5{bottom:405.164791px;}
.ya8{bottom:409.365966px;}
.y1d{bottom:412.722656px;}
.y84{bottom:416.605219px;}
.y10d{bottom:416.605223px;}
.y14a{bottom:417.492190px;}
.y40{bottom:417.953988px;}
.y61{bottom:423.350828px;}
.y1c{bottom:429.971188px;}
.y127{bottom:431.000965px;}
.yf4{bottom:436.212154px;}
.ya9{bottom:437.826417px;}
.y16e{bottom:438.190423px;}
.y149{bottom:438.190433px;}
.y1b{bottom:447.219723px;}
.y83{bottom:447.652583px;}
.y10c{bottom:447.652593px;}
.y3f{bottom:449.001344px;}
.y60{bottom:454.398190px;}
.y16d{bottom:458.888665px;}
.y126{bottom:462.048333px;}
.yf3{bottom:467.259517px;}
.y148{bottom:476.888665px;}
.y82{bottom:478.699949px;}
.y16c{bottom:479.586908px;}
.y3e{bottom:480.048712px;}
.y1a{bottom:482.092533px;}
.y5f{bottom:485.445558px;}
.y125{bottom:493.095696px;}
.y147{bottom:497.586908px;}
.y19{bottom:508.341104px;}
.y81{bottom:509.747305px;}
.y10b{bottom:509.747317px;}
.y3d{bottom:511.096079px;}
.yf2{bottom:516.306878px;}
.y5e{bottom:516.492921px;}
.y16b{bottom:518.285152px;}
.y124{bottom:524.143059px;}
.y18{bottom:525.589639px;}
.ya7{bottom:534.456291px;}
.y146{bottom:536.285155px;}
.y80{bottom:540.794673px;}
.y10a{bottom:540.794684px;}
.y3c{bottom:542.143435px;}
.y17{bottom:542.838191px;}
.y5d{bottom:547.540284px;}
.y123{bottom:555.190423px;}
.ya4{bottom:555.193355px;}
.y145{bottom:556.983398px;}
.y16a{bottom:556.983400px;}
.y16{bottom:560.086726px;}
.yf1{bottom:564.167727px;}
.y7f{bottom:571.842036px;}
.y109{bottom:571.842040px;}
.y3b{bottom:573.190803px;}
.ya6{bottom:574.166751px;}
.y15{bottom:577.335261px;}
.y169{bottom:577.681642px;}
.y5c{bottom:578.587648px;}
.yef{bottom:585.197015px;}
.y122{bottom:586.237786px;}
.y14{bottom:594.583797px;}
.y144{bottom:595.681642px;}
.y7e{bottom:602.889399px;}
.y108{bottom:602.889408px;}
.yee{bottom:604.170411px;}
.y3a{bottom:604.238166px;}
.y5b{bottom:609.635011px;}
.y13{bottom:611.832323px;}
.y9d{bottom:612.113521px;}
.y168{bottom:616.379878px;}
.y121{bottom:617.285149px;}
.yf0{bottom:623.143791px;}
.y12{bottom:629.080859px;}
.ya3{bottom:631.086920px;}
.y7d{bottom:633.936763px;}
.y107{bottom:633.936771px;}
.y143{bottom:634.379875px;}
.y39{bottom:635.285529px;}
.y167{bottom:637.078120px;}
.y9c{bottom:640.573242px;}
.y5a{bottom:640.682374px;}
.ye7{bottom:642.117188px;}
.y11{bottom:646.329398px;}
.y120{bottom:648.332513px;}
.y9b{bottom:650.060301px;}
.y142{bottom:655.078118px;}
.y166{bottom:657.776363px;}
.ye5{bottom:661.090581px;}
.y10{bottom:663.577933px;}
.y7c{bottom:664.984126px;}
.y106{bottom:664.984134px;}
.y38{bottom:666.332893px;}
.y59{bottom:671.729738px;}
.y11f{bottom:678.030758px;}
.ye6{bottom:680.063967px;}
.yf{bottom:680.826513px;}
.y141{bottom:693.776362px;}
.y7b{bottom:696.031489px;}
.y105{bottom:696.031498px;}
.y165{bottom:696.474610px;}
.y37{bottom:697.380256px;}
.y9a{bottom:708.743406px;}
.y140{bottom:714.474603px;}
.ye{bottom:716.723963px;}
.y164{bottom:717.172852px;}
.yed{bottom:718.010742px;}
.y58{bottom:720.776918px;}
.y11e{bottom:727.078123px;}
.y7a{bottom:727.078852px;}
.y104{bottom:727.078861px;}
.y36{bottom:728.427619px;}
.y99{bottom:731.243406px;}
.y13f{bottom:735.172846px;}
.y98{bottom:753.743406px;}
.yd{bottom:755.422208px;}
.y13e{bottom:755.871088px;}
.y163{bottom:755.871091px;}
.ye3{bottom:755.957525px;}
.y11d{bottom:758.125486px;}
.y79{bottom:758.126223px;}
.y103{bottom:758.126224px;}
.y35{bottom:759.474983px;}
.y57{bottom:769.824274px;}
.ye2{bottom:774.930906px;}
.y91{bottom:775.605470px;}
.y13d{bottom:776.569330px;}
.y162{bottom:776.569333px;}
.y11c{bottom:789.172849px;}
.y78{bottom:789.173579px;}
.y102{bottom:789.173588px;}
.y34{bottom:790.522337px;}
.ye4{bottom:793.904301px;}
.yc{bottom:794.120453px;}
.y95{bottom:794.578857px;}
.y13c{bottom:797.267573px;}
.y161{bottom:797.267575px;}
.y56{bottom:800.871638px;}
.yda{bottom:812.877687px;}
.ydc{bottom:812.877691px;}
.y8f{bottom:813.552246px;}
.y160{bottom:817.965818px;}
.y11b{bottom:820.220213px;}
.y77{bottom:820.220947px;}
.y33{bottom:821.569705px;}
.y55{bottom:831.919009px;}
.yb{bottom:832.818697px;}
.y13b{bottom:835.965820px;}
.ydb{bottom:841.337397px;}
.y11a{bottom:851.267572px;}
.y8e{bottom:851.268307px;}
.y101{bottom:851.268310px;}
.y76{bottom:851.268314px;}
.y32{bottom:852.617061px;}
.y13a{bottom:856.664062px;}
.y15f{bottom:856.664065px;}
.y54{bottom:862.966373px;}
.ya{bottom:871.516943px;}
.y15e{bottom:877.362308px;}
.y119{bottom:882.314939px;}
.y75{bottom:882.315670px;}
.y100{bottom:882.315673px;}
.y31{bottom:883.664428px;}
.ye1{bottom:888.771246px;}
.y53{bottom:894.013732px;}
.y139{bottom:895.362308px;}
.ycf{bottom:907.744629px;}
.y9{bottom:910.215172px;}
.y118{bottom:913.362295px;}
.y74{bottom:913.363038px;}
.y30{bottom:914.711791px;}
.y15d{bottom:916.060547px;}
.y52{bottom:925.061095px;}
.y15c{bottom:936.758789px;}
.y117{bottom:944.409663px;}
.y138{bottom:944.409668px;}
.y73{bottom:944.410401px;}
.y2f{bottom:945.759154px;}
.y8{bottom:948.913417px;}
.y51{bottom:956.108459px;}
.y15b{bottom:957.457031px;}
.y137{bottom:975.457031px;}
.y72{bottom:975.457764px;}
.y2e{bottom:976.806518px;}
.y15a{bottom:978.155273px;}
.yd8{bottom:983.638183px;}
.y50{bottom:987.155822px;}
.y7{bottom:987.611664px;}
.yce{bottom:993.124511px;}
.y159{bottom:998.853516px;}
.ycd{bottom:1002.611573px;}
.y136{bottom:1006.504394px;}
.y71{bottom:1006.505128px;}
.y2d{bottom:1007.853881px;}
.y4f{bottom:1018.203185px;}
.y158{bottom:1019.551758px;}
.y6{bottom:1026.309906px;}
.y135{bottom:1037.551758px;}
.y70{bottom:1037.552491px;}
.y2c{bottom:1038.901244px;}
.y4e{bottom:1049.250549px;}
.y5{bottom:1056.008148px;}
.y157{bottom:1058.249999px;}
.y134{bottom:1068.599120px;}
.y6f{bottom:1068.599854px;}
.y2b{bottom:1069.948608px;}
.y156{bottom:1078.948242px;}
.y4d{bottom:1078.948791px;}
.y4{bottom:1079.155415px;}
.y133{bottom:1099.646484px;}
.y2a{bottom:1099.646850px;}
.y4c{bottom:1099.647033px;}
.y6e{bottom:1099.647217px;}
.y3{bottom:1100.974812px;}
.y132{bottom:1116.451171px;}
.y28{bottom:1116.451538px;}
.y1{bottom:1116.451618px;}
.y4b{bottom:1116.451720px;}
.y6c{bottom:1116.451905px;}
.hb{height:18.973389px;}
.h18{height:29.889841px;}
.he{height:37.946778px;}
.h2{height:43.989259px;}
.h5{height:48.796875px;}
.h6{height:49.992188px;}
.h7{height:53.789061px;}
.hd{height:56.920166px;}
.hc{height:58.620119px;}
.hf{height:59.167970px;}
.h4{height:63.949219px;}
.h3{height:64.546875px;}
.h17{height:66.049805px;}
.h12{height:75.893554px;}
.h10{height:94.866943px;}
.h16{height:113.840332px;}
.h13{height:132.813720px;}
.ha{height:146.548095px;}
.h9{height:146.548280px;}
.h1{height:146.548382px;}
.h8{height:146.548462px;}
.h19{height:146.548829px;}
.h11{height:151.787109px;}
.h14{height:189.733887px;}
.h15{height:208.707276px;}
.h0{height:1263.000000px;}
.w3{width:136.125000px;}
.w4{width:180.000046px;}
.w5{width:185.625047px;}
.w2{width:192.374977px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1c{left:7.875000px;}
.x1a{left:10.125000px;}
.x11{left:16.014977px;}
.x1d{left:19.656172px;}
.x23{left:21.951018px;}
.x12{left:23.804240px;}
.xf{left:24.986421px;}
.x13{left:26.549603px;}
.x15{left:30.626140px;}
.x1f{left:32.485645px;}
.x24{left:33.696871px;}
.x19{left:41.188688px;}
.x16{left:42.984300px;}
.x25{left:51.102956px;}
.x18{left:55.651125px;}
.x1e{left:57.527589px;}
.x21{left:60.276978px;}
.x20{left:62.249892px;}
.x22{left:72.333667px;}
.x1b{left:86.692137px;}
.xe{left:116.325005px;}
.x26{left:117.450005px;}
.x1{left:127.575005px;}
.x5{left:142.594197px;}
.x3{left:147.028279px;}
.x6{left:175.654258px;}
.xd{left:213.075005px;}
.xa{left:238.762808px;}
.x2{left:282.239210px;}
.xc{left:301.950005px;}
.x10{left:309.824985px;}
.x8{left:311.404409px;}
.x14{left:447.074985px;}
.x4{left:467.719205px;}
.x9{left:614.319428px;}
.x17{left:628.200030px;}
.xb{left:629.498142px;}
.x7{left:807.863416px;}
@media print{
.v2{vertical-align:-21.243752pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285936pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws4{word-spacing:-10.000000pt;}
.ws3{word-spacing:-9.600000pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-8.249991pt;}
._22{margin-left:-7.093750pt;}
._21{margin-left:-5.874981pt;}
._0{margin-left:-4.750001pt;}
._1{margin-left:-3.531261pt;}
._3{margin-left:-2.374998pt;}
._2{margin-left:-1.156250pt;}
._6{width:3.109290pt;}
._5{width:4.122150pt;}
._4{width:7.916223pt;}
._a{width:8.872957pt;}
._7{width:11.932420pt;}
._18{width:15.721123pt;}
._9{width:20.000010pt;}
._8{width:24.000000pt;}
._b{width:27.999999pt;}
._e{width:32.000000pt;}
._14{width:35.947969pt;}
._d{width:39.812498pt;}
._c{width:44.000002pt;}
._16{width:51.839188pt;}
._11{width:55.850724pt;}
._12{width:59.929422pt;}
._1c{width:63.862339pt;}
._1b{width:71.906267pt;}
._10{width:75.906249pt;}
._17{width:79.959492pt;}
._1a{width:87.810234pt;}
._1e{width:95.842666pt;}
._15{width:99.901628pt;}
._1d{width:103.853146pt;}
._19{width:155.850724pt;}
._13{width:163.857661pt;}
._20{width:211.795199pt;}
._1f{width:339.971090pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:38.400002pt;}
.fs2{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.108063pt;}
.y6d{bottom:3.108072pt;}
.y29{bottom:3.108073pt;}
.ycc{bottom:3.172516pt;}
.ye0{bottom:3.172517pt;}
.yd9{bottom:3.172520pt;}
.y97{bottom:3.172521pt;}
.yb8{bottom:3.172523pt;}
.yd7{bottom:3.172524pt;}
.yec{bottom:3.172525pt;}
.y90{bottom:3.172526pt;}
.y94{bottom:3.172528pt;}
.ya2{bottom:3.172531pt;}
.yc1{bottom:3.172532pt;}
.yb3{bottom:3.172535pt;}
.yb1{bottom:20.037753pt;}
.y93{bottom:20.037755pt;}
.ycb{bottom:20.037756pt;}
.ydf{bottom:20.037757pt;}
.y96{bottom:20.037761pt;}
.yb7{bottom:20.037763pt;}
.yd6{bottom:20.037764pt;}
.yeb{bottom:20.037765pt;}
.ya5{bottom:20.037768pt;}
.ya1{bottom:20.037771pt;}
.yc0{bottom:20.037772pt;}
.yde{bottom:36.902984pt;}
.yb6{bottom:36.902989pt;}
.yd5{bottom:36.902991pt;}
.yea{bottom:36.902992pt;}
.yb0{bottom:36.902993pt;}
.y92{bottom:36.902995pt;}
.yca{bottom:36.902996pt;}
.ya0{bottom:36.902997pt;}
.ybf{bottom:36.902999pt;}
.yaf{bottom:53.768220pt;}
.yc9{bottom:53.768223pt;}
.ydd{bottom:53.768224pt;}
.yb5{bottom:53.768229pt;}
.yd4{bottom:53.768231pt;}
.ye9{bottom:53.768232pt;}
.y9f{bottom:53.768237pt;}
.ybe{bottom:53.768239pt;}
.yd3{bottom:70.633457pt;}
.ye8{bottom:70.633459pt;}
.yae{bottom:70.633460pt;}
.yc8{bottom:70.633463pt;}
.y9e{bottom:70.633464pt;}
.ybd{bottom:70.633465pt;}
.y116{bottom:83.941801pt;}
.yff{bottom:84.169925pt;}
.yad{bottom:87.498687pt;}
.yc7{bottom:87.498689pt;}
.yd2{bottom:87.498699pt;}
.ybc{bottom:87.498705pt;}
.y155{bottom:88.721358pt;}
.y8d{bottom:89.936854pt;}
.y4a{bottom:95.538276pt;}
.y6b{bottom:100.335279pt;}
.yc2{bottom:102.470056pt;}
.yac{bottom:104.363927pt;}
.yc6{bottom:104.363929pt;}
.ybb{bottom:104.363932pt;}
.y178{bottom:104.721353pt;}
.y154{bottom:107.119796pt;}
.y131{bottom:107.135412pt;}
.yfe{bottom:111.767581pt;}
.y8c{bottom:117.534510pt;}
.yab{bottom:121.229167pt;}
.yc5{bottom:121.229169pt;}
.y177{bottom:123.119793pt;}
.y49{bottom:123.135936pt;}
.y153{bottom:125.518233pt;}
.yba{bottom:127.767573pt;}
.y6a{bottom:127.932939pt;}
.y130{bottom:134.733068pt;}
.yc4{bottom:138.094396pt;}
.yd1{bottom:138.094401pt;}
.yfd{bottom:139.365238pt;}
.y8b{bottom:145.132167pt;}
.y115{bottom:149.534506pt;}
.y48{bottom:150.733586pt;}
.yc3{bottom:154.959636pt;}
.y69{bottom:155.530599pt;}
.y176{bottom:157.518222pt;}
.y152{bottom:159.916663pt;}
.yb9{bottom:161.498044pt;}
.y12f{bottom:162.330724pt;}
.yfc{bottom:166.962894pt;}
.yd0{bottom:171.824871pt;}
.y8a{bottom:172.729821pt;}
.y175{bottom:175.916660pt;}
.y114{bottom:177.132156pt;}
.y151{bottom:178.315100pt;}
.y47{bottom:178.331216pt;}
.y68{bottom:183.128249pt;}
.y12e{bottom:189.928380pt;}
.yfb{bottom:194.560550pt;}
.y27{bottom:197.544270pt;}
.y89{bottom:200.327478pt;}
.y113{bottom:204.729816pt;}
.y46{bottom:205.928716pt;}
.y174{bottom:210.315110pt;}
.y67{bottom:210.725909pt;}
.y150{bottom:212.713543pt;}
.y12d{bottom:217.526039pt;}
.y26{bottom:220.876296pt;}
.yfa{bottom:222.158207pt;}
.y88{bottom:227.925134pt;}
.y173{bottom:228.713548pt;}
.y14f{bottom:231.111980pt;}
.y112{bottom:232.327472pt;}
.y45{bottom:233.526376pt;}
.y66{bottom:238.323565pt;}
.y25{bottom:244.208325pt;}
.y12c{bottom:245.123689pt;}
.y172{bottom:247.111985pt;}
.yf9{bottom:249.755856pt;}
.y87{bottom:255.522790pt;}
.y24{bottom:259.540356pt;}
.y111{bottom:259.925128pt;}
.y44{bottom:261.124026pt;}
.y14e{bottom:265.510423pt;}
.y65{bottom:265.921221pt;}
.yb4{bottom:271.122396pt;}
.y12b{bottom:272.721349pt;}
.y23{bottom:274.872387pt;}
.yf8{bottom:277.353512pt;}
.y86{bottom:283.120447pt;}
.y14d{bottom:283.908860pt;}
.y110{bottom:287.522785pt;}
.yb2{bottom:287.987624pt;}
.y43{bottom:288.721686pt;}
.y22{bottom:290.204426pt;}
.y64{bottom:293.518878pt;}
.y12a{bottom:300.318999pt;}
.yf7{bottom:304.951168pt;}
.y21{bottom:305.536458pt;}
.y10f{bottom:315.120441pt;}
.y42{bottom:316.319346pt;}
.y14c{bottom:318.307289pt;}
.y171{bottom:318.307291pt;}
.y20{bottom:320.868489pt;}
.y63{bottom:321.116534pt;}
.y85{bottom:326.718100pt;}
.y129{bottom:327.916659pt;}
.yf6{bottom:332.548825pt;}
.y1f{bottom:336.200520pt;}
.y14b{bottom:336.705727pt;}
.y170{bottom:336.705729pt;}
.yaa{bottom:338.583339pt;}
.y10e{bottom:342.718097pt;}
.y41{bottom:343.916996pt;}
.y62{bottom:348.714190pt;}
.y1e{bottom:351.532551pt;}
.y16f{bottom:355.104167pt;}
.y128{bottom:355.514319pt;}
.yf5{bottom:360.146481pt;}
.ya8{bottom:363.880859pt;}
.y1d{bottom:366.864583pt;}
.y84{bottom:370.315750pt;}
.y10d{bottom:370.315753pt;}
.y14a{bottom:371.104169pt;}
.y40{bottom:371.514656pt;}
.y61{bottom:376.311847pt;}
.y1c{bottom:382.196612pt;}
.y127{bottom:383.111969pt;}
.yf4{bottom:387.744137pt;}
.ya9{bottom:389.179037pt;}
.y16e{bottom:389.502598pt;}
.y149{bottom:389.502607pt;}
.y1b{bottom:397.528643pt;}
.y83{bottom:397.913407pt;}
.y10c{bottom:397.913416pt;}
.y3f{bottom:399.112306pt;}
.y60{bottom:403.909502pt;}
.y16d{bottom:407.901036pt;}
.y126{bottom:410.709629pt;}
.yf3{bottom:415.341793pt;}
.y148{bottom:423.901036pt;}
.y82{bottom:425.511066pt;}
.y16c{bottom:426.299473pt;}
.y3e{bottom:426.709966pt;}
.y1a{bottom:428.526696pt;}
.y5f{bottom:431.507163pt;}
.y125{bottom:438.307285pt;}
.y147{bottom:442.299473pt;}
.y19{bottom:451.858759pt;}
.y81{bottom:453.108716pt;}
.y10b{bottom:453.108726pt;}
.y3d{bottom:454.307626pt;}
.yf2{bottom:458.939447pt;}
.y5e{bottom:459.104819pt;}
.y16b{bottom:460.697913pt;}
.y124{bottom:465.904941pt;}
.y18{bottom:467.190790pt;}
.ya7{bottom:475.072259pt;}
.y146{bottom:476.697916pt;}
.y80{bottom:480.706376pt;}
.y10a{bottom:480.706386pt;}
.y3c{bottom:481.905276pt;}
.y17{bottom:482.522837pt;}
.y5d{bottom:486.702475pt;}
.y123{bottom:493.502598pt;}
.ya4{bottom:493.505204pt;}
.y145{bottom:495.096353pt;}
.y16a{bottom:495.096356pt;}
.y16{bottom:497.854868pt;}
.yf1{bottom:501.482424pt;}
.y7f{bottom:508.304032pt;}
.y109{bottom:508.304036pt;}
.y3b{bottom:509.502936pt;}
.ya6{bottom:510.370446pt;}
.y15{bottom:513.186899pt;}
.y169{bottom:513.494793pt;}
.y5c{bottom:514.300132pt;}
.yef{bottom:520.175124pt;}
.y122{bottom:521.100254pt;}
.y14{bottom:528.518931pt;}
.y144{bottom:529.494793pt;}
.y7e{bottom:535.901688pt;}
.y108{bottom:535.901696pt;}
.yee{bottom:537.040366pt;}
.y3a{bottom:537.100592pt;}
.y5b{bottom:541.897788pt;}
.y13{bottom:543.850954pt;}
.y9d{bottom:544.100908pt;}
.y168{bottom:547.893224pt;}
.y121{bottom:548.697910pt;}
.yf0{bottom:553.905592pt;}
.y12{bottom:559.182986pt;}
.ya3{bottom:560.966151pt;}
.y7d{bottom:563.499345pt;}
.y107{bottom:563.499352pt;}
.y143{bottom:563.893223pt;}
.y39{bottom:564.698248pt;}
.y167{bottom:566.291663pt;}
.y9c{bottom:569.398437pt;}
.y5a{bottom:569.495444pt;}
.ye7{bottom:570.770833pt;}
.y11{bottom:574.515021pt;}
.y120{bottom:576.295567pt;}
.y9b{bottom:577.831379pt;}
.y142{bottom:582.291660pt;}
.y166{bottom:584.690100pt;}
.ye5{bottom:587.636072pt;}
.y10{bottom:589.847052pt;}
.y7c{bottom:591.097001pt;}
.y106{bottom:591.097008pt;}
.y38{bottom:592.295905pt;}
.y59{bottom:597.093100pt;}
.y11f{bottom:602.694007pt;}
.ye6{bottom:604.501304pt;}
.yf{bottom:605.179123pt;}
.y141{bottom:616.690099pt;}
.y7b{bottom:618.694657pt;}
.y105{bottom:618.694665pt;}
.y165{bottom:619.088542pt;}
.y37{bottom:619.893561pt;}
.y9a{bottom:629.994139pt;}
.y140{bottom:635.088536pt;}
.ye{bottom:637.087967pt;}
.y164{bottom:637.486980pt;}
.yed{bottom:638.231771pt;}
.y58{bottom:640.690593pt;}
.y11e{bottom:646.291665pt;}
.y7a{bottom:646.292313pt;}
.y104{bottom:646.292321pt;}
.y36{bottom:647.491217pt;}
.y99{bottom:649.994139pt;}
.y13f{bottom:653.486974pt;}
.y98{bottom:669.994139pt;}
.yd{bottom:671.486407pt;}
.y13e{bottom:671.885411pt;}
.y163{bottom:671.885414pt;}
.ye3{bottom:671.962244pt;}
.y11d{bottom:673.889321pt;}
.y79{bottom:673.889976pt;}
.y103{bottom:673.889977pt;}
.y35{bottom:675.088873pt;}
.y57{bottom:684.288244pt;}
.ye2{bottom:688.827472pt;}
.y91{bottom:689.427084pt;}
.y13d{bottom:690.283849pt;}
.y162{bottom:690.283851pt;}
.y11c{bottom:701.486977pt;}
.y78{bottom:701.487626pt;}
.y102{bottom:701.487633pt;}
.y34{bottom:702.686522pt;}
.ye4{bottom:705.692712pt;}
.yc{bottom:705.884847pt;}
.y95{bottom:706.292317pt;}
.y13c{bottom:708.682287pt;}
.y161{bottom:708.682289pt;}
.y56{bottom:711.885900pt;}
.yda{bottom:722.557944pt;}
.ydc{bottom:722.557948pt;}
.y8f{bottom:723.157552pt;}
.y160{bottom:727.080727pt;}
.y11b{bottom:729.084633pt;}
.y77{bottom:729.085286pt;}
.y33{bottom:730.284182pt;}
.y55{bottom:739.483564pt;}
.yb{bottom:740.283287pt;}
.y13b{bottom:743.080729pt;}
.ydb{bottom:747.855464pt;}
.y11a{bottom:756.682286pt;}
.y8e{bottom:756.682940pt;}
.y101{bottom:756.682942pt;}
.y76{bottom:756.682946pt;}
.y32{bottom:757.881832pt;}
.y13a{bottom:761.479167pt;}
.y15f{bottom:761.479169pt;}
.y54{bottom:767.081220pt;}
.ya{bottom:774.681727pt;}
.y15e{bottom:779.877607pt;}
.y119{bottom:784.279946pt;}
.y75{bottom:784.280596pt;}
.y100{bottom:784.280598pt;}
.y31{bottom:785.479492pt;}
.ye1{bottom:790.018886pt;}
.y53{bottom:794.678873pt;}
.y139{bottom:795.877607pt;}
.ycf{bottom:806.884115pt;}
.y9{bottom:809.080153pt;}
.y118{bottom:811.877596pt;}
.y74{bottom:811.878256pt;}
.y30{bottom:813.077148pt;}
.y15d{bottom:814.276042pt;}
.y52{bottom:822.276529pt;}
.y15c{bottom:832.674479pt;}
.y117{bottom:839.475256pt;}
.y138{bottom:839.475261pt;}
.y73{bottom:839.475912pt;}
.y2f{bottom:840.674804pt;}
.y8{bottom:843.478593pt;}
.y51{bottom:849.874186pt;}
.y15b{bottom:851.072917pt;}
.y137{bottom:867.072917pt;}
.y72{bottom:867.073568pt;}
.y2e{bottom:868.272461pt;}
.y15a{bottom:869.471354pt;}
.yd8{bottom:874.345052pt;}
.y50{bottom:877.471842pt;}
.y7{bottom:877.877035pt;}
.yce{bottom:882.777343pt;}
.y159{bottom:887.869792pt;}
.ycd{bottom:891.210287pt;}
.y136{bottom:894.670573pt;}
.y71{bottom:894.671225pt;}
.y2d{bottom:895.870117pt;}
.y4f{bottom:905.069498pt;}
.y158{bottom:906.268229pt;}
.y6{bottom:912.275472pt;}
.y135{bottom:922.268229pt;}
.y70{bottom:922.268881pt;}
.y2c{bottom:923.467773pt;}
.y4e{bottom:932.667155pt;}
.y5{bottom:938.673909pt;}
.y157{bottom:940.666666pt;}
.y134{bottom:949.865885pt;}
.y6f{bottom:949.866537pt;}
.y2b{bottom:951.065429pt;}
.y156{bottom:959.065104pt;}
.y4d{bottom:959.065592pt;}
.y4{bottom:959.249257pt;}
.y133{bottom:977.463541pt;}
.y2a{bottom:977.463867pt;}
.y4c{bottom:977.464029pt;}
.y6e{bottom:977.464193pt;}
.y3{bottom:978.644277pt;}
.y132{bottom:992.401041pt;}
.y28{bottom:992.401367pt;}
.y1{bottom:992.401439pt;}
.y4b{bottom:992.401529pt;}
.y6c{bottom:992.401693pt;}
.hb{height:16.865234pt;}
.h18{height:26.568747pt;}
.he{height:33.730469pt;}
.h2{height:39.101563pt;}
.h5{height:43.375000pt;}
.h6{height:44.437500pt;}
.h7{height:47.812499pt;}
.hd{height:50.595703pt;}
.hc{height:52.106772pt;}
.hf{height:52.593751pt;}
.h4{height:56.843750pt;}
.h3{height:57.375000pt;}
.h17{height:58.710937pt;}
.h12{height:67.460937pt;}
.h10{height:84.326172pt;}
.h16{height:101.191407pt;}
.h13{height:118.056640pt;}
.ha{height:130.264973pt;}
.h9{height:130.265137pt;}
.h1{height:130.265228pt;}
.h8{height:130.265300pt;}
.h19{height:130.265625pt;}
.h11{height:134.921875pt;}
.h14{height:168.652344pt;}
.h15{height:185.517579pt;}
.h0{height:1122.666667pt;}
.w3{width:121.000000pt;}
.w4{width:160.000041pt;}
.w5{width:165.000041pt;}
.w2{width:170.999980pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1c{left:7.000000pt;}
.x1a{left:9.000000pt;}
.x11{left:14.235535pt;}
.x1d{left:17.472153pt;}
.x23{left:19.512016pt;}
.x12{left:21.159325pt;}
.xf{left:22.210152pt;}
.x13{left:23.599648pt;}
.x15{left:27.223236pt;}
.x1f{left:28.876129pt;}
.x24{left:29.952774pt;}
.x19{left:36.612167pt;}
.x16{left:38.208267pt;}
.x25{left:45.424850pt;}
.x18{left:49.467667pt;}
.x1e{left:51.135635pt;}
.x21{left:53.579536pt;}
.x20{left:55.333237pt;}
.x22{left:64.296593pt;}
.x1b{left:77.059677pt;}
.xe{left:103.400004pt;}
.x26{left:104.400004pt;}
.x1{left:113.400004pt;}
.x5{left:126.750397pt;}
.x3{left:130.691804pt;}
.x6{left:156.137118pt;}
.xd{left:189.400004pt;}
.xa{left:212.233607pt;}
.x2{left:250.879298pt;}
.xc{left:268.400004pt;}
.x10{left:275.399987pt;}
.x8{left:276.803919pt;}
.x14{left:397.399987pt;}
.x4{left:415.750404pt;}
.x9{left:546.061714pt;}
.x17{left:558.400027pt;}
.xb{left:559.553904pt;}
.x7{left:718.100814pt;}
}




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