
    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_3b40770de5e8a35eea331668.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_7855d8423281e7726b45bf3c.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_126958155020f46c96a43822.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bd1cebc8a3e11f876902c21d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a50e5eee5a7097e38fb11274.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9c9ad0ec989fdf7e17680895.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d5c224990bdc0318b6e2cd0f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d8ae3b68f27c7804782dc44d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6f407320a7729cb10c0a6efb.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bbb9488c18407f53f5cea1e1.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5ffa3f77163ccb825b4ed23b.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.m2{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);}
.m4{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,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;}
.v1{vertical-align:2.379486px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:19.038201px;}
.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;}
}
.ws4{word-spacing:-16.825818px;}
.ws7{word-spacing:-14.011436px;}
.ws6{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.620260px;}
.ws9{word-spacing:-11.208832px;}
.ws5{word-spacing:-10.759500px;}
.ws8{word-spacing:-10.061328px;}
.wsa{word-spacing:-9.563850px;}
.ws2{word-spacing:-8.696826px;}
.ws3{word-spacing:-8.069220px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-17.343592px;}
._b{margin-left:-4.425435px;}
._8{margin-left:-3.090128px;}
._4{margin-left:-2.078735px;}
._5{margin-left:-1.002785px;}
._1{width:1.412197px;}
._2{width:3.356995px;}
._e{width:5.114194px;}
._7{width:6.503042px;}
._6{width:7.669372px;}
._9{width:9.653423px;}
._0{width:11.625654px;}
._c{width:12.849395px;}
._30{width:14.104280px;}
._13{width:15.952952px;}
._10{width:17.817956px;}
._11{width:18.908265px;}
._12{width:20.318240px;}
._d{width:22.040515px;}
._a{width:30.193927px;}
._f{width:31.202941px;}
._1d{width:56.809269px;}
._15{width:79.265189px;}
._2a{width:298.644606px;}
._27{width:299.727233px;}
._2b{width:318.621576px;}
._26{width:356.919056px;}
._2f{width:387.179078px;}
._18{width:424.868298px;}
._2c{width:443.131426px;}
._29{width:444.137543px;}
._16{width:447.400729px;}
._1a{width:454.669255px;}
._1e{width:478.770157px;}
._28{width:482.396768px;}
._21{width:499.890390px;}
._19{width:506.620088px;}
._1c{width:515.036276px;}
._2d{width:517.622341px;}
._25{width:524.209921px;}
._17{width:534.278742px;}
._2e{width:553.678055px;}
._14{width:583.322165px;}
._20{width:620.203623px;}
._1b{width:622.189651px;}
._24{width:729.572559px;}
._22{width:732.059160px;}
._23{width:733.283333px;}
._1f{width:1058.492488px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(46,116,163);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:26.761800px;}
.fs6{font-size:29.886000px;}
.fsc{font-size:38.255400px;}
.fs10{font-size:38.256000px;}
.fsd{font-size:41.842200px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:42.237000px;}
.fs5{font-size:43.038000px;}
.fs9{font-size:44.327400px;}
.fse{font-size:47.820600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:63.362400px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:80.697000px;}
.fsf{font-size:83.685000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:0.000732px;}
.y5e{bottom:47.430000px;}
.y5{bottom:66.525004px;}
.y197{bottom:78.407322px;}
.y9e{bottom:78.416181px;}
.y162{bottom:78.491250px;}
.y27{bottom:83.160000px;}
.yd0{bottom:83.262798px;}
.yff{bottom:85.300947px;}
.y174{bottom:89.123578px;}
.y196{bottom:90.397521px;}
.y15d{bottom:93.126982px;}
.y26{bottom:93.630000px;}
.y9d{bottom:94.147962px;}
.yc9{bottom:95.082855px;}
.y4{bottom:97.125005px;}
.yfe{bottom:98.227446px;}
.ycf{bottom:98.995776px;}
.y195{bottom:102.302601px;}
.y173{bottom:104.856555px;}
.y25{bottom:105.630000px;}
.y15c{bottom:108.773882px;}
.y9c{bottom:109.794863px;}
.yc8{bottom:110.730951px;}
.yfd{bottom:111.067871px;}
.y194{bottom:114.292800px;}
.yce{bottom:114.642676px;}
.y5c{bottom:119.905636px;}
.y172{bottom:120.503456px;}
.yfc{bottom:123.908296px;}
.y15b{bottom:124.505664px;}
.y9b{bottom:125.526645px;}
.yc7{bottom:126.462733px;}
.ycd{bottom:130.374458px;}
.y5b{bottom:134.192100px;}
.yfb{bottom:136.749678px;}
.y22{bottom:139.264499px;}
.y15a{bottom:140.152564px;}
.y9a{bottom:141.174740px;}
.y193{bottom:141.848181px;}
.yc6{bottom:142.109633px;}
.ycc{bottom:146.021358px;}
.yfa{bottom:149.590103px;}
.y171{bottom:151.882138px;}
.y159{bottom:155.885541px;}
.y99{bottom:156.906522px;}
.yc5{bottom:157.841415px;}
.y57{bottom:159.703536px;}
.ycb{bottom:161.753140px;}
.yf9{bottom:162.431484px;}
.y158{bottom:171.532442px;}
.y98{bottom:172.553423px;}
.yc4{bottom:173.574392px;}
.y56{bottom:174.075000px;}
.yf8{bottom:175.271909px;}
.y192{bottom:177.053706px;}
.y170{bottom:183.262016px;}
.y157{bottom:187.264224px;}
.yf7{bottom:188.112334px;}
.y97{bottom:188.285205px;}
.yc3{bottom:189.221293px;}
.y191{bottom:192.785488px;}
.y117{bottom:195.336000px;}
.y19{bottom:196.933500px;}
.y16f{bottom:198.993798px;}
.yf6{bottom:201.038834px;}
.y156{bottom:202.911124px;}
.y96{bottom:203.933300px;}
.yc2{bottom:204.953075px;}
.y190{bottom:208.433584px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.yf5{bottom:213.879259px;}
.y16e{bottom:214.640698px;}
.y155{bottom:218.644101px;}
.y95{bottom:219.665082px;}
.yc1{bottom:220.599975px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.yf4{bottom:226.719684px;}
.y54{bottom:227.059514px;}
.y16d{bottom:230.372480px;}
.y154{bottom:234.291002px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y94{bottom:235.311983px;}
.yc0{bottom:236.332952px;}
.yf3{bottom:239.561065px;}
.y18f{bottom:239.897148px;}
.y53{bottom:242.791296px;}
.y16c{bottom:246.020576px;}
.y153{bottom:250.022784px;}
.y93{bottom:251.043764px;}
.ybf{bottom:251.979853px;}
.yf2{bottom:252.401490px;}
.y52{bottom:258.438197px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y16b{bottom:261.752358px;}
.yf1{bottom:265.242872px;}
.y92{bottom:266.691860px;}
.ybe{bottom:267.711635px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y51{bottom:274.169978px;}
.y18e{bottom:275.103869px;}
.y16a{bottom:277.399258px;}
.yf0{bottom:278.083297px;}
.y152{bottom:281.402661px;}
.y91{bottom:282.423642px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y50{bottom:289.818074px;}
.y18d{bottom:290.835651px;}
.yef{bottom:290.923722px;}
.y169{bottom:293.131040px;}
.y151{bottom:297.049562px;}
.y90{bottom:298.070543px;}
.ybd{bottom:299.091512px;}
.yee{bottom:303.850221px;}
.y4f{bottom:305.549856px;}
.y18c{bottom:306.482551px;}
.y168{bottom:308.779136px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y150{bottom:312.781343px;}
.y8f{bottom:313.802324px;}
.ybc{bottom:314.738413px;}
.yed{bottom:316.690646px;}
.y4e{bottom:321.196756px;}
.y18b{bottom:322.214333px;}
.y13c{bottom:322.475775px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y167{bottom:324.510917px;}
.y14f{bottom:328.428244px;}
.y8e{bottom:329.449225px;}
.yec{bottom:329.532028px;}
.ybb{bottom:330.470195px;}
.y4d{bottom:336.928538px;}
.y18a{bottom:337.861233px;}
.y13b{bottom:338.207557px;}
.y166{bottom:340.157818px;}
.yeb{bottom:342.372453px;}
.y14e{bottom:344.160026px;}
.y8d{bottom:345.182202px;}
.yba{bottom:346.117095px;}
.y10{bottom:348.133500px;}
.y4c{bottom:352.576634px;}
.y189{bottom:353.594211px;}
.y13a{bottom:353.940534px;}
.yea{bottom:355.212878px;}
.y165{bottom:355.889600px;}
.y14d{bottom:359.808122px;}
.y8c{bottom:360.829102px;}
.yb9{bottom:361.848877px;}
.ye9{bottom:368.054259px;}
.y4b{bottom:368.308416px;}
.y188{bottom:369.241111px;}
.y139{bottom:369.587434px;}
.y164{bottom:371.536500px;}
.y14c{bottom:375.539903px;}
.y8b{bottom:376.560884px;}
.yb8{bottom:377.496973px;}
.ye8{bottom:380.894684px;}
.y4a{bottom:383.955316px;}
.y187{bottom:384.971698px;}
.y138{bottom:385.319216px;}
.yf{bottom:386.785499px;}
.y14b{bottom:391.186804px;}
.y8a{bottom:392.207785px;}
.yb7{bottom:393.228754px;}
.ye7{bottom:393.820227px;}
.y49{bottom:399.687098px;}
.y186{bottom:400.618598px;}
.y137{bottom:400.966116px;}
.y19a{bottom:405.213036px;}
.ye6{bottom:406.661609px;}
.y89{bottom:407.940762px;}
.ye{bottom:408.044999px;}
.yb6{bottom:408.875655px;}
.y48{bottom:415.420076px;}
.y185{bottom:416.351575px;}
.y136{bottom:416.699094px;}
.ye5{bottom:419.502034px;}
.y199{bottom:419.584500px;}
.y14a{bottom:422.566681px;}
.y88{bottom:423.587662px;}
.yb5{bottom:424.607437px;}
.y47{bottom:431.066976px;}
.y184{bottom:432.083357px;}
.ye4{bottom:432.343415px;}
.y135{bottom:432.345994px;}
.y149{bottom:438.298463px;}
.y87{bottom:439.319444px;}
.yb4{bottom:440.255532px;}
.ye3{bottom:445.183840px;}
.y46{bottom:446.798758px;}
.y183{bottom:447.730257px;}
.y134{bottom:448.077776px;}
.y148{bottom:453.945364px;}
.y86{bottom:454.966345px;}
.ye2{bottom:458.024265px;}
.y116{bottom:459.382500px;}
.y45{bottom:462.445658px;}
.y182{bottom:463.462039px;}
.y133{bottom:463.724676px;}
.y147{bottom:469.677146px;}
.y85{bottom:470.699322px;}
.ye1{bottom:470.865647px;}
.yb3{bottom:471.634215px;}
.y44{bottom:478.178636px;}
.y181{bottom:479.110135px;}
.y132{bottom:479.456458px;}
.ye0{bottom:483.706072px;}
.yd{bottom:484.864502px;}
.y146{bottom:485.325241px;}
.y84{bottom:486.346222px;}
.y43{bottom:493.825536px;}
.y180{bottom:494.841917px;}
.y131{bottom:495.104554px;}
.ydf{bottom:496.632571px;}
.y145{bottom:501.057023px;}
.y83{bottom:502.078004px;}
.yc{bottom:502.864502px;}
.yb2{bottom:503.014092px;}
.yde{bottom:509.472996px;}
.y42{bottom:509.557318px;}
.y17f{bottom:510.488817px;}
.y130{bottom:510.836336px;}
.y144{bottom:516.703924px;}
.y82{bottom:517.724904px;}
.yb1{bottom:518.745874px;}
.yb{bottom:520.864502px;}
.ydd{bottom:522.313421px;}
.y55{bottom:525.204218px;}
.y17e{bottom:526.220599px;}
.y12f{bottom:526.483236px;}
.y143{bottom:532.435705px;}
.y81{bottom:533.457882px;}
.yb0{bottom:534.392775px;}
.ydc{bottom:535.154803px;}
.ya{bottom:538.864499px;}
.y41{bottom:540.936000px;}
.y17d{bottom:541.868695px;}
.y12e{bottom:542.215018px;}
.ydb{bottom:547.995228px;}
.y142{bottom:548.082606px;}
.y80{bottom:549.189664px;}
.yaf{bottom:550.124557px;}
.y9{bottom:556.864499px;}
.y17c{bottom:557.600477px;}
.y12d{bottom:557.863114px;}
.yda{bottom:560.836609px;}
.y141{bottom:563.815583px;}
.y7f{bottom:564.836564px;}
.yae{bottom:565.771457px;}
.y17b{bottom:573.247377px;}
.y12c{bottom:573.594896px;}
.yd9{bottom:573.677034px;}
.y140{bottom:579.462484px;}
.y7e{bottom:580.568346px;}
.yad{bottom:581.504434px;}
.yd8{bottom:586.517459px;}
.y17a{bottom:588.979159px;}
.y12b{bottom:589.241796px;}
.y13f{bottom:595.194265px;}
.y7d{bottom:596.215246px;}
.yac{bottom:597.151335px;}
.yd7{bottom:599.443959px;}
.y40{bottom:600.379894px;}
.y179{bottom:604.627255px;}
.y12a{bottom:604.973578px;}
.y13e{bottom:610.927243px;}
.y7c{bottom:611.948224px;}
.yd6{bottom:612.284384px;}
.yab{bottom:612.883116px;}
.y3f{bottom:614.751359px;}
.y178{bottom:620.359037px;}
.y129{bottom:620.620478px;}
.yd5{bottom:625.124809px;}
.y13d{bottom:626.574143px;}
.y7b{bottom:627.595124px;}
.yaa{bottom:628.530017px;}
.y3e{bottom:629.122823px;}
.y177{bottom:636.005937px;}
.y128{bottom:636.353456px;}
.yd4{bottom:637.966190px;}
.y7a{bottom:643.326906px;}
.y3d{bottom:643.409287px;}
.ya9{bottom:644.262994px;}
.y8{bottom:645.510000px;}
.y176{bottom:651.737719px;}
.y127{bottom:652.000356px;}
.yd3{bottom:657.694500px;}
.y3c{bottom:657.780751px;}
.y79{bottom:658.973806px;}
.ya8{bottom:659.909894px;}
.y163{bottom:660.246000px;}
.y7{bottom:666.771000px;}
.y175{bottom:667.384619px;}
.y126{bottom:667.732138px;}
.y3b{bottom:672.152215px;}
.y78{bottom:674.706784px;}
.ya7{bottom:675.641676px;}
.yd2{bottom:677.424036px;}
.y125{bottom:683.379038px;}
.y3a{bottom:686.523679px;}
.y77{bottom:690.353684px;}
.ya6{bottom:691.288577px;}
.yd1{bottom:691.795500px;}
.y34{bottom:695.452800px;}
.y124{bottom:699.112016px;}
.y39{bottom:700.810143px;}
.y198{bottom:701.064000px;}
.y76{bottom:706.085466px;}
.ya5{bottom:707.021554px;}
.y33{bottom:708.293225px;}
.y123{bottom:714.758916px;}
.y38{bottom:715.181608px;}
.y32{bottom:721.133650px;}
.y75{bottom:721.732366px;}
.ya4{bottom:722.753336px;}
.y6{bottom:726.298500px;}
.y37{bottom:729.553072px;}
.y122{bottom:730.490698px;}
.y31{bottom:733.975032px;}
.y74{bottom:737.465344px;}
.ya3{bottom:738.400236px;}
.y36{bottom:743.839536px;}
.y121{bottom:746.137598px;}
.y30{bottom:746.900575px;}
.y115{bottom:750.642036px;}
.y3{bottom:752.599495px;}
.y73{bottom:753.112244px;}
.ya2{bottom:754.132018px;}
.y35{bottom:758.211000px;}
.y2f{bottom:759.741000px;}
.y120{bottom:761.870576px;}
.y114{bottom:765.013500px;}
.ya1{bottom:769.780114px;}
.y11f{bottom:777.517476px;}
.y72{bottom:784.490926px;}
.ya0{bottom:785.511896px;}
.y113{bottom:786.190728px;}
.y2e{bottom:787.549500px;}
.y11e{bottom:793.249258px;}
.y112{bottom:799.116271px;}
.y9f{bottom:801.158796px;}
.y11d{bottom:808.896158px;}
.y111{bottom:811.957652px;}
.y1b3{bottom:813.999674px;}
.y71{bottom:816.890578px;}
.y11c{bottom:824.629136px;}
.y110{bottom:824.798077px;}
.y1b2{bottom:825.904755px;}
.y70{bottom:832.537478px;}
.y2d{bottom:836.958000px;}
.y10f{bottom:837.639459px;}
.y1b1{bottom:837.895910px;}
.y11b{bottom:840.276036px;}
.y2c{bottom:841.209000px;}
.y6f{bottom:848.270456px;}
.y1b0{bottom:849.886109px;}
.y10e{bottom:850.479884px;}
.y11a{bottom:856.007818px;}
.y2a{bottom:861.619500px;}
.y1af{bottom:861.791189px;}
.y10d{bottom:863.320309px;}
.y6e{bottom:863.917356px;}
.y2b{bottom:868.677000px;}
.y119{bottom:871.739600px;}
.y1ae{bottom:873.781388px;}
.y10c{bottom:876.161690px;}
.y2{bottom:879.369000px;}
.y6d{bottom:879.649138px;}
.y1ad{bottom:885.687425px;}
.y118{bottom:887.386500px;}
.y6c{bottom:895.296038px;}
.y10b{bottom:895.890000px;}
.y1ac{bottom:897.677624px;}
.y29{bottom:899.122216px;}
.y1ab{bottom:909.667822px;}
.y6b{bottom:911.029016px;}
.y10a{bottom:915.619536px;}
.y161{bottom:921.061500px;}
.y1aa{bottom:921.572903px;}
.y28{bottom:924.973500px;}
.y6a{bottom:926.675916px;}
.y109{bottom:929.991000px;}
.y1a9{bottom:933.564058px;}
.y160{bottom:942.238303px;}
.y69{bottom:942.407698px;}
.y1a8{bottom:945.469138px;}
.y15f{bottom:955.078728px;}
.y1a7{bottom:957.459337px;}
.y68{bottom:958.054598px;}
.y1{bottom:966.726000px;}
.y15e{bottom:967.920109px;}
.y1a6{bottom:969.365374px;}
.y67{bottom:973.787576px;}
.y108{bottom:980.845652px;}
.y1a5{bottom:981.355573px;}
.y66{bottom:989.434476px;}
.y1a4{bottom:993.345772px;}
.y107{bottom:993.686077px;}
.y5a{bottom:1003.719000px;}
.y65{bottom:1005.166258px;}
.y1a3{bottom:1005.250852px;}
.y106{bottom:1006.527459px;}
.y1a2{bottom:1017.242007px;}
.y105{bottom:1019.367884px;}
.y64{bottom:1020.813158px;}
.y1a1{bottom:1029.147088px;}
.y104{bottom:1032.208309px;}
.y63{bottom:1036.546136px;}
.y1a0{bottom:1041.137286px;}
.y103{bottom:1045.049690px;}
.y59{bottom:1045.474500px;}
.y62{bottom:1052.193036px;}
.y19f{bottom:1053.127485px;}
.y102{bottom:1064.778000px;}
.y19e{bottom:1065.033522px;}
.y61{bottom:1067.924818px;}
.y19d{bottom:1077.023721px;}
.y60{bottom:1083.571718px;}
.y101{bottom:1084.507536px;}
.y58{bottom:1087.312500px;}
.y19c{bottom:1088.928801px;}
.y100{bottom:1098.879000px;}
.y5f{bottom:1099.303500px;}
.y19b{bottom:1100.919000px;}
.y24{bottom:1127.505000px;}
.y5d{bottom:1128.630000px;}
.y1b4{bottom:1128.640776px;}
.yca{bottom:1128.642000px;}
.h11{height:23.521113px;}
.hc{height:26.266992px;}
.h7{height:32.130000px;}
.h12{height:33.622910px;}
.h17{height:33.623438px;}
.h16{height:34.478653px;}
.h13{height:36.775371px;}
.h10{height:37.122363px;}
.hb{height:37.826367px;}
.hf{height:38.959629px;}
.h14{height:42.029824px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.he{height:55.689609px;}
.hd{height:70.925098px;}
.h15{height:73.551270px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.ha{height:1190.550018px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:56.276979px;}
.x1c{left:58.848290px;}
.x10{left:62.758950px;}
.x15{left:63.949500px;}
.x1e{left:65.395715px;}
.x12{left:74.323389px;}
.x1d{left:93.628200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x27{left:145.247100px;}
.x2b{left:161.572930px;}
.x4{left:203.484001px;}
.x2a{left:214.466759px;}
.x26{left:220.079954px;}
.x7{left:234.028500px;}
.x8{left:240.066000px;}
.x17{left:242.022000px;}
.x29{left:275.442000px;}
.x5{left:299.426979px;}
.x11{left:302.995500px;}
.x18{left:310.138500px;}
.x16{left:342.624000px;}
.x9{left:364.648500px;}
.xa{left:370.686000px;}
.x1a{left:441.626979px;}
.x3{left:454.959000px;}
.x13{left:459.888932px;}
.x1b{left:462.269202px;}
.x1f{left:468.567000px;}
.x14{left:477.831221px;}
.x20{left:486.510429px;}
.x22{left:487.615500px;}
.x24{left:512.958000px;}
.xb{left:521.886000px;}
.xc{left:527.925000px;}
.x25{left:530.391000px;}
.x28{left:549.864000px;}
.x19{left:588.386979px;}
.xd{left:617.980500px;}
.xe{left:624.018000px;}
.xf{left:628.525500px;}
.x23{left:679.802022px;}
.x21{left:787.375760px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.115099pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:16.922845pt;}
.ws4{word-spacing:-14.956283pt;}
.ws7{word-spacing:-12.454610pt;}
.ws6{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.329120pt;}
.ws9{word-spacing:-9.963406pt;}
.ws5{word-spacing:-9.564000pt;}
.ws8{word-spacing:-8.943403pt;}
.wsa{word-spacing:-8.501200pt;}
.ws2{word-spacing:-7.730512pt;}
.ws3{word-spacing:-7.172640pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-15.416526pt;}
._b{margin-left:-3.933720pt;}
._8{margin-left:-2.746781pt;}
._4{margin-left:-1.847765pt;}
._5{margin-left:-0.891365pt;}
._1{width:1.255287pt;}
._2{width:2.983996pt;}
._e{width:4.545951pt;}
._7{width:5.780482pt;}
._6{width:6.817219pt;}
._9{width:8.580821pt;}
._0{width:10.333915pt;}
._c{width:11.421685pt;}
._30{width:12.537138pt;}
._13{width:14.180402pt;}
._10{width:15.838183pt;}
._11{width:16.807347pt;}
._12{width:18.060658pt;}
._d{width:19.591568pt;}
._a{width:26.839046pt;}
._f{width:27.735948pt;}
._1d{width:50.497128pt;}
._15{width:70.457946pt;}
._2a{width:265.461872pt;}
._27{width:266.424208pt;}
._2b{width:283.219178pt;}
._26{width:317.261384pt;}
._2f{width:344.159180pt;}
._18{width:377.660709pt;}
._2c{width:393.894601pt;}
._29{width:394.788927pt;}
._16{width:397.689536pt;}
._1a{width:404.150448pt;}
._1e{width:425.573472pt;}
._28{width:428.797128pt;}
._21{width:444.347013pt;}
._19{width:450.328967pt;}
._1c{width:457.810023pt;}
._2d{width:460.108747pt;}
._25{width:465.964374pt;}
._17{width:474.914437pt;}
._2e{width:492.158271pt;}
._14{width:518.508591pt;}
._20{width:551.292109pt;}
._1b{width:553.057468pt;}
._24{width:648.508941pt;}
._22{width:650.719253pt;}
._23{width:651.807407pt;}
._1f{width:940.882212pt;}
.fsb{font-size:23.788267pt;}
.fs6{font-size:26.565333pt;}
.fsc{font-size:34.004800pt;}
.fs10{font-size:34.005333pt;}
.fsd{font-size:37.193067pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:37.544000pt;}
.fs5{font-size:38.256000pt;}
.fs9{font-size:39.402133pt;}
.fse{font-size:42.507200pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:56.322133pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:71.730667pt;}
.fsf{font-size:74.386667pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:0.000651pt;}
.y5e{bottom:42.160000pt;}
.y5{bottom:59.133337pt;}
.y197{bottom:69.695397pt;}
.y9e{bottom:69.703272pt;}
.y162{bottom:69.770000pt;}
.y27{bottom:73.920000pt;}
.yd0{bottom:74.011376pt;}
.yff{bottom:75.823064pt;}
.y174{bottom:79.220958pt;}
.y196{bottom:80.353352pt;}
.y15d{bottom:82.779539pt;}
.y26{bottom:83.226667pt;}
.y9d{bottom:83.687078pt;}
.yc9{bottom:84.518093pt;}
.y4{bottom:86.333337pt;}
.yfe{bottom:87.313286pt;}
.ycf{bottom:87.996245pt;}
.y195{bottom:90.935646pt;}
.y173{bottom:93.205827pt;}
.y25{bottom:93.893333pt;}
.y15c{bottom:96.687895pt;}
.y9c{bottom:97.595434pt;}
.yc8{bottom:98.427512pt;}
.yfd{bottom:98.726997pt;}
.y194{bottom:101.593600pt;}
.yce{bottom:101.904601pt;}
.y5c{bottom:106.582787pt;}
.y172{bottom:107.114183pt;}
.yfc{bottom:110.140708pt;}
.y15b{bottom:110.671701pt;}
.y9b{bottom:111.579240pt;}
.yc7{bottom:112.411318pt;}
.ycd{bottom:115.888407pt;}
.y5b{bottom:119.281867pt;}
.yfb{bottom:121.555269pt;}
.y22{bottom:123.790666pt;}
.y15a{bottom:124.580057pt;}
.y9a{bottom:125.488658pt;}
.y193{bottom:126.087272pt;}
.yc6{bottom:126.319674pt;}
.ycc{bottom:129.796763pt;}
.yfa{bottom:132.968980pt;}
.y171{bottom:135.006345pt;}
.y159{bottom:138.564926pt;}
.y99{bottom:139.472464pt;}
.yc5{bottom:140.303480pt;}
.y57{bottom:141.958699pt;}
.ycb{bottom:143.780569pt;}
.yf9{bottom:144.383541pt;}
.y158{bottom:152.473282pt;}
.y98{bottom:153.380820pt;}
.yc4{bottom:154.288349pt;}
.y56{bottom:154.733333pt;}
.yf8{bottom:155.797253pt;}
.y192{bottom:157.381072pt;}
.y170{bottom:162.899570pt;}
.y157{bottom:166.457088pt;}
.yf7{bottom:167.210964pt;}
.y97{bottom:167.364626pt;}
.yc3{bottom:168.196705pt;}
.y191{bottom:171.364878pt;}
.y117{bottom:173.632000pt;}
.y19{bottom:175.052000pt;}
.y16f{bottom:176.883376pt;}
.yf6{bottom:178.701186pt;}
.y156{bottom:180.365444pt;}
.y96{bottom:181.274045pt;}
.yc2{bottom:182.180511pt;}
.y190{bottom:185.274297pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.yf5{bottom:190.114897pt;}
.y16e{bottom:190.791732pt;}
.y155{bottom:194.350312pt;}
.y95{bottom:195.257851pt;}
.yc1{bottom:196.088867pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.yf4{bottom:201.528608pt;}
.y54{bottom:201.830679pt;}
.y16d{bottom:204.775538pt;}
.y154{bottom:208.258668pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y94{bottom:209.166207pt;}
.yc0{bottom:210.073735pt;}
.yf3{bottom:212.943169pt;}
.y18f{bottom:213.241909pt;}
.y53{bottom:215.814486pt;}
.y16c{bottom:218.684956pt;}
.y153{bottom:222.242474pt;}
.y93{bottom:223.150013pt;}
.ybf{bottom:223.982091pt;}
.yf2{bottom:224.356880pt;}
.y52{bottom:229.722841pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y16b{bottom:232.668762pt;}
.yf1{bottom:235.771441pt;}
.y92{bottom:237.059431pt;}
.ybe{bottom:237.965897pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y51{bottom:243.706647pt;}
.y18e{bottom:244.536773pt;}
.y16a{bottom:246.577118pt;}
.yf0{bottom:247.185153pt;}
.y152{bottom:250.135699pt;}
.y91{bottom:251.043238pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y50{bottom:257.616066pt;}
.y18d{bottom:258.520579pt;}
.yef{bottom:258.598864pt;}
.y169{bottom:260.560924pt;}
.y151{bottom:264.044055pt;}
.y90{bottom:264.951593pt;}
.ybd{bottom:265.859122pt;}
.yee{bottom:270.089086pt;}
.y4f{bottom:271.599872pt;}
.y18c{bottom:272.428934pt;}
.y168{bottom:274.470343pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y150{bottom:278.027861pt;}
.y8f{bottom:278.935399pt;}
.ybc{bottom:279.767478pt;}
.yed{bottom:281.502797pt;}
.y4e{bottom:285.508228pt;}
.y18b{bottom:286.412741pt;}
.y13c{bottom:286.645133pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y167{bottom:288.454149pt;}
.y14f{bottom:291.936217pt;}
.y8e{bottom:292.843755pt;}
.yec{bottom:292.917358pt;}
.ybb{bottom:293.751284pt;}
.y4d{bottom:299.492034pt;}
.y18a{bottom:300.321096pt;}
.y13b{bottom:300.628939pt;}
.y166{bottom:302.362505pt;}
.yeb{bottom:304.331069pt;}
.y14e{bottom:305.920023pt;}
.y8d{bottom:306.828624pt;}
.yba{bottom:307.659640pt;}
.y10{bottom:309.452000pt;}
.y4c{bottom:313.401453pt;}
.y189{bottom:314.305965pt;}
.y13a{bottom:314.613808pt;}
.yea{bottom:315.744780pt;}
.y165{bottom:316.346311pt;}
.y14d{bottom:319.829441pt;}
.y8c{bottom:320.736980pt;}
.yb9{bottom:321.643446pt;}
.ye9{bottom:327.159341pt;}
.y4b{bottom:327.385259pt;}
.y188{bottom:328.214321pt;}
.y139{bottom:328.522164pt;}
.y164{bottom:330.254667pt;}
.y14c{bottom:333.813247pt;}
.y8b{bottom:334.720786pt;}
.yb8{bottom:335.552865pt;}
.ye8{bottom:338.573053pt;}
.y4a{bottom:341.293615pt;}
.y187{bottom:342.197065pt;}
.y138{bottom:342.505970pt;}
.yf{bottom:343.809333pt;}
.y14b{bottom:347.721603pt;}
.y8a{bottom:348.629142pt;}
.yb7{bottom:349.536671pt;}
.ye7{bottom:350.062424pt;}
.y49{bottom:355.277421pt;}
.y186{bottom:356.105420pt;}
.y137{bottom:356.414326pt;}
.y19a{bottom:360.189365pt;}
.ye6{bottom:361.476986pt;}
.y89{bottom:362.614011pt;}
.ye{bottom:362.706666pt;}
.yb6{bottom:363.445026pt;}
.y48{bottom:369.262289pt;}
.y185{bottom:370.090289pt;}
.y136{bottom:370.399195pt;}
.ye5{bottom:372.890697pt;}
.y199{bottom:372.964000pt;}
.y14a{bottom:375.614828pt;}
.y88{bottom:376.522367pt;}
.yb5{bottom:377.428833pt;}
.y47{bottom:383.170645pt;}
.y184{bottom:384.074095pt;}
.ye4{bottom:384.305258pt;}
.y135{bottom:384.307550pt;}
.y149{bottom:389.598634pt;}
.y87{bottom:390.506173pt;}
.yb4{bottom:391.338251pt;}
.ye3{bottom:395.718969pt;}
.y46{bottom:397.154451pt;}
.y183{bottom:397.982451pt;}
.y134{bottom:398.291356pt;}
.y148{bottom:403.506990pt;}
.y86{bottom:404.414529pt;}
.ye2{bottom:407.132680pt;}
.y116{bottom:408.340000pt;}
.y45{bottom:411.062807pt;}
.y182{bottom:411.966257pt;}
.y133{bottom:412.199712pt;}
.y147{bottom:417.490796pt;}
.y85{bottom:418.399397pt;}
.ye1{bottom:418.547241pt;}
.yb3{bottom:419.230413pt;}
.y44{bottom:425.047676pt;}
.y181{bottom:425.875676pt;}
.y132{bottom:426.183518pt;}
.ye0{bottom:429.960953pt;}
.yd{bottom:430.990669pt;}
.y146{bottom:431.400215pt;}
.y84{bottom:432.307753pt;}
.y43{bottom:438.956032pt;}
.y180{bottom:439.859482pt;}
.y131{bottom:440.092937pt;}
.ydf{bottom:441.451174pt;}
.y145{bottom:445.384021pt;}
.y83{bottom:446.291559pt;}
.yc{bottom:446.990669pt;}
.yb2{bottom:447.123638pt;}
.yde{bottom:452.864886pt;}
.y42{bottom:452.939838pt;}
.y17f{bottom:453.767838pt;}
.y130{bottom:454.076743pt;}
.y144{bottom:459.292377pt;}
.y82{bottom:460.199915pt;}
.yb1{bottom:461.107444pt;}
.yb{bottom:462.990669pt;}
.ydd{bottom:464.278597pt;}
.y55{bottom:466.848194pt;}
.y17e{bottom:467.751644pt;}
.y12f{bottom:467.985099pt;}
.y143{bottom:473.276183pt;}
.y81{bottom:474.184784pt;}
.yb0{bottom:475.015800pt;}
.ydc{bottom:475.693158pt;}
.ya{bottom:478.990666pt;}
.y41{bottom:480.832000pt;}
.y17d{bottom:481.661062pt;}
.y12e{bottom:481.968905pt;}
.ydb{bottom:487.106869pt;}
.y142{bottom:487.184538pt;}
.y80{bottom:488.168590pt;}
.yaf{bottom:488.999606pt;}
.y9{bottom:494.990666pt;}
.y17c{bottom:495.644868pt;}
.y12d{bottom:495.878324pt;}
.yda{bottom:498.521430pt;}
.y141{bottom:501.169407pt;}
.y7f{bottom:502.076946pt;}
.yae{bottom:502.907962pt;}
.y17b{bottom:509.553224pt;}
.y12c{bottom:509.862130pt;}
.yd9{bottom:509.935141pt;}
.y140{bottom:515.077763pt;}
.y7e{bottom:516.060752pt;}
.yad{bottom:516.892830pt;}
.yd8{bottom:521.348853pt;}
.y17a{bottom:523.537030pt;}
.y12b{bottom:523.770486pt;}
.y13f{bottom:529.061569pt;}
.y7d{bottom:529.969108pt;}
.yac{bottom:530.801186pt;}
.yd7{bottom:532.839074pt;}
.y40{bottom:533.671017pt;}
.y179{bottom:537.446449pt;}
.y12a{bottom:537.754292pt;}
.y13e{bottom:543.046438pt;}
.y7c{bottom:543.953977pt;}
.yd6{bottom:544.252786pt;}
.yab{bottom:544.784992pt;}
.y3f{bottom:546.445652pt;}
.y178{bottom:551.430255pt;}
.y129{bottom:551.662647pt;}
.yd5{bottom:555.666497pt;}
.y13d{bottom:556.954794pt;}
.y7b{bottom:557.862332pt;}
.yaa{bottom:558.693348pt;}
.y3e{bottom:559.220287pt;}
.y177{bottom:565.338611pt;}
.y128{bottom:565.647516pt;}
.yd4{bottom:567.081058pt;}
.y7a{bottom:571.846139pt;}
.y3d{bottom:571.919366pt;}
.ya9{bottom:572.678217pt;}
.y8{bottom:573.786667pt;}
.y176{bottom:579.322417pt;}
.y127{bottom:579.555872pt;}
.yd3{bottom:584.617333pt;}
.y3c{bottom:584.694001pt;}
.y79{bottom:585.754494pt;}
.ya8{bottom:586.586573pt;}
.y163{bottom:586.885333pt;}
.y7{bottom:592.685334pt;}
.y175{bottom:593.230773pt;}
.y126{bottom:593.539678pt;}
.y3b{bottom:597.468636pt;}
.y78{bottom:599.739363pt;}
.ya7{bottom:600.570379pt;}
.yd2{bottom:602.154699pt;}
.y125{bottom:607.448034pt;}
.y3a{bottom:610.243271pt;}
.y77{bottom:613.647719pt;}
.ya6{bottom:614.478735pt;}
.yd1{bottom:614.929333pt;}
.y34{bottom:618.180267pt;}
.y124{bottom:621.432903pt;}
.y39{bottom:622.942350pt;}
.y198{bottom:623.168000pt;}
.y76{bottom:627.631525pt;}
.ya5{bottom:628.463604pt;}
.y33{bottom:629.593978pt;}
.y123{bottom:635.341259pt;}
.y38{bottom:635.716985pt;}
.y32{bottom:641.007689pt;}
.y75{bottom:641.539881pt;}
.ya4{bottom:642.447410pt;}
.y6{bottom:645.598667pt;}
.y37{bottom:648.491619pt;}
.y122{bottom:649.325065pt;}
.y31{bottom:652.422250pt;}
.y74{bottom:655.524750pt;}
.ya3{bottom:656.355766pt;}
.y36{bottom:661.190699pt;}
.y121{bottom:663.233421pt;}
.y30{bottom:663.911622pt;}
.y115{bottom:667.237365pt;}
.y3{bottom:668.977329pt;}
.y73{bottom:669.433106pt;}
.ya2{bottom:670.339572pt;}
.y35{bottom:673.965333pt;}
.y2f{bottom:675.325333pt;}
.y120{bottom:677.218289pt;}
.y114{bottom:680.012000pt;}
.ya1{bottom:684.248990pt;}
.y11f{bottom:691.126645pt;}
.y72{bottom:697.325268pt;}
.ya0{bottom:698.232796pt;}
.y113{bottom:698.836202pt;}
.y2e{bottom:700.044000pt;}
.y11e{bottom:705.110451pt;}
.y112{bottom:710.325574pt;}
.y9f{bottom:712.141152pt;}
.y11d{bottom:719.018807pt;}
.y111{bottom:721.740135pt;}
.y1b3{bottom:723.555266pt;}
.y71{bottom:726.124958pt;}
.y11c{bottom:733.003676pt;}
.y110{bottom:733.153847pt;}
.y1b2{bottom:734.137560pt;}
.y70{bottom:740.033314pt;}
.y2d{bottom:743.962667pt;}
.y10f{bottom:744.568408pt;}
.y1b1{bottom:744.796365pt;}
.y11b{bottom:746.912032pt;}
.y2c{bottom:747.741333pt;}
.y6f{bottom:754.018183pt;}
.y1b0{bottom:755.454319pt;}
.y10e{bottom:755.982119pt;}
.y11a{bottom:760.895838pt;}
.y2a{bottom:765.884000pt;}
.y1af{bottom:766.036613pt;}
.y10d{bottom:767.395830pt;}
.y6e{bottom:767.926539pt;}
.y2b{bottom:772.157333pt;}
.y119{bottom:774.879644pt;}
.y1ae{bottom:776.694567pt;}
.y10c{bottom:778.810391pt;}
.y2{bottom:781.661334pt;}
.y6d{bottom:781.910345pt;}
.y1ad{bottom:787.277711pt;}
.y118{bottom:788.788000pt;}
.y6c{bottom:795.818701pt;}
.y10b{bottom:796.346667pt;}
.y1ac{bottom:797.935665pt;}
.y29{bottom:799.219748pt;}
.y1ab{bottom:808.593620pt;}
.y6b{bottom:809.803570pt;}
.y10a{bottom:813.884032pt;}
.y161{bottom:818.721333pt;}
.y1aa{bottom:819.175914pt;}
.y28{bottom:822.198667pt;}
.y6a{bottom:823.711925pt;}
.y109{bottom:826.658667pt;}
.y1a9{bottom:829.834718pt;}
.y160{bottom:837.545158pt;}
.y69{bottom:837.695732pt;}
.y1a8{bottom:840.417012pt;}
.y15f{bottom:848.958869pt;}
.y1a7{bottom:851.074966pt;}
.y68{bottom:851.604087pt;}
.y1{bottom:859.312000pt;}
.y15e{bottom:860.373430pt;}
.y1a6{bottom:861.658110pt;}
.y67{bottom:865.588956pt;}
.y108{bottom:871.862802pt;}
.y1a5{bottom:872.316065pt;}
.y66{bottom:879.497312pt;}
.y1a4{bottom:882.974019pt;}
.y107{bottom:883.276513pt;}
.y5a{bottom:892.194667pt;}
.y65{bottom:893.481118pt;}
.y1a3{bottom:893.556313pt;}
.y106{bottom:894.691074pt;}
.y1a2{bottom:904.215118pt;}
.y105{bottom:906.104786pt;}
.y64{bottom:907.389474pt;}
.y1a1{bottom:914.797411pt;}
.y104{bottom:917.518497pt;}
.y63{bottom:921.374343pt;}
.y1a0{bottom:925.455366pt;}
.y103{bottom:928.933058pt;}
.y59{bottom:929.310667pt;}
.y62{bottom:935.282699pt;}
.y19f{bottom:936.113320pt;}
.y102{bottom:946.469333pt;}
.y19e{bottom:946.696464pt;}
.y61{bottom:949.266505pt;}
.y19d{bottom:957.354418pt;}
.y60{bottom:963.174861pt;}
.y101{bottom:964.006699pt;}
.y58{bottom:966.500000pt;}
.y19c{bottom:967.936712pt;}
.y100{bottom:976.781333pt;}
.y5f{bottom:977.158667pt;}
.y19b{bottom:978.594667pt;}
.y24{bottom:1002.226667pt;}
.y5d{bottom:1003.226667pt;}
.y1b4{bottom:1003.236245pt;}
.yca{bottom:1003.237333pt;}
.h11{height:20.907656pt;}
.hc{height:23.348437pt;}
.h7{height:28.560000pt;}
.h12{height:29.887031pt;}
.h17{height:29.887500pt;}
.h16{height:30.647691pt;}
.h13{height:32.689219pt;}
.h10{height:32.997656pt;}
.hb{height:33.623437pt;}
.hf{height:34.630781pt;}
.h14{height:37.359844pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.he{height:49.501875pt;}
.hd{height:63.044531pt;}
.h15{height:65.378906pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.ha{height:1058.266683pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:50.023981pt;}
.x1c{left:52.309591pt;}
.x10{left:55.785733pt;}
.x15{left:56.844000pt;}
.x1e{left:58.129524pt;}
.x12{left:66.065235pt;}
.x1d{left:83.225067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x27{left:129.108533pt;}
.x2b{left:143.620382pt;}
.x4{left:180.874667pt;}
.x2a{left:190.637119pt;}
.x26{left:195.626625pt;}
.x7{left:208.025333pt;}
.x8{left:213.392000pt;}
.x17{left:215.130667pt;}
.x29{left:244.837333pt;}
.x5{left:266.157314pt;}
.x11{left:269.329333pt;}
.x18{left:275.678667pt;}
.x16{left:304.554667pt;}
.x9{left:324.132000pt;}
.xa{left:329.498667pt;}
.x1a{left:392.557314pt;}
.x3{left:404.408000pt;}
.x13{left:408.790162pt;}
.x1b{left:410.905957pt;}
.x1f{left:416.504000pt;}
.x14{left:424.738863pt;}
.x20{left:432.453714pt;}
.x22{left:433.436000pt;}
.x24{left:455.962667pt;}
.xb{left:463.898667pt;}
.xc{left:469.266667pt;}
.x25{left:471.458667pt;}
.x28{left:488.768000pt;}
.x19{left:523.010648pt;}
.xd{left:549.316000pt;}
.xe{left:554.682667pt;}
.xf{left:558.689333pt;}
.x23{left:604.268464pt;}
.x21{left:699.889565pt;}
}




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