
    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_2379f8b229fe9cc964ba9d33.woff')format("woff");}.ff1{font-family:ff1;line-height:1.052734;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_d68650193f8f22c44170c192.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_69a7c2834701de068fded03d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6b43c3f8c94e618860a165c0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_0384a6ef6e242f2ecac104ca.woff')format("woff");}.ff5{font-family:ff5;line-height:0.925781;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_85b38a613c278f19f53a1b90.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_33c95b6c0627d0ade23aebfc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.909668;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.228000px;}
.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;}
}
.wsc{word-spacing:-20.016000px;}
.wsb{word-spacing:-19.944000px;}
.ws3{word-spacing:-19.500000px;}
.ws4{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.620000px;}
.ws2{word-spacing:-15.000000px;}
.ws0{word-spacing:-12.000000px;}
.ws6{word-spacing:-0.240000px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:32.820000px;}
.ws9{word-spacing:38.160000px;}
.ws7{word-spacing:41.760000px;}
.wsa{word-spacing:136.116000px;}
._4{margin-left:-9.402000px;}
._8{margin-left:-7.998000px;}
._5{margin-left:-5.928000px;}
._2{margin-left:-4.500000px;}
._27{margin-left:-3.498000px;}
._1{margin-left:-2.400000px;}
._3{margin-left:-1.020000px;}
._0{width:1.584000px;}
._7{width:3.498000px;}
._6{width:4.686000px;}
._17{width:6.102000px;}
._14{width:7.392000px;}
._11{width:8.514000px;}
._9{width:9.702000px;}
._a{width:10.824000px;}
._12{width:12.078000px;}
._b{width:13.662000px;}
._c{width:14.916000px;}
._1a{width:16.056000px;}
._13{width:17.886000px;}
._19{width:19.296000px;}
._d{width:20.856000px;}
._e{width:22.044000px;}
._18{width:24.048000px;}
._f{width:25.080000px;}
._10{width:26.400000px;}
._31{width:27.432000px;}
._1c{width:28.872000px;}
._1b{width:30.552000px;}
._30{width:32.004000px;}
._1d{width:33.552000px;}
._15{width:36.036000px;}
._16{width:37.290000px;}
._32{width:39.264000px;}
._33{width:40.584000px;}
._20{width:41.952000px;}
._28{width:42.996000px;}
._1f{width:44.304000px;}
._1e{width:45.396000px;}
._21{width:54.192000px;}
._2f{width:61.992000px;}
._34{width:91.368000px;}
._2c{width:107.928000px;}
._26{width:115.512000px;}
._25{width:180.780000px;}
._24{width:183.546000px;}
._29{width:196.380000px;}
._2a{width:197.676000px;}
._2b{width:210.804000px;}
._2d{width:216.240000px;}
._2e{width:217.584000px;}
._23{width:273.006000px;}
._22{width:284.544000px;}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(126,126,126);}
.fc2{color:rgb(163,163,163);}
.fc1{color:rgb(162,162,162);}
.fc0{color:rgb(127,127,127);}
.fs2{font-size:33.000000px;}
.fs3{font-size:36.000000px;}
.fs1{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y42{bottom:87.541500px;}
.y56{bottom:89.641500px;}
.yb7{bottom:146.341500px;}
.ye5{bottom:152.791500px;}
.y11c{bottom:153.991500px;}
.y64{bottom:156.391500px;}
.yb6{bottom:167.041500px;}
.y108{bottom:168.841500px;}
.ye4{bottom:173.491500px;}
.y11b{bottom:177.691500px;}
.y63{bottom:187.441500px;}
.yb5{bottom:187.741500px;}
.ye3{bottom:194.191500px;}
.y107{bottom:199.891500px;}
.y11a{bottom:201.541500px;}
.y6b{bottom:205.741500px;}
.yb4{bottom:208.441500px;}
.ye2{bottom:214.891500px;}
.y62{bottom:218.491500px;}
.y119{bottom:225.241500px;}
.yb3{bottom:229.141500px;}
.y106{bottom:230.941500px;}
.ye1{bottom:235.591500px;}
.y6a{bottom:236.791500px;}
.y118{bottom:249.091500px;}
.y61{bottom:249.541500px;}
.y41{bottom:249.691500px;}
.ye0{bottom:256.291500px;}
.yb2{bottom:258.841500px;}
.y105{bottom:261.991500px;}
.y69{bottom:267.841500px;}
.y40{bottom:271.441500px;}
.y117{bottom:272.791500px;}
.ydf{bottom:276.991500px;}
.yb1{bottom:279.541500px;}
.y60{bottom:280.591500px;}
.y116{bottom:296.641500px;}
.yde{bottom:297.691500px;}
.y68{bottom:298.891500px;}
.yb0{bottom:300.241500px;}
.y5f{bottom:311.641500px;}
.y104{bottom:313.141500px;}
.y3f{bottom:318.091500px;}
.ydd{bottom:318.391500px;}
.y115{bottom:320.341500px;}
.yaf{bottom:320.941500px;}
.ydc{bottom:339.091500px;}
.y3e{bottom:339.841500px;}
.yae{bottom:341.641500px;}
.y5e{bottom:342.691500px;}
.y114{bottom:344.191500px;}
.yec{bottom:359.791500px;}
.y3d{bottom:361.591500px;}
.yad{bottom:362.341500px;}
.y113{bottom:367.891500px;}
.ydb{bottom:368.791500px;}
.y5d{bottom:373.741500px;}
.y79{bottom:374.983500px;}
.yeb{bottom:380.491500px;}
.yac{bottom:383.041500px;}
.y3c{bottom:383.341500px;}
.y67{bottom:383.791500px;}
.yda{bottom:389.491500px;}
.y112{bottom:391.741500px;}
.y78{bottom:392.383500px;}
.yea{bottom:401.191500px;}
.yab{bottom:403.741500px;}
.y5c{bottom:404.791500px;}
.y3b{bottom:405.091500px;}
.y77{bottom:409.633500px;}
.yd9{bottom:410.191500px;}
.y7d{bottom:413.083500px;}
.y111{bottom:415.441500px;}
.ye9{bottom:421.891500px;}
.yaa{bottom:424.441500px;}
.y1e{bottom:426.691500px;}
.y3a{bottom:426.841500px;}
.y76{bottom:427.183500px;}
.y138{bottom:429.541500px;}
.yd8{bottom:430.891500px;}
.y5b{bottom:435.841500px;}
.y110{bottom:439.291500px;}
.ye8{bottom:442.591500px;}
.y1d{bottom:443.941500px;}
.y75{bottom:444.283500px;}
.ya9{bottom:445.141500px;}
.y39{bottom:448.591500px;}
.yd7{bottom:451.591500px;}
.y137{bottom:453.241500px;}
.y8a{bottom:459.583500px;}
.y1c{bottom:461.341500px;}
.y74{bottom:461.683500px;}
.y10f{bottom:462.991500px;}
.ye7{bottom:463.291500px;}
.ya8{bottom:465.841500px;}
.y5a{bottom:466.891500px;}
.y38{bottom:470.341500px;}
.yd6{bottom:472.291500px;}
.y136{bottom:477.091500px;}
.y1b{bottom:478.591500px;}
.y73{bottom:479.233500px;}
.ye6{bottom:483.991500px;}
.ya7{bottom:486.541500px;}
.y10e{bottom:486.841500px;}
.y37{bottom:492.091500px;}
.yd5{bottom:492.991500px;}
.y1a{bottom:495.991500px;}
.y72{bottom:496.183500px;}
.y59{bottom:497.941500px;}
.y135{bottom:500.791500px;}
.yf3{bottom:504.691500px;}
.ya6{bottom:507.241500px;}
.y10d{bottom:510.541500px;}
.y19{bottom:513.241500px;}
.y71{bottom:513.583500px;}
.yd4{bottom:513.691500px;}
.y36{bottom:513.841500px;}
.y134{bottom:524.641500px;}
.y55{bottom:525.391500px;}
.ya5{bottom:527.941500px;}
.y58{bottom:528.991500px;}
.y18{bottom:530.641500px;}
.y70{bottom:530.983500px;}
.yd3{bottom:534.391500px;}
.y35{bottom:535.591500px;}
.y6c{bottom:541.783500px;}
.yf2{bottom:546.091500px;}
.y17{bottom:547.891500px;}
.y133{bottom:548.341500px;}
.y6f{bottom:548.383500px;}
.ya4{bottom:548.641500px;}
.yd2{bottom:555.091500px;}
.y34{bottom:557.341500px;}
.y10c{bottom:558.091500px;}
.y57{bottom:560.041500px;}
.y16{bottom:565.291500px;}
.y6e{bottom:565.783500px;}
.yf1{bottom:566.791500px;}
.ya3{bottom:569.341500px;}
.y132{bottom:572.191500px;}
.yd1{bottom:575.791500px;}
.y33{bottom:579.091500px;}
.y10b{bottom:581.941500px;}
.y15{bottom:582.541500px;}
.y6d{bottom:584.533500px;}
.yf0{bottom:587.491500px;}
.ya2{bottom:590.041500px;}
.y54{bottom:591.091500px;}
.y131{bottom:595.891500px;}
.yd0{bottom:596.491500px;}
.y14{bottom:599.941500px;}
.y32{bottom:600.841500px;}
.y10a{bottom:605.641500px;}
.yef{bottom:608.191500px;}
.ya1{bottom:610.741500px;}
.y13{bottom:617.191500px;}
.y130{bottom:619.741500px;}
.y53{bottom:622.141500px;}
.y31{bottom:622.591500px;}
.y65{bottom:627.733500px;}
.yee{bottom:628.891500px;}
.y109{bottom:629.491500px;}
.ya0{bottom:631.441500px;}
.y12{bottom:634.591500px;}
.ycf{bottom:637.891500px;}
.y12f{bottom:643.441500px;}
.y30{bottom:644.341500px;}
.yed{bottom:649.591500px;}
.y11{bottom:651.841500px;}
.y9f{bottom:652.141500px;}
.y52{bottom:653.191500px;}
.yce{bottom:658.591500px;}
.y2f{bottom:666.091500px;}
.y12e{bottom:667.291500px;}
.y10{bottom:669.241500px;}
.y103{bottom:670.291500px;}
.y9e{bottom:672.841500px;}
.ycd{bottom:679.291500px;}
.y84{bottom:681.733500px;}
.y51{bottom:684.241500px;}
.yf{bottom:686.491500px;}
.y2e{bottom:687.841500px;}
.y102{bottom:690.991500px;}
.y9d{bottom:693.541500px;}
.y83{bottom:699.133500px;}
.ycc{bottom:699.991500px;}
.y2d{bottom:709.591500px;}
.y101{bottom:711.691500px;}
.y9c{bottom:714.241500px;}
.y12d{bottom:714.841500px;}
.y50{bottom:715.291500px;}
.y82{bottom:716.383500px;}
.ycb{bottom:720.691500px;}
.y89{bottom:722.833500px;}
.ye{bottom:724.291500px;}
.y2c{bottom:731.341500px;}
.y100{bottom:732.391500px;}
.y81{bottom:733.783500px;}
.y9b{bottom:734.941500px;}
.y12c{bottom:738.541500px;}
.yca{bottom:741.391500px;}
.yd{bottom:741.691500px;}
.y4f{bottom:746.341500px;}
.y80{bottom:751.033500px;}
.y2b{bottom:753.091500px;}
.y7c{bottom:753.733500px;}
.y9a{bottom:755.641500px;}
.yc9{bottom:762.091500px;}
.y12b{bottom:762.391500px;}
.y7f{bottom:768.433500px;}
.yff{bottom:773.791500px;}
.y2a{bottom:774.841500px;}
.yc{bottom:776.341500px;}
.y4e{bottom:777.391500px;}
.yc8{bottom:782.791500px;}
.y7e{bottom:785.683500px;}
.y12a{bottom:786.091500px;}
.yfe{bottom:794.491500px;}
.y29{bottom:796.591500px;}
.y99{bottom:797.041500px;}
.yc7{bottom:803.491500px;}
.y4d{bottom:808.441500px;}
.y129{bottom:809.941500px;}
.yb{bottom:810.841500px;}
.yfd{bottom:815.191500px;}
.y98{bottom:817.741500px;}
.y28{bottom:818.341500px;}
.yc6{bottom:824.191500px;}
.ya{bottom:828.241500px;}
.y128{bottom:833.641500px;}
.yfc{bottom:835.891500px;}
.y97{bottom:838.441500px;}
.y4c{bottom:839.491500px;}
.y87{bottom:839.983500px;}
.y27{bottom:840.091500px;}
.y88{bottom:840.283500px;}
.yc5{bottom:844.891500px;}
.yfb{bottom:856.591500px;}
.y86{bottom:857.233500px;}
.y127{bottom:857.491500px;}
.y96{bottom:859.141500px;}
.y7b{bottom:859.483500px;}
.y26{bottom:861.841500px;}
.y9{bottom:862.741500px;}
.yc4{bottom:865.591500px;}
.y4b{bottom:870.541500px;}
.y85{bottom:874.633500px;}
.yfa{bottom:877.291500px;}
.y95{bottom:879.841500px;}
.y8{bottom:879.991500px;}
.y126{bottom:881.191500px;}
.y25{bottom:883.591500px;}
.yc3{bottom:886.291500px;}
.y7a{bottom:888.583500px;}
.y7{bottom:897.391500px;}
.yf9{bottom:897.991500px;}
.y94{bottom:900.541500px;}
.y4a{bottom:901.591500px;}
.y24{bottom:902.941500px;}
.y125{bottom:905.041500px;}
.yc2{bottom:906.991500px;}
.yf8{bottom:918.691500px;}
.y93{bottom:921.241500px;}
.y66{bottom:924.841500px;}
.yc1{bottom:927.691500px;}
.y124{bottom:928.741500px;}
.y6{bottom:931.891500px;}
.y49{bottom:932.641500px;}
.yf7{bottom:939.391500px;}
.y92{bottom:941.941500px;}
.yc0{bottom:948.391500px;}
.y5{bottom:949.291500px;}
.y123{bottom:952.591500px;}
.yf6{bottom:960.091500px;}
.y91{bottom:962.641500px;}
.y48{bottom:963.691500px;}
.y23{bottom:965.641500px;}
.ybf{bottom:969.091500px;}
.y122{bottom:976.291500px;}
.yf5{bottom:980.791500px;}
.y90{bottom:983.341500px;}
.ybe{bottom:989.791500px;}
.y47{bottom:994.741500px;}
.y121{bottom:1000.141500px;}
.yf4{bottom:1001.491500px;}
.y8f{bottom:1004.041500px;}
.ybd{bottom:1010.491500px;}
.y22{bottom:1022.641500px;}
.y120{bottom:1023.841500px;}
.y8e{bottom:1024.741500px;}
.y46{bottom:1025.791500px;}
.ybc{bottom:1031.191500px;}
.y21{bottom:1045.141500px;}
.y11f{bottom:1047.691500px;}
.ybb{bottom:1051.891500px;}
.y8d{bottom:1054.291500px;}
.y45{bottom:1056.841500px;}
.y20{bottom:1067.491500px;}
.y11e{bottom:1071.391500px;}
.yba{bottom:1072.591500px;}
.y44{bottom:1087.891500px;}
.y1f{bottom:1089.991500px;}
.yb9{bottom:1093.291500px;}
.y11d{bottom:1095.241500px;}
.y8c{bottom:1104.391500px;}
.yb8{bottom:1113.991500px;}
.y43{bottom:1118.941500px;}
.y8b{bottom:1121.791500px;}
.y4{bottom:1131.991500px;}
.y3{bottom:1145.791500px;}
.y2{bottom:1160.941500px;}
.h5{height:34.968750px;}
.h11{height:38.074219px;}
.h4{height:40.171875px;}
.h8{height:41.689453px;}
.hf{height:42.304688px;}
.h7{height:43.710938px;}
.he{height:45.193359px;}
.hd{height:49.992188px;}
.ha{height:50.027344px;}
.h10{height:50.214844px;}
.h13{height:52.453125px;}
.h6{height:53.291016px;}
.hc{height:55.236328px;}
.h12{height:58.620117px;}
.h3{height:60.257812px;}
.hb{height:63.949219px;}
.h9{height:69.278320px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x6{left:87.300000px;}
.x98{left:93.000000px;}
.xa9{left:95.400000px;}
.x74{left:97.500000px;}
.x41{left:98.700000px;}
.xa4{left:101.400000px;}
.x89{left:103.500000px;}
.x73{left:105.900000px;}
.x40{left:117.600000px;}
.x42{left:119.400000px;}
.x3e{left:124.950000px;}
.x37{left:127.650000px;}
.x29{left:129.450000px;}
.x7{left:144.750000px;}
.x28{left:173.250000px;}
.x12{left:184.200000px;}
.x13{left:200.700000px;}
.x36{left:207.300000px;}
.x8a{left:210.900000px;}
.x75{left:212.400000px;}
.x46{left:214.950000px;}
.x76{left:216.900000px;}
.x44{left:217.950000px;}
.x43{left:220.350000px;}
.x47{left:221.400000px;}
.x14{left:222.750000px;}
.x9b{left:224.400000px;}
.x45{left:225.450000px;}
.x7c{left:227.850000px;}
.x48{left:230.400000px;}
.x26{left:232.050000px;}
.x9a{left:233.400000px;}
.xab{left:236.850000px;}
.x15{left:239.250000px;}
.xa5{left:245.400000px;}
.x99{left:246.900000px;}
.x8b{left:248.400000px;}
.x3f{left:252.450000px;}
.xaa{left:255.900000px;}
.x34{left:257.550000px;}
.x16{left:280.500000px;}
.x27{left:285.600000px;}
.x17{left:295.800000px;}
.x18{left:312.900000px;}
.x19{left:328.200000px;}
.x8d{left:331.350000px;}
.x7d{left:332.850000px;}
.x77{left:333.900000px;}
.x8f{left:335.700000px;}
.xac{left:337.350000px;}
.x4b{left:338.400000px;}
.x91{left:340.350000px;}
.x4a{left:341.850000px;}
.x7f{left:344.400000px;}
.x49{left:346.800000px;}
.x2{left:348.150000px;}
.x90{left:349.350000px;}
.x80{left:350.850000px;}
.x9c{left:351.900000px;}
.x7e{left:357.900000px;}
.x4{left:359.700000px;}
.x8e{left:364.350000px;}
.x8c{left:366.900000px;}
.xa6{left:369.300000px;}
.x95{left:376.350000px;}
.x1a{left:384.150000px;}
.x8{left:396.600000px;}
.x1b{left:399.600000px;}
.x35{left:404.250000px;}
.x9{left:420.900000px;}
.x3{left:436.950000px;}
.x4d{left:452.250000px;}
.x9e{left:453.900000px;}
.x93{left:455.400000px;}
.xa7{left:458.400000px;}
.x50{left:459.900000px;}
.x4f{left:461.400000px;}
.x4e{left:466.350000px;}
.x4c{left:474.300000px;}
.x1c{left:476.550000px;}
.x9d{left:478.800000px;}
.x92{left:481.800000px;}
.xa{left:487.800000px;}
.x1d{left:491.850000px;}
.x9f{left:496.800000px;}
.xad{left:501.900000px;}
.x5{left:509.850000px;}
.xb{left:512.100000px;}
.x1e{left:515.850000px;}
.x1f{left:531.300000px;}
.xc{left:546.150000px;}
.xd{left:570.450000px;}
.x5d{left:571.800000px;}
.x54{left:572.850000px;}
.x81{left:574.350000px;}
.x56{left:575.400000px;}
.x5e{left:576.750000px;}
.x52{left:577.800000px;}
.x5b{left:578.850000px;}
.x61{left:580.350000px;}
.x5c{left:582.300000px;}
.x59{left:583.350000px;}
.x60{left:585.300000px;}
.x57{left:587.250000px;}
.x79{left:588.750000px;}
.x5a{left:589.800000px;}
.x51{left:590.850000px;}
.x63{left:591.900000px;}
.x96{left:593.400000px;}
.x94{left:594.900000px;}
.xa0{left:596.400000px;}
.x53{left:597.900000px;}
.x55{left:599.400000px;}
.xae{left:600.750000px;}
.x20{left:602.250000px;}
.x78{left:603.900000px;}
.x83{left:605.400000px;}
.x82{left:607.350000px;}
.x58{left:608.400000px;}
.x5f{left:610.800000px;}
.x62{left:612.300000px;}
.xa2{left:614.400000px;}
.x21{left:617.550000px;}
.x84{left:620.400000px;}
.x30{left:640.200000px;}
.x33{left:642.750000px;}
.x2e{left:645.300000px;}
.xe{left:652.350000px;}
.x3a{left:653.400000px;}
.x32{left:655.350000px;}
.x3b{left:658.950000px;}
.x39{left:660.000000px;}
.x2b{left:663.450000px;}
.x2a{left:665.400000px;}
.x2c{left:666.750000px;}
.x2d{left:668.700000px;}
.x3c{left:672.300000px;}
.x22{left:673.500000px;}
.xf{left:676.650000px;}
.x38{left:679.350000px;}
.x2f{left:687.750000px;}
.x23{left:688.950000px;}
.x3d{left:692.700000px;}
.x31{left:694.050000px;}
.x64{left:695.250000px;}
.x24{left:696.900000px;}
.xa3{left:698.250000px;}
.x71{left:699.750000px;}
.x6b{left:700.800000px;}
.x66{left:702.300000px;}
.x6f{left:703.800000px;}
.x87{left:705.750000px;}
.x85{left:706.800000px;}
.x65{left:708.300000px;}
.x88{left:709.800000px;}
.x7a{left:711.300000px;}
.x25{left:712.350000px;}
.x70{left:713.850000px;}
.x68{left:716.250000px;}
.xa1{left:718.350000px;}
.x67{left:720.750000px;}
.x72{left:722.250000px;}
.x86{left:723.300000px;}
.x97{left:727.800000px;}
.xa8{left:728.850000px;}
.x6d{left:730.350000px;}
.x6e{left:731.850000px;}
.x69{left:732.900000px;}
.x6a{left:735.300000px;}
.x6c{left:737.850000px;}
.xaf{left:740.400000px;}
.x7b{left:742.800000px;}
.x10{left:775.650000px;}
.x11{left:799.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.202667pt;}
.wsc{word-spacing:-17.792000pt;}
.wsb{word-spacing:-17.728000pt;}
.ws3{word-spacing:-17.333333pt;}
.ws4{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.773333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws6{word-spacing:-0.213333pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:29.173333pt;}
.ws9{word-spacing:33.920000pt;}
.ws7{word-spacing:37.120000pt;}
.wsa{word-spacing:120.992000pt;}
._4{margin-left:-8.357333pt;}
._8{margin-left:-7.109333pt;}
._5{margin-left:-5.269333pt;}
._2{margin-left:-4.000000pt;}
._27{margin-left:-3.109333pt;}
._1{margin-left:-2.133333pt;}
._3{margin-left:-0.906667pt;}
._0{width:1.408000pt;}
._7{width:3.109333pt;}
._6{width:4.165333pt;}
._17{width:5.424000pt;}
._14{width:6.570667pt;}
._11{width:7.568000pt;}
._9{width:8.624000pt;}
._a{width:9.621333pt;}
._12{width:10.736000pt;}
._b{width:12.144000pt;}
._c{width:13.258667pt;}
._1a{width:14.272000pt;}
._13{width:15.898667pt;}
._19{width:17.152000pt;}
._d{width:18.538667pt;}
._e{width:19.594667pt;}
._18{width:21.376000pt;}
._f{width:22.293333pt;}
._10{width:23.466667pt;}
._31{width:24.384000pt;}
._1c{width:25.664000pt;}
._1b{width:27.157333pt;}
._30{width:28.448000pt;}
._1d{width:29.824000pt;}
._15{width:32.032000pt;}
._16{width:33.146667pt;}
._32{width:34.901333pt;}
._33{width:36.074667pt;}
._20{width:37.290667pt;}
._28{width:38.218667pt;}
._1f{width:39.381333pt;}
._1e{width:40.352000pt;}
._21{width:48.170667pt;}
._2f{width:55.104000pt;}
._34{width:81.216000pt;}
._2c{width:95.936000pt;}
._26{width:102.677333pt;}
._25{width:160.693333pt;}
._24{width:163.152000pt;}
._29{width:174.560000pt;}
._2a{width:175.712000pt;}
._2b{width:187.381333pt;}
._2d{width:192.213333pt;}
._2e{width:193.408000pt;}
._23{width:242.672000pt;}
._22{width:252.928000pt;}
.fs2{font-size:29.333333pt;}
.fs3{font-size:32.000000pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y42{bottom:77.814667pt;}
.y56{bottom:79.681333pt;}
.yb7{bottom:130.081333pt;}
.ye5{bottom:135.814667pt;}
.y11c{bottom:136.881333pt;}
.y64{bottom:139.014667pt;}
.yb6{bottom:148.481333pt;}
.y108{bottom:150.081333pt;}
.ye4{bottom:154.214667pt;}
.y11b{bottom:157.948000pt;}
.y63{bottom:166.614667pt;}
.yb5{bottom:166.881333pt;}
.ye3{bottom:172.614667pt;}
.y107{bottom:177.681333pt;}
.y11a{bottom:179.148000pt;}
.y6b{bottom:182.881333pt;}
.yb4{bottom:185.281333pt;}
.ye2{bottom:191.014667pt;}
.y62{bottom:194.214667pt;}
.y119{bottom:200.214667pt;}
.yb3{bottom:203.681333pt;}
.y106{bottom:205.281333pt;}
.ye1{bottom:209.414667pt;}
.y6a{bottom:210.481333pt;}
.y118{bottom:221.414667pt;}
.y61{bottom:221.814667pt;}
.y41{bottom:221.948000pt;}
.ye0{bottom:227.814667pt;}
.yb2{bottom:230.081333pt;}
.y105{bottom:232.881333pt;}
.y69{bottom:238.081333pt;}
.y40{bottom:241.281333pt;}
.y117{bottom:242.481333pt;}
.ydf{bottom:246.214667pt;}
.yb1{bottom:248.481333pt;}
.y60{bottom:249.414667pt;}
.y116{bottom:263.681333pt;}
.yde{bottom:264.614667pt;}
.y68{bottom:265.681333pt;}
.yb0{bottom:266.881333pt;}
.y5f{bottom:277.014667pt;}
.y104{bottom:278.348000pt;}
.y3f{bottom:282.748000pt;}
.ydd{bottom:283.014667pt;}
.y115{bottom:284.748000pt;}
.yaf{bottom:285.281333pt;}
.ydc{bottom:301.414667pt;}
.y3e{bottom:302.081333pt;}
.yae{bottom:303.681333pt;}
.y5e{bottom:304.614667pt;}
.y114{bottom:305.948000pt;}
.yec{bottom:319.814667pt;}
.y3d{bottom:321.414667pt;}
.yad{bottom:322.081333pt;}
.y113{bottom:327.014667pt;}
.ydb{bottom:327.814667pt;}
.y5d{bottom:332.214667pt;}
.y79{bottom:333.318667pt;}
.yeb{bottom:338.214667pt;}
.yac{bottom:340.481333pt;}
.y3c{bottom:340.748000pt;}
.y67{bottom:341.148000pt;}
.yda{bottom:346.214667pt;}
.y112{bottom:348.214667pt;}
.y78{bottom:348.785333pt;}
.yea{bottom:356.614667pt;}
.yab{bottom:358.881333pt;}
.y5c{bottom:359.814667pt;}
.y3b{bottom:360.081333pt;}
.y77{bottom:364.118667pt;}
.yd9{bottom:364.614667pt;}
.y7d{bottom:367.185333pt;}
.y111{bottom:369.281333pt;}
.ye9{bottom:375.014667pt;}
.yaa{bottom:377.281333pt;}
.y1e{bottom:379.281333pt;}
.y3a{bottom:379.414667pt;}
.y76{bottom:379.718667pt;}
.y138{bottom:381.814667pt;}
.yd8{bottom:383.014667pt;}
.y5b{bottom:387.414667pt;}
.y110{bottom:390.481333pt;}
.ye8{bottom:393.414667pt;}
.y1d{bottom:394.614667pt;}
.y75{bottom:394.918667pt;}
.ya9{bottom:395.681333pt;}
.y39{bottom:398.748000pt;}
.yd7{bottom:401.414667pt;}
.y137{bottom:402.881333pt;}
.y8a{bottom:408.518667pt;}
.y1c{bottom:410.081333pt;}
.y74{bottom:410.385333pt;}
.y10f{bottom:411.548000pt;}
.ye7{bottom:411.814667pt;}
.ya8{bottom:414.081333pt;}
.y5a{bottom:415.014667pt;}
.y38{bottom:418.081333pt;}
.yd6{bottom:419.814667pt;}
.y136{bottom:424.081333pt;}
.y1b{bottom:425.414667pt;}
.y73{bottom:425.985333pt;}
.ye6{bottom:430.214667pt;}
.ya7{bottom:432.481333pt;}
.y10e{bottom:432.748000pt;}
.y37{bottom:437.414667pt;}
.yd5{bottom:438.214667pt;}
.y1a{bottom:440.881333pt;}
.y72{bottom:441.052000pt;}
.y59{bottom:442.614667pt;}
.y135{bottom:445.148000pt;}
.yf3{bottom:448.614667pt;}
.ya6{bottom:450.881333pt;}
.y10d{bottom:453.814667pt;}
.y19{bottom:456.214667pt;}
.y71{bottom:456.518667pt;}
.yd4{bottom:456.614667pt;}
.y36{bottom:456.748000pt;}
.y134{bottom:466.348000pt;}
.y55{bottom:467.014667pt;}
.ya5{bottom:469.281333pt;}
.y58{bottom:470.214667pt;}
.y18{bottom:471.681333pt;}
.y70{bottom:471.985333pt;}
.yd3{bottom:475.014667pt;}
.y35{bottom:476.081333pt;}
.y6c{bottom:481.585333pt;}
.yf2{bottom:485.414667pt;}
.y17{bottom:487.014667pt;}
.y133{bottom:487.414667pt;}
.y6f{bottom:487.452000pt;}
.ya4{bottom:487.681333pt;}
.yd2{bottom:493.414667pt;}
.y34{bottom:495.414667pt;}
.y10c{bottom:496.081333pt;}
.y57{bottom:497.814667pt;}
.y16{bottom:502.481333pt;}
.y6e{bottom:502.918667pt;}
.yf1{bottom:503.814667pt;}
.ya3{bottom:506.081333pt;}
.y132{bottom:508.614667pt;}
.yd1{bottom:511.814667pt;}
.y33{bottom:514.748000pt;}
.y10b{bottom:517.281333pt;}
.y15{bottom:517.814667pt;}
.y6d{bottom:519.585333pt;}
.yf0{bottom:522.214667pt;}
.ya2{bottom:524.481333pt;}
.y54{bottom:525.414667pt;}
.y131{bottom:529.681333pt;}
.yd0{bottom:530.214667pt;}
.y14{bottom:533.281333pt;}
.y32{bottom:534.081333pt;}
.y10a{bottom:538.348000pt;}
.yef{bottom:540.614667pt;}
.ya1{bottom:542.881333pt;}
.y13{bottom:548.614667pt;}
.y130{bottom:550.881333pt;}
.y53{bottom:553.014667pt;}
.y31{bottom:553.414667pt;}
.y65{bottom:557.985333pt;}
.yee{bottom:559.014667pt;}
.y109{bottom:559.548000pt;}
.ya0{bottom:561.281333pt;}
.y12{bottom:564.081333pt;}
.ycf{bottom:567.014667pt;}
.y12f{bottom:571.948000pt;}
.y30{bottom:572.748000pt;}
.yed{bottom:577.414667pt;}
.y11{bottom:579.414667pt;}
.y9f{bottom:579.681333pt;}
.y52{bottom:580.614667pt;}
.yce{bottom:585.414667pt;}
.y2f{bottom:592.081333pt;}
.y12e{bottom:593.148000pt;}
.y10{bottom:594.881333pt;}
.y103{bottom:595.814667pt;}
.y9e{bottom:598.081333pt;}
.ycd{bottom:603.814667pt;}
.y84{bottom:605.985333pt;}
.y51{bottom:608.214667pt;}
.yf{bottom:610.214667pt;}
.y2e{bottom:611.414667pt;}
.y102{bottom:614.214667pt;}
.y9d{bottom:616.481333pt;}
.y83{bottom:621.452000pt;}
.ycc{bottom:622.214667pt;}
.y2d{bottom:630.748000pt;}
.y101{bottom:632.614667pt;}
.y9c{bottom:634.881333pt;}
.y12d{bottom:635.414667pt;}
.y50{bottom:635.814667pt;}
.y82{bottom:636.785333pt;}
.ycb{bottom:640.614667pt;}
.y89{bottom:642.518667pt;}
.ye{bottom:643.814667pt;}
.y2c{bottom:650.081333pt;}
.y100{bottom:651.014667pt;}
.y81{bottom:652.252000pt;}
.y9b{bottom:653.281333pt;}
.y12c{bottom:656.481333pt;}
.yca{bottom:659.014667pt;}
.yd{bottom:659.281333pt;}
.y4f{bottom:663.414667pt;}
.y80{bottom:667.585333pt;}
.y2b{bottom:669.414667pt;}
.y7c{bottom:669.985333pt;}
.y9a{bottom:671.681333pt;}
.yc9{bottom:677.414667pt;}
.y12b{bottom:677.681333pt;}
.y7f{bottom:683.052000pt;}
.yff{bottom:687.814667pt;}
.y2a{bottom:688.748000pt;}
.yc{bottom:690.081333pt;}
.y4e{bottom:691.014667pt;}
.yc8{bottom:695.814667pt;}
.y7e{bottom:698.385333pt;}
.y12a{bottom:698.748000pt;}
.yfe{bottom:706.214667pt;}
.y29{bottom:708.081333pt;}
.y99{bottom:708.481333pt;}
.yc7{bottom:714.214667pt;}
.y4d{bottom:718.614667pt;}
.y129{bottom:719.948000pt;}
.yb{bottom:720.748000pt;}
.yfd{bottom:724.614667pt;}
.y98{bottom:726.881333pt;}
.y28{bottom:727.414667pt;}
.yc6{bottom:732.614667pt;}
.ya{bottom:736.214667pt;}
.y128{bottom:741.014667pt;}
.yfc{bottom:743.014667pt;}
.y97{bottom:745.281333pt;}
.y4c{bottom:746.214667pt;}
.y87{bottom:746.652000pt;}
.y27{bottom:746.748000pt;}
.y88{bottom:746.918667pt;}
.yc5{bottom:751.014667pt;}
.yfb{bottom:761.414667pt;}
.y86{bottom:761.985333pt;}
.y127{bottom:762.214667pt;}
.y96{bottom:763.681333pt;}
.y7b{bottom:763.985333pt;}
.y26{bottom:766.081333pt;}
.y9{bottom:766.881333pt;}
.yc4{bottom:769.414667pt;}
.y4b{bottom:773.814667pt;}
.y85{bottom:777.452000pt;}
.yfa{bottom:779.814667pt;}
.y95{bottom:782.081333pt;}
.y8{bottom:782.214667pt;}
.y126{bottom:783.281333pt;}
.y25{bottom:785.414667pt;}
.yc3{bottom:787.814667pt;}
.y7a{bottom:789.852000pt;}
.y7{bottom:797.681333pt;}
.yf9{bottom:798.214667pt;}
.y94{bottom:800.481333pt;}
.y4a{bottom:801.414667pt;}
.y24{bottom:802.614667pt;}
.y125{bottom:804.481333pt;}
.yc2{bottom:806.214667pt;}
.yf8{bottom:816.614667pt;}
.y93{bottom:818.881333pt;}
.y66{bottom:822.081333pt;}
.yc1{bottom:824.614667pt;}
.y124{bottom:825.548000pt;}
.y6{bottom:828.348000pt;}
.y49{bottom:829.014667pt;}
.yf7{bottom:835.014667pt;}
.y92{bottom:837.281333pt;}
.yc0{bottom:843.014667pt;}
.y5{bottom:843.814667pt;}
.y123{bottom:846.748000pt;}
.yf6{bottom:853.414667pt;}
.y91{bottom:855.681333pt;}
.y48{bottom:856.614667pt;}
.y23{bottom:858.348000pt;}
.ybf{bottom:861.414667pt;}
.y122{bottom:867.814667pt;}
.yf5{bottom:871.814667pt;}
.y90{bottom:874.081333pt;}
.ybe{bottom:879.814667pt;}
.y47{bottom:884.214667pt;}
.y121{bottom:889.014667pt;}
.yf4{bottom:890.214667pt;}
.y8f{bottom:892.481333pt;}
.ybd{bottom:898.214667pt;}
.y22{bottom:909.014667pt;}
.y120{bottom:910.081333pt;}
.y8e{bottom:910.881333pt;}
.y46{bottom:911.814667pt;}
.ybc{bottom:916.614667pt;}
.y21{bottom:929.014667pt;}
.y11f{bottom:931.281333pt;}
.ybb{bottom:935.014667pt;}
.y8d{bottom:937.148000pt;}
.y45{bottom:939.414667pt;}
.y20{bottom:948.881333pt;}
.y11e{bottom:952.348000pt;}
.yba{bottom:953.414667pt;}
.y44{bottom:967.014667pt;}
.y1f{bottom:968.881333pt;}
.yb9{bottom:971.814667pt;}
.y11d{bottom:973.548000pt;}
.y8c{bottom:981.681333pt;}
.yb8{bottom:990.214667pt;}
.y43{bottom:994.614667pt;}
.y8b{bottom:997.148000pt;}
.y4{bottom:1006.214667pt;}
.y3{bottom:1018.481333pt;}
.y2{bottom:1031.948000pt;}
.h5{height:31.083333pt;}
.h11{height:33.843750pt;}
.h4{height:35.708333pt;}
.h8{height:37.057292pt;}
.hf{height:37.604167pt;}
.h7{height:38.854167pt;}
.he{height:40.171875pt;}
.hd{height:44.437500pt;}
.ha{height:44.468750pt;}
.h10{height:44.635417pt;}
.h13{height:46.625000pt;}
.h6{height:47.369792pt;}
.hc{height:49.098958pt;}
.h12{height:52.106771pt;}
.h3{height:53.562500pt;}
.hb{height:56.843750pt;}
.h9{height:61.580729pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x6{left:77.600000pt;}
.x98{left:82.666667pt;}
.xa9{left:84.800000pt;}
.x74{left:86.666667pt;}
.x41{left:87.733333pt;}
.xa4{left:90.133333pt;}
.x89{left:92.000000pt;}
.x73{left:94.133333pt;}
.x40{left:104.533333pt;}
.x42{left:106.133333pt;}
.x3e{left:111.066667pt;}
.x37{left:113.466667pt;}
.x29{left:115.066667pt;}
.x7{left:128.666667pt;}
.x28{left:154.000000pt;}
.x12{left:163.733333pt;}
.x13{left:178.400000pt;}
.x36{left:184.266667pt;}
.x8a{left:187.466667pt;}
.x75{left:188.800000pt;}
.x46{left:191.066667pt;}
.x76{left:192.800000pt;}
.x44{left:193.733333pt;}
.x43{left:195.866667pt;}
.x47{left:196.800000pt;}
.x14{left:198.000000pt;}
.x9b{left:199.466667pt;}
.x45{left:200.400000pt;}
.x7c{left:202.533333pt;}
.x48{left:204.800000pt;}
.x26{left:206.266667pt;}
.x9a{left:207.466667pt;}
.xab{left:210.533333pt;}
.x15{left:212.666667pt;}
.xa5{left:218.133333pt;}
.x99{left:219.466667pt;}
.x8b{left:220.800000pt;}
.x3f{left:224.400000pt;}
.xaa{left:227.466667pt;}
.x34{left:228.933333pt;}
.x16{left:249.333333pt;}
.x27{left:253.866667pt;}
.x17{left:262.933333pt;}
.x18{left:278.133333pt;}
.x19{left:291.733333pt;}
.x8d{left:294.533333pt;}
.x7d{left:295.866667pt;}
.x77{left:296.800000pt;}
.x8f{left:298.400000pt;}
.xac{left:299.866667pt;}
.x4b{left:300.800000pt;}
.x91{left:302.533333pt;}
.x4a{left:303.866667pt;}
.x7f{left:306.133333pt;}
.x49{left:308.266667pt;}
.x2{left:309.466667pt;}
.x90{left:310.533333pt;}
.x80{left:311.866667pt;}
.x9c{left:312.800000pt;}
.x7e{left:318.133333pt;}
.x4{left:319.733333pt;}
.x8e{left:323.866667pt;}
.x8c{left:326.133333pt;}
.xa6{left:328.266667pt;}
.x95{left:334.533333pt;}
.x1a{left:341.466667pt;}
.x8{left:352.533333pt;}
.x1b{left:355.200000pt;}
.x35{left:359.333333pt;}
.x9{left:374.133333pt;}
.x3{left:388.400000pt;}
.x4d{left:402.000000pt;}
.x9e{left:403.466667pt;}
.x93{left:404.800000pt;}
.xa7{left:407.466667pt;}
.x50{left:408.800000pt;}
.x4f{left:410.133333pt;}
.x4e{left:414.533333pt;}
.x4c{left:421.600000pt;}
.x1c{left:423.600000pt;}
.x9d{left:425.600000pt;}
.x92{left:428.266667pt;}
.xa{left:433.600000pt;}
.x1d{left:437.200000pt;}
.x9f{left:441.600000pt;}
.xad{left:446.133333pt;}
.x5{left:453.200000pt;}
.xb{left:455.200000pt;}
.x1e{left:458.533333pt;}
.x1f{left:472.266667pt;}
.xc{left:485.466667pt;}
.xd{left:507.066667pt;}
.x5d{left:508.266667pt;}
.x54{left:509.200000pt;}
.x81{left:510.533333pt;}
.x56{left:511.466667pt;}
.x5e{left:512.666667pt;}
.x52{left:513.600000pt;}
.x5b{left:514.533333pt;}
.x61{left:515.866667pt;}
.x5c{left:517.600000pt;}
.x59{left:518.533333pt;}
.x60{left:520.266667pt;}
.x57{left:522.000000pt;}
.x79{left:523.333333pt;}
.x5a{left:524.266667pt;}
.x51{left:525.200000pt;}
.x63{left:526.133333pt;}
.x96{left:527.466667pt;}
.x94{left:528.800000pt;}
.xa0{left:530.133333pt;}
.x53{left:531.466667pt;}
.x55{left:532.800000pt;}
.xae{left:534.000000pt;}
.x20{left:535.333333pt;}
.x78{left:536.800000pt;}
.x83{left:538.133333pt;}
.x82{left:539.866667pt;}
.x58{left:540.800000pt;}
.x5f{left:542.933333pt;}
.x62{left:544.266667pt;}
.xa2{left:546.133333pt;}
.x21{left:548.933333pt;}
.x84{left:551.466667pt;}
.x30{left:569.066667pt;}
.x33{left:571.333333pt;}
.x2e{left:573.600000pt;}
.xe{left:579.866667pt;}
.x3a{left:580.800000pt;}
.x32{left:582.533333pt;}
.x3b{left:585.733333pt;}
.x39{left:586.666667pt;}
.x2b{left:589.733333pt;}
.x2a{left:591.466667pt;}
.x2c{left:592.666667pt;}
.x2d{left:594.400000pt;}
.x3c{left:597.600000pt;}
.x22{left:598.666667pt;}
.xf{left:601.466667pt;}
.x38{left:603.866667pt;}
.x2f{left:611.333333pt;}
.x23{left:612.400000pt;}
.x3d{left:615.733333pt;}
.x31{left:616.933333pt;}
.x64{left:618.000000pt;}
.x24{left:619.466667pt;}
.xa3{left:620.666667pt;}
.x71{left:622.000000pt;}
.x6b{left:622.933333pt;}
.x66{left:624.266667pt;}
.x6f{left:625.600000pt;}
.x87{left:627.333333pt;}
.x85{left:628.266667pt;}
.x65{left:629.600000pt;}
.x88{left:630.933333pt;}
.x7a{left:632.266667pt;}
.x25{left:633.200000pt;}
.x70{left:634.533333pt;}
.x68{left:636.666667pt;}
.xa1{left:638.533333pt;}
.x67{left:640.666667pt;}
.x72{left:642.000000pt;}
.x86{left:642.933333pt;}
.x97{left:646.933333pt;}
.xa8{left:647.866667pt;}
.x6d{left:649.200000pt;}
.x6e{left:650.533333pt;}
.x69{left:651.466667pt;}
.x6a{left:653.600000pt;}
.x6c{left:655.866667pt;}
.xaf{left:658.133333pt;}
.x7b{left:660.266667pt;}
.x10{left:689.466667pt;}
.x11{left:711.066667pt;}
}




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