
    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_41a0cbaef9cd7d03c24b2fdf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_b29c48d746708412e017e9b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.982910;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_9bb88f31e1189acec16cde9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.051270;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_f50ef7344652b86f75b79b1d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_eb5c61564d1c9b73544d72bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_4b160fe17c33c7838bbb6b42.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_810a7f287944aba8231bbda7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.051270;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);}
.m4{transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250403,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250771,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251012,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);}
.m6{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:23.760000px;}
.ls1f{letter-spacing:-0.936000px;}
.ls9{letter-spacing:-0.852000px;}
.lsa{letter-spacing:-0.792000px;}
.ls8{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.406200px;}
.ls5{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.255046px;}
.lsd{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.022320px;}
.ls7{letter-spacing:0.132480px;}
.ls0{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.256200px;}
.lsc{letter-spacing:0.313800px;}
.ls13{letter-spacing:0.358560px;}
.lsb{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.864000px;}
.ls1d{letter-spacing:0.927035px;}
.ls1b{letter-spacing:0.972941px;}
.ls3{letter-spacing:3.888000px;}
.ls21{letter-spacing:17.429760px;}
.ls14{letter-spacing:94.760998px;}
.ls1c{letter-spacing:101.263209px;}
.ls1a{letter-spacing:168.152907px;}
.ls15{letter-spacing:225.396428px;}
.ls16{letter-spacing:356.005484px;}
.ls17{letter-spacing:486.693665px;}
.ls18{letter-spacing:617.302721px;}
.ls19{letter-spacing:1009.261763px;}
.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;}
}
.ws26{word-spacing:-176.882483px;}
.wsa{word-spacing:-16.632000px;}
.ws3{word-spacing:-16.488000px;}
.ws2{word-spacing:-16.272000px;}
.ws5{word-spacing:-16.056000px;}
.ws1{word-spacing:-15.912000px;}
.wse{word-spacing:-15.768000px;}
.wsd{word-spacing:-15.552000px;}
.ws2a{word-spacing:-15.480000px;}
.wsf{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.ws10{word-spacing:-10.924560px;}
.ws24{word-spacing:-7.167805px;}
.ws4{word-spacing:0.000000px;}
.ws28{word-spacing:24.269398px;}
.ws14{word-spacing:67.811473px;}
.ws13{word-spacing:67.837848px;}
.ws29{word-spacing:80.308748px;}
.ws12{word-spacing:92.046416px;}
.ws11{word-spacing:107.361264px;}
.ws27{word-spacing:136.886641px;}
.wsc{word-spacing:137.163414px;}
.ws9{word-spacing:162.690797px;}
.ws8{word-spacing:162.746792px;}
.wsb{word-spacing:235.824900px;}
.ws7{word-spacing:236.220209px;}
.ws15{word-spacing:329.135084px;}
.ws6{word-spacing:402.616374px;}
.ws25{word-spacing:864.056183px;}
.ws16{word-spacing:1125.300669px;}
.ws17{word-spacing:1255.936100px;}
.ws18{word-spacing:1386.624281px;}
.ws19{word-spacing:1517.233336px;}
.ws1a{word-spacing:1647.842392px;}
.ws1b{word-spacing:1778.530573px;}
.ws1c{word-spacing:1909.166004px;}
.ws1d{word-spacing:2039.775060px;}
.ws1e{word-spacing:2170.463240px;}
.ws1f{word-spacing:2301.098671px;}
.ws20{word-spacing:2431.734102px;}
.ws21{word-spacing:2562.343158px;}
.ws22{word-spacing:2693.031338px;}
.ws23{word-spacing:2823.640394px;}
._4{margin-left:-19.752000px;}
._43{margin-left:-10.465968px;}
._1c{margin-left:-4.801920px;}
._a{margin-left:-3.775680px;}
._9{margin-left:-2.376000px;}
._0{margin-left:-1.192320px;}
._5{width:1.008000px;}
._11{width:2.016000px;}
._12{width:3.600000px;}
._e{width:4.824000px;}
._18{width:5.832000px;}
._d{width:6.840000px;}
._c{width:8.703360px;}
._8{width:10.264320px;}
._7{width:11.304000px;}
._6{width:12.312000px;}
._b{width:13.608000px;}
._1b{width:15.024000px;}
._13{width:17.712000px;}
._14{width:19.308000px;}
._29{width:20.664000px;}
._23{width:21.856320px;}
._21{width:23.040000px;}
._17{width:24.104640px;}
._10{width:25.344000px;}
._f{width:26.568000px;}
._1e{width:28.296000px;}
._2f{width:30.168000px;}
._2e{width:31.248000px;}
._20{width:32.719680px;}
._16{width:34.672320px;}
._15{width:36.000000px;}
._39{width:37.200000px;}
._2b{width:38.272320px;}
._2a{width:39.312000px;}
._25{width:41.040000px;}
._1d{width:42.192000px;}
._2c{width:43.272000px;}
._38{width:44.280000px;}
._22{width:45.648000px;}
._1a{width:47.088000px;}
._19{width:48.240000px;}
._3c{width:50.184000px;}
._40{width:51.336000px;}
._3f{width:52.344000px;}
._3a{width:53.352000px;}
._44{width:54.576000px;}
._4c{width:56.424000px;}
._4b{width:59.740320px;}
._24{width:63.216000px;}
._28{width:64.440000px;}
._27{width:65.448000px;}
._49{width:69.552000px;}
._45{width:77.976000px;}
._2d{width:79.488000px;}
._3e{width:80.536320px;}
._3d{width:81.792000px;}
._46{width:91.296000px;}
._26{width:95.376000px;}
._41{width:106.933065px;}
._3b{width:110.952000px;}
._48{width:132.696000px;}
._47{width:134.064000px;}
._37{width:135.756133px;}
._35{width:148.885033px;}
._32{width:149.895922px;}
._31{width:161.104672px;}
._36{width:162.497081px;}
._34{width:173.190155px;}
._30{width:197.165749px;}
._42{width:205.157469px;}
._33{width:209.904490px;}
._1{width:364.360800px;}
._1f{width:379.331040px;}
._3{width:516.432000px;}
._4a{width:851.184000px;}
._2{width:1464.209760px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,176,240);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:31.715951px;}
.fs8{font-size:38.626445px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:50.590187px;}
.fs5{font-size:50.674991px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.527167px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y106{bottom:2.463888px;}
.y11c{bottom:3.233117px;}
.yb1{bottom:7.368419px;}
.y93{bottom:7.380770px;}
.y88{bottom:11.274907px;}
.y105{bottom:12.371199px;}
.y11b{bottom:16.101119px;}
.y104{bottom:22.278313px;}
.yb0{bottom:28.436716px;}
.y92{bottom:28.484384px;}
.y11a{bottom:28.969464px;}
.y103{bottom:32.185426px;}
.y119{bottom:41.859220px;}
.y102{bottom:42.092540px;}
.y87{bottom:43.578317px;}
.yaf{bottom:49.504315px;}
.y91{bottom:49.587298px;}
.y101{bottom:51.999653px;}
.y118{bottom:54.727565px;}
.y2{bottom:58.536000px;}
.y100{bottom:61.923251px;}
.y117{bottom:67.617321px;}
.yae{bottom:70.571914px;}
.y90{bottom:70.690212px;}
.yff{bottom:71.832343px;}
.y86{bottom:75.881304px;}
.y116{bottom:80.485665px;}
.yfe{bottom:81.736160px;}
.yad{bottom:91.604574px;}
.yfd{bottom:91.646570px;}
.y8f{bottom:91.758129px;}
.y115{bottom:93.358292px;}
.yfc{bottom:101.550387px;}
.y114{bottom:106.248048px;}
.yfb{bottom:111.460798px;}
.yac{bottom:112.672173px;}
.y8e{bottom:112.861043px;}
.y4c{bottom:113.796000px;}
.yc9{bottom:114.516000px;}
.y84{bottom:115.416000px;}
.ya6{bottom:118.656000px;}
.yea{bottom:118.836000px;}
.y113{bottom:119.112110px;}
.yfa{bottom:121.364614px;}
.yd9{bottom:129.456000px;}
.y29{bottom:130.536000px;}
.yf9{bottom:131.275025px;}
.y80{bottom:131.796000px;}
.y112{bottom:132.001866px;}
.yab{bottom:133.739772px;}
.y8d{bottom:133.963957px;}
.y83{bottom:137.196000px;}
.y4b{bottom:137.556000px;}
.yc8{bottom:138.096000px;}
.yf8{bottom:141.198623px;}
.ya5{bottom:142.416000px;}
.ye9{bottom:142.596000px;}
.y111{bottom:144.874493px;}
.yf7{bottom:151.102440px;}
.yd8{bottom:153.030000px;}
.y28{bottom:154.290000px;}
.yaa{bottom:154.803178px;}
.y8c{bottom:155.062671px;}
.y7f{bottom:155.370000px;}
.y110{bottom:157.764249px;}
.y82{bottom:158.790000px;}
.y69{bottom:159.150000px;}
.yf6{bottom:161.012850px;}
.y4a{bottom:161.130000px;}
.yc7{bottom:161.850000px;}
.ya4{bottom:165.990000px;}
.ye8{bottom:166.350000px;}
.y10f{bottom:170.628312px;}
.yf5{bottom:170.916667px;}
.ya9{bottom:175.877764px;}
.y8b{bottom:176.172584px;}
.yd7{bottom:176.790000px;}
.y27{bottom:178.050000px;}
.y7e{bottom:179.130000px;}
.y81{bottom:180.570000px;}
.yf4{bottom:180.827077px;}
.y68{bottom:182.910000px;}
.y10e{bottom:183.500939px;}
.y49{bottom:184.890000px;}
.yc6{bottom:185.610000px;}
.ya3{bottom:189.750000px;}
.ye7{bottom:190.110000px;}
.yf3{bottom:190.730894px;}
.y10d{bottom:196.390695px;}
.ya8{bottom:200.082793px;}
.y8a{bottom:200.418188px;}
.yd6{bottom:200.550000px;}
.yf2{bottom:200.641304px;}
.y26{bottom:201.630000px;}
.y7d{bottom:202.890000px;}
.y67{bottom:206.490000px;}
.y48{bottom:208.650000px;}
.y10c{bottom:209.254757px;}
.yc5{bottom:209.370000px;}
.yf1{bottom:210.545121px;}
.ya2{bottom:213.510000px;}
.ye6{bottom:213.690000px;}
.yf0{bottom:220.468719px;}
.y10b{bottom:222.144513px;}
.yd5{bottom:224.310000px;}
.y25{bottom:225.390000px;}
.y7c{bottom:226.650000px;}
.y66{bottom:230.250000px;}
.yef{bottom:230.379130px;}
.y47{bottom:232.410000px;}
.yc4{bottom:232.950000px;}
.y10a{bottom:235.017140px;}
.ya1{bottom:237.270000px;}
.ye5{bottom:237.450000px;}
.yee{bottom:240.282946px;}
.y109{bottom:247.881202px;}
.yd4{bottom:247.890000px;}
.y24{bottom:249.150000px;}
.yed{bottom:250.193357px;}
.y7b{bottom:250.230000px;}
.y65{bottom:254.010000px;}
.y46{bottom:255.990000px;}
.yc3{bottom:256.710000px;}
.yec{bottom:260.097174px;}
.ye4{bottom:260.670000px;}
.y108{bottom:260.770958px;}
.ya0{bottom:260.850000px;}
.yd3{bottom:271.650000px;}
.y23{bottom:272.910000px;}
.y7a{bottom:273.990000px;}
.y64{bottom:277.590000px;}
.y45{bottom:279.750000px;}
.yc2{bottom:280.470000px;}
.ye3{bottom:282.450000px;}
.y9f{bottom:284.610000px;}
.yd2{bottom:295.455000px;}
.y22{bottom:296.535000px;}
.y79{bottom:297.795000px;}
.y107{bottom:301.324652px;}
.y63{bottom:301.395000px;}
.y44{bottom:303.555000px;}
.yc1{bottom:304.275000px;}
.y9e{bottom:308.415000px;}
.yd1{bottom:319.215000px;}
.y21{bottom:320.295000px;}
.y78{bottom:321.375000px;}
.y62{bottom:325.155000px;}
.y43{bottom:327.315000px;}
.yc0{bottom:327.855000px;}
.y9d{bottom:332.175000px;}
.yd0{bottom:342.795000px;}
.y20{bottom:344.055000px;}
.y77{bottom:345.135000px;}
.y61{bottom:348.915000px;}
.y42{bottom:350.895000px;}
.ybf{bottom:351.615000px;}
.y9c{bottom:355.755000px;}
.ycf{bottom:366.555000px;}
.y1f{bottom:367.815000px;}
.y76{bottom:368.895000px;}
.y60{bottom:371.955000px;}
.y41{bottom:374.655000px;}
.ybe{bottom:375.375000px;}
.y9b{bottom:379.515000px;}
.yce{bottom:390.315000px;}
.y1e{bottom:391.395000px;}
.y75{bottom:392.655000px;}
.y5f{bottom:393.735000px;}
.y40{bottom:398.415000px;}
.ybd{bottom:398.955000px;}
.y9a{bottom:403.275000px;}
.y5e{bottom:411.195000px;}
.ycd{bottom:414.075000px;}
.y1d{bottom:415.155000px;}
.y74{bottom:416.235000px;}
.y3f{bottom:422.175000px;}
.ybc{bottom:422.715000px;}
.y99{bottom:426.495000px;}
.ycc{bottom:437.655000px;}
.y1c{bottom:438.915000px;}
.y73{bottom:439.995000px;}
.y98{bottom:443.775000px;}
.y3e{bottom:445.755000px;}
.ybb{bottom:446.475000px;}
.ycb{bottom:460.875000px;}
.y1b{bottom:462.495000px;}
.y72{bottom:463.755000px;}
.y3d{bottom:469.515000px;}
.yba{bottom:470.235000px;}
.yca{bottom:478.155000px;}
.y1a{bottom:486.255000px;}
.y71{bottom:487.515000px;}
.y3c{bottom:493.275000px;}
.yb9{bottom:493.815000px;}
.y19{bottom:510.015000px;}
.y70{bottom:511.095000px;}
.y3b{bottom:516.855000px;}
.yb8{bottom:517.575000px;}
.y6f{bottom:529.815000px;}
.y89{bottom:530.820000px;}
.y18{bottom:533.775000px;}
.y3a{bottom:540.615000px;}
.yb7{bottom:541.335000px;}
.y17{bottom:557.385000px;}
.y39{bottom:564.405000px;}
.yb6{bottom:565.125000px;}
.ye2{bottom:580.605000px;}
.y16{bottom:581.145000px;}
.y38{bottom:588.165000px;}
.yb5{bottom:588.705000px;}
.ye1{bottom:604.365000px;}
.y15{bottom:604.905000px;}
.y37{bottom:611.745000px;}
.yb4{bottom:612.465000px;}
.ye0{bottom:628.125000px;}
.y14{bottom:628.665000px;}
.y36{bottom:635.505000px;}
.yb3{bottom:636.225000px;}
.ydf{bottom:651.885000px;}
.y13{bottom:652.245000px;}
.y35{bottom:659.265000px;}
.yb2{bottom:659.985000px;}
.yde{bottom:675.465000px;}
.y12{bottom:676.005000px;}
.y34{bottom:683.025000px;}
.y5d{bottom:683.565000px;}
.ydd{bottom:699.225000px;}
.y11{bottom:699.765000px;}
.y33{bottom:706.605000px;}
.y5c{bottom:707.325000px;}
.ydc{bottom:722.985000px;}
.y10{bottom:723.525000px;}
.y32{bottom:730.365000px;}
.y5b{bottom:731.085000px;}
.ydb{bottom:746.025000px;}
.yf{bottom:747.105000px;}
.y31{bottom:754.125000px;}
.y5a{bottom:754.665000px;}
.y6e{bottom:756.465000px;}
.yda{bottom:767.805000px;}
.ye{bottom:770.865000px;}
.y30{bottom:777.885000px;}
.y6d{bottom:778.245000px;}
.y59{bottom:778.425000px;}
.yeb{bottom:786.780000px;}
.yd{bottom:794.625000px;}
.y97{bottom:800.205000px;}
.y6c{bottom:800.385000px;}
.y2f{bottom:801.465000px;}
.y58{bottom:802.185000px;}
.y96{bottom:817.350000px;}
.ya7{bottom:817.380000px;}
.y6b{bottom:817.530000px;}
.y85{bottom:817.560000px;}
.yc{bottom:818.250000px;}
.y2e{bottom:825.270000px;}
.y57{bottom:825.990000px;}
.yb{bottom:842.010000px;}
.y2d{bottom:846.870000px;}
.y56{bottom:849.570000px;}
.ya{bottom:865.770000px;}
.y2c{bottom:867.030000px;}
.y55{bottom:873.330000px;}
.y2b{bottom:884.310000px;}
.y9{bottom:888.990000px;}
.y54{bottom:897.090000px;}
.y8{bottom:910.590000px;}
.y53{bottom:920.850000px;}
.y6a{bottom:922.290000px;}
.y7{bottom:932.910000px;}
.y52{bottom:944.430000px;}
.y6{bottom:956.670000px;}
.y51{bottom:968.190000px;}
.y5{bottom:983.490000px;}
.y50{bottom:991.950000px;}
.y4f{bottom:1015.710000px;}
.y4{bottom:1015.890000px;}
.y4e{bottom:1039.290000px;}
.y3{bottom:1039.650000px;}
.y95{bottom:1042.710000px;}
.y1{bottom:1056.570000px;}
.y4d{bottom:1063.080000px;}
.y94{bottom:1064.520000px;}
.y2a{bottom:1118.340000px;}
.h10{height:27.689512px;}
.h12{height:33.722697px;}
.hd{height:40.709291px;}
.hb{height:40.777531px;}
.h5{height:50.294531px;}
.h1{height:53.302500px;}
.h7{height:57.830625px;}
.h4{height:57.937500px;}
.h9{height:62.385143px;}
.h6{height:62.578125px;}
.h2{height:62.859375px;}
.he{height:74.004654px;}
.h3{height:94.289062px;}
.h8{height:98.440053px;}
.hc{height:218.009485px;}
.ha{height:218.374931px;}
.hf{height:267.529474px;}
.h11{height:270.427940px;}
.h0{height:1188.000000px;}
.w1{width:348.831018px;}
.w4{width:752.082537px;}
.w5{width:752.114030px;}
.w3{width:753.504381px;}
.w2{width:754.043623px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:12.394426px;}
.x17{left:14.374893px;}
.x1b{left:18.036153px;}
.x1a{left:20.609683px;}
.x11{left:30.575977px;}
.x16{left:47.069111px;}
.xe{left:53.315954px;}
.x19{left:67.619491px;}
.x2{left:81.000000px;}
.xf{left:82.053134px;}
.x10{left:99.134972px;}
.x7{left:108.036000px;}
.x15{left:114.876000px;}
.x14{left:121.536000px;}
.x5{left:308.910000px;}
.x6{left:371.775000px;}
.x4{left:394.095000px;}
.xa{left:432.075000px;}
.x3{left:459.075000px;}
.x8{left:486.075000px;}
.xd{left:487.607516px;}
.x9{left:513.075000px;}
.xc{left:547.125000px;}
.x13{left:834.810000px;}
.x12{left:835.890000px;}
.xb{left:837.150000px;}
.x1{left:918.150000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls9{letter-spacing:-0.757333pt;}
.lsa{letter-spacing:-0.704000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.361067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.226708pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.019840pt;}
.ls7{letter-spacing:0.117760pt;}
.ls0{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.227733pt;}
.lsc{letter-spacing:0.278933pt;}
.ls13{letter-spacing:0.318720pt;}
.lsb{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:0.824031pt;}
.ls1b{letter-spacing:0.864836pt;}
.ls3{letter-spacing:3.456000pt;}
.ls21{letter-spacing:15.493120pt;}
.ls14{letter-spacing:84.231998pt;}
.ls1c{letter-spacing:90.011741pt;}
.ls1a{letter-spacing:149.469250pt;}
.ls15{letter-spacing:200.352381pt;}
.ls16{letter-spacing:316.449319pt;}
.ls17{letter-spacing:432.616591pt;}
.ls18{letter-spacing:548.713530pt;}
.ls19{letter-spacing:897.121567pt;}
.ws26{word-spacing:-157.228874pt;}
.wsa{word-spacing:-14.784000pt;}
.ws3{word-spacing:-14.656000pt;}
.ws2{word-spacing:-14.464000pt;}
.ws5{word-spacing:-14.272000pt;}
.ws1{word-spacing:-14.144000pt;}
.wse{word-spacing:-14.016000pt;}
.wsd{word-spacing:-13.824000pt;}
.ws2a{word-spacing:-13.760000pt;}
.wsf{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.ws10{word-spacing:-9.710720pt;}
.ws24{word-spacing:-6.371382pt;}
.ws4{word-spacing:0.000000pt;}
.ws28{word-spacing:21.572798pt;}
.ws14{word-spacing:60.276865pt;}
.ws13{word-spacing:60.300309pt;}
.ws29{word-spacing:71.385553pt;}
.ws12{word-spacing:81.819036pt;}
.ws11{word-spacing:95.432234pt;}
.ws27{word-spacing:121.677014pt;}
.wsc{word-spacing:121.923034pt;}
.ws9{word-spacing:144.614042pt;}
.ws8{word-spacing:144.663815pt;}
.wsb{word-spacing:209.622133pt;}
.ws7{word-spacing:209.973519pt;}
.ws15{word-spacing:292.564519pt;}
.ws6{word-spacing:357.881221pt;}
.ws25{word-spacing:768.049940pt;}
.ws16{word-spacing:1000.267261pt;}
.ws17{word-spacing:1116.387644pt;}
.ws18{word-spacing:1232.554916pt;}
.ws19{word-spacing:1348.651855pt;}
.ws1a{word-spacing:1464.748793pt;}
.ws1b{word-spacing:1580.916065pt;}
.ws1c{word-spacing:1697.036448pt;}
.ws1d{word-spacing:1813.133386pt;}
.ws1e{word-spacing:1929.300658pt;}
.ws1f{word-spacing:2045.421041pt;}
.ws20{word-spacing:2161.541424pt;}
.ws21{word-spacing:2277.638362pt;}
.ws22{word-spacing:2393.805634pt;}
.ws23{word-spacing:2509.902573pt;}
._4{margin-left:-17.557333pt;}
._43{margin-left:-9.303083pt;}
._1c{margin-left:-4.268373pt;}
._a{margin-left:-3.356160pt;}
._9{margin-left:-2.112000pt;}
._0{margin-left:-1.059840pt;}
._5{width:0.896000pt;}
._11{width:1.792000pt;}
._12{width:3.200000pt;}
._e{width:4.288000pt;}
._18{width:5.184000pt;}
._d{width:6.080000pt;}
._c{width:7.736320pt;}
._8{width:9.123840pt;}
._7{width:10.048000pt;}
._6{width:10.944000pt;}
._b{width:12.096000pt;}
._1b{width:13.354667pt;}
._13{width:15.744000pt;}
._14{width:17.162667pt;}
._29{width:18.368000pt;}
._23{width:19.427840pt;}
._21{width:20.480000pt;}
._17{width:21.426347pt;}
._10{width:22.528000pt;}
._f{width:23.616000pt;}
._1e{width:25.152000pt;}
._2f{width:26.816000pt;}
._2e{width:27.776000pt;}
._20{width:29.084160pt;}
._16{width:30.819840pt;}
._15{width:32.000000pt;}
._39{width:33.066667pt;}
._2b{width:34.019840pt;}
._2a{width:34.944000pt;}
._25{width:36.480000pt;}
._1d{width:37.504000pt;}
._2c{width:38.464000pt;}
._38{width:39.360000pt;}
._22{width:40.576000pt;}
._1a{width:41.856000pt;}
._19{width:42.880000pt;}
._3c{width:44.608000pt;}
._40{width:45.632000pt;}
._3f{width:46.528000pt;}
._3a{width:47.424000pt;}
._44{width:48.512000pt;}
._4c{width:50.154667pt;}
._4b{width:53.102507pt;}
._24{width:56.192000pt;}
._28{width:57.280000pt;}
._27{width:58.176000pt;}
._49{width:61.824000pt;}
._45{width:69.312000pt;}
._2d{width:70.656000pt;}
._3e{width:71.587840pt;}
._3d{width:72.704000pt;}
._46{width:81.152000pt;}
._26{width:84.778667pt;}
._41{width:95.051614pt;}
._3b{width:98.624000pt;}
._48{width:117.952000pt;}
._47{width:119.168000pt;}
._37{width:120.672118pt;}
._35{width:132.342252pt;}
._32{width:133.240820pt;}
._31{width:143.204153pt;}
._36{width:144.441849pt;}
._34{width:153.946804pt;}
._30{width:175.258444pt;}
._42{width:182.362195pt;}
._33{width:186.581769pt;}
._1{width:323.876267pt;}
._1f{width:337.183147pt;}
._3{width:459.050667pt;}
._4a{width:756.608000pt;}
._2{width:1301.519787pt;}
.fs7{font-size:28.191956pt;}
.fs8{font-size:34.334618pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:44.969055pt;}
.fs5{font-size:45.044436pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:68.913038pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y106{bottom:2.190122pt;}
.y11c{bottom:2.873882pt;}
.yb1{bottom:6.549706pt;}
.y93{bottom:6.560685pt;}
.y88{bottom:10.022140pt;}
.y105{bottom:10.996621pt;}
.y11b{bottom:14.312106pt;}
.y104{bottom:19.802945pt;}
.yb0{bottom:25.277081pt;}
.y92{bottom:25.319453pt;}
.y11a{bottom:25.750635pt;}
.y103{bottom:28.609268pt;}
.y119{bottom:37.208196pt;}
.y102{bottom:37.415591pt;}
.y87{bottom:38.736282pt;}
.yaf{bottom:44.003835pt;}
.y91{bottom:44.077598pt;}
.y101{bottom:46.221914pt;}
.y118{bottom:48.646724pt;}
.y2{bottom:52.032000pt;}
.y100{bottom:55.042890pt;}
.y117{bottom:60.104285pt;}
.yae{bottom:62.730590pt;}
.y90{bottom:62.835744pt;}
.yff{bottom:63.850972pt;}
.y86{bottom:67.450048pt;}
.y116{bottom:71.542813pt;}
.yfe{bottom:72.654364pt;}
.yad{bottom:81.426288pt;}
.yfd{bottom:81.463618pt;}
.y8f{bottom:81.562782pt;}
.y115{bottom:82.985148pt;}
.yfc{bottom:90.267011pt;}
.y114{bottom:94.442709pt;}
.yfb{bottom:99.076265pt;}
.yac{bottom:100.153043pt;}
.y8e{bottom:100.320927pt;}
.y4c{bottom:101.152000pt;}
.yc9{bottom:101.792000pt;}
.y84{bottom:102.592000pt;}
.ya6{bottom:105.472000pt;}
.yea{bottom:105.632000pt;}
.y113{bottom:105.877431pt;}
.yfa{bottom:107.879657pt;}
.yd9{bottom:115.072000pt;}
.y29{bottom:116.032000pt;}
.yf9{bottom:116.688911pt;}
.y80{bottom:117.152000pt;}
.y112{bottom:117.334992pt;}
.yab{bottom:118.879797pt;}
.y8d{bottom:119.079073pt;}
.y83{bottom:121.952000pt;}
.y4b{bottom:122.272000pt;}
.yc8{bottom:122.752000pt;}
.yf8{bottom:125.509887pt;}
.ya5{bottom:126.592000pt;}
.ye9{bottom:126.752000pt;}
.y111{bottom:128.777327pt;}
.yf7{bottom:134.313280pt;}
.yd8{bottom:136.026667pt;}
.y28{bottom:137.146667pt;}
.yaa{bottom:137.602825pt;}
.y8c{bottom:137.833486pt;}
.y7f{bottom:138.106667pt;}
.y110{bottom:140.234888pt;}
.y82{bottom:141.146667pt;}
.y69{bottom:141.466667pt;}
.yf6{bottom:143.122533pt;}
.y4a{bottom:143.226667pt;}
.yc7{bottom:143.866667pt;}
.ya4{bottom:147.546667pt;}
.ye8{bottom:147.866667pt;}
.y10f{bottom:151.669610pt;}
.yf5{bottom:151.925926pt;}
.ya9{bottom:156.335790pt;}
.y8b{bottom:156.597853pt;}
.yd7{bottom:157.146667pt;}
.y27{bottom:158.266667pt;}
.y7e{bottom:159.226667pt;}
.y81{bottom:160.506667pt;}
.yf4{bottom:160.735180pt;}
.y68{bottom:162.586667pt;}
.y10e{bottom:163.111945pt;}
.y49{bottom:164.346667pt;}
.yc6{bottom:164.986667pt;}
.ya3{bottom:168.666667pt;}
.ye7{bottom:168.986667pt;}
.yf3{bottom:169.538572pt;}
.y10d{bottom:174.569506pt;}
.ya8{bottom:177.851371pt;}
.y8a{bottom:178.149500pt;}
.yd6{bottom:178.266667pt;}
.yf2{bottom:178.347826pt;}
.y26{bottom:179.226667pt;}
.y7d{bottom:180.346667pt;}
.y67{bottom:183.546667pt;}
.y48{bottom:185.466667pt;}
.y10c{bottom:186.004228pt;}
.yc5{bottom:186.106667pt;}
.yf1{bottom:187.151219pt;}
.ya2{bottom:189.786667pt;}
.ye6{bottom:189.946667pt;}
.yf0{bottom:195.972195pt;}
.y10b{bottom:197.461789pt;}
.yd5{bottom:199.386667pt;}
.y25{bottom:200.346667pt;}
.y7c{bottom:201.466667pt;}
.y66{bottom:204.666667pt;}
.yef{bottom:204.781449pt;}
.y47{bottom:206.586667pt;}
.yc4{bottom:207.066667pt;}
.y10a{bottom:208.904124pt;}
.ya1{bottom:210.906667pt;}
.ye5{bottom:211.066667pt;}
.yee{bottom:213.584841pt;}
.y109{bottom:220.338846pt;}
.yd4{bottom:220.346667pt;}
.y24{bottom:221.466667pt;}
.yed{bottom:222.394095pt;}
.y7b{bottom:222.426667pt;}
.y65{bottom:225.786667pt;}
.y46{bottom:227.546667pt;}
.yc3{bottom:228.186667pt;}
.yec{bottom:231.197488pt;}
.ye4{bottom:231.706667pt;}
.y108{bottom:231.796407pt;}
.ya0{bottom:231.866667pt;}
.yd3{bottom:241.466667pt;}
.y23{bottom:242.586667pt;}
.y7a{bottom:243.546667pt;}
.y64{bottom:246.746667pt;}
.y45{bottom:248.666667pt;}
.yc2{bottom:249.306667pt;}
.ye3{bottom:251.066667pt;}
.y9f{bottom:252.986667pt;}
.yd2{bottom:262.626667pt;}
.y22{bottom:263.586667pt;}
.y79{bottom:264.706667pt;}
.y107{bottom:267.844135pt;}
.y63{bottom:267.906667pt;}
.y44{bottom:269.826667pt;}
.yc1{bottom:270.466667pt;}
.y9e{bottom:274.146667pt;}
.yd1{bottom:283.746667pt;}
.y21{bottom:284.706667pt;}
.y78{bottom:285.666667pt;}
.y62{bottom:289.026667pt;}
.y43{bottom:290.946667pt;}
.yc0{bottom:291.426667pt;}
.y9d{bottom:295.266667pt;}
.yd0{bottom:304.706667pt;}
.y20{bottom:305.826667pt;}
.y77{bottom:306.786667pt;}
.y61{bottom:310.146667pt;}
.y42{bottom:311.906667pt;}
.ybf{bottom:312.546667pt;}
.y9c{bottom:316.226667pt;}
.ycf{bottom:325.826667pt;}
.y1f{bottom:326.946667pt;}
.y76{bottom:327.906667pt;}
.y60{bottom:330.626667pt;}
.y41{bottom:333.026667pt;}
.ybe{bottom:333.666667pt;}
.y9b{bottom:337.346667pt;}
.yce{bottom:346.946667pt;}
.y1e{bottom:347.906667pt;}
.y75{bottom:349.026667pt;}
.y5f{bottom:349.986667pt;}
.y40{bottom:354.146667pt;}
.ybd{bottom:354.626667pt;}
.y9a{bottom:358.466667pt;}
.y5e{bottom:365.506667pt;}
.ycd{bottom:368.066667pt;}
.y1d{bottom:369.026667pt;}
.y74{bottom:369.986667pt;}
.y3f{bottom:375.266667pt;}
.ybc{bottom:375.746667pt;}
.y99{bottom:379.106667pt;}
.ycc{bottom:389.026667pt;}
.y1c{bottom:390.146667pt;}
.y73{bottom:391.106667pt;}
.y98{bottom:394.466667pt;}
.y3e{bottom:396.226667pt;}
.ybb{bottom:396.866667pt;}
.ycb{bottom:409.666667pt;}
.y1b{bottom:411.106667pt;}
.y72{bottom:412.226667pt;}
.y3d{bottom:417.346667pt;}
.yba{bottom:417.986667pt;}
.yca{bottom:425.026667pt;}
.y1a{bottom:432.226667pt;}
.y71{bottom:433.346667pt;}
.y3c{bottom:438.466667pt;}
.yb9{bottom:438.946667pt;}
.y19{bottom:453.346667pt;}
.y70{bottom:454.306667pt;}
.y3b{bottom:459.426667pt;}
.yb8{bottom:460.066667pt;}
.y6f{bottom:470.946667pt;}
.y89{bottom:471.840000pt;}
.y18{bottom:474.466667pt;}
.y3a{bottom:480.546667pt;}
.yb7{bottom:481.186667pt;}
.y17{bottom:495.453333pt;}
.y39{bottom:501.693333pt;}
.yb6{bottom:502.333333pt;}
.ye2{bottom:516.093333pt;}
.y16{bottom:516.573333pt;}
.y38{bottom:522.813333pt;}
.yb5{bottom:523.293333pt;}
.ye1{bottom:537.213333pt;}
.y15{bottom:537.693333pt;}
.y37{bottom:543.773333pt;}
.yb4{bottom:544.413333pt;}
.ye0{bottom:558.333333pt;}
.y14{bottom:558.813333pt;}
.y36{bottom:564.893333pt;}
.yb3{bottom:565.533333pt;}
.ydf{bottom:579.453333pt;}
.y13{bottom:579.773333pt;}
.y35{bottom:586.013333pt;}
.yb2{bottom:586.653333pt;}
.yde{bottom:600.413333pt;}
.y12{bottom:600.893333pt;}
.y34{bottom:607.133333pt;}
.y5d{bottom:607.613333pt;}
.ydd{bottom:621.533333pt;}
.y11{bottom:622.013333pt;}
.y33{bottom:628.093333pt;}
.y5c{bottom:628.733333pt;}
.ydc{bottom:642.653333pt;}
.y10{bottom:643.133333pt;}
.y32{bottom:649.213333pt;}
.y5b{bottom:649.853333pt;}
.ydb{bottom:663.133333pt;}
.yf{bottom:664.093333pt;}
.y31{bottom:670.333333pt;}
.y5a{bottom:670.813333pt;}
.y6e{bottom:672.413333pt;}
.yda{bottom:682.493333pt;}
.ye{bottom:685.213333pt;}
.y30{bottom:691.453333pt;}
.y6d{bottom:691.773333pt;}
.y59{bottom:691.933333pt;}
.yeb{bottom:699.360000pt;}
.yd{bottom:706.333333pt;}
.y97{bottom:711.293333pt;}
.y6c{bottom:711.453333pt;}
.y2f{bottom:712.413333pt;}
.y58{bottom:713.053333pt;}
.y96{bottom:726.533333pt;}
.ya7{bottom:726.560000pt;}
.y6b{bottom:726.693333pt;}
.y85{bottom:726.720000pt;}
.yc{bottom:727.333333pt;}
.y2e{bottom:733.573333pt;}
.y57{bottom:734.213333pt;}
.yb{bottom:748.453333pt;}
.y2d{bottom:752.773333pt;}
.y56{bottom:755.173333pt;}
.ya{bottom:769.573333pt;}
.y2c{bottom:770.693333pt;}
.y55{bottom:776.293333pt;}
.y2b{bottom:786.053333pt;}
.y9{bottom:790.213333pt;}
.y54{bottom:797.413333pt;}
.y8{bottom:809.413333pt;}
.y53{bottom:818.533333pt;}
.y6a{bottom:819.813333pt;}
.y7{bottom:829.253333pt;}
.y52{bottom:839.493333pt;}
.y6{bottom:850.373333pt;}
.y51{bottom:860.613333pt;}
.y5{bottom:874.213333pt;}
.y50{bottom:881.733333pt;}
.y4f{bottom:902.853333pt;}
.y4{bottom:903.013333pt;}
.y4e{bottom:923.813333pt;}
.y3{bottom:924.133333pt;}
.y95{bottom:926.853333pt;}
.y1{bottom:939.173333pt;}
.y4d{bottom:944.960000pt;}
.y94{bottom:946.240000pt;}
.y2a{bottom:994.080000pt;}
.h10{height:24.612900pt;}
.h12{height:29.975731pt;}
.hd{height:36.186037pt;}
.hb{height:36.246695pt;}
.h5{height:44.706250pt;}
.h1{height:47.380000pt;}
.h7{height:51.405000pt;}
.h4{height:51.500000pt;}
.h9{height:55.453460pt;}
.h6{height:55.625000pt;}
.h2{height:55.875000pt;}
.he{height:65.781915pt;}
.h3{height:83.812500pt;}
.h8{height:87.502269pt;}
.hc{height:193.786209pt;}
.ha{height:194.111049pt;}
.hf{height:237.803977pt;}
.h11{height:240.380391pt;}
.h0{height:1056.000000pt;}
.w1{width:310.072016pt;}
.w4{width:668.517811pt;}
.w5{width:668.545804pt;}
.w3{width:669.781672pt;}
.w2{width:670.260999pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:11.017267pt;}
.x17{left:12.777683pt;}
.x1b{left:16.032136pt;}
.x1a{left:18.319718pt;}
.x11{left:27.178647pt;}
.x16{left:41.839210pt;}
.xe{left:47.391959pt;}
.x19{left:60.106214pt;}
.x2{left:72.000000pt;}
.xf{left:72.936119pt;}
.x10{left:88.119975pt;}
.x7{left:96.032000pt;}
.x15{left:102.112000pt;}
.x14{left:108.032000pt;}
.x5{left:274.586667pt;}
.x6{left:330.466667pt;}
.x4{left:350.306667pt;}
.xa{left:384.066667pt;}
.x3{left:408.066667pt;}
.x8{left:432.066667pt;}
.xd{left:433.428903pt;}
.x9{left:456.066667pt;}
.xc{left:486.333333pt;}
.x13{left:742.053333pt;}
.x12{left:743.013333pt;}
.xb{left:744.133333pt;}
.x1{left:816.133333pt;}
}




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