
    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_bd504f0dc0eb41378f5acc54.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.719727;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_5310584e30822bf6473bc440.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8349085aaa948b7b5a17632c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_425e0453e69cee4d9f48a4f2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cb96a20fff3f08bca068d20e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_03b7213af4b38049d9268d82.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.904297;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_1a57cc291418aa1b1dec23ea.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.844727;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_ef91b827eca536e16e0ddf4e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7b83cc374e1b10d1285704ce.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ee62d0af1ec3680cc27607c3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.861816;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_7b83cc374e1b10d1285704ce.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_85ff72f249aa36d59a2b310e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861816;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_e7e018b3c721bf5b0fd43167.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6c9b6413af257aa759813310.woff2')format("woff");}.fff{font-family:fff;line-height:0.858398;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:ff10;src:url('chunks/assets/font_5c9aec78b35cd3792751b59f.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:28.828123px;}
.ls0{letter-spacing:401.994141px;}
.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;}
}
.ws6{word-spacing:-24.416016px;}
.ws7{word-spacing:-18.990234px;}
.ws2{word-spacing:-18.336914px;}
.ws8{word-spacing:-16.277344px;}
.ws1{word-spacing:-14.920899px;}
.ws3{word-spacing:-10.851563px;}
.ws0{word-spacing:-0.066000px;}
.ws4{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
._12{margin-left:-8.173828px;}
._b{margin-left:-6.398438px;}
._5{margin-left:-5.383676px;}
._3{margin-left:-3.793893px;}
._4{margin-left:-2.564077px;}
._0{margin-left:-1.104035px;}
._6{width:1.862337px;}
._14{width:3.570284px;}
._10{width:4.627242px;}
._13{width:6.054860px;}
._f{width:8.050783px;}
._8{width:9.806262px;}
._7{width:12.564975px;}
._11{width:13.637961px;}
._e{width:17.606510px;}
._16{width:18.798825px;}
._15{width:22.500002px;}
._19{width:26.557160px;}
._1b{width:27.803939px;}
._2{width:30.944178px;}
._1c{width:32.430291px;}
._1{width:35.838724px;}
._21{width:36.839120px;}
._18{width:39.621094px;}
._17{width:41.170408px;}
._1a{width:45.033151px;}
._1f{width:48.557162px;}
._20{width:50.102556px;}
._1e{width:53.763059px;}
._1d{width:55.089845px;}
._d{width:66.832047px;}
._c{width:72.000003px;}
._a{width:94.499996px;}
._9{width:99.000002px;}
._22{width:696.979053px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(54,96,145);}
.fc6{color:transparent;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(44,45,90);}
.fc1{color:rgb(106,168,79);}
.fc5{color:rgb(127,127,127);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.000002px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:59.999999px;}
.fs1{font-size:66.000002px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:83.999997px;}
.fs5{font-size:96.000003px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:4.124908px;}
.y1b{bottom:4.124947px;}
.ye{bottom:4.124977px;}
.y1d{bottom:4.124992px;}
.y6{bottom:4.124999px;}
.y18{bottom:4.125005px;}
.y9{bottom:4.125023px;}
.y15{bottom:4.125045px;}
.y2e{bottom:4.125083px;}
.y99{bottom:4.499993px;}
.y9c{bottom:4.499996px;}
.y92{bottom:4.500000px;}
.yae{bottom:4.500366px;}
.yb2{bottom:4.500374px;}
.y42{bottom:5.625000px;}
.y13{bottom:8.250003px;}
.y57{bottom:8.999993px;}
.y52{bottom:8.999996px;}
.y4e{bottom:9.000001px;}
.y5a{bottom:9.000011px;}
.y90{bottom:13.500001px;}
.y165{bottom:17.718749px;}
.y3f{bottom:17.719483px;}
.y3{bottom:17.719540px;}
.yb5{bottom:17.719849px;}
.ycc{bottom:17.720215px;}
.y17{bottom:24.266555px;}
.y8{bottom:24.266602px;}
.y2d{bottom:24.266603px;}
.y98{bottom:26.472653px;}
.y94{bottom:26.472656px;}
.yb1{bottom:26.473034px;}
.y56{bottom:30.972653px;}
.y51{bottom:30.972656px;}
.y12{bottom:42.708994px;}
.y2c{bottom:44.408198px;}
.y97{bottom:48.445313px;}
.yb0{bottom:48.445679px;}
.y55{bottom:52.945313px;}
.y3e{bottom:55.095337px;}
.y2{bottom:55.095394px;}
.ycb{bottom:55.095703px;}
.y3a{bottom:61.476562px;}
.y2b{bottom:64.549898px;}
.y164{bottom:70.303713px;}
.y8e{bottom:70.304448px;}
.y3c{bottom:70.304628px;}
.y69{bottom:70.304808px;}
.y11{bottom:75.667969px;}
.y2a{bottom:84.691403px;}
.y8d{bottom:99.568357px;}
.y68{bottom:99.568732px;}
.y3b{bottom:99.568822px;}
.y12b{bottom:99.569092px;}
.y29{bottom:104.832998px;}
.y8c{bottom:113.466795px;}
.y67{bottom:113.467170px;}
.y39{bottom:113.467260px;}
.y12a{bottom:113.467530px;}
.y28{bottom:124.974653px;}
.y27{bottom:145.116203px;}
.y26{bottom:165.257813px;}
.y25{bottom:185.399453px;}
.y8b{bottom:203.789062px;}
.y66{bottom:203.789422px;}
.y38{bottom:203.789527px;}
.y129{bottom:203.789797px;}
.y24{bottom:205.541003px;}
.y23{bottom:225.682613px;}
.y128{bottom:228.514157px;}
.y107{bottom:231.953615px;}
.y37{bottom:238.042780px;}
.y36{bottom:238.605280px;}
.y1be{bottom:242.909185px;}
.y22{bottom:245.824253px;}
.y1f5{bottom:247.385734px;}
.y163{bottom:249.953618px;}
.y127{bottom:250.249508px;}
.y106{bottom:253.689698px;}
.y21{bottom:265.965818px;}
.y185{bottom:268.913078px;}
.y1f4{bottom:269.121090px;}
.y35{bottom:271.792780px;}
.y34{bottom:272.355280px;}
.y162{bottom:280.220215px;}
.y126{bottom:280.986321px;}
.y1bd{bottom:281.015619px;}
.y105{bottom:284.425775px;}
.y20{bottom:286.107413px;}
.y89{bottom:286.628181px;}
.y1f3{bottom:290.859368px;}
.y184{bottom:298.429684px;}
.y125{bottom:302.723138px;}
.y1bc{bottom:302.750971px;}
.y33{bottom:305.542780px;}
.y32{bottom:306.105280px;}
.y104{bottom:306.161858px;}
.y1f{bottom:306.249068px;}
.y88{bottom:317.337154px;}
.y161{bottom:318.325193px;}
.y1bb{bottom:324.486323px;}
.y1f2{bottom:324.593258px;}
.y183{bottom:333.621092px;}
.y124{bottom:336.458498px;}
.y31{bottom:339.292780px;}
.y2f{bottom:339.855280px;}
.y103{bottom:339.897953px;}
.y147{bottom:341.958983px;}
.y87{bottom:343.809814px;}
.y160{bottom:349.060547px;}
.y1ba{bottom:355.223147px;}
.y182{bottom:355.356443px;}
.y1f1{bottom:358.330082px;}
.y123{bottom:365.975104px;}
.y1e{bottom:366.801000px;}
.y8a{bottom:369.725098px;}
.y86{bottom:369.907839px;}
.y102{bottom:370.165285px;}
.y15f{bottom:370.797361px;}
.y146{bottom:375.695074px;}
.y1b9{bottom:376.959961px;}
.y1f0{bottom:380.065433px;}
.y19f{bottom:388.505858px;}
.y181{bottom:389.094722px;}
.yb4{bottom:389.447752px;}
.y65{bottom:391.471069px;}
.y15e{bottom:392.532713px;}
.y85{bottom:394.549074px;}
.y145{bottom:397.431155px;}
.y1b8{bottom:398.695313px;}
.y122{bottom:401.167967px;}
.y101{bottom:408.268803px;}
.y1ef{bottom:410.803712px;}
.y180{bottom:410.830073px;}
.yb3{bottom:411.420409px;}
.y144{bottom:419.167975px;}
.y84{bottom:419.565679px;}
.y19e{bottom:422.241208px;}
.y121{bottom:422.903318px;}
.y15d{bottom:423.269525px;}
.y64{bottom:424.318728px;}
.y1b7{bottom:429.430669px;}
.y100{bottom:430.005620px;}
.y1ee{bottom:432.539063px;}
.yaf{bottom:434.517694px;}
.y143{bottom:440.903318px;}
.y19d{bottom:443.976559px;}
.y63{bottom:444.460328px;}
.y17f{bottom:444.565427px;}
.y15c{bottom:445.005608px;}
.ye8{bottom:445.330073px;}
.y83{bottom:445.663329px;}
.y1b6{bottom:451.167486px;}
.yff{bottom:451.741703px;}
.y120{bottom:453.640130px;}
.y142{bottom:462.640141px;}
.y1ed{bottom:463.275872px;}
.y62{bottom:464.601931px;}
.y19c{bottom:465.713374px;}
.y17e{bottom:466.300778px;}
.y82{bottom:470.305299px;}
.y1b5{bottom:472.904303px;}
.y11f{bottom:475.376213px;}
.y15b{bottom:475.740965px;}
.yad{bottom:478.463008px;}
.ye7{bottom:479.066896px;}
.y141{bottom:484.376225px;}
.y61{bottom:484.743533px;}
.y1ec{bottom:485.011223px;}
.yfe{bottom:485.477785px;}
.y19b{bottom:487.450191px;}
.y81{bottom:494.946534px;}
.y15a{bottom:497.477048px;}
.y17d{bottom:500.039056px;}
.ye6{bottom:500.802247px;}
.yac{bottom:501.561040px;}
.y1b4{bottom:503.639648px;}
.y11e{bottom:506.112302px;}
.y140{bottom:506.112308px;}
.yfd{bottom:507.213866px;}
.y1c{bottom:508.354712px;}
.y19a{bottom:509.187008px;}
.y60{bottom:513.885129px;}
.y1eb{bottom:518.748053px;}
.y80{bottom:519.588129px;}
.y17c{bottom:521.774408px;}
.ye5{bottom:522.539066px;}
.y1b3{bottom:525.376472px;}
.y209{bottom:526.221683px;}
.y11d{bottom:527.847653px;}
.y159{bottom:528.213861px;}
.yfc{bottom:528.949951px;}
.y13f{bottom:536.378905px;}
.y199{bottom:539.452150px;}
.y7f{bottom:544.230099px;}
.ye4{bottom:544.274418px;}
.yab{bottom:545.506354px;}
.y5f{bottom:545.651734px;}
.y1b2{bottom:547.113286px;}
.y158{bottom:549.950678px;}
.yfb{bottom:550.686035px;}
.y1ea{bottom:552.483406px;}
.y17b{bottom:555.509768px;}
.y208{bottom:559.955571px;}
.y11c{bottom:561.584476px;}
.y5e{bottom:564.249393px;}
.ye3{bottom:566.011235px;}
.yaa{bottom:568.604002px;}
.y1b1{bottom:568.848638px;}
.y7e{bottom:568.871334px;}
.yfa{bottom:572.422118px;}
.y1e9{bottom:574.220222px;}
.y13e{bottom:574.482424px;}
.y198{bottom:577.557128px;}
.y157{bottom:580.686023px;}
.y207{bottom:581.692388px;}
.y11b{bottom:583.319828px;}
.y17a{bottom:585.026374px;}
.ye2{bottom:587.747318px;}
.ya9{bottom:590.576659px;}
.y7d{bottom:593.512944px;}
.y1e8{bottom:595.955573px;}
.y13d{bottom:596.219241px;}
.y5d{bottom:596.347038px;}
.y1b0{bottom:599.583983px;}
.y156{bottom:602.422112px;}
.yf9{bottom:602.688715px;}
.y197{bottom:608.293943px;}
.y206{bottom:612.427726px;}
.y11a{bottom:612.836419px;}
.ya8{bottom:613.674323px;}
.y1ce{bottom:617.692381px;}
.y13c{bottom:617.956058px;}
.y7c{bottom:618.154914px;}
.yc9{bottom:619.219478px;}
.y179{bottom:620.219237px;}
.y1af{bottom:621.320807px;}
.ye1{bottom:621.483409px;}
.y155{bottom:624.158196px;}
.y5c{bottom:628.444703px;}
.y1e7{bottom:629.692388px;}
.y205{bottom:634.163078px;}
.ya7{bottom:635.646979px;}
.y196{bottom:639.029303px;}
.y1cd{bottom:639.427731px;}
.yf8{bottom:640.792971px;}
.y178{bottom:641.956052px;}
.y7b{bottom:642.796149px;}
.y1ae{bottom:643.057621px;}
.ye0{bottom:643.219490px;}
.y154{bottom:645.895013px;}
.y119{bottom:648.029297px;}
.y13b{bottom:648.691400px;}
.y5b{bottom:650.417358px;}
.yc8{bottom:652.955576px;}
.ya6{bottom:658.744627px;}
.y1cc{bottom:661.164548px;}
.yf7{bottom:662.529788px;}
.y1e6{bottom:663.427731px;}
.y177{bottom:663.691403px;}
.y1ad{bottom:664.792973px;}
.y204{bottom:664.901371px;}
.ydf{bottom:664.955571px;}
.y7a{bottom:667.437744px;}
.y118{bottom:669.766111px;}
.y195{bottom:669.766118px;}
.y13a{bottom:670.427483px;}
.yc7{bottom:674.691652px;}
.y153{bottom:679.630373px;}
.ya5{bottom:680.717284px;}
.y59{bottom:682.515008px;}
.y1e5{bottom:685.164548px;}
.y203{bottom:686.636723px;}
.yde{bottom:686.691652px;}
.y1a{bottom:690.191671px;}
.y117{bottom:691.501463px;}
.y79{bottom:692.454349px;}
.yf6{bottom:693.265131px;}
.y1cb{bottom:694.901371px;}
.y1ac{bottom:695.528314px;}
.yc6{bottom:696.427738px;}
.y176{bottom:697.426759px;}
.y19{bottom:700.824968px;}
.y139{bottom:701.163576px;}
.y194{bottom:703.501471px;}
.ya4{bottom:703.814948px;}
.y58{bottom:704.487663px;}
.ydd{bottom:708.427733px;}
.y152{bottom:709.896970px;}
.yf5{bottom:715.001948px;}
.y1e4{bottom:715.899902px;}
.y1ca{bottom:716.636721px;}
.y1ab{bottom:717.265131px;}
.y202{bottom:717.372072px;}
.yc5{bottom:718.164188px;}
.y78{bottom:718.552374px;}
.y175{bottom:719.163576px;}
.y116{bottom:722.238275px;}
.y138{bottom:722.900393px;}
.y193{bottom:725.238286px;}
.ya3{bottom:725.787604px;}
.ydc{bottom:730.163822px;}
.y16{bottom:731.599863px;}
.y54{bottom:736.585331px;}
.y1e3{bottom:737.635253px;}
.y1c9{bottom:738.373538px;}
.y1aa{bottom:739.001948px;}
.y201{bottom:739.110353px;}
.y174{bottom:740.900393px;}
.y14{bottom:742.233128px;}
.y77{bottom:743.193789px;}
.y115{bottom:743.974358px;}
.yf4{bottom:745.737305px;}
.y192{bottom:746.973638px;}
.y151{bottom:748.001959px;}
.ya2{bottom:748.885252px;}
.yc4{bottom:751.899893px;}
.ydb{bottom:751.899906px;}
.y137{bottom:756.635736px;}
.yf3{bottom:767.473388px;}
.y76{bottom:767.835204px;}
.y1e2{bottom:768.372076px;}
.y1a9{bottom:769.737293px;}
.y150{bottom:769.737310px;}
.ya1{bottom:770.857909px;}
.y1c8{bottom:772.108881px;}
.y200{bottom:772.844243px;}
.y10{bottom:773.008067px;}
.yc3{bottom:773.636347px;}
.yda{bottom:773.636723px;}
.y173{bottom:774.635747px;}
.y114{bottom:774.709715px;}
.y191{bottom:777.240235px;}
.y136{bottom:778.372553px;}
.y53{bottom:780.530643px;}
.y1e1{bottom:790.107428px;}
.y1a8{bottom:791.474117px;}
.y14f{bottom:791.474130px;}
.y75{bottom:792.477174px;}
.y1c7{bottom:793.845698px;}
.ya0{bottom:793.955573px;}
.yc2{bottom:795.372066px;}
.y172{bottom:796.372562px;}
.y113{bottom:796.445798px;}
.yf2{bottom:801.209468px;}
.yd9{bottom:804.372067px;}
.y1d9{bottom:805.318358px;}
.y1ff{bottom:806.581054px;}
.y135{bottom:807.889159px;}
.y50{bottom:812.628293px;}
.y14e{bottom:813.210206px;}
.y1a7{bottom:813.210932px;}
.y190{bottom:815.345211px;}
.y9f{bottom:815.928229px;}
.yc1{bottom:817.108883px;}
.y74{bottom:817.118589px;}
.y171{bottom:818.107913px;}
.y1e0{bottom:823.845698px;}
.y1c6{bottom:824.581056px;}
.yd8{bottom:826.108886px;}
.y112{bottom:827.182622px;}
.y1fe{bottom:828.319337px;}
.y4f{bottom:834.600948px;}
.y14d{bottom:834.945560px;}
.y1a6{bottom:834.946283px;}
.yf1{bottom:834.946291px;}
.y18f{bottom:837.082028px;}
.y9e{bottom:839.025877px;}
.y1d8{bottom:839.053703px;}
.y73{bottom:841.760004px;}
.y134{bottom:843.080569px;}
.y1c5{bottom:846.317873px;}
.yd7{bottom:847.844237px;}
.y111{bottom:848.919436px;}
.y1fd{bottom:850.054688px;}
.yc0{bottom:850.844980px;}
.y170{bottom:851.844722px;}
.yf0{bottom:856.681641px;}
.y14c{bottom:856.681643px;}
.y1df{bottom:857.581042px;}
.y9d{bottom:860.998534px;}
.y133{bottom:864.817386px;}
.y72{bottom:866.401974px;}
.y4d{bottom:866.698608px;}
.y1d7{bottom:868.195313px;}
.y1a5{bottom:868.681641px;}
.yd6{bottom:869.581055px;}
.y110{bottom:870.654788px;}
.y18e{bottom:870.817382px;}
.ybf{bottom:872.581061px;}
.y16f{bottom:873.581536px;}
.yf{bottom:874.885029px;}
.y1c4{bottom:877.054681px;}
.yef{bottom:878.418458px;}
.y1de{bottom:879.316399px;}
.y1fc{bottom:883.790033px;}
.y9b{bottom:884.096198px;}
.y132{bottom:886.554203px;}
.y1d6{bottom:888.336916px;}
.y14b{bottom:890.418454px;}
.y1a4{bottom:890.418458px;}
.y71{bottom:891.043404px;}
.yd5{bottom:891.317138px;}
.y18d{bottom:892.552731px;}
.ybe{bottom:894.316777px;}
.y16e{bottom:895.316888px;}
.y1c3{bottom:898.790033px;}
.y1dd{bottom:901.051755px;}
.y10f{bottom:904.391603px;}
.y9a{bottom:906.068854px;}
.y1d5{bottom:908.478518px;}
.yd{bottom:910.026632px;}
.y14a{bottom:912.153805px;}
.yee{bottom:912.154543px;}
.y4c{bottom:913.796264px;}
.y18c{bottom:914.289548px;}
.y70{bottom:915.684819px;}
.ybd{bottom:916.053230px;}
.y131{bottom:917.289545px;}
.y1fb{bottom:917.525393px;}
.y1a3{bottom:920.685055px;}
.y1dc{bottom:922.790033px;}
.yd4{bottom:925.053230px;}
.y16d{bottom:929.053703px;}
.y96{bottom:929.166506px;}
.y1c2{bottom:929.525391px;}
.yed{bottom:933.890624px;}
.y10e{bottom:933.908209px;}
.y1d4{bottom:937.620113px;}
.ybc{bottom:937.789313px;}
.y130{bottom:939.025628px;}
.y6f{bottom:940.326789px;}
.yc{bottom:945.168234px;}
.yd3{bottom:946.789313px;}
.y18b{bottom:948.026363px;}
.y1fa{bottom:951.262201px;}
.y1c1{bottom:951.262208px;}
.y4b{bottom:952.093139px;}
.yec{bottom:955.627439px;}
.y1db{bottom:956.525393px;}
.y1d3{bottom:957.761717px;}
.y16c{bottom:958.570309px;}
.y1a2{bottom:958.788574px;}
.y6e{bottom:965.343379px;}
.y10d{bottom:969.099608px;}
.y12f{bottom:969.761716px;}
.ybb{bottom:971.525390px;}
.y1f9{bottom:972.997553px;}
.y95{bottom:973.111819px;}
.y49{bottom:976.515008px;}
.y4a{bottom:977.077508px;}
.yeb{bottom:977.362793px;}
.y149{bottom:977.363524px;}
.y18a{bottom:977.542969px;}
.y1d2{bottom:977.903320px;}
.yb{bottom:980.309830px;}
.yd2{bottom:980.525393px;}
.y1c0{bottom:981.999023px;}
.y1da{bottom:990.260738px;}
.y12e{bottom:991.497068px;}
.y6d{bottom:991.816040px;}
.yba{bottom:993.261840px;}
.y16b{bottom:993.761720px;}
.y93{bottom:996.209472px;}
.y1d1{bottom:998.044922px;}
.yea{bottom:999.098876px;}
.y10c{bottom:999.366211px;}
.y47{bottom:1000.781617px;}
.y48{bottom:1001.344117px;}
.yd1{bottom:1002.262213px;}
.y1bf{bottom:1003.734374px;}
.y189{bottom:1012.734377px;}
.yb9{bottom:1014.997557px;}
.ya{bottom:1015.451409px;}
.y16a{bottom:1015.498540px;}
.y91{bottom:1018.182128px;}
.y6c{bottom:1018.288696px;}
.yd0{bottom:1023.997560px;}
.y1a1{bottom:1023.999023px;}
.y45{bottom:1025.048218px;}
.y12d{bottom:1025.233886px;}
.y1f8{bottom:1025.469727px;}
.y46{bottom:1025.610718px;}
.y1d0{bottom:1027.186523px;}
.ye9{bottom:1029.365479px;}
.y148{bottom:1029.366211px;}
.y188{bottom:1034.469726px;}
.yb8{bottom:1036.733642px;}
.y169{bottom:1037.235350px;}
.y10b{bottom:1037.471192px;}
.y8f{bottom:1041.279785px;}
.ycf{bottom:1045.733643px;}
.y1a0{bottom:1045.734374px;}
.y1cf{bottom:1047.328125px;}
.y6b{bottom:1048.580567px;}
.y43{bottom:1049.314819px;}
.y44{bottom:1049.877319px;}
.y7{bottom:1050.593010px;}
.y12c{bottom:1054.750489px;}
.y1f7{bottom:1056.205078px;}
.y187{bottom:1056.206543px;}
.yb7{bottom:1058.470093px;}
.y168{bottom:1058.970701px;}
.y10a{bottom:1059.206543px;}
.yce{bottom:1067.469727px;}
.y5{bottom:1070.734612px;}
.y41{bottom:1073.581421px;}
.y1f6{bottom:1077.943360px;}
.y167{bottom:1080.706054px;}
.y109{bottom:1089.942628px;}
.y186{bottom:1089.943359px;}
.yb6{bottom:1092.486694px;}
.ycd{bottom:1101.486328px;}
.y6a{bottom:1101.486694px;}
.y166{bottom:1110.222656px;}
.y40{bottom:1110.223022px;}
.y108{bottom:1111.678711px;}
.y4{bottom:1112.218815px;}
.yca{bottom:1127.695312px;}
.y1{bottom:1127.695622px;}
.y3d{bottom:1127.695678px;}
.h12{height:20.141510px;}
.hf{height:20.141602px;}
.hd{height:20.141647px;}
.h23{height:21.972656px;}
.h26{height:21.973022px;}
.h19{height:23.141602px;}
.h1b{height:30.972657px;}
.h8{height:35.141579px;}
.h5{height:35.141601px;}
.he{height:40.283157px;}
.h10{height:40.283204px;}
.h14{height:40.640626px;}
.h24{height:43.945312px;}
.h4{height:43.989259px;}
.h16{height:45.720703px;}
.h6{height:45.729493px;}
.h9{height:47.373048px;}
.h1f{height:47.920900px;}
.h2b{height:49.218750px;}
.h1c{height:52.277344px;}
.h1d{height:52.945312px;}
.h7{height:55.283203px;}
.h3{height:55.880861px;}
.h2a{height:57.421873px;}
.h18{height:60.960938px;}
.h21{height:63.984377px;}
.h25{height:65.917969px;}
.h27{height:65.918336px;}
.h1a{height:69.703127px;}
.hb{height:71.982422px;}
.h15{height:73.125000px;}
.h28{height:73.828125px;}
.h1e{height:74.917970px;}
.hc{height:78.416016px;}
.h2{height:91.441406px;}
.ha{height:101.876954px;}
.h17{height:135.304322px;}
.h1{height:135.304378px;}
.h29{height:135.304688px;}
.h22{height:215.437500px;}
.h20{height:215.437860px;}
.h13{height:215.437965px;}
.h2c{height:215.438235px;}
.h11{height:322.265670px;}
.h0{height:1263.000000px;}
.w8{width:23.625000px;}
.wa{width:81.000000px;}
.wb{width:109.125000px;}
.wd{width:166.500000px;}
.w2{width:167.625000px;}
.w10{width:184.500000px;}
.we{width:192.375000px;}
.wc{width:315.000000px;}
.wf{width:483.750000px;}
.w11{width:491.625000px;}
.w5{width:501.750000px;}
.w3{width:502.875000px;}
.w9{width:639.000000px;}
.w7{width:664.875000px;}
.w4{width:670.500000px;}
.w6{width:677.250000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x14{left:5.625000px;}
.x7{left:7.875000px;}
.x3{left:9.000000px;}
.x8{left:29.250000px;}
.x9{left:99.000000px;}
.x2{left:105.750000px;}
.x1{left:108.000000px;}
.xb{left:109.125000px;}
.x16{left:129.375000px;}
.xc{left:133.875000px;}
.x11{left:135.000000px;}
.x12{left:162.000000px;}
.xa{left:180.000000px;}
.xd{left:191.250000px;}
.x4{left:273.375000px;}
.x6{left:274.500000px;}
.x10{left:282.375000px;}
.x15{left:294.750000px;}
.xe{left:301.500000px;}
.x13{left:302.625000px;}
.x5{left:335.250000px;}
.xf{left:617.625000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:25.624998pt;}
.ls0{letter-spacing:357.328125pt;}
.ws6{word-spacing:-21.703125pt;}
.ws7{word-spacing:-16.880208pt;}
.ws2{word-spacing:-16.299479pt;}
.ws8{word-spacing:-14.468750pt;}
.ws1{word-spacing:-13.263021pt;}
.ws3{word-spacing:-9.645834pt;}
.ws0{word-spacing:-0.058667pt;}
.ws4{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
._12{margin-left:-7.265625pt;}
._b{margin-left:-5.687500pt;}
._5{margin-left:-4.785490pt;}
._3{margin-left:-3.372349pt;}
._4{margin-left:-2.279180pt;}
._0{margin-left:-0.981365pt;}
._6{width:1.655410pt;}
._14{width:3.173586pt;}
._10{width:4.113104pt;}
._13{width:5.382098pt;}
._f{width:7.156252pt;}
._8{width:8.716677pt;}
._7{width:11.168866pt;}
._11{width:12.122632pt;}
._e{width:15.650231pt;}
._16{width:16.710067pt;}
._15{width:20.000002pt;}
._19{width:23.606364pt;}
._1b{width:24.714613pt;}
._2{width:27.505936pt;}
._1c{width:28.826926pt;}
._1{width:31.856644pt;}
._21{width:32.745885pt;}
._18{width:35.218750pt;}
._17{width:36.595918pt;}
._1a{width:40.029468pt;}
._1f{width:43.161922pt;}
._20{width:44.535605pt;}
._1e{width:47.789386pt;}
._1d{width:48.968751pt;}
._d{width:59.406264pt;}
._c{width:64.000003pt;}
._a{width:83.999997pt;}
._9{width:88.000002pt;}
._22{width:619.536936pt;}
.fs2{font-size:42.666668pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:53.333332pt;}
.fs1{font-size:58.666668pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.666664pt;}
.fs5{font-size:85.333336pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:3.666585pt;}
.y1b{bottom:3.666619pt;}
.ye{bottom:3.666646pt;}
.y1d{bottom:3.666659pt;}
.y6{bottom:3.666666pt;}
.y18{bottom:3.666671pt;}
.y9{bottom:3.666687pt;}
.y15{bottom:3.666707pt;}
.y2e{bottom:3.666741pt;}
.y99{bottom:3.999994pt;}
.y9c{bottom:3.999997pt;}
.y92{bottom:4.000000pt;}
.yae{bottom:4.000325pt;}
.yb2{bottom:4.000333pt;}
.y42{bottom:5.000000pt;}
.y13{bottom:7.333336pt;}
.y57{bottom:7.999994pt;}
.y52{bottom:7.999997pt;}
.y4e{bottom:8.000001pt;}
.y5a{bottom:8.000010pt;}
.y90{bottom:12.000001pt;}
.y165{bottom:15.749999pt;}
.y3f{bottom:15.750651pt;}
.y3{bottom:15.750702pt;}
.yb5{bottom:15.750977pt;}
.ycc{bottom:15.751302pt;}
.y17{bottom:21.570271pt;}
.y8{bottom:21.570313pt;}
.y2d{bottom:21.570314pt;}
.y98{bottom:23.531247pt;}
.y94{bottom:23.531250pt;}
.yb1{bottom:23.531586pt;}
.y56{bottom:27.531247pt;}
.y51{bottom:27.531250pt;}
.y12{bottom:37.963550pt;}
.y2c{bottom:39.473954pt;}
.y97{bottom:43.062501pt;}
.yb0{bottom:43.062826pt;}
.y55{bottom:47.062501pt;}
.y3e{bottom:48.973633pt;}
.y2{bottom:48.973683pt;}
.ycb{bottom:48.973958pt;}
.y3a{bottom:54.645833pt;}
.y2b{bottom:57.377687pt;}
.y164{bottom:62.492189pt;}
.y8e{bottom:62.492843pt;}
.y3c{bottom:62.493003pt;}
.y69{bottom:62.493162pt;}
.y11{bottom:67.260417pt;}
.y2a{bottom:75.281247pt;}
.y8d{bottom:88.505206pt;}
.y68{bottom:88.505540pt;}
.y3b{bottom:88.505620pt;}
.y12b{bottom:88.505860pt;}
.y29{bottom:93.184887pt;}
.y8c{bottom:100.859373pt;}
.y67{bottom:100.859707pt;}
.y39{bottom:100.859787pt;}
.y12a{bottom:100.860027pt;}
.y28{bottom:111.088580pt;}
.y27{bottom:128.992181pt;}
.y26{bottom:146.895834pt;}
.y25{bottom:164.799514pt;}
.y8b{bottom:181.145833pt;}
.y66{bottom:181.146153pt;}
.y38{bottom:181.146246pt;}
.y129{bottom:181.146486pt;}
.y24{bottom:182.703114pt;}
.y23{bottom:200.606767pt;}
.y128{bottom:203.123695pt;}
.y107{bottom:206.180991pt;}
.y37{bottom:211.593582pt;}
.y36{bottom:212.093582pt;}
.y1be{bottom:215.919275pt;}
.y22{bottom:218.510447pt;}
.y1f5{bottom:219.898430pt;}
.y163{bottom:222.180994pt;}
.y127{bottom:222.444007pt;}
.y106{bottom:225.501954pt;}
.y21{bottom:236.414061pt;}
.y185{bottom:239.033847pt;}
.y1f4{bottom:239.218746pt;}
.y35{bottom:241.593582pt;}
.y34{bottom:242.093582pt;}
.y162{bottom:249.084635pt;}
.y126{bottom:249.765618pt;}
.y1bd{bottom:249.791662pt;}
.y105{bottom:252.822911pt;}
.y20{bottom:254.317700pt;}
.y89{bottom:254.780605pt;}
.y1f3{bottom:258.541660pt;}
.y184{bottom:265.270830pt;}
.y125{bottom:269.087234pt;}
.y1bc{bottom:269.111975pt;}
.y33{bottom:271.593582pt;}
.y32{bottom:272.093582pt;}
.y104{bottom:272.143874pt;}
.y1f{bottom:272.221394pt;}
.y88{bottom:282.077470pt;}
.y161{bottom:282.955727pt;}
.y1bb{bottom:288.432287pt;}
.y1f2{bottom:288.527340pt;}
.y183{bottom:296.552081pt;}
.y124{bottom:299.074221pt;}
.y31{bottom:301.593582pt;}
.y2f{bottom:302.093582pt;}
.y103{bottom:302.131514pt;}
.y147{bottom:303.963541pt;}
.y87{bottom:305.608723pt;}
.y160{bottom:310.276042pt;}
.y1ba{bottom:315.753908pt;}
.y182{bottom:315.872394pt;}
.y1f1{bottom:318.515628pt;}
.y123{bottom:325.311203pt;}
.y1e{bottom:326.045333pt;}
.y8a{bottom:328.644531pt;}
.y86{bottom:328.806968pt;}
.y102{bottom:329.035808pt;}
.y15f{bottom:329.597655pt;}
.y146{bottom:333.951177pt;}
.y1b9{bottom:335.075521pt;}
.y1f0{bottom:337.835941pt;}
.y19f{bottom:345.338540pt;}
.y181{bottom:345.861975pt;}
.yb4{bottom:346.175780pt;}
.y65{bottom:347.974283pt;}
.y15e{bottom:348.917967pt;}
.y85{bottom:350.710288pt;}
.y145{bottom:353.272138pt;}
.y1b8{bottom:354.395834pt;}
.y122{bottom:356.593748pt;}
.y101{bottom:362.905603pt;}
.y1ef{bottom:365.158855pt;}
.y180{bottom:365.182287pt;}
.yb3{bottom:365.707030pt;}
.y144{bottom:372.593755pt;}
.y84{bottom:372.947270pt;}
.y19e{bottom:375.325518pt;}
.y121{bottom:375.914061pt;}
.y15d{bottom:376.239578pt;}
.y64{bottom:377.172202pt;}
.y1b7{bottom:381.716150pt;}
.y100{bottom:382.227217pt;}
.y1ee{bottom:384.479167pt;}
.yaf{bottom:386.237951pt;}
.y143{bottom:391.914060pt;}
.y19d{bottom:394.645830pt;}
.y63{bottom:395.075847pt;}
.y17f{bottom:395.169268pt;}
.y15c{bottom:395.560541pt;}
.ye8{bottom:395.848954pt;}
.y83{bottom:396.145181pt;}
.y1b6{bottom:401.037765pt;}
.yff{bottom:401.548181pt;}
.y120{bottom:403.235671pt;}
.y142{bottom:411.235681pt;}
.y1ed{bottom:411.800775pt;}
.y62{bottom:412.979494pt;}
.y19c{bottom:413.967444pt;}
.y17e{bottom:414.489581pt;}
.y82{bottom:418.049155pt;}
.y1b5{bottom:420.359380pt;}
.y11f{bottom:422.556634pt;}
.y15b{bottom:422.880858pt;}
.yad{bottom:425.300451pt;}
.ye7{bottom:425.837241pt;}
.y141{bottom:430.556644pt;}
.y61{bottom:430.883140pt;}
.y1ec{bottom:431.121087pt;}
.yfe{bottom:431.535808pt;}
.y19b{bottom:433.289059pt;}
.y81{bottom:439.952475pt;}
.y15a{bottom:442.201820pt;}
.y17d{bottom:444.479161pt;}
.ye6{bottom:445.157553pt;}
.yac{bottom:445.832036pt;}
.y1b4{bottom:447.679687pt;}
.y11e{bottom:449.877601pt;}
.y140{bottom:449.877607pt;}
.yfd{bottom:450.856769pt;}
.y1c{bottom:451.870855pt;}
.y19a{bottom:452.610674pt;}
.y60{bottom:456.786782pt;}
.y1eb{bottom:461.109381pt;}
.y80{bottom:461.856115pt;}
.y17c{bottom:463.799474pt;}
.ye5{bottom:464.479170pt;}
.y1b3{bottom:467.001308pt;}
.y209{bottom:467.752607pt;}
.y11d{bottom:469.197914pt;}
.y159{bottom:469.523432pt;}
.yfc{bottom:470.177734pt;}
.y13f{bottom:476.781248pt;}
.y199{bottom:479.513022pt;}
.y7f{bottom:483.760088pt;}
.ye4{bottom:483.799483pt;}
.yab{bottom:484.894537pt;}
.y5f{bottom:485.023763pt;}
.y1b2{bottom:486.322921pt;}
.y158{bottom:488.845047pt;}
.yfb{bottom:489.498697pt;}
.y1ea{bottom:491.096361pt;}
.y17b{bottom:493.786460pt;}
.y208{bottom:497.738285pt;}
.y11c{bottom:499.186201pt;}
.y5e{bottom:501.555016pt;}
.ye3{bottom:503.121098pt;}
.yaa{bottom:505.425780pt;}
.y1b1{bottom:505.643234pt;}
.y7e{bottom:505.663408pt;}
.yfa{bottom:508.819660pt;}
.y1e9{bottom:510.417975pt;}
.y13e{bottom:510.651043pt;}
.y198{bottom:513.384114pt;}
.y157{bottom:516.165354pt;}
.y207{bottom:517.059901pt;}
.y11b{bottom:518.506514pt;}
.y17a{bottom:520.023443pt;}
.ye2{bottom:522.442061pt;}
.ya9{bottom:524.957030pt;}
.y7d{bottom:527.567062pt;}
.y1e8{bottom:529.738287pt;}
.y13d{bottom:529.972658pt;}
.y5d{bottom:530.086256pt;}
.y1b0{bottom:532.963541pt;}
.y156{bottom:535.486322pt;}
.yf9{bottom:535.723302pt;}
.y197{bottom:540.705727pt;}
.y206{bottom:544.380201pt;}
.y11a{bottom:544.743483pt;}
.ya8{bottom:545.488287pt;}
.y1ce{bottom:549.059894pt;}
.y13c{bottom:549.294274pt;}
.y7c{bottom:549.471035pt;}
.yc9{bottom:550.417314pt;}
.y179{bottom:551.305988pt;}
.y1af{bottom:552.285162pt;}
.ye1{bottom:552.429697pt;}
.y155{bottom:554.807285pt;}
.y5c{bottom:558.617513pt;}
.y1e7{bottom:559.726567pt;}
.y205{bottom:563.700514pt;}
.ya7{bottom:565.019537pt;}
.y196{bottom:568.026047pt;}
.y1cd{bottom:568.380205pt;}
.yf8{bottom:569.593752pt;}
.y178{bottom:570.627601pt;}
.y7b{bottom:571.374355pt;}
.y1ae{bottom:571.606775pt;}
.ye0{bottom:571.750658pt;}
.y154{bottom:574.128900pt;}
.y119{bottom:576.026042pt;}
.y13b{bottom:576.614578pt;}
.y5b{bottom:578.148763pt;}
.yc8{bottom:580.404956pt;}
.ya6{bottom:585.550780pt;}
.y1cc{bottom:587.701820pt;}
.yf7{bottom:588.915367pt;}
.y1e6{bottom:589.713538pt;}
.y177{bottom:589.947914pt;}
.y1ad{bottom:590.927087pt;}
.y204{bottom:591.023441pt;}
.ydf{bottom:591.071619pt;}
.y7a{bottom:593.277995pt;}
.y118{bottom:595.347655pt;}
.y195{bottom:595.347660pt;}
.y13a{bottom:595.935540pt;}
.yc7{bottom:599.725913pt;}
.y153{bottom:604.115887pt;}
.ya5{bottom:605.082030pt;}
.y59{bottom:606.680007pt;}
.y1e5{bottom:609.035154pt;}
.y203{bottom:610.343754pt;}
.yde{bottom:610.392580pt;}
.y1a{bottom:613.503708pt;}
.y117{bottom:614.667967pt;}
.y79{bottom:615.514977pt;}
.yf6{bottom:616.235672pt;}
.y1cb{bottom:617.690108pt;}
.y1ac{bottom:618.247390pt;}
.yc6{bottom:619.046878pt;}
.y176{bottom:619.934897pt;}
.y19{bottom:622.955527pt;}
.y139{bottom:623.256512pt;}
.y194{bottom:625.334641pt;}
.ya4{bottom:625.613287pt;}
.y58{bottom:626.211256pt;}
.ydd{bottom:629.713541pt;}
.y152{bottom:631.019528pt;}
.yf5{bottom:635.557287pt;}
.y1e4{bottom:636.355468pt;}
.y1ca{bottom:637.010419pt;}
.y1ab{bottom:637.569005pt;}
.y202{bottom:637.664064pt;}
.yc5{bottom:638.368167pt;}
.y78{bottom:638.713222pt;}
.y175{bottom:639.256512pt;}
.y116{bottom:641.989578pt;}
.y138{bottom:642.578127pt;}
.y193{bottom:644.656254pt;}
.ya3{bottom:645.144537pt;}
.ydc{bottom:649.034509pt;}
.y16{bottom:650.310989pt;}
.y54{bottom:654.742516pt;}
.y1e3{bottom:655.675780pt;}
.y1c9{bottom:656.332034pt;}
.y1aa{bottom:656.890620pt;}
.y201{bottom:656.986980pt;}
.y174{bottom:658.578127pt;}
.y14{bottom:659.762780pt;}
.y77{bottom:660.616701pt;}
.y115{bottom:661.310540pt;}
.yf4{bottom:662.877605pt;}
.y192{bottom:663.976567pt;}
.y151{bottom:664.890630pt;}
.ya2{bottom:665.675780pt;}
.yc4{bottom:668.355460pt;}
.ydb{bottom:668.355472pt;}
.y137{bottom:672.565099pt;}
.yf3{bottom:682.198567pt;}
.y76{bottom:682.520182pt;}
.y1e2{bottom:682.997401pt;}
.y1a9{bottom:684.210927pt;}
.y150{bottom:684.210942pt;}
.ya1{bottom:685.207030pt;}
.y1c8{bottom:686.319005pt;}
.y200{bottom:686.972660pt;}
.y10{bottom:687.118281pt;}
.yc3{bottom:687.676753pt;}
.yda{bottom:687.677087pt;}
.y173{bottom:688.565108pt;}
.y114{bottom:688.630858pt;}
.y191{bottom:690.880208pt;}
.y136{bottom:691.886714pt;}
.y53{bottom:693.805016pt;}
.y1e1{bottom:702.317714pt;}
.y1a8{bottom:703.532548pt;}
.y14f{bottom:703.532560pt;}
.y75{bottom:704.424155pt;}
.y1c7{bottom:705.640620pt;}
.ya0{bottom:705.738287pt;}
.yc2{bottom:706.997392pt;}
.y172{bottom:707.886721pt;}
.y113{bottom:707.951820pt;}
.yf2{bottom:712.186194pt;}
.yd9{bottom:714.997393pt;}
.y1d9{bottom:715.838541pt;}
.y1ff{bottom:716.960937pt;}
.y135{bottom:718.123697pt;}
.y50{bottom:722.336260pt;}
.y14e{bottom:722.853517pt;}
.y1a7{bottom:722.854161pt;}
.y190{bottom:724.751298pt;}
.y9f{bottom:725.269537pt;}
.yc1{bottom:726.319007pt;}
.y74{bottom:726.327635pt;}
.y171{bottom:727.207034pt;}
.y1e0{bottom:732.307287pt;}
.y1c6{bottom:732.960938pt;}
.yd8{bottom:734.319010pt;}
.y112{bottom:735.273442pt;}
.y1fe{bottom:736.283855pt;}
.y4f{bottom:741.867509pt;}
.y14d{bottom:742.173831pt;}
.y1a6{bottom:742.174474pt;}
.yf1{bottom:742.174481pt;}
.y18f{bottom:744.072914pt;}
.y9e{bottom:745.800780pt;}
.y1d8{bottom:745.825514pt;}
.y73{bottom:748.231115pt;}
.y134{bottom:749.404950pt;}
.y1c5{bottom:752.282554pt;}
.yd7{bottom:753.639322pt;}
.y111{bottom:754.595055pt;}
.y1fd{bottom:755.604167pt;}
.yc0{bottom:756.306649pt;}
.y170{bottom:757.195308pt;}
.yf0{bottom:761.494792pt;}
.y14c{bottom:761.494794pt;}
.y1df{bottom:762.294260pt;}
.y9d{bottom:765.332030pt;}
.y133{bottom:768.726565pt;}
.y72{bottom:770.135088pt;}
.y4d{bottom:770.398763pt;}
.y1d7{bottom:771.729167pt;}
.y1a5{bottom:772.161459pt;}
.yd6{bottom:772.960938pt;}
.y110{bottom:773.915367pt;}
.y18e{bottom:774.059895pt;}
.ybf{bottom:775.627609pt;}
.y16f{bottom:776.516921pt;}
.yf{bottom:777.675581pt;}
.y1c4{bottom:779.604161pt;}
.yef{bottom:780.816407pt;}
.y1de{bottom:781.614577pt;}
.y1fc{bottom:785.591140pt;}
.y9b{bottom:785.863287pt;}
.y132{bottom:788.048180pt;}
.y1d6{bottom:789.632814pt;}
.y14b{bottom:791.483070pt;}
.y1a4{bottom:791.483074pt;}
.y71{bottom:792.038582pt;}
.yd5{bottom:792.281901pt;}
.y18d{bottom:793.380205pt;}
.ybe{bottom:794.948246pt;}
.y16e{bottom:795.837234pt;}
.y1c3{bottom:798.924474pt;}
.y1dd{bottom:800.934893pt;}
.y10f{bottom:803.903647pt;}
.y9a{bottom:805.394537pt;}
.y1d5{bottom:807.536460pt;}
.yd{bottom:808.912561pt;}
.y14a{bottom:810.803382pt;}
.yee{bottom:810.804038pt;}
.y4c{bottom:812.263346pt;}
.y18c{bottom:812.701820pt;}
.y70{bottom:813.942061pt;}
.ybd{bottom:814.269537pt;}
.y131{bottom:815.368485pt;}
.y1fb{bottom:815.578127pt;}
.y1a3{bottom:818.386715pt;}
.y1dc{bottom:820.257807pt;}
.yd4{bottom:822.269537pt;}
.y16d{bottom:825.825514pt;}
.y96{bottom:825.925783pt;}
.y1c2{bottom:826.244792pt;}
.yed{bottom:830.124999pt;}
.y10e{bottom:830.140630pt;}
.y1d4{bottom:833.440100pt;}
.ybc{bottom:833.590500pt;}
.y130{bottom:834.689447pt;}
.y6f{bottom:835.846035pt;}
.yc{bottom:840.149541pt;}
.yd3{bottom:841.590500pt;}
.y18b{bottom:842.690100pt;}
.y1fa{bottom:845.566401pt;}
.y1c1{bottom:845.566407pt;}
.y4b{bottom:846.305013pt;}
.yec{bottom:849.446613pt;}
.y1db{bottom:850.244794pt;}
.y1d3{bottom:851.343749pt;}
.y16c{bottom:852.062497pt;}
.y1a2{bottom:852.256510pt;}
.y6e{bottom:858.083003pt;}
.y10d{bottom:861.421874pt;}
.y12f{bottom:862.010415pt;}
.ybb{bottom:863.578124pt;}
.y1f9{bottom:864.886714pt;}
.y95{bottom:864.988283pt;}
.y49{bottom:868.013341pt;}
.y4a{bottom:868.513341pt;}
.yeb{bottom:868.766927pt;}
.y149{bottom:868.767577pt;}
.y18a{bottom:868.927083pt;}
.y1d2{bottom:869.247396pt;}
.yb{bottom:871.386516pt;}
.yd2{bottom:871.578127pt;}
.y1c0{bottom:872.888020pt;}
.y1da{bottom:880.231767pt;}
.y12e{bottom:881.330727pt;}
.y6d{bottom:881.614258pt;}
.yba{bottom:882.899414pt;}
.y16b{bottom:883.343751pt;}
.y93{bottom:885.519531pt;}
.y1d1{bottom:887.151042pt;}
.yea{bottom:888.087890pt;}
.y10c{bottom:888.325520pt;}
.y47{bottom:889.583659pt;}
.y48{bottom:890.083659pt;}
.yd1{bottom:890.899745pt;}
.y1bf{bottom:892.208332pt;}
.y189{bottom:900.208335pt;}
.yb9{bottom:902.220051pt;}
.ya{bottom:902.623475pt;}
.y16a{bottom:902.665369pt;}
.y91{bottom:905.050781pt;}
.y6c{bottom:905.145507pt;}
.yd0{bottom:910.220053pt;}
.y1a1{bottom:910.221354pt;}
.y45{bottom:911.153971pt;}
.y12d{bottom:911.319010pt;}
.y1f8{bottom:911.528646pt;}
.y46{bottom:911.653971pt;}
.y1d0{bottom:913.054687pt;}
.ye9{bottom:914.991536pt;}
.y148{bottom:914.992187pt;}
.y188{bottom:919.528645pt;}
.yb8{bottom:921.541015pt;}
.y169{bottom:921.986978pt;}
.y10b{bottom:922.196615pt;}
.y8f{bottom:925.582031pt;}
.ycf{bottom:929.541016pt;}
.y1a0{bottom:929.541666pt;}
.y1cf{bottom:930.958333pt;}
.y6b{bottom:932.071615pt;}
.y43{bottom:932.724283pt;}
.y44{bottom:933.224283pt;}
.y7{bottom:933.860453pt;}
.y12c{bottom:937.555990pt;}
.y1f7{bottom:938.848959pt;}
.y187{bottom:938.850260pt;}
.yb7{bottom:940.862305pt;}
.y168{bottom:941.307290pt;}
.y10a{bottom:941.516927pt;}
.yce{bottom:948.861979pt;}
.y5{bottom:951.764100pt;}
.y41{bottom:954.294597pt;}
.y1f6{bottom:958.171875pt;}
.y167{bottom:960.627603pt;}
.y109{bottom:968.837891pt;}
.y186{bottom:968.838541pt;}
.yb6{bottom:971.099284pt;}
.ycd{bottom:979.098958pt;}
.y6a{bottom:979.099284pt;}
.y166{bottom:986.864583pt;}
.y40{bottom:986.864909pt;}
.y108{bottom:988.158854pt;}
.y4{bottom:988.638947pt;}
.yca{bottom:1002.395833pt;}
.y1{bottom:1002.396108pt;}
.y3d{bottom:1002.396159pt;}
.h12{height:17.903564pt;}
.hf{height:17.903646pt;}
.hd{height:17.903687pt;}
.h23{height:19.531250pt;}
.h26{height:19.531575pt;}
.h19{height:20.570313pt;}
.h1b{height:27.531251pt;}
.h8{height:31.236959pt;}
.h5{height:31.236979pt;}
.he{height:35.807251pt;}
.h10{height:35.807292pt;}
.h14{height:36.125001pt;}
.h24{height:39.062500pt;}
.h4{height:39.101563pt;}
.h16{height:40.640625pt;}
.h6{height:40.648438pt;}
.h9{height:42.109376pt;}
.h1f{height:42.596355pt;}
.h2b{height:43.750000pt;}
.h1c{height:46.468750pt;}
.h1d{height:47.062500pt;}
.h7{height:49.140625pt;}
.h3{height:49.671876pt;}
.h2a{height:51.041665pt;}
.h18{height:54.187500pt;}
.h21{height:56.875002pt;}
.h25{height:58.593751pt;}
.h27{height:58.594076pt;}
.h1a{height:61.958335pt;}
.hb{height:63.984375pt;}
.h15{height:65.000000pt;}
.h28{height:65.625000pt;}
.h1e{height:66.593751pt;}
.hc{height:69.703125pt;}
.h2{height:81.281250pt;}
.ha{height:90.557292pt;}
.h17{height:120.270508pt;}
.h1{height:120.270559pt;}
.h29{height:120.270833pt;}
.h22{height:191.500000pt;}
.h20{height:191.500320pt;}
.h13{height:191.500413pt;}
.h2c{height:191.500653pt;}
.h11{height:286.458373pt;}
.h0{height:1122.666667pt;}
.w8{width:21.000000pt;}
.wa{width:72.000000pt;}
.wb{width:97.000000pt;}
.wd{width:148.000000pt;}
.w2{width:149.000000pt;}
.w10{width:164.000000pt;}
.we{width:171.000000pt;}
.wc{width:280.000000pt;}
.wf{width:430.000000pt;}
.w11{width:437.000000pt;}
.w5{width:446.000000pt;}
.w3{width:447.000000pt;}
.w9{width:568.000000pt;}
.w7{width:591.000000pt;}
.w4{width:596.000000pt;}
.w6{width:602.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x14{left:5.000000pt;}
.x7{left:7.000000pt;}
.x3{left:8.000000pt;}
.x8{left:26.000000pt;}
.x9{left:88.000000pt;}
.x2{left:94.000000pt;}
.x1{left:96.000000pt;}
.xb{left:97.000000pt;}
.x16{left:115.000000pt;}
.xc{left:119.000000pt;}
.x11{left:120.000000pt;}
.x12{left:144.000000pt;}
.xa{left:160.000000pt;}
.xd{left:170.000000pt;}
.x4{left:243.000000pt;}
.x6{left:244.000000pt;}
.x10{left:251.000000pt;}
.x15{left:262.000000pt;}
.xe{left:268.000000pt;}
.x13{left:269.000000pt;}
.x5{left:298.000000pt;}
.xf{left:549.000000pt;}
}




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