
    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_08432187cca8429dee32d777.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_e14cb0947dcfd752ed1816ac.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107910;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_2ce96a0b7521cdd886643a1f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.188000;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_2c201ea670b144ed65a60721.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_4a10e1af578d9cbf52063ac9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.109863;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_a98cacc16f6bfadbdd2723cf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.475000;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_df45aceb3390d522d0ee4b9b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_35f5444606d91c70e45eaeb4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.096680;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_292ea02faefebe84b96be214.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.872000;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_dbf0239fa2ea1b13c699c7fd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.997000;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_ea92aef6127670cf361fffa1.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.398000;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_48f62185527b9c9a3bc5b470.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.692383;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_e758dac7e59d7a7a51184076.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.578000;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.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-7.140000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.724305px;}
.v1{vertical-align:4.080539px;}
.va{vertical-align:17.339074px;}
.v5{vertical-align:25.149116px;}
.v4{vertical-align:32.295116px;}
.v9{vertical-align:58.170000px;}
.v8{vertical-align:65.316000px;}
.v3{vertical-align:67.011007px;}
.v7{vertical-align:100.008000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.031613px;}
.ls4{letter-spacing:0.035213px;}
.ls6{letter-spacing:0.037613px;}
.ls3{letter-spacing:2.423181px;}
.ls5{letter-spacing:2.865948px;}
.lsd{letter-spacing:2.991600px;}
.ls8{letter-spacing:3.209148px;}
.lse{letter-spacing:10.680908px;}
.lsf{letter-spacing:12.754350px;}
.ls10{letter-spacing:12.880593px;}
.ls2{letter-spacing:13.179357px;}
.lsb{letter-spacing:13.537800px;}
.lsc{letter-spacing:13.539600px;}
.ls0{letter-spacing:19.038201px;}
.lsa{letter-spacing:24.780635px;}
.ls9{letter-spacing:2209.675157px;}
.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;}
}
.wsd{word-spacing:-38.255400px;}
.ws8{word-spacing:-37.826095px;}
.wsf{word-spacing:-24.674733px;}
.ws2{word-spacing:-24.230394px;}
.ws3{word-spacing:-14.011436px;}
.ws4{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.wsb{word-spacing:-11.208832px;}
.ws6{word-spacing:-10.061328px;}
.wsa{word-spacing:-9.563850px;}
.ws9{word-spacing:-0.688597px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:3.663058px;}
.wse{word-spacing:12.670188px;}
.wsc{word-spacing:12.781129px;}
.ws1{word-spacing:14.632920px;}
._5{margin-left:-17.343592px;}
._f{margin-left:-4.633501px;}
._d{margin-left:-3.618170px;}
._a{margin-left:-2.492378px;}
._2{margin-left:-1.127118px;}
._4{width:1.035456px;}
._3{width:2.053675px;}
._1{width:3.211741px;}
._b{width:4.579243px;}
._6{width:5.930636px;}
._7{width:7.066840px;}
._8{width:9.192917px;}
._9{width:10.221525px;}
._e{width:20.318240px;}
._10{width:21.655616px;}
._24{width:23.989961px;}
._c{width:29.854401px;}
._0{width:95.630436px;}
._16{width:300.702746px;}
._1e{width:305.202846px;}
._17{width:311.219156px;}
._1f{width:312.347690px;}
._1c{width:333.491450px;}
._14{width:342.022404px;}
._13{width:351.127189px;}
._18{width:354.688767px;}
._1d{width:371.348993px;}
._11{width:402.297612px;}
._1b{width:409.948692px;}
._22{width:413.429933px;}
._20{width:458.380028px;}
._23{width:469.512350px;}
._15{width:486.000427px;}
._19{width:516.987301px;}
._1a{width:551.531927px;}
._21{width:574.003149px;}
._12{width:578.482857px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fsb{font-size:31.083000px;}
.fsc{font-size:33.472800px;}
.fs9{font-size:35.867400px;}
.fs4{font-size:38.255400px;}
.fs8{font-size:38.256000px;}
.fs5{font-size:41.842200px;}
.fs0{font-size:43.038000px;}
.fs3{font-size:44.327400px;}
.fs6{font-size:47.820600px;}
.fsa{font-size:51.168000px;}
.fs2{font-size:63.362400px;}
.fs1{font-size:80.697000px;}
.fs7{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y37{bottom:53.097757px;}
.y4{bottom:79.512757px;}
.y99{bottom:84.189036px;}
.y72{bottom:84.190258px;}
.y120{bottom:84.193388px;}
.y3{bottom:93.852757px;}
.y98{bottom:98.560500px;}
.y71{bottom:99.837158px;}
.y2{bottom:108.012757px;}
.y70{bottom:115.570136px;}
.y11f{bottom:115.573266px;}
.y35{bottom:122.456736px;}
.y126{bottom:126.113436px;}
.y6f{bottom:131.217036px;}
.y166{bottom:131.479951px;}
.y34{bottom:136.828200px;}
.y125{bottom:140.484900px;}
.y165{bottom:143.385031px;}
.y6e{bottom:146.948818px;}
.y11e{bottom:151.799761px;}
.y164{bottom:155.375230px;}
.y163{bottom:167.281267px;}
.y11d{bottom:167.531543px;}
.y30{bottom:168.208036px;}
.y6d{bottom:178.327500px;}
.y6c{bottom:178.328417px;}
.y162{bottom:179.271465px;}
.y2f{bottom:182.494500px;}
.y11c{bottom:183.178443px;}
.y161{bottom:191.261664px;}
.y6b{bottom:193.975318px;}
.y11b{bottom:198.911421px;}
.y160{bottom:203.166745px;}
.y6a{bottom:209.707100px;}
.y11a{bottom:214.558321px;}
.y15f{bottom:215.157900px;}
.y2e{bottom:223.570138px;}
.y69{bottom:225.354000px;}
.y68{bottom:225.355318px;}
.y15e{bottom:227.062980px;}
.y119{bottom:230.290103px;}
.y15d{bottom:239.053179px;}
.y2d{bottom:239.217038px;}
.y67{bottom:241.087100px;}
.y118{bottom:245.937003px;}
.y15c{bottom:251.044334px;}
.y2c{bottom:254.950016px;}
.y66{bottom:256.734000px;}
.y65{bottom:256.734218px;}
.y117{bottom:261.669981px;}
.y15b{bottom:262.949415px;}
.y2b{bottom:270.596916px;}
.y64{bottom:272.466000px;}
.y63{bottom:272.467318px;}
.y15a{bottom:274.939613px;}
.y116{bottom:277.316881px;}
.y2a{bottom:286.328698px;}
.y159{bottom:286.844694px;}
.y62{bottom:288.114218px;}
.y158{bottom:298.835849px;}
.y29{bottom:301.975598px;}
.y61{bottom:303.846000px;}
.y60{bottom:303.849909px;}
.y115{bottom:308.695563px;}
.y157{bottom:310.740929px;}
.y28{bottom:317.708576px;}
.y5f{bottom:319.496809px;}
.y156{bottom:322.731128px;}
.y27{bottom:333.355476px;}
.y155{bottom:334.721327px;}
.y5e{bottom:335.228591px;}
.y114{bottom:341.264978px;}
.y154{bottom:346.627364px;}
.y26{bottom:349.087258px;}
.y113{bottom:356.997956px;}
.y153{bottom:358.617563px;}
.y25{bottom:364.734158px;}
.y5d{bottom:366.608469px;}
.y152{bottom:370.522643px;}
.y112{bottom:372.644856px;}
.y97{bottom:373.153100px;}
.y24{bottom:380.467136px;}
.y5c{bottom:382.255369px;}
.y151{bottom:382.512842px;}
.y95{bottom:386.844000px;}
.y111{bottom:388.376638px;}
.y96{bottom:388.800000px;}
.y94{bottom:388.801318px;}
.y150{bottom:394.503997px;}
.y23{bottom:396.114036px;}
.y5b{bottom:397.987151px;}
.y110{bottom:404.023538px;}
.y93{bottom:404.533100px;}
.y14f{bottom:406.409077px;}
.y22{bottom:411.845818px;}
.y5a{bottom:413.634051px;}
.y91{bottom:418.224000px;}
.y14e{bottom:418.399276px;}
.y10f{bottom:419.756516px;}
.y92{bottom:420.180000px;}
.y90{bottom:420.180792px;}
.y102{bottom:424.093138px;}
.y59{bottom:429.367029px;}
.y14d{bottom:430.305313px;}
.ybf{bottom:431.662830px;}
.y10e{bottom:435.403416px;}
.yeb{bottom:439.740038px;}
.y14c{bottom:442.295512px;}
.y21{bottom:443.224500px;}
.y8f{bottom:444.330000px;}
.y58{bottom:445.013929px;}
.ybe{bottom:447.394612px;}
.y10d{bottom:451.135198px;}
.y8e{bottom:452.585221px;}
.y14b{bottom:454.285710px;}
.yea{bottom:455.473016px;}
.ydd{bottom:461.682688px;}
.ybd{bottom:463.042708px;}
.y14a{bottom:466.190791px;}
.y10c{bottom:466.782098px;}
.ye9{bottom:471.119916px;}
.y57{bottom:476.392611px;}
.ydc{bottom:477.415665px;}
.y149{bottom:478.181946px;}
.ybc{bottom:478.774489px;}
.y10b{bottom:482.515076px;}
.y8d{bottom:484.474388px;}
.ye8{bottom:486.851698px;}
.y148{bottom:490.087027px;}
.y56{bottom:492.125589px;}
.ydb{bottom:493.062565px;}
.ybb{bottom:494.421390px;}
.y10a{bottom:498.161976px;}
.y20{bottom:499.013966px;}
.y8c{bottom:500.207366px;}
.y147{bottom:502.077225px;}
.ye7{bottom:502.498598px;}
.yda{bottom:508.794347px;}
.yba{bottom:510.153172px;}
.y1f{bottom:513.385430px;}
.y109{bottom:513.893758px;}
.y146{bottom:513.982306px;}
.y8b{bottom:515.854266px;}
.ye6{bottom:518.231576px;}
.y55{bottom:523.504271px;}
.yd9{bottom:524.441247px;}
.yb9{bottom:525.801267px;}
.y145{bottom:525.973461px;}
.y1e{bottom:527.671895px;}
.y108{bottom:529.540658px;}
.y8a{bottom:531.586048px;}
.ye5{bottom:533.878476px;}
.y144{bottom:537.963660px;}
.yd8{bottom:540.174225px;}
.yb8{bottom:541.533049px;}
.y1d{bottom:542.043359px;}
.y107{bottom:545.273636px;}
.y89{bottom:547.232948px;}
.ye4{bottom:549.610258px;}
.y143{bottom:549.868740px;}
.yd7{bottom:555.821125px;}
.y1c{bottom:556.414823px;}
.yb7{bottom:557.179950px;}
.y106{bottom:560.920536px;}
.y142{bottom:561.859895px;}
.y88{bottom:562.965926px;}
.ye3{bottom:565.257158px;}
.y54{bottom:567.639098px;}
.y1b{bottom:570.701287px;}
.yd6{bottom:571.552907px;}
.yb6{bottom:572.911732px;}
.y141{bottom:573.764976px;}
.y105{bottom:576.652318px;}
.y87{bottom:578.612826px;}
.ye2{bottom:580.990136px;}
.y53{bottom:583.372076px;}
.y1a{bottom:585.072751px;}
.y140{bottom:585.755174px;}
.yd5{bottom:587.199807px;}
.yb5{bottom:588.559827px;}
.y104{bottom:592.299218px;}
.y86{bottom:594.344608px;}
.ye1{bottom:596.637036px;}
.y12{bottom:597.062994px;}
.y13f{bottom:597.745373px;}
.y124{bottom:598.677036px;}
.y52{bottom:599.018976px;}
.y19{bottom:599.444215px;}
.yd4{bottom:602.932785px;}
.yb4{bottom:604.291609px;}
.y103{bottom:608.031000px;}
.y13e{bottom:609.651410px;}
.y11{bottom:609.903419px;}
.y85{bottom:609.991508px;}
.ye0{bottom:612.368818px;}
.y123{bottom:613.048500px;}
.y18{bottom:613.730679px;}
.y51{bottom:614.750758px;}
.yd3{bottom:618.579685px;}
.y13d{bottom:621.641609px;}
.y10{bottom:622.744800px;}
.y84{bottom:625.724485px;}
.ydf{bottom:628.015718px;}
.y17{bottom:628.102143px;}
.y50{bottom:630.397658px;}
.y13c{bottom:633.546689px;}
.yd2{bottom:634.311467px;}
.yf{bottom:635.585225px;}
.yb3{bottom:635.670291px;}
.y83{bottom:641.371386px;}
.y122{bottom:641.622036px;}
.y16{bottom:642.473608px;}
.yde{bottom:643.747500px;}
.y13b{bottom:645.536888px;}
.y4f{bottom:646.130636px;}
.ye{bottom:648.425650px;}
.yd1{bottom:649.958367px;}
.y121{bottom:655.993500px;}
.y15{bottom:656.845072px;}
.y82{bottom:657.103168px;}
.y13a{bottom:657.442925px;}
.yd{bottom:661.267032px;}
.y4e{bottom:661.777536px;}
.yd0{bottom:665.691345px;}
.y139{bottom:669.433124px;}
.y14{bottom:671.131536px;}
.y81{bottom:672.834950px;}
.yc{bottom:674.107457px;}
.y4d{bottom:677.509318px;}
.y138{bottom:681.423322px;}
.yb2{bottom:681.591218px;}
.y101{bottom:684.228109px;}
.y13{bottom:685.503000px;}
.yb{bottom:687.033000px;}
.y4c{bottom:693.156218px;}
.y137{bottom:693.328403px;}
.ycf{bottom:697.070027px;}
.y100{bottom:697.153652px;}
.yaf{bottom:697.322600px;}
.yb1{bottom:697.323000px;}
.yb0{bottom:702.595500px;}
.y80{bottom:704.214827px;}
.y136{bottom:705.319558px;}
.y4a{bottom:706.932000px;}
.y4b{bottom:708.888000px;}
.y49{bottom:708.891682px;}
.yff{bottom:709.994077px;}
.yae{bottom:712.969500px;}
.yac{bottom:712.971036px;}
.ya{bottom:714.756000px;}
.y135{bottom:717.224638px;}
.yad{bottom:718.327500px;}
.yfe{bottom:722.835459px;}
.y48{bottom:724.538582px;}
.yab{bottom:728.702818px;}
.y134{bottom:729.214837px;}
.y7f{bottom:735.593509px;}
.yfd{bottom:735.675884px;}
.y47{bottom:740.271560px;}
.y133{bottom:741.205992px;}
.yce{bottom:743.330480px;}
.yaa{bottom:744.434600px;}
.yfc{bottom:748.516309px;}
.y132{bottom:753.111073px;}
.y46{bottom:755.918460px;}
.ycd{bottom:758.978576px;}
.ya9{bottom:760.084076px;}
.yfb{bottom:761.357690px;}
.y9{bottom:764.248500px;}
.y131{bottom:765.101272px;}
.y7e{bottom:768.418765px;}
.y45{bottom:771.650242px;}
.ycc{bottom:774.710358px;}
.ya8{bottom:775.815858px;}
.y130{bottom:777.006352px;}
.yfa{bottom:781.086000px;}
.y7d{bottom:784.150547px;}
.y44{bottom:787.382024px;}
.y7{bottom:788.910000px;}
.y12f{bottom:788.997507px;}
.ycb{bottom:790.357258px;}
.ya7{bottom:791.462758px;}
.y8{bottom:795.969000px;}
.y7c{bottom:799.798643px;}
.yf9{bottom:800.815572px;}
.y12e{bottom:800.902588px;}
.y43{bottom:803.030120px;}
.yca{bottom:806.089040px;}
.ya6{bottom:807.194540px;}
.y12d{bottom:812.892786px;}
.yf8{bottom:815.187036px;}
.y7b{bottom:815.530424px;}
.y42{bottom:818.761902px;}
.yc9{bottom:821.737136px;}
.ya5{bottom:822.842636px;}
.y12c{bottom:824.882985px;}
.y6{bottom:826.412716px;}
.yf7{bottom:829.558500px;}
.y7a{bottom:831.177325px;}
.y41{bottom:834.408802px;}
.y12b{bottom:836.789022px;}
.yc8{bottom:837.468917px;}
.ya4{bottom:838.574417px;}
.y79{bottom:846.909107px;}
.y12a{bottom:848.779221px;}
.y5{bottom:852.264000px;}
.yc7{bottom:853.115818px;}
.ya3{bottom:854.221318px;}
.y129{bottom:860.684301px;}
.y78{bottom:862.556007px;}
.y40{bottom:865.787484px;}
.yc6{bottom:868.847600px;}
.ya2{bottom:869.953100px;}
.y128{bottom:872.674500px;}
.y77{bottom:878.288984px;}
.yf6{bottom:880.074109px;}
.yc5{bottom:884.494500px;}
.yc4{bottom:884.495636px;}
.ya1{bottom:885.601732px;}
.yf5{bottom:892.914534px;}
.y76{bottom:893.935885px;}
.y3f{bottom:897.167362px;}
.yc3{bottom:900.227417px;}
.y127{bottom:900.229076px;}
.ya0{bottom:901.334709px;}
.yf4{bottom:905.754959px;}
.y75{bottom:909.667667px;}
.yc2{bottom:915.874318px;}
.y9f{bottom:916.981609px;}
.yf3{bottom:918.596341px;}
.y33{bottom:931.096500px;}
.yf2{bottom:931.436766px;}
.yc1{bottom:931.606100px;}
.y3e{bottom:931.607758px;}
.y9e{bottom:932.713391px;}
.y74{bottom:941.047544px;}
.yf1{bottom:944.278147px;}
.yc0{bottom:947.253000px;}
.y3d{bottom:947.254658px;}
.yf0{bottom:957.203690px;}
.y3c{bottom:962.987636px;}
.y9d{bottom:964.093269px;}
.y32{bottom:971.490000px;}
.yef{bottom:976.932000px;}
.y3b{bottom:978.634536px;}
.y3a{bottom:994.366318px;}
.yee{bottom:996.576072px;}
.y9b{bottom:1008.057000px;}
.y9c{bottom:1010.013000px;}
.y39{bottom:1010.013218px;}
.yed{bottom:1010.947536px;}
.y31{bottom:1014.009000px;}
.y9a{bottom:1023.703500px;}
.yec{bottom:1025.319000px;}
.y38{bottom:1025.745000px;}
.y1{bottom:1054.632757px;}
.y73{bottom:1055.083500px;}
.y36{bottom:1055.097757px;}
.hd{height:31.524082px;}
.h6{height:33.622910px;}
.hc{height:33.623438px;}
.he{height:34.077888px;}
.hb{height:34.478653px;}
.h7{height:36.775371px;}
.h2{height:37.826367px;}
.h5{height:38.959629px;}
.h8{height:42.029824px;}
.h11{height:42.410201px;}
.h12{height:42.412825px;}
.h4{height:55.689609px;}
.hf{height:68.923831px;}
.h3{height:70.925098px;}
.ha{height:73.551270px;}
.h10{height:101.920824px;}
.h1{height:1113.750000px;}
.h9{height:1114.015500px;}
.h0{height:1114.015503px;}
.w2{width:816.375000px;}
.w3{width:816.378000px;}
.w0{width:816.378021px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.x2{left:58.335000px;}
.x43{left:63.609300px;}
.xa{left:66.075450px;}
.x40{left:67.436100px;}
.x9{left:76.449339px;}
.x35{left:80.192100px;}
.x44{left:83.082255px;}
.x22{left:84.273018px;}
.x23{left:94.392824px;}
.x36{left:97.029900px;}
.x37{left:99.496050px;}
.x47{left:106.638018px;}
.x3{left:113.526206px;}
.x38{left:117.524400px;}
.x39{left:121.946400px;}
.x46{left:124.326358px;}
.x24{left:140.229900px;}
.x42{left:141.589365px;}
.x26{left:142.611000px;}
.x4{left:143.970255px;}
.x27{left:151.285500px;}
.x48{left:157.661157px;}
.x25{left:169.314000px;}
.x28{left:182.494500px;}
.x29{left:190.912500px;}
.x3e{left:215.914500px;}
.x1{left:219.750000px;}
.x3f{left:225.099000px;}
.x49{left:258.092103px;}
.x5{left:260.220000px;}
.x6{left:266.088000px;}
.xf{left:269.404500px;}
.x18{left:280.885500px;}
.xb{left:284.793490px;}
.x3c{left:286.837500px;}
.x19{left:290.070000px;}
.x8{left:296.617500px;}
.xd{left:304.270500px;}
.x45{left:306.818962px;}
.x7{left:366.433449px;}
.xe{left:383.868000px;}
.x41{left:402.570000px;}
.x11{left:405.255000px;}
.x30{left:440.758500px;}
.x31{left:445.521000px;}
.x32{left:462.358500px;}
.x33{left:464.740500px;}
.x20{left:482.257500px;}
.x34{left:487.530000px;}
.x21{left:492.463500px;}
.xc{left:495.349373px;}
.x3d{left:497.736000px;}
.x1a{left:530.901000px;}
.x1b{left:537.448500px;}
.x2a{left:539.914500px;}
.x2b{left:546.292500px;}
.x2c{left:549.949500px;}
.x2d{left:554.712000px;}
.x1c{left:556.837500px;}
.x1d{left:566.022000px;}
.x2e{left:568.233000px;}
.x2f{left:572.740500px;}
.x12{left:588.813000px;}
.x13{left:598.336500px;}
.x3a{left:648.255000px;}
.x10{left:652.620000px;}
.x3b{left:655.993500px;}
.x1e{left:681.420000px;}
.x1f{left:690.519000px;}
.x14{left:722.070000px;}
.x15{left:731.593500px;}
.x16{left:739.246500px;}
.x17{left:749.452500px;}
@media print{
.v6{vertical-align:-6.346667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.421605pt;}
.v1{vertical-align:3.627145pt;}
.va{vertical-align:15.412510pt;}
.v5{vertical-align:22.354769pt;}
.v4{vertical-align:28.706769pt;}
.v9{vertical-align:51.706667pt;}
.v8{vertical-align:58.058667pt;}
.v3{vertical-align:59.565339pt;}
.v7{vertical-align:88.896000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.028101pt;}
.ls4{letter-spacing:0.031301pt;}
.ls6{letter-spacing:0.033434pt;}
.ls3{letter-spacing:2.153939pt;}
.ls5{letter-spacing:2.547509pt;}
.lsd{letter-spacing:2.659200pt;}
.ls8{letter-spacing:2.852576pt;}
.lse{letter-spacing:9.494140pt;}
.lsf{letter-spacing:11.337200pt;}
.ls10{letter-spacing:11.449416pt;}
.ls2{letter-spacing:11.714984pt;}
.lsb{letter-spacing:12.033600pt;}
.lsc{letter-spacing:12.035200pt;}
.ls0{letter-spacing:16.922845pt;}
.lsa{letter-spacing:22.027231pt;}
.ls9{letter-spacing:1964.155695pt;}
.wsd{word-spacing:-34.004800pt;}
.ws8{word-spacing:-33.623195pt;}
.wsf{word-spacing:-21.933096pt;}
.ws2{word-spacing:-21.538128pt;}
.ws3{word-spacing:-12.454610pt;}
.ws4{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.wsb{word-spacing:-9.963406pt;}
.ws6{word-spacing:-8.943403pt;}
.wsa{word-spacing:-8.501200pt;}
.ws9{word-spacing:-0.612086pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:3.256052pt;}
.wse{word-spacing:11.262390pt;}
.wsc{word-spacing:11.361004pt;}
.ws1{word-spacing:13.007040pt;}
._5{margin-left:-15.416526pt;}
._f{margin-left:-4.118668pt;}
._d{margin-left:-3.216151pt;}
._a{margin-left:-2.215447pt;}
._2{margin-left:-1.001882pt;}
._4{width:0.920406pt;}
._3{width:1.825489pt;}
._1{width:2.854881pt;}
._b{width:4.070438pt;}
._6{width:5.271677pt;}
._7{width:6.281635pt;}
._8{width:8.171482pt;}
._9{width:9.085800pt;}
._e{width:18.060658pt;}
._10{width:19.249436pt;}
._24{width:21.324410pt;}
._c{width:26.537245pt;}
._0{width:85.004832pt;}
._16{width:267.291330pt;}
._1e{width:271.291419pt;}
._17{width:276.639249pt;}
._1f{width:277.642391pt;}
._1c{width:296.436844pt;}
._14{width:304.019914pt;}
._13{width:312.113057pt;}
._18{width:315.278904pt;}
._1d{width:330.087994pt;}
._11{width:357.597877pt;}
._1b{width:364.398837pt;}
._22{width:367.493274pt;}
._20{width:407.448914pt;}
._23{width:417.344311pt;}
._15{width:432.000380pt;}
._19{width:459.544268pt;}
._1a{width:490.250602pt;}
._21{width:510.225022pt;}
._12{width:514.206984pt;}
.fsb{font-size:27.629333pt;}
.fsc{font-size:29.753600pt;}
.fs9{font-size:31.882133pt;}
.fs4{font-size:34.004800pt;}
.fs8{font-size:34.005333pt;}
.fs5{font-size:37.193067pt;}
.fs0{font-size:38.256000pt;}
.fs3{font-size:39.402133pt;}
.fs6{font-size:42.507200pt;}
.fsa{font-size:45.482667pt;}
.fs2{font-size:56.322133pt;}
.fs1{font-size:71.730667pt;}
.fs7{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:47.198006pt;}
.y4{bottom:70.678006pt;}
.y99{bottom:74.834699pt;}
.y72{bottom:74.835785pt;}
.y120{bottom:74.838567pt;}
.y3{bottom:83.424673pt;}
.y98{bottom:87.609333pt;}
.y71{bottom:88.744141pt;}
.y2{bottom:96.011340pt;}
.y70{bottom:102.729009pt;}
.y11f{bottom:102.731792pt;}
.y35{bottom:108.850432pt;}
.y126{bottom:112.100832pt;}
.y6f{bottom:116.637365pt;}
.y166{bottom:116.871067pt;}
.y34{bottom:121.625067pt;}
.y125{bottom:124.875467pt;}
.y165{bottom:127.453361pt;}
.y6e{bottom:130.621171pt;}
.y11e{bottom:134.933121pt;}
.y164{bottom:138.111315pt;}
.y163{bottom:148.694459pt;}
.y11d{bottom:148.916927pt;}
.y30{bottom:149.518254pt;}
.y6d{bottom:158.513333pt;}
.y6c{bottom:158.514149pt;}
.y162{bottom:159.352414pt;}
.y2f{bottom:162.217333pt;}
.y11c{bottom:162.825283pt;}
.y161{bottom:170.010368pt;}
.y6b{bottom:172.422505pt;}
.y11b{bottom:176.810152pt;}
.y160{bottom:180.592662pt;}
.y6a{bottom:186.406311pt;}
.y11a{bottom:190.718508pt;}
.y15f{bottom:191.251466pt;}
.y2e{bottom:198.729012pt;}
.y69{bottom:200.314667pt;}
.y68{bottom:200.315838pt;}
.y15e{bottom:201.833760pt;}
.y119{bottom:204.702314pt;}
.y15d{bottom:212.491715pt;}
.y2d{bottom:212.637367pt;}
.y67{bottom:214.299644pt;}
.y118{bottom:218.610670pt;}
.y15c{bottom:223.150519pt;}
.y2c{bottom:226.622236pt;}
.y66{bottom:228.208000pt;}
.y65{bottom:228.208194pt;}
.y117{bottom:232.595538pt;}
.y15b{bottom:233.732813pt;}
.y2b{bottom:240.530592pt;}
.y64{bottom:242.192000pt;}
.y63{bottom:242.193171pt;}
.y15a{bottom:244.390767pt;}
.y116{bottom:246.503894pt;}
.y2a{bottom:254.514398pt;}
.y159{bottom:254.973061pt;}
.y62{bottom:256.101527pt;}
.y158{bottom:265.631866pt;}
.y29{bottom:268.422754pt;}
.y61{bottom:270.085333pt;}
.y60{bottom:270.088808pt;}
.y115{bottom:274.396056pt;}
.y157{bottom:276.214159pt;}
.y28{bottom:282.407623pt;}
.y5f{bottom:283.997164pt;}
.y156{bottom:286.872114pt;}
.y27{bottom:296.315979pt;}
.y155{bottom:297.530068pt;}
.y5e{bottom:297.980970pt;}
.y114{bottom:303.346647pt;}
.y154{bottom:308.113212pt;}
.y26{bottom:310.299785pt;}
.y113{bottom:317.331516pt;}
.y153{bottom:318.771167pt;}
.y25{bottom:324.208141pt;}
.y5d{bottom:325.874195pt;}
.y152{bottom:329.353460pt;}
.y112{bottom:331.239872pt;}
.y97{bottom:331.691644pt;}
.y24{bottom:338.193009pt;}
.y5c{bottom:339.782550pt;}
.y151{bottom:340.011415pt;}
.y95{bottom:343.861333pt;}
.y111{bottom:345.223678pt;}
.y96{bottom:345.600000pt;}
.y94{bottom:345.601171pt;}
.y150{bottom:350.670219pt;}
.y23{bottom:352.101365pt;}
.y5b{bottom:353.766357pt;}
.y110{bottom:359.132034pt;}
.y93{bottom:359.584977pt;}
.y14f{bottom:361.252513pt;}
.y22{bottom:366.085171pt;}
.y5a{bottom:367.674712pt;}
.y91{bottom:371.754667pt;}
.y14e{bottom:371.910468pt;}
.y10f{bottom:373.116903pt;}
.y92{bottom:373.493333pt;}
.y90{bottom:373.494037pt;}
.y102{bottom:376.971678pt;}
.y59{bottom:381.659581pt;}
.y14d{bottom:382.493612pt;}
.ybf{bottom:383.700293pt;}
.y10e{bottom:387.025259pt;}
.yeb{bottom:390.880034pt;}
.y14c{bottom:393.151566pt;}
.y21{bottom:393.977333pt;}
.y8f{bottom:394.960000pt;}
.y58{bottom:395.567937pt;}
.ybe{bottom:397.684099pt;}
.y10d{bottom:401.009065pt;}
.y8e{bottom:402.297974pt;}
.y14b{bottom:403.809520pt;}
.yea{bottom:404.864903pt;}
.ydd{bottom:410.384611pt;}
.ybd{bottom:411.593518pt;}
.y14a{bottom:414.391814pt;}
.y10c{bottom:414.917421pt;}
.ye9{bottom:418.773259pt;}
.y57{bottom:423.460099pt;}
.ydc{bottom:424.369480pt;}
.y149{bottom:425.050619pt;}
.ybc{bottom:425.577324pt;}
.y10b{bottom:428.902289pt;}
.y8d{bottom:430.643901pt;}
.ye8{bottom:432.757065pt;}
.y148{bottom:435.632912pt;}
.y56{bottom:437.444968pt;}
.ydb{bottom:438.277836pt;}
.ybb{bottom:439.485680pt;}
.y10a{bottom:442.810645pt;}
.y20{bottom:443.567970pt;}
.y8c{bottom:444.628769pt;}
.y147{bottom:446.290867pt;}
.ye7{bottom:446.665421pt;}
.yda{bottom:452.261642pt;}
.yba{bottom:453.469486pt;}
.y1f{bottom:456.342605pt;}
.y109{bottom:456.794451pt;}
.y146{bottom:456.873161pt;}
.y8b{bottom:458.537125pt;}
.ye6{bottom:460.650289pt;}
.y55{bottom:465.337130pt;}
.yd9{bottom:466.169998pt;}
.yb9{bottom:467.378904pt;}
.y145{bottom:467.531965pt;}
.y1e{bottom:469.041684pt;}
.y108{bottom:470.702807pt;}
.y8a{bottom:472.520931pt;}
.ye5{bottom:474.558645pt;}
.y144{bottom:478.189920pt;}
.yd8{bottom:480.154867pt;}
.yb8{bottom:481.362711pt;}
.y1d{bottom:481.816319pt;}
.y107{bottom:484.687676pt;}
.y89{bottom:486.429287pt;}
.ye4{bottom:488.542451pt;}
.y143{bottom:488.772213pt;}
.yd7{bottom:494.063222pt;}
.y1c{bottom:494.590954pt;}
.yb7{bottom:495.271066pt;}
.y106{bottom:498.596032pt;}
.y142{bottom:499.431018pt;}
.y88{bottom:500.414156pt;}
.ye3{bottom:502.450807pt;}
.y54{bottom:504.568087pt;}
.y1b{bottom:507.290033pt;}
.yd6{bottom:508.047028pt;}
.yb6{bottom:509.254872pt;}
.y141{bottom:510.013312pt;}
.y105{bottom:512.579838pt;}
.y87{bottom:514.322512pt;}
.ye2{bottom:516.435676pt;}
.y53{bottom:518.552956pt;}
.y1a{bottom:520.064668pt;}
.y140{bottom:520.671266pt;}
.yd5{bottom:521.955384pt;}
.yb5{bottom:523.164291pt;}
.y104{bottom:526.488194pt;}
.y86{bottom:528.306318pt;}
.ye1{bottom:530.344032pt;}
.y12{bottom:530.722661pt;}
.y13f{bottom:531.329221pt;}
.y124{bottom:532.157365pt;}
.y52{bottom:532.461312pt;}
.y19{bottom:532.839302pt;}
.yd4{bottom:535.940253pt;}
.yb4{bottom:537.148097pt;}
.y103{bottom:540.472000pt;}
.y13e{bottom:541.912365pt;}
.y11{bottom:542.136372pt;}
.y85{bottom:542.214674pt;}
.ye0{bottom:544.327838pt;}
.y123{bottom:544.932000pt;}
.y18{bottom:545.538382pt;}
.y51{bottom:546.445118pt;}
.yd3{bottom:549.848609pt;}
.y13d{bottom:552.570319pt;}
.y10{bottom:553.550934pt;}
.y84{bottom:556.199543pt;}
.ydf{bottom:558.236194pt;}
.y17{bottom:558.313016pt;}
.y50{bottom:560.353474pt;}
.y13c{bottom:563.152613pt;}
.yd2{bottom:563.832415pt;}
.yf{bottom:564.964645pt;}
.yb3{bottom:565.040259pt;}
.y83{bottom:570.107898pt;}
.y122{bottom:570.330699pt;}
.y16{bottom:571.087651pt;}
.yde{bottom:572.220000pt;}
.y13b{bottom:573.810567pt;}
.y4f{bottom:574.338343pt;}
.ye{bottom:576.378356pt;}
.yd1{bottom:577.740771pt;}
.y121{bottom:583.105333pt;}
.y15{bottom:583.862286pt;}
.y82{bottom:584.091705pt;}
.y13a{bottom:584.393711pt;}
.yd{bottom:587.792917pt;}
.y4e{bottom:588.246699pt;}
.yd0{bottom:591.725640pt;}
.y139{bottom:595.051665pt;}
.y14{bottom:596.561365pt;}
.y81{bottom:598.075511pt;}
.yc{bottom:599.206628pt;}
.y4d{bottom:602.230505pt;}
.y138{bottom:605.709620pt;}
.yb2{bottom:605.858861pt;}
.y101{bottom:608.202764pt;}
.y13{bottom:609.336000pt;}
.yb{bottom:610.696000pt;}
.y4c{bottom:616.138861pt;}
.y137{bottom:616.291914pt;}
.ycf{bottom:619.617802pt;}
.y100{bottom:619.692135pt;}
.yaf{bottom:619.842311pt;}
.yb1{bottom:619.842667pt;}
.yb0{bottom:624.529333pt;}
.y80{bottom:625.968735pt;}
.y136{bottom:626.950718pt;}
.y4a{bottom:628.384000pt;}
.y4b{bottom:630.122667pt;}
.y49{bottom:630.125940pt;}
.yff{bottom:631.105847pt;}
.yae{bottom:633.750667pt;}
.yac{bottom:633.752032pt;}
.ya{bottom:635.338667pt;}
.y135{bottom:637.533012pt;}
.yad{bottom:638.513333pt;}
.yfe{bottom:642.520408pt;}
.y48{bottom:644.034295pt;}
.yab{bottom:647.735838pt;}
.y134{bottom:648.190966pt;}
.y7f{bottom:653.860897pt;}
.yfd{bottom:653.934119pt;}
.y47{bottom:658.019164pt;}
.y133{bottom:658.849771pt;}
.yce{bottom:660.738204pt;}
.yaa{bottom:661.719644pt;}
.yfc{bottom:665.347830pt;}
.y132{bottom:669.432065pt;}
.y46{bottom:671.927520pt;}
.ycd{bottom:674.647623pt;}
.ya9{bottom:675.630289pt;}
.yfb{bottom:676.762391pt;}
.y9{bottom:679.332000pt;}
.y131{bottom:680.090019pt;}
.y7e{bottom:683.038902pt;}
.y45{bottom:685.911326pt;}
.ycc{bottom:688.631429pt;}
.ya8{bottom:689.614096pt;}
.y130{bottom:690.672313pt;}
.yfa{bottom:694.298667pt;}
.y7d{bottom:697.022708pt;}
.y44{bottom:699.895132pt;}
.y7{bottom:701.253333pt;}
.y12f{bottom:701.331118pt;}
.ycb{bottom:702.539785pt;}
.ya7{bottom:703.522451pt;}
.y8{bottom:707.528000pt;}
.y7c{bottom:710.932127pt;}
.yf9{bottom:711.836064pt;}
.y12e{bottom:711.913411pt;}
.y43{bottom:713.804551pt;}
.yca{bottom:716.523591pt;}
.ya6{bottom:717.506258pt;}
.y12d{bottom:722.571366pt;}
.yf8{bottom:724.610699pt;}
.y7b{bottom:724.915933pt;}
.y42{bottom:727.788357pt;}
.yc9{bottom:730.433009pt;}
.ya5{bottom:731.415676pt;}
.y12c{bottom:733.229320pt;}
.y6{bottom:734.589081pt;}
.yf7{bottom:737.385333pt;}
.y7a{bottom:738.824289pt;}
.y41{bottom:741.696713pt;}
.y12b{bottom:743.812464pt;}
.yc8{bottom:744.416816pt;}
.ya4{bottom:745.399482pt;}
.y79{bottom:752.808095pt;}
.y12a{bottom:754.470418pt;}
.y5{bottom:757.568000pt;}
.yc7{bottom:758.325171pt;}
.ya3{bottom:759.307838pt;}
.y129{bottom:765.052712pt;}
.y78{bottom:766.716451pt;}
.y40{bottom:769.588875pt;}
.yc6{bottom:772.308977pt;}
.ya2{bottom:773.291644pt;}
.y128{bottom:775.710667pt;}
.y77{bottom:780.701319pt;}
.yf6{bottom:782.288097pt;}
.yc5{bottom:786.217333pt;}
.yc4{bottom:786.218343pt;}
.ya1{bottom:787.201539pt;}
.yf5{bottom:793.701808pt;}
.y76{bottom:794.609675pt;}
.y3f{bottom:797.482099pt;}
.yc3{bottom:800.202149pt;}
.y127{bottom:800.203623pt;}
.ya0{bottom:801.186408pt;}
.yf4{bottom:805.115519pt;}
.y75{bottom:808.593481pt;}
.yc2{bottom:814.110505pt;}
.y9f{bottom:815.094764pt;}
.yf3{bottom:816.530080pt;}
.y33{bottom:827.641333pt;}
.yf2{bottom:827.943792pt;}
.yc1{bottom:828.094311pt;}
.y3e{bottom:828.095785pt;}
.y9e{bottom:829.078570pt;}
.y74{bottom:836.486706pt;}
.yf1{bottom:839.358353pt;}
.yc0{bottom:842.002667pt;}
.y3d{bottom:842.004141pt;}
.yf0{bottom:850.847725pt;}
.y3c{bottom:855.989009pt;}
.y9d{bottom:856.971795pt;}
.y32{bottom:863.546667pt;}
.yef{bottom:868.384000pt;}
.y3b{bottom:869.897365pt;}
.y3a{bottom:883.881171pt;}
.yee{bottom:885.845397pt;}
.y9b{bottom:896.050667pt;}
.y9c{bottom:897.789333pt;}
.y39{bottom:897.789527pt;}
.yed{bottom:898.620032pt;}
.y31{bottom:901.341333pt;}
.y9a{bottom:909.958667pt;}
.yec{bottom:911.394667pt;}
.y38{bottom:911.773333pt;}
.y1{bottom:937.451340pt;}
.y73{bottom:937.852000pt;}
.y36{bottom:937.864673pt;}
.hd{height:28.021406pt;}
.h6{height:29.887031pt;}
.hc{height:29.887500pt;}
.he{height:30.291456pt;}
.hb{height:30.647691pt;}
.h7{height:32.689219pt;}
.h2{height:33.623437pt;}
.h5{height:34.630781pt;}
.h8{height:37.359844pt;}
.h11{height:37.697957pt;}
.h12{height:37.700288pt;}
.h4{height:49.501875pt;}
.hf{height:61.265627pt;}
.h3{height:63.044531pt;}
.ha{height:65.378906pt;}
.h10{height:90.596288pt;}
.h1{height:990.000000pt;}
.h9{height:990.236000pt;}
.h0{height:990.236003pt;}
.w2{width:725.666667pt;}
.w3{width:725.669333pt;}
.w0{width:725.669352pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.x2{left:51.853333pt;}
.x43{left:56.541600pt;}
.xa{left:58.733733pt;}
.x40{left:59.943200pt;}
.x9{left:67.954968pt;}
.x35{left:71.281867pt;}
.x44{left:73.850893pt;}
.x22{left:74.909350pt;}
.x23{left:83.904732pt;}
.x36{left:86.248800pt;}
.x37{left:88.440933pt;}
.x47{left:94.789349pt;}
.x3{left:100.912183pt;}
.x38{left:104.466133pt;}
.x39{left:108.396800pt;}
.x46{left:110.512318pt;}
.x24{left:124.648800pt;}
.x42{left:125.857213pt;}
.x26{left:126.765333pt;}
.x4{left:127.973560pt;}
.x27{left:134.476000pt;}
.x48{left:140.143251pt;}
.x25{left:150.501333pt;}
.x28{left:162.217333pt;}
.x29{left:169.700000pt;}
.x3e{left:191.924000pt;}
.x1{left:195.333333pt;}
.x3f{left:200.088000pt;}
.x49{left:229.415202pt;}
.x5{left:231.306667pt;}
.x6{left:236.522667pt;}
.xf{left:239.470667pt;}
.x18{left:249.676000pt;}
.xb{left:253.149769pt;}
.x3c{left:254.966667pt;}
.x19{left:257.840000pt;}
.x8{left:263.660000pt;}
.xd{left:270.462667pt;}
.x45{left:272.727966pt;}
.x7{left:325.718621pt;}
.xe{left:341.216000pt;}
.x41{left:357.840000pt;}
.x11{left:360.226667pt;}
.x30{left:391.785333pt;}
.x31{left:396.018667pt;}
.x32{left:410.985333pt;}
.x33{left:413.102667pt;}
.x20{left:428.673333pt;}
.x34{left:433.360000pt;}
.x21{left:437.745333pt;}
.xc{left:440.310554pt;}
.x3d{left:442.432000pt;}
.x1a{left:471.912000pt;}
.x1b{left:477.732000pt;}
.x2a{left:479.924000pt;}
.x2b{left:485.593333pt;}
.x2c{left:488.844000pt;}
.x2d{left:493.077333pt;}
.x1c{left:494.966667pt;}
.x1d{left:503.130667pt;}
.x2e{left:505.096000pt;}
.x2f{left:509.102667pt;}
.x12{left:523.389333pt;}
.x13{left:531.854667pt;}
.x3a{left:576.226667pt;}
.x10{left:580.106667pt;}
.x3b{left:583.105333pt;}
.x1e{left:605.706667pt;}
.x1f{left:613.794667pt;}
.x14{left:641.840000pt;}
.x15{left:650.305333pt;}
.x16{left:657.108000pt;}
.x17{left:666.180000pt;}
}




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