
    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_30608c9b0c049467403cada6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.862793;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_45dece9ec9cd35d792af2e40.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_8de10b7926bff21fc0980ce6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.674316;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_ce1671de14a4e58b9545c9bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.862793;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_01b72c02d17801190717ba2f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.869629;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_0dd558390f3cf55b82ede3e7.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m4{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);}
.m2{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:4.279558px;}
.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;}
}
.ws1{word-spacing:-14.970234px;}
.ws0{word-spacing:-13.505755px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-2876.409342px;}
._2{margin-left:-2785.800505px;}
._1f{margin-left:-2017.723706px;}
._36{margin-left:-1884.042159px;}
._2b{margin-left:-872.935545px;}
._2f{margin-left:-870.778673px;}
._16{margin-left:-756.631177px;}
._21{margin-left:-473.669725px;}
._23{margin-left:-422.399986px;}
._38{margin-left:-411.858550px;}
._39{margin-left:-364.790598px;}
._f{margin-left:-333.796107px;}
._13{margin-left:-245.556032px;}
._10{margin-left:-242.787764px;}
._8{margin-left:-240.123976px;}
._31{margin-left:-224.352574px;}
._2c{margin-left:-175.760724px;}
._34{margin-left:-160.790490px;}
._29{margin-left:-95.663236px;}
._2a{margin-left:-91.588415px;}
._25{margin-left:-85.766017px;}
._28{margin-left:-84.611623px;}
._24{margin-left:-73.475795px;}
._37{margin-left:-64.484124px;}
._35{margin-left:-63.311331px;}
._14{margin-left:-48.336147px;}
._26{margin-left:-47.115613px;}
._22{margin-left:-32.972868px;}
._0{margin-left:-17.603710px;}
._27{margin-left:-14.763367px;}
._15{margin-left:-13.534284px;}
._7{margin-left:-12.069364px;}
._3{margin-left:-2.375359px;}
._1{margin-left:-1.220610px;}
._5{width:1.044197px;}
._6{width:2.610566px;}
._a{width:3.673760px;}
._c{width:5.467176px;}
._b{width:6.872659px;}
._17{width:8.062930px;}
._12{width:9.215472px;}
._1c{width:10.385979px;}
._2e{width:11.400377px;}
._d{width:12.401362px;}
._1a{width:13.892368px;}
._e{width:15.174128px;}
._9{width:16.895703px;}
._11{width:18.356380px;}
._1b{width:19.482312px;}
._18{width:20.502697px;}
._19{width:21.609235px;}
._30{width:23.038149px;}
._1d{width:24.039137px;}
._1e{width:25.195647px;}
._2d{width:27.122687px;}
._33{width:29.112434px;}
._32{width:30.266374px;}
._20{width:93.089684px;}
.fc3{color:rgb(128,100,162);}
.fc2{color:rgb(79,129,189);}
.fc1{color:rgb(75,172,198);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.879984px;}
.fs2{font-size:41.759983px;}
.fs5{font-size:53.999978px;}
.fs4{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs1{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.y176{bottom:91.739963px;}
.y1ae{bottom:92.099963px;}
.y151{bottom:97.499961px;}
.yc4{bottom:101.999959px;}
.yf1{bottom:108.839956px;}
.y175{bottom:109.739956px;}
.y1ad{bottom:110.099956px;}
.y115{bottom:111.719955px;}
.y3b{bottom:114.599954px;}
.y150{bottom:115.499954px;}
.yc3{bottom:119.999952px;}
.yf0{bottom:126.839949px;}
.y174{bottom:127.739949px;}
.y98{bottom:129.719948px;}
.y3a{bottom:132.599947px;}
.y14f{bottom:133.499947px;}
.y1ac{bottom:137.099945px;}
.y114{bottom:140.699944px;}
.yef{bottom:144.839942px;}
.y173{bottom:145.739942px;}
.yc2{bottom:146.999941px;}
.y39{bottom:150.599940px;}
.y14e{bottom:151.499939px;}
.y1ab{bottom:155.099938px;}
.y97{bottom:158.879936px;}
.yee{bottom:162.839935px;}
.y172{bottom:163.739935px;}
.yc1{bottom:164.999934px;}
.y38{bottom:168.599933px;}
.y113{bottom:169.499932px;}
.y112{bottom:169.859932px;}
.y96{bottom:179.039928px;}
.yed{bottom:180.839928px;}
.y171{bottom:181.739927px;}
.y1aa{bottom:182.099927px;}
.yc0{bottom:182.999927px;}
.y37{bottom:186.599925px;}
.y14d{bottom:187.499925px;}
.y111{bottom:198.659921px;}
.yec{bottom:198.839920px;}
.y110{bottom:199.019920px;}
.y95{bottom:199.199920px;}
.y170{bottom:199.739920px;}
.ybf{bottom:200.999920px;}
.y36{bottom:204.599918px;}
.y14c{bottom:205.499918px;}
.y1a9{bottom:209.099916px;}
.yeb{bottom:216.839913px;}
.y16f{bottom:217.739913px;}
.ybe{bottom:218.999912px;}
.y94{bottom:219.179912px;}
.y14b{bottom:223.499911px;}
.y10f{bottom:227.819909px;}
.y10e{bottom:228.179909px;}
.y35{bottom:231.599907px;}
.y16e{bottom:235.739906px;}
.y1a8{bottom:236.099906px;}
.ybd{bottom:236.999905px;}
.y93{bottom:239.339904px;}
.y14a{bottom:241.499903px;}
.y70{bottom:241.679903px;}
.yea{bottom:243.479903px;}
.ye9{bottom:243.839902px;}
.y34{bottom:249.599900px;}
.y16d{bottom:253.739899px;}
.y10d{bottom:256.979897px;}
.y10c{bottom:257.339897px;}
.y92{bottom:259.499896px;}
.y6f{bottom:259.679896px;}
.y1a7{bottom:262.739895px;}
.y1a6{bottom:263.099895px;}
.ybc{bottom:263.639895px;}
.ybb{bottom:263.999894px;}
.y33{bottom:267.599893px;}
.ye8{bottom:270.479892px;}
.ye7{bottom:270.839892px;}
.y16c{bottom:271.739891px;}
.y6e{bottom:277.679889px;}
.y91{bottom:279.659888px;}
.y32{bottom:285.599886px;}
.y10b{bottom:286.139886px;}
.y10a{bottom:286.499885px;}
.y149{bottom:287.219885px;}
.y148{bottom:287.579885px;}
.y16b{bottom:289.739884px;}
.yba{bottom:291.719883px;}
.yb9{bottom:292.079883px;}
.y6d{bottom:295.679882px;}
.ye6{bottom:297.479881px;}
.ye5{bottom:297.839881px;}
.y1a5{bottom:299.099880px;}
.y90{bottom:299.819880px;}
.y16a{bottom:307.739877px;}
.y31{bottom:312.599875px;}
.y6c{bottom:313.679875px;}
.y109{bottom:315.299874px;}
.y108{bottom:315.659874px;}
.y147{bottom:316.739873px;}
.y1a4{bottom:317.099873px;}
.y8f{bottom:319.979872px;}
.yb8{bottom:320.879872px;}
.yb7{bottom:321.239872px;}
.ye4{bottom:324.479870px;}
.ye3{bottom:324.839870px;}
.y169{bottom:325.739870px;}
.y30{bottom:330.599868px;}
.y6b{bottom:331.679867px;}
.y1a3{bottom:335.099866px;}
.y8e{bottom:340.139864px;}
.y168{bottom:343.739863px;}
.y107{bottom:344.459862px;}
.y106{bottom:344.819862px;}
.y146{bottom:345.899862px;}
.y2f{bottom:348.599861px;}
.y6a{bottom:349.679860px;}
.yb6{bottom:350.039860px;}
.yb5{bottom:350.399860px;}
.ye2{bottom:351.839859px;}
.y1a2{bottom:353.099859px;}
.y8d{bottom:360.299856px;}
.y167{bottom:361.739855px;}
.y2e{bottom:366.599853px;}
.y69{bottom:367.679853px;}
.y1a1{bottom:371.099852px;}
.y105{bottom:373.619851px;}
.y104{bottom:373.979850px;}
.y145{bottom:375.059850px;}
.ye1{bottom:378.839848px;}
.yb4{bottom:379.199848px;}
.yb3{bottom:379.559848px;}
.y8c{bottom:380.459848px;}
.y2d{bottom:384.599846px;}
.y68{bottom:385.679846px;}
.y1a0{bottom:389.099844px;}
.y166{bottom:389.819844px;}
.y8b{bottom:400.619840px;}
.y2c{bottom:402.599839px;}
.y103{bottom:402.779839px;}
.y102{bottom:403.139839px;}
.y67{bottom:403.679839px;}
.y144{bottom:404.219838px;}
.ye0{bottom:405.839838px;}
.y19f{bottom:407.099837px;}
.yb2{bottom:408.359837px;}
.yb1{bottom:408.719837px;}
.y165{bottom:409.619836px;}
.y164{bottom:409.979836px;}
.y2b{bottom:420.599832px;}
.y8a{bottom:429.239828px;}
.y89{bottom:429.599828px;}
.y66{bottom:430.679828px;}
.y101{bottom:432.119827px;}
.ydf{bottom:432.839827px;}
.y143{bottom:433.379827px;}
.y19e{bottom:434.099826px;}
.y1b9{bottom:434.999826px;}
.yb0{bottom:437.339825px;}
.yaf{bottom:437.699825px;}
.y163{bottom:438.779824px;}
.y162{bottom:439.139824px;}
.y2a{bottom:448.139821px;}
.y29{bottom:448.499821px;}
.y65{bottom:448.679821px;}
.y19d{bottom:452.099819px;}
.y88{bottom:458.399817px;}
.y87{bottom:458.759816px;}
.yde{bottom:459.839816px;}
.y100{bottom:461.279815px;}
.y1b8{bottom:461.999815px;}
.y142{bottom:462.539815px;}
.yae{bottom:466.499813px;}
.y64{bottom:466.679813px;}
.yad{bottom:466.859813px;}
.y161{bottom:467.759813px;}
.y160{bottom:468.119813px;}
.y19c{bottom:470.099812px;}
.y1b7{bottom:479.999808px;}
.y63{bottom:484.679806px;}
.y28{bottom:485.219806px;}
.y27{bottom:485.579806px;}
.ydd{bottom:486.839805px;}
.y19b{bottom:488.099805px;}
.yff{bottom:490.439804px;}
.y141{bottom:490.619804px;}
.yac{bottom:495.659802px;}
.yab{bottom:496.019802px;}
.y15f{bottom:496.919801px;}
.y15e{bottom:497.279801px;}
.y62{bottom:502.679799px;}
.y19a{bottom:506.099798px;}
.y1b6{bottom:506.999797px;}
.y26{bottom:512.579795px;}
.ydc{bottom:513.839794px;}
.y140{bottom:517.619793px;}
.yfe{bottom:519.599792px;}
.y61{bottom:520.679792px;}
.y199{bottom:524.099790px;}
.yaa{bottom:524.819790px;}
.y1b5{bottom:524.999790px;}
.ya9{bottom:525.179790px;}
.y15d{bottom:526.079790px;}
.y15c{bottom:526.439789px;}
.y25{bottom:530.579788px;}
.y60{bottom:538.679785px;}
.ydb{bottom:540.839784px;}
.y198{bottom:542.099783px;}
.y1b4{bottom:542.999783px;}
.y13f{bottom:544.619782px;}
.y24{bottom:548.579781px;}
.yfd{bottom:548.759780px;}
.ya8{bottom:554.339778px;}
.y15b{bottom:555.239778px;}
.y15a{bottom:555.599778px;}
.y5f{bottom:556.679777px;}
.y197{bottom:560.099776px;}
.y23{bottom:566.579773px;}
.yda{bottom:567.839773px;}
.y1b3{bottom:569.999772px;}
.y13e{bottom:571.619771px;}
.y5e{bottom:574.679770px;}
.yfc{bottom:577.919769px;}
.y196{bottom:578.099769px;}
.ya7{bottom:582.419767px;}
.y159{bottom:584.399766px;}
.y22{bottom:584.579766px;}
.y158{bottom:584.759766px;}
.y13d{bottom:589.619764px;}
.y5d{bottom:592.679763px;}
.yd9{bottom:594.839762px;}
.y195{bottom:596.099762px;}
.y1b2{bottom:596.999761px;}
.y21{bottom:602.579759px;}
.yfb{bottom:605.999758px;}
.y13c{bottom:607.619757px;}
.ya6{bottom:609.419756px;}
.y5c{bottom:610.679756px;}
.y157{bottom:613.919754px;}
.y194{bottom:614.099754px;}
.y1b1{bottom:614.999754px;}
.y20{bottom:620.579752px;}
.yd8{bottom:622.919751px;}
.y13b{bottom:625.619750px;}
.ya5{bottom:627.419749px;}
.y5b{bottom:628.679749px;}
.y193{bottom:632.099747px;}
.yfa{bottom:632.999747px;}
.y156{bottom:641.999743px;}
.y13a{bottom:643.619743px;}
.ya4{bottom:645.419742px;}
.y5a{bottom:646.679741px;}
.y1f{bottom:647.759741px;}
.y1e{bottom:648.119741px;}
.y192{bottom:650.099740px;}
.yd7{bottom:650.999740px;}
.y1b0{bottom:659.999736px;}
.ya3{bottom:663.419735px;}
.y59{bottom:664.679734px;}
.y191{bottom:668.099733px;}
.yf9{bottom:668.999732px;}
.y139{bottom:670.259732px;}
.y138{bottom:670.619732px;}
.y1d{bottom:674.579730px;}
.y1c{bottom:674.939730px;}
.yd6{bottom:677.999729px;}
.ya2{bottom:681.419727px;}
.y58{bottom:682.679727px;}
.yf8{bottom:686.999725px;}
.y190{bottom:694.739722px;}
.y18f{bottom:695.099722px;}
.yd5{bottom:695.999722px;}
.ya1{bottom:699.419720px;}
.y57{bottom:700.679720px;}
.y1b{bottom:701.939719px;}
.yf7{bottom:704.999718px;}
.y137{bottom:707.159717px;}
.y136{bottom:707.519717px;}
.yd4{bottom:713.999714px;}
.ya0{bottom:717.419713px;}
.y56{bottom:718.679713px;}
.y1a{bottom:719.939712px;}
.yf6{bottom:722.999711px;}
.yd3{bottom:731.999707px;}
.y18e{bottom:732.179707px;}
.y9f{bottom:735.419706px;}
.y135{bottom:736.319705px;}
.y134{bottom:736.679705px;}
.y19{bottom:737.939705px;}
.yf5{bottom:740.999704px;}
.y55{bottom:746.399701px;}
.y54{bottom:746.759701px;}
.yd2{bottom:749.999700px;}
.y18d{bottom:751.979699px;}
.y18c{bottom:752.339699px;}
.y9e{bottom:753.419699px;}
.y18{bottom:755.939698px;}
.yf4{bottom:758.999696px;}
.y133{bottom:765.479694px;}
.y132{bottom:765.839694px;}
.y86{bottom:766.739693px;}
.y85{bottom:767.099693px;}
.yd1{bottom:767.999693px;}
.y9d{bottom:771.419691px;}
.y17{bottom:773.939690px;}
.y53{bottom:775.559690px;}
.y52{bottom:775.919690px;}
.yf3{bottom:776.999689px;}
.y18b{bottom:781.139688px;}
.y18a{bottom:781.499687px;}
.yd0{bottom:785.999686px;}
.y9c{bottom:789.419684px;}
.y16{bottom:791.939683px;}
.y131{bottom:794.639682px;}
.y84{bottom:794.819682px;}
.yf2{bottom:794.999682px;}
.y83{bottom:795.179682px;}
.ycf{bottom:803.999678px;}
.y9b{bottom:807.419677px;}
.y15{bottom:809.939676px;}
.y189{bottom:810.299676px;}
.y188{bottom:810.659676px;}
.y51{bottom:812.999675px;}
.yce{bottom:821.999671px;}
.y130{bottom:823.799670px;}
.y12f{bottom:824.159670px;}
.y82{bottom:824.339670px;}
.y9a{bottom:825.419670px;}
.y14{bottom:827.939669px;}
.y50{bottom:830.999668px;}
.y187{bottom:839.459664px;}
.y186{bottom:839.819664px;}
.ycd{bottom:839.999664px;}
.y4f{bottom:848.999660px;}
.y12e{bottom:852.959659px;}
.y99{bottom:853.139659px;}
.y12d{bottom:853.319659px;}
.y81{bottom:853.499659px;}
.y13{bottom:855.119658px;}
.y12{bottom:855.479658px;}
.ycc{bottom:857.999657px;}
.y4e{bottom:866.999653px;}
.y185{bottom:868.619653px;}
.y184{bottom:868.979652px;}
.y11{bottom:873.119651px;}
.ycb{bottom:875.999650px;}
.y12c{bottom:882.119647px;}
.y12b{bottom:882.479647px;}
.y80{bottom:882.659647px;}
.y4d{bottom:884.999646px;}
.y10{bottom:890.579644px;}
.yf{bottom:890.939644px;}
.yca{bottom:893.999642px;}
.y183{bottom:897.779641px;}
.y182{bottom:898.139641px;}
.y4c{bottom:902.999639px;}
.ye{bottom:909.299636px;}
.y12a{bottom:911.279635px;}
.y129{bottom:911.639635px;}
.y7f{bottom:911.819635px;}
.yc9{bottom:911.999635px;}
.yd{bottom:913.079635px;}
.y4b{bottom:920.999632px;}
.y181{bottom:926.759629px;}
.y180{bottom:927.119629px;}
.yc{bottom:927.659629px;}
.yc8{bottom:929.999628px;}
.y4a{bottom:938.999624px;}
.y128{bottom:940.439624px;}
.y127{bottom:940.799624px;}
.y7e{bottom:940.979624px;}
.yb{bottom:946.019622px;}
.yc7{bottom:947.999621px;}
.ya{bottom:949.799620px;}
.y17f{bottom:955.919618px;}
.y17e{bottom:956.279617px;}
.y49{bottom:956.999617px;}
.y126{bottom:969.599612px;}
.y7d{bottom:969.779612px;}
.y125{bottom:969.959612px;}
.y7c{bottom:970.139612px;}
.y8{bottom:973.919610px;}
.y48{bottom:974.999610px;}
.y9{bottom:981.479607px;}
.y1af{bottom:983.999606px;}
.y17d{bottom:985.079606px;}
.y17c{bottom:985.439606px;}
.y47{bottom:992.999603px;}
.y124{bottom:998.579601px;}
.y7b{bottom:998.759600px;}
.y123{bottom:998.939600px;}
.y7a{bottom:999.119600px;}
.y7{bottom:1007.399597px;}
.y6{bottom:1007.759597px;}
.y46{bottom:1010.999596px;}
.y17b{bottom:1014.239594px;}
.y17a{bottom:1014.599594px;}
.y155{bottom:1019.999592px;}
.y122{bottom:1027.739589px;}
.y79{bottom:1027.919589px;}
.y121{bottom:1028.099589px;}
.y78{bottom:1028.279589px;}
.y45{bottom:1028.999588px;}
.y5{bottom:1036.919585px;}
.y4{bottom:1037.279585px;}
.y154{bottom:1037.999585px;}
.y179{bottom:1043.399583px;}
.y178{bottom:1043.759582px;}
.y44{bottom:1046.999581px;}
.y153{bottom:1055.999578px;}
.y120{bottom:1056.899577px;}
.y77{bottom:1057.079577px;}
.y11f{bottom:1057.259577px;}
.y76{bottom:1057.439577px;}
.y43{bottom:1064.999574px;}
.y177{bottom:1072.919571px;}
.y152{bottom:1073.999570px;}
.y3{bottom:1081.199568px;}
.y2{bottom:1081.559567px;}
.y42{bottom:1082.999567px;}
.y11e{bottom:1086.059566px;}
.y75{bottom:1086.239566px;}
.y11d{bottom:1086.419565px;}
.y74{bottom:1086.599565px;}
.yc6{bottom:1091.999563px;}
.y41{bottom:1100.999560px;}
.y1{bottom:1101.899559px;}
.yc5{bottom:1109.999556px;}
.y11c{bottom:1115.219554px;}
.y73{bottom:1115.399554px;}
.y11b{bottom:1115.579554px;}
.y72{bottom:1115.759554px;}
.y40{bottom:1127.999549px;}
.y11a{bottom:1144.379542px;}
.y119{bottom:1144.739542px;}
.y71{bottom:1144.919542px;}
.y3f{bottom:1145.999542px;}
.y118{bottom:1163.819534px;}
.y3e{bottom:1163.999534px;}
.y117{bottom:1180.379528px;}
.y3d{bottom:1180.559528px;}
.y116{bottom:1196.939521px;}
.y3c{bottom:1197.119521px;}
.h5{height:26.217411px;}
.h4{height:34.439752px;}
.h9{height:36.966782px;}
.ha{height:44.149201px;}
.h1{height:45.345919px;}
.h8{height:49.284472px;}
.h3{height:54.628572px;}
.h7{height:60.226851px;}
.h6{height:62.327788px;}
.h2{height:69.473293px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:85.319966px;}
.x4{left:87.301644px;}
.xb{left:90.359964px;}
.xc{left:95.579730px;}
.x11{left:97.199957px;}
.x3{left:100.979920px;}
.x3a{left:106.020004px;}
.x3e{left:107.820018px;}
.x26{left:109.079923px;}
.x39{left:110.880004px;}
.x32{left:113.399952px;}
.x36{left:116.459717px;}
.x30{left:120.601425px;}
.x3d{left:122.220006px;}
.x31{left:127.259949px;}
.x1f{left:128.701174px;}
.x27{left:132.119928px;}
.x35{left:133.559744px;}
.x3b{left:141.478459px;}
.x1c{left:143.099969px;}
.xe{left:145.079893px;}
.xf{left:146.522918px;}
.x29{left:149.759891px;}
.x2c{left:153.718996px;}
.x33{left:157.139962px;}
.x37{left:160.199726px;}
.x1d{left:161.460009px;}
.x20{left:168.661182px;}
.x21{left:172.441183px;}
.x40{left:176.039881px;}
.x22{left:180.721176px;}
.x1e{left:183.240019px;}
.x1b{left:185.759926px;}
.x2d{left:188.279925px;}
.x2a{left:193.499886px;}
.x14{left:196.020156px;}
.x2b{left:201.779878px;}
.x18{left:203.579291px;}
.x19{left:211.859283px;}
.xd{left:218.700020px;}
.x2e{left:232.019919px;}
.x6{left:255.419898px;}
.x7{left:257.759897px;}
.x3f{left:287.818527px;}
.x12{left:290.340577px;}
.x1a{left:317.699211px;}
.x2f{left:326.700122px;}
.x28{left:350.459695px;}
.x23{left:382.861642px;}
.x13{left:400.499840px;}
.x24{left:401.581684px;}
.x3c{left:417.058768px;}
.x8{left:420.659832px;}
.x25{left:423.181651px;}
.x9{left:425.879830px;}
.xa{left:429.479828px;}
.x34{left:446.399265px;}
.x38{left:571.858938px;}
.x16{left:589.319692px;}
.x10{left:610.922416px;}
.x17{left:615.959641px;}
.x15{left:632.519773px;}
.x1{left:765.179694px;}
.x5{left:805.863859px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:3.804052pt;}
.ws1{word-spacing:-13.306875pt;}
.ws0{word-spacing:-12.005115pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-2556.808304pt;}
._2{margin-left:-2476.267116pt;}
._1f{margin-left:-1793.532183pt;}
._36{margin-left:-1674.704142pt;}
._2b{margin-left:-775.942706pt;}
._2f{margin-left:-774.025488pt;}
._16{margin-left:-672.561047pt;}
._21{margin-left:-421.039756pt;}
._23{margin-left:-375.466654pt;}
._38{margin-left:-366.096489pt;}
._39{margin-left:-324.258310pt;}
._f{margin-left:-296.707650pt;}
._13{margin-left:-218.272029pt;}
._10{margin-left:-215.811346pt;}
._8{margin-left:-213.443534pt;}
._31{margin-left:-199.424511pt;}
._2c{margin-left:-156.231755pt;}
._34{margin-left:-142.924880pt;}
._29{margin-left:-85.033988pt;}
._2a{margin-left:-81.411924pt;}
._25{margin-left:-76.236460pt;}
._28{margin-left:-75.210332pt;}
._24{margin-left:-65.311818pt;}
._37{margin-left:-57.319222pt;}
._35{margin-left:-56.276738pt;}
._14{margin-left:-42.965464pt;}
._26{margin-left:-41.880545pt;}
._22{margin-left:-29.309216pt;}
._0{margin-left:-15.647742pt;}
._27{margin-left:-13.122993pt;}
._15{margin-left:-12.030475pt;}
._7{margin-left:-10.728323pt;}
._3{margin-left:-2.111430pt;}
._1{margin-left:-1.084987pt;}
._5{width:0.928175pt;}
._6{width:2.320503pt;}
._a{width:3.265565pt;}
._c{width:4.859712pt;}
._b{width:6.109030pt;}
._17{width:7.167049pt;}
._12{width:8.191531pt;}
._1c{width:9.231981pt;}
._2e{width:10.133668pt;}
._d{width:11.023433pt;}
._1a{width:12.348771pt;}
._e{width:13.488114pt;}
._9{width:15.018402pt;}
._11{width:16.316783pt;}
._1b{width:17.317610pt;}
._18{width:18.224619pt;}
._19{width:19.208209pt;}
._30{width:20.478355pt;}
._1d{width:21.368122pt;}
._1e{width:22.396130pt;}
._2d{width:24.109055pt;}
._33{width:25.877719pt;}
._32{width:26.903444pt;}
._20{width:82.746386pt;}
.fs3{font-size:34.559986pt;}
.fs2{font-size:37.119985pt;}
.fs5{font-size:47.999981pt;}
.fs4{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs1{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.y176{bottom:81.546634pt;}
.y1ae{bottom:81.866634pt;}
.y151{bottom:86.666632pt;}
.yc4{bottom:90.666630pt;}
.yf1{bottom:96.746628pt;}
.y175{bottom:97.546628pt;}
.y1ad{bottom:97.866628pt;}
.y115{bottom:99.306627pt;}
.y3b{bottom:101.866626pt;}
.y150{bottom:102.666626pt;}
.yc3{bottom:106.666624pt;}
.yf0{bottom:112.746622pt;}
.y174{bottom:113.546621pt;}
.y98{bottom:115.306621pt;}
.y3a{bottom:117.866620pt;}
.y14f{bottom:118.666619pt;}
.y1ac{bottom:121.866618pt;}
.y114{bottom:125.066617pt;}
.yef{bottom:128.746615pt;}
.y173{bottom:129.546615pt;}
.yc2{bottom:130.666614pt;}
.y39{bottom:133.866613pt;}
.y14e{bottom:134.666613pt;}
.y1ab{bottom:137.866612pt;}
.y97{bottom:141.226610pt;}
.yee{bottom:144.746609pt;}
.y172{bottom:145.546608pt;}
.yc1{bottom:146.666608pt;}
.y38{bottom:149.866607pt;}
.y113{bottom:150.666606pt;}
.y112{bottom:150.986606pt;}
.y96{bottom:159.146603pt;}
.yed{bottom:160.746602pt;}
.y171{bottom:161.546602pt;}
.y1aa{bottom:161.866602pt;}
.yc0{bottom:162.666602pt;}
.y37{bottom:165.866600pt;}
.y14d{bottom:166.666600pt;}
.y111{bottom:176.586596pt;}
.yec{bottom:176.746596pt;}
.y110{bottom:176.906596pt;}
.y95{bottom:177.066596pt;}
.y170{bottom:177.546596pt;}
.ybf{bottom:178.666595pt;}
.y36{bottom:181.866594pt;}
.y14c{bottom:182.666594pt;}
.y1a9{bottom:185.866592pt;}
.yeb{bottom:192.746590pt;}
.y16f{bottom:193.546589pt;}
.ybe{bottom:194.666589pt;}
.y94{bottom:194.826589pt;}
.y14b{bottom:198.666587pt;}
.y10f{bottom:202.506586pt;}
.y10e{bottom:202.826586pt;}
.y35{bottom:205.866584pt;}
.y16e{bottom:209.546583pt;}
.y1a8{bottom:209.866583pt;}
.ybd{bottom:210.666582pt;}
.y93{bottom:212.746582pt;}
.y14a{bottom:214.666581pt;}
.y70{bottom:214.826581pt;}
.yea{bottom:216.426580pt;}
.ye9{bottom:216.746580pt;}
.y34{bottom:221.866578pt;}
.y16d{bottom:225.546576pt;}
.y10d{bottom:228.426575pt;}
.y10c{bottom:228.746575pt;}
.y92{bottom:230.666574pt;}
.y6f{bottom:230.826574pt;}
.y1a7{bottom:233.546573pt;}
.y1a6{bottom:233.866573pt;}
.ybc{bottom:234.346573pt;}
.ybb{bottom:234.666573pt;}
.y33{bottom:237.866572pt;}
.ye8{bottom:240.426570pt;}
.ye7{bottom:240.746570pt;}
.y16c{bottom:241.546570pt;}
.y6e{bottom:246.826568pt;}
.y91{bottom:248.586567pt;}
.y32{bottom:253.866565pt;}
.y10b{bottom:254.346565pt;}
.y10a{bottom:254.666565pt;}
.y149{bottom:255.306565pt;}
.y148{bottom:255.626564pt;}
.y16b{bottom:257.546564pt;}
.yba{bottom:259.306563pt;}
.yb9{bottom:259.626563pt;}
.y6d{bottom:262.826562pt;}
.ye6{bottom:264.426561pt;}
.ye5{bottom:264.746561pt;}
.y1a5{bottom:265.866560pt;}
.y90{bottom:266.506560pt;}
.y16a{bottom:273.546557pt;}
.y31{bottom:277.866556pt;}
.y6c{bottom:278.826555pt;}
.y109{bottom:280.266555pt;}
.y108{bottom:280.586554pt;}
.y147{bottom:281.546554pt;}
.y1a4{bottom:281.866554pt;}
.y8f{bottom:284.426553pt;}
.yb8{bottom:285.226553pt;}
.yb7{bottom:285.546552pt;}
.ye4{bottom:288.426551pt;}
.ye3{bottom:288.746551pt;}
.y169{bottom:289.546551pt;}
.y30{bottom:293.866549pt;}
.y6b{bottom:294.826549pt;}
.y1a3{bottom:297.866548pt;}
.y8e{bottom:302.346546pt;}
.y168{bottom:305.546544pt;}
.y107{bottom:306.186544pt;}
.y106{bottom:306.506544pt;}
.y146{bottom:307.466544pt;}
.y2f{bottom:309.866543pt;}
.y6a{bottom:310.826542pt;}
.yb6{bottom:311.146542pt;}
.yb5{bottom:311.466542pt;}
.ye2{bottom:312.746542pt;}
.y1a2{bottom:313.866541pt;}
.y8d{bottom:320.266539pt;}
.y167{bottom:321.546538pt;}
.y2e{bottom:325.866536pt;}
.y69{bottom:326.826536pt;}
.y1a1{bottom:329.866535pt;}
.y105{bottom:332.106534pt;}
.y104{bottom:332.426534pt;}
.y145{bottom:333.386533pt;}
.ye1{bottom:336.746532pt;}
.yb4{bottom:337.066532pt;}
.yb3{bottom:337.386532pt;}
.y8c{bottom:338.186531pt;}
.y2d{bottom:341.866530pt;}
.y68{bottom:342.826530pt;}
.y1a0{bottom:345.866528pt;}
.y166{bottom:346.506528pt;}
.y8b{bottom:356.106524pt;}
.y2c{bottom:357.866524pt;}
.y103{bottom:358.026523pt;}
.y102{bottom:358.346523pt;}
.y67{bottom:358.826523pt;}
.y144{bottom:359.306523pt;}
.ye0{bottom:360.746522pt;}
.y19f{bottom:361.866522pt;}
.yb2{bottom:362.986521pt;}
.yb1{bottom:363.306521pt;}
.y165{bottom:364.106521pt;}
.y164{bottom:364.426521pt;}
.y2b{bottom:373.866517pt;}
.y8a{bottom:381.546514pt;}
.y89{bottom:381.866514pt;}
.y66{bottom:382.826514pt;}
.y101{bottom:384.106513pt;}
.ydf{bottom:384.746513pt;}
.y143{bottom:385.226513pt;}
.y19e{bottom:385.866512pt;}
.y1b9{bottom:386.666512pt;}
.yb0{bottom:388.746511pt;}
.yaf{bottom:389.066511pt;}
.y163{bottom:390.026511pt;}
.y162{bottom:390.346511pt;}
.y2a{bottom:398.346507pt;}
.y29{bottom:398.666507pt;}
.y65{bottom:398.826507pt;}
.y19d{bottom:401.866506pt;}
.y88{bottom:407.466504pt;}
.y87{bottom:407.786504pt;}
.yde{bottom:408.746503pt;}
.y100{bottom:410.026503pt;}
.y1b8{bottom:410.666502pt;}
.y142{bottom:411.146502pt;}
.yae{bottom:414.666501pt;}
.y64{bottom:414.826501pt;}
.yad{bottom:414.986501pt;}
.y161{bottom:415.786500pt;}
.y160{bottom:416.106500pt;}
.y19c{bottom:417.866500pt;}
.y1b7{bottom:426.666496pt;}
.y63{bottom:430.826494pt;}
.y28{bottom:431.306494pt;}
.y27{bottom:431.626494pt;}
.ydd{bottom:432.746494pt;}
.y19b{bottom:433.866493pt;}
.yff{bottom:435.946492pt;}
.y141{bottom:436.106492pt;}
.yac{bottom:440.586490pt;}
.yab{bottom:440.906490pt;}
.y15f{bottom:441.706490pt;}
.y15e{bottom:442.026490pt;}
.y62{bottom:446.826488pt;}
.y19a{bottom:449.866487pt;}
.y1b6{bottom:450.666486pt;}
.y26{bottom:455.626484pt;}
.ydc{bottom:456.746484pt;}
.y140{bottom:460.106483pt;}
.yfe{bottom:461.866482pt;}
.y61{bottom:462.826482pt;}
.y199{bottom:465.866480pt;}
.yaa{bottom:466.506480pt;}
.y1b5{bottom:466.666480pt;}
.ya9{bottom:466.826480pt;}
.y15d{bottom:467.626480pt;}
.y15c{bottom:467.946479pt;}
.y25{bottom:471.626478pt;}
.y60{bottom:478.826475pt;}
.ydb{bottom:480.746474pt;}
.y198{bottom:481.866474pt;}
.y1b4{bottom:482.666474pt;}
.y13f{bottom:484.106473pt;}
.y24{bottom:487.626472pt;}
.yfd{bottom:487.786472pt;}
.ya8{bottom:492.746470pt;}
.y15b{bottom:493.546469pt;}
.y15a{bottom:493.866469pt;}
.y5f{bottom:494.826469pt;}
.y197{bottom:497.866468pt;}
.y23{bottom:503.626465pt;}
.yda{bottom:504.746465pt;}
.y1b3{bottom:506.666464pt;}
.y13e{bottom:508.106463pt;}
.y5e{bottom:510.826462pt;}
.yfc{bottom:513.706461pt;}
.y196{bottom:513.866461pt;}
.ya7{bottom:517.706460pt;}
.y159{bottom:519.466459pt;}
.y22{bottom:519.626459pt;}
.y158{bottom:519.786459pt;}
.y13d{bottom:524.106457pt;}
.y5d{bottom:526.826456pt;}
.yd9{bottom:528.746455pt;}
.y195{bottom:529.866455pt;}
.y1b2{bottom:530.666454pt;}
.y21{bottom:535.626452pt;}
.yfb{bottom:538.666451pt;}
.y13c{bottom:540.106451pt;}
.ya6{bottom:541.706450pt;}
.y5c{bottom:542.826450pt;}
.y157{bottom:545.706448pt;}
.y194{bottom:545.866448pt;}
.y1b1{bottom:546.666448pt;}
.y20{bottom:551.626446pt;}
.yd8{bottom:553.706445pt;}
.y13b{bottom:556.106444pt;}
.ya5{bottom:557.706444pt;}
.y5b{bottom:558.826443pt;}
.y193{bottom:561.866442pt;}
.yfa{bottom:562.666442pt;}
.y156{bottom:570.666438pt;}
.y13a{bottom:572.106438pt;}
.ya4{bottom:573.706437pt;}
.y5a{bottom:574.826437pt;}
.y1f{bottom:575.786436pt;}
.y1e{bottom:576.106436pt;}
.y192{bottom:577.866436pt;}
.yd7{bottom:578.666435pt;}
.y1b0{bottom:586.666432pt;}
.ya3{bottom:589.706431pt;}
.y59{bottom:590.826430pt;}
.y191{bottom:593.866429pt;}
.yf9{bottom:594.666429pt;}
.y139{bottom:595.786428pt;}
.y138{bottom:596.106428pt;}
.y1d{bottom:599.626427pt;}
.y1c{bottom:599.946427pt;}
.yd6{bottom:602.666426pt;}
.ya2{bottom:605.706424pt;}
.y58{bottom:606.826424pt;}
.yf8{bottom:610.666422pt;}
.y190{bottom:617.546420pt;}
.y18f{bottom:617.866420pt;}
.yd5{bottom:618.666419pt;}
.ya1{bottom:621.706418pt;}
.y57{bottom:622.826418pt;}
.y1b{bottom:623.946417pt;}
.yf7{bottom:626.666416pt;}
.y137{bottom:628.586415pt;}
.y136{bottom:628.906415pt;}
.yd4{bottom:634.666413pt;}
.ya0{bottom:637.706412pt;}
.y56{bottom:638.826411pt;}
.y1a{bottom:639.946411pt;}
.yf6{bottom:642.666410pt;}
.yd3{bottom:650.666406pt;}
.y18e{bottom:650.826406pt;}
.y9f{bottom:653.706405pt;}
.y135{bottom:654.506405pt;}
.y134{bottom:654.826405pt;}
.y19{bottom:655.946404pt;}
.yf5{bottom:658.666403pt;}
.y55{bottom:663.466401pt;}
.y54{bottom:663.786401pt;}
.yd2{bottom:666.666400pt;}
.y18d{bottom:668.426399pt;}
.y18c{bottom:668.746399pt;}
.y9e{bottom:669.706399pt;}
.y18{bottom:671.946398pt;}
.yf4{bottom:674.666397pt;}
.y133{bottom:680.426394pt;}
.y132{bottom:680.746394pt;}
.y86{bottom:681.546394pt;}
.y85{bottom:681.866394pt;}
.yd1{bottom:682.666394pt;}
.y9d{bottom:685.706392pt;}
.y17{bottom:687.946391pt;}
.y53{bottom:689.386391pt;}
.y52{bottom:689.706391pt;}
.yf3{bottom:690.666390pt;}
.y18b{bottom:694.346389pt;}
.y18a{bottom:694.666389pt;}
.yd0{bottom:698.666387pt;}
.y9c{bottom:701.706386pt;}
.y16{bottom:703.946385pt;}
.y131{bottom:706.346384pt;}
.y84{bottom:706.506384pt;}
.yf2{bottom:706.666384pt;}
.y83{bottom:706.826384pt;}
.ycf{bottom:714.666381pt;}
.y9b{bottom:717.706380pt;}
.y15{bottom:719.946379pt;}
.y189{bottom:720.266379pt;}
.y188{bottom:720.586378pt;}
.y51{bottom:722.666378pt;}
.yce{bottom:730.666374pt;}
.y130{bottom:732.266374pt;}
.y12f{bottom:732.586374pt;}
.y82{bottom:732.746374pt;}
.y9a{bottom:733.706373pt;}
.y14{bottom:735.946372pt;}
.y50{bottom:738.666371pt;}
.y187{bottom:746.186368pt;}
.y186{bottom:746.506368pt;}
.ycd{bottom:746.666368pt;}
.y4f{bottom:754.666365pt;}
.y12e{bottom:758.186363pt;}
.y99{bottom:758.346363pt;}
.y12d{bottom:758.506363pt;}
.y81{bottom:758.666363pt;}
.y13{bottom:760.106363pt;}
.y12{bottom:760.426362pt;}
.ycc{bottom:762.666362pt;}
.y4e{bottom:770.666358pt;}
.y185{bottom:772.106358pt;}
.y184{bottom:772.426358pt;}
.y11{bottom:776.106356pt;}
.ycb{bottom:778.666355pt;}
.y12c{bottom:784.106353pt;}
.y12b{bottom:784.426353pt;}
.y80{bottom:784.586353pt;}
.y4d{bottom:786.666352pt;}
.y10{bottom:791.626350pt;}
.yf{bottom:791.946350pt;}
.yca{bottom:794.666349pt;}
.y183{bottom:798.026347pt;}
.y182{bottom:798.346347pt;}
.y4c{bottom:802.666346pt;}
.ye{bottom:808.266343pt;}
.y12a{bottom:810.026343pt;}
.y129{bottom:810.346343pt;}
.y7f{bottom:810.506342pt;}
.yc9{bottom:810.666342pt;}
.yd{bottom:811.626342pt;}
.y4b{bottom:818.666339pt;}
.y181{bottom:823.786337pt;}
.y180{bottom:824.106337pt;}
.yc{bottom:824.586337pt;}
.yc8{bottom:826.666336pt;}
.y4a{bottom:834.666333pt;}
.y128{bottom:835.946332pt;}
.y127{bottom:836.266332pt;}
.y7e{bottom:836.426332pt;}
.yb{bottom:840.906330pt;}
.yc7{bottom:842.666330pt;}
.ya{bottom:844.266329pt;}
.y17f{bottom:849.706327pt;}
.y17e{bottom:850.026327pt;}
.y49{bottom:850.666326pt;}
.y126{bottom:861.866322pt;}
.y7d{bottom:862.026322pt;}
.y125{bottom:862.186322pt;}
.y7c{bottom:862.346322pt;}
.y8{bottom:865.706320pt;}
.y48{bottom:866.666320pt;}
.y9{bottom:872.426318pt;}
.y1af{bottom:874.666317pt;}
.y17d{bottom:875.626316pt;}
.y17c{bottom:875.946316pt;}
.y47{bottom:882.666314pt;}
.y124{bottom:887.626312pt;}
.y7b{bottom:887.786312pt;}
.y123{bottom:887.946311pt;}
.y7a{bottom:888.106311pt;}
.y7{bottom:895.466308pt;}
.y6{bottom:895.786308pt;}
.y46{bottom:898.666307pt;}
.y17b{bottom:901.546306pt;}
.y17a{bottom:901.866306pt;}
.y155{bottom:906.666304pt;}
.y122{bottom:913.546301pt;}
.y79{bottom:913.706301pt;}
.y121{bottom:913.866301pt;}
.y78{bottom:914.026301pt;}
.y45{bottom:914.666301pt;}
.y5{bottom:921.706298pt;}
.y4{bottom:922.026298pt;}
.y154{bottom:922.666298pt;}
.y179{bottom:927.466296pt;}
.y178{bottom:927.786296pt;}
.y44{bottom:930.666294pt;}
.y153{bottom:938.666291pt;}
.y120{bottom:939.466291pt;}
.y77{bottom:939.626291pt;}
.y11f{bottom:939.786291pt;}
.y76{bottom:939.946291pt;}
.y43{bottom:946.666288pt;}
.y177{bottom:953.706285pt;}
.y152{bottom:954.666285pt;}
.y3{bottom:961.066282pt;}
.y2{bottom:961.386282pt;}
.y42{bottom:962.666282pt;}
.y11e{bottom:965.386281pt;}
.y75{bottom:965.546280pt;}
.y11d{bottom:965.706280pt;}
.y74{bottom:965.866280pt;}
.yc6{bottom:970.666278pt;}
.y41{bottom:978.666275pt;}
.y1{bottom:979.466275pt;}
.yc5{bottom:986.666272pt;}
.y11c{bottom:991.306270pt;}
.y73{bottom:991.466270pt;}
.y11b{bottom:991.626270pt;}
.y72{bottom:991.786270pt;}
.y40{bottom:1002.666266pt;}
.y11a{bottom:1017.226260pt;}
.y119{bottom:1017.546260pt;}
.y71{bottom:1017.706260pt;}
.y3f{bottom:1018.666259pt;}
.y118{bottom:1034.506253pt;}
.y3e{bottom:1034.666253pt;}
.y117{bottom:1049.226247pt;}
.y3d{bottom:1049.386247pt;}
.y116{bottom:1063.946241pt;}
.y3c{bottom:1064.106241pt;}
.h5{height:23.304366pt;}
.h4{height:30.613113pt;}
.h9{height:32.859362pt;}
.ha{height:39.243734pt;}
.h1{height:40.307484pt;}
.h8{height:43.808420pt;}
.h3{height:48.558731pt;}
.h7{height:53.534979pt;}
.h6{height:55.402478pt;}
.h2{height:61.754038pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:75.839970pt;}
.x4{left:77.601462pt;}
.xb{left:80.319968pt;}
.xc{left:84.959760pt;}
.x11{left:86.399961pt;}
.x3{left:89.759929pt;}
.x3a{left:94.240003pt;}
.x3e{left:95.840016pt;}
.x26{left:96.959932pt;}
.x39{left:98.560003pt;}
.x32{left:100.799958pt;}
.x36{left:103.519748pt;}
.x30{left:107.201267pt;}
.x3d{left:108.640006pt;}
.x31{left:113.119955pt;}
.x1f{left:114.401044pt;}
.x27{left:117.439936pt;}
.x35{left:118.719773pt;}
.x3b{left:125.758630pt;}
.x1c{left:127.199972pt;}
.xe{left:128.959905pt;}
.xf{left:130.242594pt;}
.x29{left:133.119903pt;}
.x2c{left:136.639108pt;}
.x33{left:139.679966pt;}
.x37{left:142.399757pt;}
.x1d{left:143.520008pt;}
.x20{left:149.921050pt;}
.x21{left:153.281052pt;}
.x40{left:156.479894pt;}
.x22{left:160.641045pt;}
.x1e{left:162.880016pt;}
.x1b{left:165.119934pt;}
.x2d{left:167.359933pt;}
.x2a{left:171.999898pt;}
.x14{left:174.240138pt;}
.x2b{left:179.359892pt;}
.x18{left:180.959370pt;}
.x19{left:188.319363pt;}
.xd{left:194.400018pt;}
.x2e{left:206.239928pt;}
.x6{left:227.039909pt;}
.x7{left:229.119908pt;}
.x3f{left:255.838691pt;}
.x12{left:258.080513pt;}
.x1a{left:282.399299pt;}
.x2f{left:290.400108pt;}
.x28{left:311.519729pt;}
.x23{left:340.321460pt;}
.x13{left:355.999858pt;}
.x24{left:356.961497pt;}
.x3c{left:370.718905pt;}
.x8{left:373.919850pt;}
.x25{left:376.161467pt;}
.x9{left:378.559849pt;}
.xa{left:381.759847pt;}
.x34{left:396.799347pt;}
.x38{left:508.319056pt;}
.x16{left:523.839726pt;}
.x10{left:543.042148pt;}
.x17{left:547.519681pt;}
.x15{left:562.239798pt;}
.x1{left:680.159728pt;}
.x5{left:716.323430pt;}
}




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