
    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_5dd7d62cb4f5ac1ff6668666.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.139160;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_3a2938f464738d471bbec5cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104000;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_df7b312063587828247f9b7e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_cb0b408dc52b6fb2d5f7a763.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.076000;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_db0364d1f86f5ec4dae49678.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.066000;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_1cf6d7faf526ee427cac6c82.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.805000;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_9a43052d39ab2b8fdf295458.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_fb9b7891344329829e5d5e04.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_4da65b788653c537f0860f27.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.080000;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_4063d39d211b0c5d48a79426.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_d8cda91fe679ae129ae0eb77.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.101108px;}
.ls6{letter-spacing:27.892299px;}
.ls9{letter-spacing:34.210741px;}
.ls8{letter-spacing:59.410768px;}
.ls7{letter-spacing:78.082878px;}
.ls2{letter-spacing:409.803163px;}
.ls3{letter-spacing:564.603136px;}
.ls4{letter-spacing:846.843141px;}
.ls0{letter-spacing:884.406288px;}
.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:-66.242700px;}
.ws0{word-spacing:-34.561298px;}
.ws3{word-spacing:-17.156859px;}
.ws2{word-spacing:-15.478423px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-884.406288px;}
._2b{margin-left:-17.594840px;}
._2c{margin-left:-15.641488px;}
._2a{margin-left:-14.365980px;}
._24{margin-left:-12.352960px;}
._30{margin-left:-11.179316px;}
._25{margin-left:-9.505634px;}
._27{margin-left:-8.497760px;}
._23{margin-left:-7.362277px;}
._2e{margin-left:-5.258193px;}
._40{margin-left:-3.807191px;}
._4{margin-left:-2.561517px;}
._2{margin-left:-1.008038px;}
._3{width:1.440054px;}
._26{width:3.047699px;}
._21{width:4.557808px;}
._48{width:6.221121px;}
._49{width:7.409774px;}
._3b{width:9.148003px;}
._3a{width:10.519651px;}
._3e{width:11.790228px;}
._3f{width:12.804558px;}
._43{width:14.707691px;}
._44{width:16.122257px;}
._39{width:18.205875px;}
._41{width:20.057824px;}
._1f{width:21.712080px;}
._20{width:23.016823px;}
._4b{width:24.367026px;}
._4f{width:26.385508px;}
._46{width:27.827651px;}
._42{width:28.864998px;}
._45{width:30.182978px;}
._50{width:31.717315px;}
._4a{width:32.856379px;}
._54{width:34.891086px;}
._53{width:35.956072px;}
._4e{width:38.354264px;}
._55{width:40.383935px;}
._56{width:42.004316px;}
._3d{width:45.372275px;}
._3c{width:46.900090px;}
._51{width:48.179827px;}
._4d{width:52.262458px;}
._4c{width:53.921558px;}
._47{width:56.761455px;}
._a{width:58.648270px;}
._52{width:59.938776px;}
._2f{width:64.005370px;}
._31{width:65.618950px;}
._18{width:66.775782px;}
._2d{width:68.607063px;}
._29{width:70.340168px;}
._28{width:81.993807px;}
._1e{width:113.797383px;}
._10{width:153.964105px;}
._f{width:168.331784px;}
._1{width:198.794343px;}
._b{width:202.453762px;}
._1c{width:234.735947px;}
._1b{width:243.293818px;}
._14{width:253.149583px;}
._12{width:270.809240px;}
._7{width:303.599377px;}
._15{width:321.105760px;}
._8{width:327.041883px;}
._1a{width:330.111038px;}
._5{width:367.464327px;}
._1d{width:378.060565px;}
._16{width:396.737363px;}
._6{width:404.431714px;}
._13{width:503.822161px;}
._d{width:534.390157px;}
._32{width:537.072421px;}
._17{width:564.527284px;}
._e{width:579.766406px;}
._c{width:652.714016px;}
._9{width:697.413442px;}
._11{width:715.431456px;}
._19{width:740.271439px;}
._22{width:845.977241px;}
._38{width:985.918559px;}
._36{width:1167.475402px;}
._37{width:1194.634909px;}
._35{width:1229.478569px;}
._34{width:1241.865954px;}
._33{width:1255.710678px;}
.fc9{color:rgb(188,78,228);}
.fc6{color:rgb(92,93,205);}
.fc5{color:transparent;}
.fc3{color:rgb(255,134,219);}
.fc2{color:rgb(14,20,93);}
.fc7{color:rgb(0,32,96);}
.fc1{color:rgb(63,179,248);}
.fc8{color:rgb(244,101,36);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760225px;}
.fs6{font-size:59.762250px;}
.fs0{font-size:66.242700px;}
.fs1{font-size:84.243145px;}
.fs3{font-size:108.004050px;}
.fs2{font-size:120.244505px;}
.fs4{font-size:144.005409px;}
.y0{bottom:0.000000px;}
.y2c{bottom:4.859974px;}
.y53{bottom:4.860008px;}
.y3b{bottom:4.860009px;}
.y1b{bottom:8.100013px;}
.y5{bottom:63.360077px;}
.y4{bottom:90.360077px;}
.y21{bottom:99.900055px;}
.y22{bottom:105.300110px;}
.y3{bottom:117.360077px;}
.y20{bottom:150.660049px;}
.ydf{bottom:173.700096px;}
.y152{bottom:176.760064px;}
.y9f{bottom:186.480079px;}
.yf9{bottom:191.340088px;}
.y12e{bottom:193.680039px;}
.yde{bottom:196.200096px;}
.yc3{bottom:200.340088px;}
.y151{bottom:201.060036px;}
.y41{bottom:208.620072px;}
.y9e{bottom:208.980079px;}
.yf8{bottom:213.840088px;}
.y12d{bottom:217.800041px;}
.ydd{bottom:218.700096px;}
.y150{bottom:225.180039px;}
.yc2{bottom:227.160049px;}
.y40{bottom:230.940033px;}
.y16c{bottom:232.380066px;}
.y9d{bottom:235.800041px;}
.yf7{bottom:236.340088px;}
.y16e{bottom:240.480079px;}
.ydc{bottom:241.020058px;}
.y12c{bottom:242.100083px;}
.y14f{bottom:249.480079px;}
.yc1{bottom:249.660049px;}
.y3f{bottom:253.440033px;}
.y9c{bottom:258.660049px;}
.yf6{bottom:258.840088px;}
.y16b{bottom:261.180039px;}
.y12b{bottom:266.400055px;}
.ydb{bottom:268.020058px;}
.yc0{bottom:272.160049px;}
.y14e{bottom:276.480079px;}
.yf5{bottom:281.340088px;}
.y16a{bottom:289.980079px;}
.y12a{bottom:290.700096px;}
.y9b{bottom:293.760064px;}
.ybf{bottom:294.660049px;}
.yda{bottom:295.020058px;}
.y14d{bottom:303.480079px;}
.yf4{bottom:303.660049px;}
.y3e{bottom:310.860077px;}
.y129{bottom:314.820099px;}
.ybe{bottom:317.160049px;}
.y169{bottom:318.600083px;}
.yd9{bottom:322.020058px;}
.y9a{bottom:322.560036px;}
.y14c{bottom:325.980079px;}
.yf3{bottom:330.660049px;}
.y128{bottom:339.120072px;}
.ybd{bottom:339.660049px;}
.yd8{bottom:344.700096px;}
.y99{bottom:346.860077px;}
.y168{bottom:347.400055px;}
.y3d{bottom:349.020058px;}
.y14b{bottom:352.980079px;}
.yf2{bottom:357.660049px;}
.y127{bottom:363.420043px;}
.y76{bottom:365.040047px;}
.ybc{bottom:366.480079px;}
.y98{bottom:371.160049px;}
.y3c{bottom:371.520058px;}
.y167{bottom:371.700096px;}
.y14a{bottom:379.800041px;}
.yd7{bottom:379.980079px;}
.yf1{bottom:380.160049px;}
.y126{bottom:387.540047px;}
.y75{bottom:392.040047px;}
.ybb{bottom:393.480079px;}
.y97{bottom:395.280052px;}
.y166{bottom:395.820099px;}
.y149{bottom:402.300041px;}
.yf0{bottom:402.660049px;}
.y3a{bottom:405.000068px;}
.yd6{bottom:406.260064px;}
.y125{bottom:411.840088px;}
.y56{bottom:414.720085px;}
.y74{bottom:415.440033px;}
.yba{bottom:415.980079px;}
.y10f{bottom:416.880066px;}
.y165{bottom:420.120072px;}
.y96{bottom:424.080093px;}
.y148{bottom:424.800041px;}
.yef{bottom:425.160049px;}
.y124{bottom:436.140060px;}
.yb9{bottom:438.480079px;}
.y73{bottom:439.560036px;}
.y10e{bottom:443.880066px;}
.y164{bottom:444.420043px;}
.y39{bottom:444.960091px;}
.y147{bottom:447.300041px;}
.yee{bottom:447.480079px;}
.y95{bottom:448.380066px;}
.yb8{bottom:460.980079px;}
.y119{bottom:464.760064px;}
.y123{bottom:464.940033px;}
.y163{bottom:468.720085px;}
.yd5{bottom:469.980079px;}
.y10d{bottom:470.880066px;}
.y72{bottom:471.060036px;}
.y38{bottom:471.960091px;}
.y94{bottom:472.500068px;}
.y146{bottom:474.300041px;}
.yed{bottom:474.480079px;}
.yb7{bottom:483.480079px;}
.y55{bottom:486.540047px;}
.y118{bottom:491.760064px;}
.y10c{bottom:493.380066px;}
.y122{bottom:493.560036px;}
.y162{bottom:495.540047px;}
.y145{bottom:496.800041px;}
.yd4{bottom:496.980079px;}
.y37{bottom:498.960091px;}
.y93{bottom:501.300041px;}
.yb6{bottom:505.980079px;}
.y71{bottom:511.560036px;}
.y117{bottom:514.260064px;}
.y10b{bottom:515.880066px;}
.yd3{bottom:519.480079px;}
.y121{bottom:522.360077px;}
.y161{bottom:522.540047px;}
.y144{bottom:523.620072px;}
.y92{bottom:525.600083px;}
.y36{bottom:529.740074px;}
.yb5{bottom:532.800041px;}
.y116{bottom:536.760064px;}
.y10a{bottom:538.200096px;}
.yd2{bottom:541.800041px;}
.yec{bottom:541.980079px;}
.y54{bottom:542.880066px;}
.y70{bottom:543.060036px;}
.y143{bottom:546.120072px;}
.y120{bottom:546.660049px;}
.y160{bottom:549.540047px;}
.y91{bottom:549.900055px;}
.y35{bottom:552.060036px;}
.y115{bottom:559.080093px;}
.yb4{bottom:559.800041px;}
.y109{bottom:560.700096px;}
.y1d{bottom:563.940033px;}
.yd1{bottom:564.300041px;}
.yeb{bottom:564.480079px;}
.y142{bottom:568.620072px;}
.y11f{bottom:570.780052px;}
.y34{bottom:574.560036px;}
.y15f{bottom:576.540047px;}
.y19{bottom:577.440033px;}
.y90{bottom:578.520058px;}
.y114{bottom:581.580093px;}
.yb3{bottom:586.800041px;}
.y108{bottom:587.700096px;}
.y141{bottom:591.120072px;}
.yd0{bottom:591.300041px;}
.y11e{bottom:595.080093px;}
.y52{bottom:595.440033px;}
.y15e{bottom:599.040047px;}
.y1c{bottom:600.840088px;}
.y8f{bottom:602.820099px;}
.y18{bottom:604.440033px;}
.y6f{bottom:606.060036px;}
.y113{bottom:608.580093px;}
.yb2{bottom:609.300041px;}
.y107{bottom:610.380066px;}
.y33{bottom:612.900055px;}
.ycf{bottom:613.800041px;}
.y140{bottom:618.120072px;}
.yea{bottom:618.300041px;}
.y11d{bottom:622.080093px;}
.y15d{bottom:626.040047px;}
.y8e{bottom:627.120072px;}
.y17{bottom:631.440033px;}
.yb1{bottom:631.800041px;}
.y1a{bottom:632.880066px;}
.y32{bottom:635.220085px;}
.y112{bottom:635.580093px;}
.yce{bottom:636.300041px;}
.y6e{bottom:637.560036px;}
.y51{bottom:638.460091px;}
.y13f{bottom:640.620072px;}
.ye9{bottom:640.800041px;}
.y11c{bottom:644.580093px;}
.y106{bottom:645.660049px;}
.y15c{bottom:648.540047px;}
.y8d{bottom:651.240074px;}
.yb0{bottom:654.300041px;}
.y80{bottom:655.740074px;}
.y31{bottom:657.720085px;}
.y16{bottom:658.260064px;}
.ycd{bottom:658.800041px;}
.y50{bottom:660.960091px;}
.y111{bottom:662.040047px;}
.y13e{bottom:662.940033px;}
.ye8{bottom:663.300041px;}
.y11b{bottom:671.580093px;}
.y105{bottom:672.660049px;}
.y15b{bottom:675.360077px;}
.y8c{bottom:675.540047px;}
.y6d{bottom:678.060036px;}
.y30{bottom:680.220085px;}
.yaf{bottom:681.120072px;}
.y110{bottom:682.560036px;}
.y7f{bottom:682.740074px;}
.y15{bottom:685.260064px;}
.ye7{bottom:685.800041px;}
.y13d{bottom:689.940067px;}
.y104{bottom:695.160049px;}
.y11a{bottom:698.040081px;}
.y4f{bottom:699.120072px;}
.y15a{bottom:702.360077px;}
.y8b{bottom:702.540081px;}
.y2f{bottom:702.720051px;}
.yae{bottom:703.620072px;}
.ye6{bottom:708.300076px;}
.y14{bottom:712.260064px;}
.y13c{bottom:712.800076px;}
.y103{bottom:717.660049px;}
.y6c{bottom:718.560070px;}
.y7e{bottom:721.620072px;}
.y8a{bottom:725.220051px;}
.yad{bottom:726.120072px;}
.y63{bottom:729.180073px;}
.y159{bottom:729.360077px;}
.ye5{bottom:730.620072px;}
.y4e{bottom:734.400055px;}
.y102{bottom:740.160049px;}
.y2e{bottom:740.880066px;}
.y13{bottom:742.320065px;}
.y13b{bottom:747.900055px;}
.yac{bottom:748.620072px;}
.y62{bottom:751.680073px;}
.ye4{bottom:753.120072px;}
.y158{bottom:756.360077px;}
.y6b{bottom:759.060070px;}
.y89{bottom:760.500068px;}
.y4d{bottom:761.220051px;}
.y101{bottom:762.480079px;}
.y2d{bottom:763.380066px;}
.y7d{bottom:765.180073px;}
.yab{bottom:771.120072px;}
.ycc{bottom:775.620072px;}
.y13a{bottom:776.700061px;}
.y61{bottom:778.500068px;}
.y157{bottom:778.860077px;}
.y12{bottom:780.480079px;}
.y100{bottom:784.980079px;}
.y88{bottom:786.780052px;}
.y4c{bottom:788.220051px;}
.y6a{bottom:790.560070px;}
.y2b{bottom:796.860077px;}
.yaa{bottom:797.940067px;}
.ye3{bottom:798.120072px;}
.y139{bottom:801.000068px;}
.ycb{bottom:802.440067px;}
.y60{bottom:805.500068px;}
.y156{bottom:805.680073px;}
.y11{bottom:807.480079px;}
.y7c{bottom:808.740074px;}
.y4b{bottom:819.000068px;}
.ye2{bottom:820.620072px;}
.y69{bottom:822.060070px;}
.ya9{bottom:824.220051px;}
.yca{bottom:824.940067px;}
.y138{bottom:825.120072px;}
.y155{bottom:828.540081px;}
.yff{bottom:829.980079px;}
.y5f{bottom:832.500068px;}
.y10{bottom:834.480079px;}
.y2a{bottom:839.880066px;}
.y4a{bottom:841.500068px;}
.ye1{bottom:843.120072px;}
.y137{bottom:849.420078px;}
.y87{bottom:850.500068px;}
.yc9{bottom:851.220051px;}
.y7b{bottom:852.120072px;}
.yfe{bottom:852.480079px;}
.y5e{bottom:859.500068px;}
.yf{bottom:861.480079px;}
.y29{bottom:862.380066px;}
.y68{bottom:862.560070px;}
.y154{bottom:863.820065px;}
.ye0{bottom:865.440067px;}
.yfd{bottom:874.980079px;}
.y86{bottom:877.500068px;}
.y136{bottom:878.220051px;}
.y49{bottom:879.660049px;}
.y5d{bottom:882.000068px;}
.ya8{bottom:887.940067px;}
.ye{bottom:888.300076px;}
.y153{bottom:889.920078px;}
.y7a{bottom:895.680073px;}
.yfc{bottom:897.300076px;}
.y85{bottom:900.000068px;}
.y28{bottom:900.540081px;}
.y48{bottom:902.160049px;}
.y67{bottom:903.060070px;}
.y5c{bottom:904.500068px;}
.y135{bottom:907.020058px;}
.ya7{bottom:914.940067px;}
.yd{bottom:915.300076px;}
.yfb{bottom:919.800076px;}
.y84{bottom:922.500068px;}
.y47{bottom:924.660049px;}
.y5b{bottom:927.000068px;}
.y134{bottom:931.140060px;}
.y79{bottom:936.900055px;}
.ya6{bottom:937.440067px;}
.y27{bottom:938.880066px;}
.yc8{bottom:941.940067px;}
.yc{bottom:942.300076px;}
.y66{bottom:943.560070px;}
.y83{bottom:944.820065px;}
.y5a{bottom:949.320065px;}
.y133{bottom:955.440067px;}
.ya5{bottom:959.940067px;}
.y46{bottom:962.820065px;}
.yc7{bottom:964.440067px;}
.y82{bottom:967.320065px;}
.yb{bottom:969.300076px;}
.y59{bottom:971.820065px;}
.y26{bottom:977.040064px;}
.y78{bottom:979.380066px;}
.y132{bottom:979.740074px;}
.ya4{bottom:982.440067px;}
.y65{bottom:984.060070px;}
.y45{bottom:985.320065px;}
.yc6{bottom:986.940067px;}
.y81{bottom:989.820065px;}
.yfa{bottom:991.980063px;}
.y58{bottom:994.320065px;}
.ya{bottom:996.300058px;}
.y16d{bottom:999.540064px;}
.y131{bottom:1004.040064px;}
.ya3{bottom:1004.760064px;}
.y77{bottom:1007.100065px;}
.yc5{bottom:1009.260064px;}
.y25{bottom:1012.320065px;}
.y57{bottom:1016.820065px;}
.y9{bottom:1023.300058px;}
.y44{bottom:1023.480063px;}
.y64{bottom:1024.740074px;}
.ya2{bottom:1027.260064px;}
.y130{bottom:1028.160067px;}
.yc4{bottom:1031.760064px;}
.y24{bottom:1039.320065px;}
.y43{bottom:1045.980063px;}
.y8{bottom:1050.120072px;}
.y12f{bottom:1052.460074px;}
.ya1{bottom:1054.260064px;}
.y23{bottom:1065.420061px;}
.y42{bottom:1068.480063px;}
.y7{bottom:1076.400072px;}
.ya0{bottom:1076.760064px;}
.y1f{bottom:1103.760064px;}
.y6{bottom:1141.380066px;}
.y1e{bottom:1145.160067px;}
.y2{bottom:1168.740066px;}
.y1{bottom:1191.240066px;}
.h8{height:5.178015px;}
.hb{height:22.319996px;}
.hc{height:22.320030px;}
.h6{height:42.659981px;}
.hf{height:47.570751px;}
.he{height:47.869562px;}
.ha{height:50.684722px;}
.h10{height:52.729189px;}
.h9{height:53.721827px;}
.h2{height:59.547271px;}
.h3{height:75.728335px;}
.h11{height:96.339613px;}
.h5{height:97.087625px;}
.h4{height:110.143966px;}
.hd{height:129.450175px;}
.h7{height:131.908955px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:8.819997px;}
.wa{width:9.359940px;}
.we{width:9.359991px;}
.w7{width:9.360008px;}
.w10{width:9.360009px;}
.wb{width:10.259994px;}
.w8{width:23.220000px;}
.w5{width:25.560001px;}
.w3{width:76.319996px;}
.w11{width:97.560035px;}
.w6{width:124.559993px;}
.w9{width:129.060035px;}
.wc{width:150.299998px;}
.wd{width:150.660007px;}
.wf{width:207.000000px;}
.w2{width:208.079999px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:57.780001px;}
.x5{left:79.920001px;}
.x2{left:108.000000px;}
.x1{left:116.099997px;}
.x19{left:124.560001px;}
.x1a{left:135.000000px;}
.x3{left:140.400003px;}
.xa{left:156.780001px;}
.x1b{left:162.000000px;}
.xb{left:205.919992px;}
.xe{left:240.479994px;}
.xf{left:264.419992px;}
.x12{left:266.039996px;}
.x13{left:284.939999px;}
.x6{left:288.000000px;}
.x15{left:341.279983px;}
.x7{left:364.319996px;}
.x8{left:373.139992px;}
.x14{left:453.959988px;}
.xc{left:466.379998px;}
.x4{left:531.180005px;}
.x17{left:548.279983px;}
.x16{left:566.639992px;}
.x10{left:595.440033px;}
.xd{left:622.980011px;}
.x11{left:633.240006px;}
.x18{left:664.200027px;}
.x1c{left:725.039978px;}
.x1d{left:783.899987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.089874pt;}
.ls6{letter-spacing:24.793155pt;}
.ls9{letter-spacing:30.409547pt;}
.ls8{letter-spacing:52.809571pt;}
.ls7{letter-spacing:69.407003pt;}
.ls2{letter-spacing:364.269478pt;}
.ls3{letter-spacing:501.869454pt;}
.ls4{letter-spacing:752.749458pt;}
.ls0{letter-spacing:786.138922pt;}
.ws4{word-spacing:-58.882400pt;}
.ws0{word-spacing:-30.721154pt;}
.ws3{word-spacing:-15.250542pt;}
.ws2{word-spacing:-13.758598pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-786.138922pt;}
._2b{margin-left:-15.639858pt;}
._2c{margin-left:-13.903545pt;}
._2a{margin-left:-12.769760pt;}
._24{margin-left:-10.980409pt;}
._30{margin-left:-9.937170pt;}
._25{margin-left:-8.449452pt;}
._27{margin-left:-7.553564pt;}
._23{margin-left:-6.544246pt;}
._2e{margin-left:-4.673950pt;}
._40{margin-left:-3.384169pt;}
._4{margin-left:-2.276904pt;}
._2{margin-left:-0.896034pt;}
._3{width:1.280048pt;}
._26{width:2.709066pt;}
._21{width:4.051385pt;}
._48{width:5.529885pt;}
._49{width:6.586465pt;}
._3b{width:8.131558pt;}
._3a{width:9.350801pt;}
._3e{width:10.480203pt;}
._3f{width:11.381830pt;}
._43{width:13.073503pt;}
._44{width:14.330895pt;}
._39{width:16.183000pt;}
._41{width:17.829177pt;}
._1f{width:19.299627pt;}
._20{width:20.459398pt;}
._4b{width:21.659578pt;}
._4f{width:23.453784pt;}
._46{width:24.735690pt;}
._42{width:25.657776pt;}
._45{width:26.829314pt;}
._50{width:28.193169pt;}
._4a{width:29.205670pt;}
._54{width:31.014299pt;}
._53{width:31.960953pt;}
._4e{width:34.092680pt;}
._55{width:35.896832pt;}
._56{width:37.337170pt;}
._3d{width:40.330911pt;}
._3c{width:41.688969pt;}
._51{width:42.826513pt;}
._4d{width:46.455518pt;}
._4c{width:47.930274pt;}
._47{width:50.454627pt;}
._a{width:52.131795pt;}
._52{width:53.278912pt;}
._2f{width:56.893662pt;}
._31{width:58.327956pt;}
._18{width:59.356251pt;}
._2d{width:60.984056pt;}
._29{width:62.524594pt;}
._28{width:72.883384pt;}
._1e{width:101.153229pt;}
._10{width:136.856982pt;}
._f{width:149.628252pt;}
._1{width:176.706082pt;}
._b{width:179.958899pt;}
._1c{width:208.654175pt;}
._1b{width:216.261172pt;}
._14{width:225.021852pt;}
._12{width:240.719325pt;}
._7{width:269.866113pt;}
._15{width:285.427343pt;}
._8{width:290.703896pt;}
._1a{width:293.432034pt;}
._5{width:326.634958pt;}
._1d{width:336.053836pt;}
._16{width:352.655434pt;}
._6{width:359.494857pt;}
._13{width:447.841921pt;}
._d{width:475.013473pt;}
._32{width:477.397707pt;}
._17{width:501.802030pt;}
._e{width:515.347917pt;}
._c{width:580.190237pt;}
._9{width:619.923059pt;}
._11{width:635.939072pt;}
._19{width:658.019057pt;}
._22{width:751.979770pt;}
._38{width:876.372052pt;}
._36{width:1037.755913pt;}
._37{width:1061.897697pt;}
._35{width:1092.869839pt;}
._34{width:1103.880848pt;}
._33{width:1116.187270pt;}
.fs5{font-size:5.120200pt;}
.fs6{font-size:53.122000pt;}
.fs0{font-size:58.882400pt;}
.fs1{font-size:74.882796pt;}
.fs3{font-size:96.003600pt;}
.fs2{font-size:106.884004pt;}
.fs4{font-size:128.004808pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:4.319977pt;}
.y53{bottom:4.320007pt;}
.y3b{bottom:4.320008pt;}
.y1b{bottom:7.200012pt;}
.y5{bottom:56.320069pt;}
.y4{bottom:80.320069pt;}
.y21{bottom:88.800049pt;}
.y22{bottom:93.600098pt;}
.y3{bottom:104.320069pt;}
.y20{bottom:133.920044pt;}
.ydf{bottom:154.400086pt;}
.y152{bottom:157.120057pt;}
.y9f{bottom:165.760071pt;}
.yf9{bottom:170.080079pt;}
.y12e{bottom:172.160035pt;}
.yde{bottom:174.400086pt;}
.yc3{bottom:178.080079pt;}
.y151{bottom:178.720032pt;}
.y41{bottom:185.440064pt;}
.y9e{bottom:185.760071pt;}
.yf8{bottom:190.080079pt;}
.y12d{bottom:193.600037pt;}
.ydd{bottom:194.400086pt;}
.y150{bottom:200.160035pt;}
.yc2{bottom:201.920044pt;}
.y40{bottom:205.280030pt;}
.y16c{bottom:206.560059pt;}
.y9d{bottom:209.600037pt;}
.yf7{bottom:210.080079pt;}
.y16e{bottom:213.760071pt;}
.ydc{bottom:214.240052pt;}
.y12c{bottom:215.200074pt;}
.y14f{bottom:221.760071pt;}
.yc1{bottom:221.920044pt;}
.y3f{bottom:225.280030pt;}
.y9c{bottom:229.920044pt;}
.yf6{bottom:230.080079pt;}
.y16b{bottom:232.160035pt;}
.y12b{bottom:236.800049pt;}
.ydb{bottom:238.240052pt;}
.yc0{bottom:241.920044pt;}
.y14e{bottom:245.760071pt;}
.yf5{bottom:250.080079pt;}
.y16a{bottom:257.760071pt;}
.y12a{bottom:258.400086pt;}
.y9b{bottom:261.120057pt;}
.ybf{bottom:261.920044pt;}
.yda{bottom:262.240052pt;}
.y14d{bottom:269.760071pt;}
.yf4{bottom:269.920044pt;}
.y3e{bottom:276.320069pt;}
.y129{bottom:279.840088pt;}
.ybe{bottom:281.920044pt;}
.y169{bottom:283.200074pt;}
.yd9{bottom:286.240052pt;}
.y9a{bottom:286.720032pt;}
.y14c{bottom:289.760071pt;}
.yf3{bottom:293.920044pt;}
.y128{bottom:301.440064pt;}
.ybd{bottom:301.920044pt;}
.yd8{bottom:306.400086pt;}
.y99{bottom:308.320069pt;}
.y168{bottom:308.800049pt;}
.y3d{bottom:310.240052pt;}
.y14b{bottom:313.760071pt;}
.yf2{bottom:317.920044pt;}
.y127{bottom:323.040039pt;}
.y76{bottom:324.480042pt;}
.ybc{bottom:325.760071pt;}
.y98{bottom:329.920044pt;}
.y3c{bottom:330.240052pt;}
.y167{bottom:330.400086pt;}
.y14a{bottom:337.600037pt;}
.yd7{bottom:337.760071pt;}
.yf1{bottom:337.920044pt;}
.y126{bottom:344.480042pt;}
.y75{bottom:348.480042pt;}
.ybb{bottom:349.760071pt;}
.y97{bottom:351.360047pt;}
.y166{bottom:351.840088pt;}
.y149{bottom:357.600037pt;}
.yf0{bottom:357.920044pt;}
.y3a{bottom:360.000061pt;}
.yd6{bottom:361.120057pt;}
.y125{bottom:366.080079pt;}
.y56{bottom:368.640076pt;}
.y74{bottom:369.280030pt;}
.yba{bottom:369.760071pt;}
.y10f{bottom:370.560059pt;}
.y165{bottom:373.440064pt;}
.y96{bottom:376.960083pt;}
.y148{bottom:377.600037pt;}
.yef{bottom:377.920044pt;}
.y124{bottom:387.680054pt;}
.yb9{bottom:389.760071pt;}
.y73{bottom:390.720032pt;}
.y10e{bottom:394.560059pt;}
.y164{bottom:395.040039pt;}
.y39{bottom:395.520081pt;}
.y147{bottom:397.600037pt;}
.yee{bottom:397.760071pt;}
.y95{bottom:398.560059pt;}
.yb8{bottom:409.760071pt;}
.y119{bottom:413.120057pt;}
.y123{bottom:413.280030pt;}
.y163{bottom:416.640076pt;}
.yd5{bottom:417.760071pt;}
.y10d{bottom:418.560059pt;}
.y72{bottom:418.720032pt;}
.y38{bottom:419.520081pt;}
.y94{bottom:420.000061pt;}
.y146{bottom:421.600037pt;}
.yed{bottom:421.760071pt;}
.yb7{bottom:429.760071pt;}
.y55{bottom:432.480042pt;}
.y118{bottom:437.120057pt;}
.y10c{bottom:438.560059pt;}
.y122{bottom:438.720032pt;}
.y162{bottom:440.480042pt;}
.y145{bottom:441.600037pt;}
.yd4{bottom:441.760071pt;}
.y37{bottom:443.520081pt;}
.y93{bottom:445.600037pt;}
.yb6{bottom:449.760071pt;}
.y71{bottom:454.720032pt;}
.y117{bottom:457.120057pt;}
.y10b{bottom:458.560059pt;}
.yd3{bottom:461.760071pt;}
.y121{bottom:464.320069pt;}
.y161{bottom:464.480042pt;}
.y144{bottom:465.440064pt;}
.y92{bottom:467.200074pt;}
.y36{bottom:470.880066pt;}
.yb5{bottom:473.600037pt;}
.y116{bottom:477.120057pt;}
.y10a{bottom:478.400086pt;}
.yd2{bottom:481.600037pt;}
.yec{bottom:481.760071pt;}
.y54{bottom:482.560059pt;}
.y70{bottom:482.720032pt;}
.y143{bottom:485.440064pt;}
.y120{bottom:485.920044pt;}
.y160{bottom:488.480042pt;}
.y91{bottom:488.800049pt;}
.y35{bottom:490.720032pt;}
.y115{bottom:496.960083pt;}
.yb4{bottom:497.600037pt;}
.y109{bottom:498.400086pt;}
.y1d{bottom:501.280030pt;}
.yd1{bottom:501.600037pt;}
.yeb{bottom:501.760071pt;}
.y142{bottom:505.440064pt;}
.y11f{bottom:507.360047pt;}
.y34{bottom:510.720032pt;}
.y15f{bottom:512.480042pt;}
.y19{bottom:513.280030pt;}
.y90{bottom:514.240052pt;}
.y114{bottom:516.960083pt;}
.yb3{bottom:521.600037pt;}
.y108{bottom:522.400086pt;}
.y141{bottom:525.440064pt;}
.yd0{bottom:525.600037pt;}
.y11e{bottom:528.960083pt;}
.y52{bottom:529.280030pt;}
.y15e{bottom:532.480042pt;}
.y1c{bottom:534.080079pt;}
.y8f{bottom:535.840088pt;}
.y18{bottom:537.280030pt;}
.y6f{bottom:538.720032pt;}
.y113{bottom:540.960083pt;}
.yb2{bottom:541.600037pt;}
.y107{bottom:542.560059pt;}
.y33{bottom:544.800049pt;}
.ycf{bottom:545.600037pt;}
.y140{bottom:549.440064pt;}
.yea{bottom:549.600037pt;}
.y11d{bottom:552.960083pt;}
.y15d{bottom:556.480042pt;}
.y8e{bottom:557.440064pt;}
.y17{bottom:561.280030pt;}
.yb1{bottom:561.600037pt;}
.y1a{bottom:562.560059pt;}
.y32{bottom:564.640076pt;}
.y112{bottom:564.960083pt;}
.yce{bottom:565.600037pt;}
.y6e{bottom:566.720032pt;}
.y51{bottom:567.520081pt;}
.y13f{bottom:569.440064pt;}
.ye9{bottom:569.600037pt;}
.y11c{bottom:572.960083pt;}
.y106{bottom:573.920044pt;}
.y15c{bottom:576.480042pt;}
.y8d{bottom:578.880066pt;}
.yb0{bottom:581.600037pt;}
.y80{bottom:582.880066pt;}
.y31{bottom:584.640076pt;}
.y16{bottom:585.120057pt;}
.ycd{bottom:585.600037pt;}
.y50{bottom:587.520081pt;}
.y111{bottom:588.480042pt;}
.y13e{bottom:589.280030pt;}
.ye8{bottom:589.600037pt;}
.y11b{bottom:596.960083pt;}
.y105{bottom:597.920044pt;}
.y15b{bottom:600.320069pt;}
.y8c{bottom:600.480042pt;}
.y6d{bottom:602.720032pt;}
.y30{bottom:604.640076pt;}
.yaf{bottom:605.440064pt;}
.y110{bottom:606.720032pt;}
.y7f{bottom:606.880066pt;}
.y15{bottom:609.120057pt;}
.ye7{bottom:609.600037pt;}
.y13d{bottom:613.280060pt;}
.y104{bottom:617.920044pt;}
.y11a{bottom:620.480072pt;}
.y4f{bottom:621.440064pt;}
.y15a{bottom:624.320069pt;}
.y8b{bottom:624.480072pt;}
.y2f{bottom:624.640046pt;}
.yae{bottom:625.440064pt;}
.ye6{bottom:629.600068pt;}
.y14{bottom:633.120057pt;}
.y13c{bottom:633.600068pt;}
.y103{bottom:637.920044pt;}
.y6c{bottom:638.720063pt;}
.y7e{bottom:641.440064pt;}
.y8a{bottom:644.640046pt;}
.yad{bottom:645.440064pt;}
.y63{bottom:648.160065pt;}
.y159{bottom:648.320069pt;}
.ye5{bottom:649.440064pt;}
.y4e{bottom:652.800049pt;}
.y102{bottom:657.920044pt;}
.y2e{bottom:658.560059pt;}
.y13{bottom:659.840058pt;}
.y13b{bottom:664.800049pt;}
.yac{bottom:665.440064pt;}
.y62{bottom:668.160065pt;}
.ye4{bottom:669.440064pt;}
.y158{bottom:672.320069pt;}
.y6b{bottom:674.720063pt;}
.y89{bottom:676.000061pt;}
.y4d{bottom:676.640046pt;}
.y101{bottom:677.760071pt;}
.y2d{bottom:678.560059pt;}
.y7d{bottom:680.160065pt;}
.yab{bottom:685.440064pt;}
.ycc{bottom:689.440064pt;}
.y13a{bottom:690.400055pt;}
.y61{bottom:692.000061pt;}
.y157{bottom:692.320069pt;}
.y12{bottom:693.760071pt;}
.y100{bottom:697.760071pt;}
.y88{bottom:699.360047pt;}
.y4c{bottom:700.640046pt;}
.y6a{bottom:702.720063pt;}
.y2b{bottom:708.320069pt;}
.yaa{bottom:709.280060pt;}
.ye3{bottom:709.440064pt;}
.y139{bottom:712.000061pt;}
.ycb{bottom:713.280060pt;}
.y60{bottom:716.000061pt;}
.y156{bottom:716.160065pt;}
.y11{bottom:717.760071pt;}
.y7c{bottom:718.880066pt;}
.y4b{bottom:728.000061pt;}
.ye2{bottom:729.440064pt;}
.y69{bottom:730.720063pt;}
.ya9{bottom:732.640046pt;}
.yca{bottom:733.280060pt;}
.y138{bottom:733.440064pt;}
.y155{bottom:736.480072pt;}
.yff{bottom:737.760071pt;}
.y5f{bottom:740.000061pt;}
.y10{bottom:741.760071pt;}
.y2a{bottom:746.560059pt;}
.y4a{bottom:748.000061pt;}
.ye1{bottom:749.440064pt;}
.y137{bottom:755.040070pt;}
.y87{bottom:756.000061pt;}
.yc9{bottom:756.640046pt;}
.y7b{bottom:757.440064pt;}
.yfe{bottom:757.760071pt;}
.y5e{bottom:764.000061pt;}
.yf{bottom:765.760071pt;}
.y29{bottom:766.560059pt;}
.y68{bottom:766.720063pt;}
.y154{bottom:767.840058pt;}
.ye0{bottom:769.280060pt;}
.yfd{bottom:777.760071pt;}
.y86{bottom:780.000061pt;}
.y136{bottom:780.640046pt;}
.y49{bottom:781.920044pt;}
.y5d{bottom:784.000061pt;}
.ya8{bottom:789.280060pt;}
.ye{bottom:789.600068pt;}
.y153{bottom:791.040070pt;}
.y7a{bottom:796.160065pt;}
.yfc{bottom:797.600068pt;}
.y85{bottom:800.000061pt;}
.y28{bottom:800.480072pt;}
.y48{bottom:801.920044pt;}
.y67{bottom:802.720063pt;}
.y5c{bottom:804.000061pt;}
.y135{bottom:806.240052pt;}
.ya7{bottom:813.280060pt;}
.yd{bottom:813.600068pt;}
.yfb{bottom:817.600068pt;}
.y84{bottom:820.000061pt;}
.y47{bottom:821.920044pt;}
.y5b{bottom:824.000061pt;}
.y134{bottom:827.680054pt;}
.y79{bottom:832.800049pt;}
.ya6{bottom:833.280060pt;}
.y27{bottom:834.560059pt;}
.yc8{bottom:837.280060pt;}
.yc{bottom:837.600068pt;}
.y66{bottom:838.720063pt;}
.y83{bottom:839.840058pt;}
.y5a{bottom:843.840058pt;}
.y133{bottom:849.280060pt;}
.ya5{bottom:853.280060pt;}
.y46{bottom:855.840058pt;}
.yc7{bottom:857.280060pt;}
.y82{bottom:859.840058pt;}
.yb{bottom:861.600068pt;}
.y59{bottom:863.840058pt;}
.y26{bottom:868.480057pt;}
.y78{bottom:870.560059pt;}
.y132{bottom:870.880066pt;}
.ya4{bottom:873.280060pt;}
.y65{bottom:874.720063pt;}
.y45{bottom:875.840058pt;}
.yc6{bottom:877.280060pt;}
.y81{bottom:879.840058pt;}
.yfa{bottom:881.760056pt;}
.y58{bottom:883.840058pt;}
.ya{bottom:885.600052pt;}
.y16d{bottom:888.480057pt;}
.y131{bottom:892.480057pt;}
.ya3{bottom:893.120057pt;}
.y77{bottom:895.200058pt;}
.yc5{bottom:897.120057pt;}
.y25{bottom:899.840058pt;}
.y57{bottom:903.840058pt;}
.y9{bottom:909.600052pt;}
.y44{bottom:909.760056pt;}
.y64{bottom:910.880066pt;}
.ya2{bottom:913.120057pt;}
.y130{bottom:913.920060pt;}
.yc4{bottom:917.120057pt;}
.y24{bottom:923.840058pt;}
.y43{bottom:929.760056pt;}
.y8{bottom:933.440064pt;}
.y12f{bottom:935.520066pt;}
.ya1{bottom:937.120057pt;}
.y23{bottom:947.040055pt;}
.y42{bottom:949.760056pt;}
.y7{bottom:956.800064pt;}
.ya0{bottom:957.120057pt;}
.y1f{bottom:981.120057pt;}
.y6{bottom:1014.560059pt;}
.y1e{bottom:1017.920060pt;}
.y2{bottom:1038.880059pt;}
.y1{bottom:1058.880059pt;}
.h8{height:4.602680pt;}
.hb{height:19.839996pt;}
.hc{height:19.840027pt;}
.h6{height:37.919983pt;}
.hf{height:42.285112pt;}
.he{height:42.550722pt;}
.ha{height:45.053086pt;}
.h10{height:46.870390pt;}
.h9{height:47.752735pt;}
.h2{height:52.930907pt;}
.h3{height:67.314076pt;}
.h11{height:85.635211pt;}
.h5{height:86.300111pt;}
.h4{height:97.905748pt;}
.hd{height:115.066822pt;}
.h7{height:117.252404pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:7.839997pt;}
.wa{width:8.319947pt;}
.we{width:8.319992pt;}
.w7{width:8.320007pt;}
.w10{width:8.320008pt;}
.wb{width:9.119995pt;}
.w8{width:20.640000pt;}
.w5{width:22.720001pt;}
.w3{width:67.839996pt;}
.w11{width:86.720031pt;}
.w6{width:110.719994pt;}
.w9{width:114.720031pt;}
.wc{width:133.599998pt;}
.wd{width:133.920006pt;}
.wf{width:184.000000pt;}
.w2{width:184.959999pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:51.360001pt;}
.x5{left:71.040001pt;}
.x2{left:96.000000pt;}
.x1{left:103.199997pt;}
.x19{left:110.720001pt;}
.x1a{left:120.000000pt;}
.x3{left:124.800003pt;}
.xa{left:139.360001pt;}
.x1b{left:144.000000pt;}
.xb{left:183.039993pt;}
.xe{left:213.759995pt;}
.xf{left:235.039993pt;}
.x12{left:236.479996pt;}
.x13{left:253.279999pt;}
.x6{left:256.000000pt;}
.x15{left:303.359985pt;}
.x7{left:323.839996pt;}
.x8{left:331.679993pt;}
.x14{left:403.519989pt;}
.xc{left:414.559998pt;}
.x4{left:472.160004pt;}
.x17{left:487.359985pt;}
.x16{left:503.679993pt;}
.x10{left:529.280029pt;}
.xd{left:553.760010pt;}
.x11{left:562.880005pt;}
.x18{left:590.400024pt;}
.x1c{left:644.479980pt;}
.x1d{left:696.799988pt;}
}




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