
    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_4eec1230fe0463676b387666.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_ec23d5630550a5af1341085f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_eea76649353ddb90b54b89db.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_b72c4bd5dae0f1792f9d97ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_214728e0ac3c5731694e22dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.860840;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_1dbce6b0aa2d668f5b0fafa8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686523;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_81c2e06ea0baeb87a3c9734a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766113;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_f37f4c2b04c42f976adefb14.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_9286c9b334f26ed8f966fdf9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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_b94b18c1db58776569923ec6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.866699;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_3e060200318961142b9c74d1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.861328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_eb15bed723ab9b40b1445276.woff2')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ae72cb96185e5ac15070ace9.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:41.039984px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.010626px;}
.lsa{letter-spacing:0.010641px;}
.ls1{letter-spacing:0.018556px;}
.ls9{letter-spacing:0.021282px;}
.ls2{letter-spacing:0.182661px;}
.ls4{letter-spacing:0.903120px;}
.ls3{letter-spacing:27.566089px;}
.lsb{letter-spacing:28.252489px;}
.ls7{letter-spacing:34.015846px;}
.ls8{letter-spacing:80.698168px;}
.ls0{letter-spacing:1276.761705px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-35.855986px;}
.ws3{word-spacing:-32.418543px;}
.ws4{word-spacing:-32.399987px;}
.ws9{word-spacing:-18.021275px;}
.ws7{word-spacing:-17.999993px;}
.ws2{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws5{word-spacing:-14.939994px;}
.ws1{word-spacing:-13.505755px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-5.092173px;}
._1{margin-left:-3.282801px;}
._3{margin-left:-1.570800px;}
._0{width:1.003097px;}
._b{width:2.051751px;}
._8{width:3.592628px;}
._c{width:4.742859px;}
._10{width:6.325068px;}
._a{width:8.170787px;}
._9{width:9.396082px;}
._6{width:10.990535px;}
._5{width:12.088543px;}
._7{width:13.440206px;}
._1a{width:15.330142px;}
._18{width:16.511999px;}
._f{width:19.004573px;}
._17{width:20.427007px;}
._16{width:22.117019px;}
._14{width:23.593323px;}
._15{width:24.725878px;}
._4{width:26.295445px;}
._12{width:27.626633px;}
._19{width:28.725614px;}
._d{width:30.082804px;}
._e{width:31.115805px;}
._11{width:32.700629px;}
._13{width:35.145191px;}
._1d{width:36.577823px;}
._1b{width:38.161253px;}
._1c{width:39.238937px;}
._1e{width:143.777921px;}
.fcb{color:transparent;}
.fc9{color:rgb(44,62,80);}
.fc8{color:rgb(83,129,53);}
.fc7{color:rgb(0,32,96);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(192,0,0);}
.fca{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.fs3{font-size:95.759962px;}
.y6{bottom:-9.899991px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.yd{bottom:3.060047px;}
.y4b{bottom:3.239297px;}
.yd0{bottom:3.958964px;}
.yd4{bottom:3.958989px;}
.yd8{bottom:3.959014px;}
.ye1{bottom:3.959040px;}
.ye5{bottom:3.959065px;}
.yef{bottom:3.959098px;}
.y35{bottom:3.959099px;}
.yf4{bottom:3.959132px;}
.ydc{bottom:4.319010px;}
.y1d{bottom:4.498950px;}
.y25{bottom:4.499081px;}
.y33{bottom:4.499100px;}
.yb{bottom:4.500038px;}
.yc{bottom:28.560240px;}
.ya{bottom:50.520240px;}
.y8{bottom:55.020278px;}
.y9{bottom:56.100278px;}
.y120{bottom:144.119942px;}
.y12f{bottom:145.919942px;}
.y1a{bottom:147.179941px;}
.y75{bottom:148.259941px;}
.y9a{bottom:163.379935px;}
.y105{bottom:163.559935px;}
.y11f{bottom:166.979933px;}
.y12e{bottom:168.779932px;}
.y19{bottom:169.139932px;}
.y74{bottom:171.119932px;}
.y99{bottom:186.239926px;}
.y104{bottom:186.419925px;}
.yb6{bottom:189.659924px;}
.y18{bottom:191.099924px;}
.y12d{bottom:191.459923px;}
.y73{bottom:193.799922px;}
.y98{bottom:208.919916px;}
.y11e{bottom:210.719916px;}
.yb5{bottom:212.519915px;}
.y12c{bottom:214.319914px;}
.y72{bottom:216.659913px;}
.y103{bottom:230.159908px;}
.y97{bottom:231.779907px;}
.y11d{bottom:233.579907px;}
.y17{bottom:233.759906px;}
.yb4{bottom:235.199906px;}
.y12b{bottom:236.999905px;}
.y71{bottom:239.339904px;}
.y4a{bottom:254.100600px;}
.y11c{bottom:256.259897px;}
.yb3{bottom:258.059897px;}
.y12a{bottom:259.859896px;}
.y70{bottom:262.199895px;}
.y102{bottom:273.899890px;}
.y49{bottom:274.619890px;}
.y96{bottom:275.519890px;}
.y11b{bottom:279.119888px;}
.yb2{bottom:280.739888px;}
.y129{bottom:282.539887px;}
.y48{bottom:291.899883px;}
.y31{bottom:299.459880px;}
.y11a{bottom:301.799879px;}
.yb1{bottom:303.599879px;}
.y6f{bottom:305.939878px;}
.y101{bottom:317.639873px;}
.y95{bottom:319.259872px;}
.y119{bottom:324.659870px;}
.yc9{bottom:326.279869px;}
.y50{bottom:329.159868px;}
.y100{bottom:340.499864px;}
.y94{bottom:342.119863px;}
.y139{bottom:345.539862px;}
.yb0{bottom:347.339861px;}
.yc8{bottom:349.139860px;}
.y6e{bottom:349.679860px;}
.y4f{bottom:350.039860px;}
.yff{bottom:363.179855px;}
.y93{bottom:364.799854px;}
.y118{bottom:368.399853px;}
.yaf{bottom:370.019852px;}
.y4e{bottom:371.099852px;}
.yfe{bottom:386.039846px;}
.y92{bottom:387.659845px;}
.y138{bottom:391.079844px;}
.y4d{bottom:392.159843px;}
.yae{bottom:392.879843px;}
.y6d{bottom:393.419843px;}
.yfd{bottom:408.719837px;}
.y91{bottom:410.339836px;}
.y117{bottom:412.139835px;}
.y4c{bottom:413.219835px;}
.y128{bottom:413.939834px;}
.yad{bottom:415.559834px;}
.y6c{bottom:416.279833px;}
.y30{bottom:429.059828px;}
.yfc{bottom:431.579827px;}
.y137{bottom:436.619825px;}
.yac{bottom:438.419825px;}
.y6b{bottom:438.959824px;}
.y90{bottom:454.079818px;}
.yfb{bottom:454.259818px;}
.y116{bottom:455.879818px;}
.y127{bottom:457.679817px;}
.y47{bottom:458.039817px;}
.y136{bottom:459.479816px;}
.yab{bottom:461.099816px;}
.y6a{bottom:461.819815px;}
.y46{bottom:475.319810px;}
.y8f{bottom:476.939809px;}
.y115{bottom:478.559809px;}
.y126{bottom:480.359808px;}
.y135{bottom:482.159807px;}
.yaa{bottom:483.959806px;}
.y69{bottom:484.499806px;}
.y45{bottom:492.599803px;}
.yfa{bottom:497.999801px;}
.y8e{bottom:499.619800px;}
.y114{bottom:501.419799px;}
.y125{bottom:503.219799px;}
.y134{bottom:505.019798px;}
.yc7{bottom:506.639797px;}
.y68{bottom:507.359797px;}
.y44{bottom:509.879796px;}
.y2f{bottom:514.379794px;}
.yf9{bottom:520.859792px;}
.y8d{bottom:522.479791px;}
.y113{bottom:524.099790px;}
.y124{bottom:525.899790px;}
.y43{bottom:527.159789px;}
.ya9{bottom:527.699789px;}
.y67{bottom:530.039788px;}
.yf8{bottom:543.539783px;}
.y42{bottom:544.439782px;}
.y8c{bottom:545.159782px;}
.y112{bottom:546.959781px;}
.y2e{bottom:548.579781px;}
.y123{bottom:548.759780px;}
.yc6{bottom:550.559780px;}
.y66{bottom:552.899779px;}
.y41{bottom:561.539775px;}
.y2d{bottom:566.219774px;}
.yf7{bottom:566.399773px;}
.y8b{bottom:568.019773px;}
.y111{bottom:569.639772px;}
.ya8{bottom:571.439771px;}
.y133{bottom:573.239771px;}
.y65{bottom:575.579770px;}
.y40{bottom:578.819768px;}
.y2c{bottom:583.859766px;}
.y8a{bottom:590.699764px;}
.y110{bottom:592.499763px;}
.yc5{bottom:594.299762px;}
.y3f{bottom:596.099762px;}
.y64{bottom:598.439761px;}
.y2b{bottom:600.239760px;}
.yf6{bottom:607.979757px;}
.y3e{bottom:613.379755px;}
.ya7{bottom:615.179754px;}
.yc4{bottom:616.979753px;}
.y3d{bottom:630.659748px;}
.y2a{bottom:632.819747px;}
.y89{bottom:634.439746px;}
.ya6{bottom:638.039745px;}
.yc3{bottom:639.839744px;}
.y63{bottom:642.179743px;}
.y3c{bottom:647.759741px;}
.yf5{bottom:649.739740px;}
.ya5{bottom:660.719736px;}
.yc2{bottom:662.519735px;}
.y3b{bottom:665.039734px;}
.y29{bottom:665.759734px;}
.yf3{bottom:667.200600px;}
.y88{bottom:678.179729px;}
.y3a{bottom:682.319727px;}
.ya4{bottom:683.579727px;}
.yc1{bottom:685.379726px;}
.y62{bottom:685.919726px;}
.yf1{bottom:691.859723px;}
.y28{bottom:698.699721px;}
.y39{bottom:699.599720px;}
.y87{bottom:701.039720px;}
.ya3{bottom:706.259717px;}
.yc0{bottom:708.059717px;}
.y61{bottom:708.779716px;}
.yf0{bottom:712.559715px;}
.y27{bottom:716.699713px;}
.y38{bottom:716.879713px;}
.y140{bottom:722.099711px;}
.y86{bottom:723.719711px;}
.y10f{bottom:727.319709px;}
.ya2{bottom:729.119708px;}
.ybf{bottom:730.919708px;}
.y60{bottom:731.459707px;}
.yf2{bottom:733.259707px;}
.y37{bottom:734.159706px;}
.y13f{bottom:744.779702px;}
.y32{bottom:745.140600px;}
.y85{bottom:746.579701px;}
.y34{bottom:747.300600px;}
.y10e{bottom:750.179700px;}
.yee{bottom:750.900600px;}
.y36{bottom:751.259699px;}
.ya1{bottom:751.799699px;}
.ybe{bottom:753.599699px;}
.y26{bottom:753.779698px;}
.y5f{bottom:754.319698px;}
.yec{bottom:765.119694px;}
.y13e{bottom:767.639693px;}
.y84{bottom:769.259692px;}
.y10d{bottom:772.859691px;}
.ya0{bottom:774.659690px;}
.ye9{bottom:775.559690px;}
.y5e{bottom:776.999689px;}
.yeb{bottom:785.819686px;}
.y22{bottom:787.619685px;}
.y23{bottom:787.799685px;}
.y13d{bottom:790.319684px;}
.y83{bottom:792.119683px;}
.y24{bottom:792.300600px;}
.y10c{bottom:795.719682px;}
.ye8{bottom:796.259681px;}
.y9f{bottom:797.339681px;}
.y5d{bottom:799.859680px;}
.yea{bottom:806.519677px;}
.y13c{bottom:813.179675px;}
.y82{bottom:814.799674px;}
.yed{bottom:816.959673px;}
.y10b{bottom:818.399673px;}
.y9e{bottom:820.199672px;}
.y5c{bottom:822.539671px;}
.y16{bottom:829.019668px;}
.ye4{bottom:834.420600px;}
.y13b{bottom:835.859666px;}
.y81{bottom:837.659665px;}
.y122{bottom:841.079664px;}
.ybd{bottom:842.879663px;}
.y5b{bottom:845.219662px;}
.ye7{bottom:848.639661px;}
.y15{bottom:851.879659px;}
.y13a{bottom:858.719657px;}
.ye3{bottom:859.079656px;}
.y10a{bottom:862.139655px;}
.y9d{bottom:863.939654px;}
.ybc{bottom:865.739654px;}
.y14{bottom:868.979652px;}
.ye6{bottom:869.339652px;}
.ye2{bottom:879.779648px;}
.y80{bottom:881.399647px;}
.y121{bottom:884.999646px;}
.y13{bottom:886.259645px;}
.y132{bottom:886.619645px;}
.ybb{bottom:888.419645px;}
.y5a{bottom:889.139644px;}
.ye0{bottom:897.240600px;}
.y12{bottom:903.539639px;}
.y7f{bottom:904.079638px;}
.y109{bottom:905.879638px;}
.y9c{bottom:907.679637px;}
.y131{bottom:909.479636px;}
.ydd{bottom:911.459635px;}
.y59{bottom:911.819635px;}
.y11{bottom:920.819632px;}
.ydf{bottom:921.899631px;}
.y7e{bottom:926.939629px;}
.y108{bottom:928.739629px;}
.yba{bottom:932.159627px;}
.y58{bottom:934.679626px;}
.yde{bottom:942.599623px;}
.y10{bottom:949.079620px;}
.y7d{bottom:949.619620px;}
.y9b{bottom:951.419619px;}
.y57{bottom:957.359617px;}
.yd7{bottom:960.060600px;}
.ydb{bottom:969.960600px;}
.y7c{bottom:972.479611px;}
.yda{bottom:974.279610px;}
.yb9{bottom:976.079610px;}
.yf{bottom:976.619609px;}
.y56{bottom:980.219608px;}
.yd6{bottom:984.719606px;}
.yd9{bottom:994.979602px;}
.y7b{bottom:995.159602px;}
.y107{bottom:996.959601px;}
.y130{bottom:998.759600px;}
.y55{bottom:1002.899599px;}
.ye{bottom:1004.339598px;}
.yd5{bottom:1005.419598px;}
.y7a{bottom:1018.019593px;}
.yb8{bottom:1019.819592px;}
.yd3{bottom:1022.880600px;}
.y54{bottom:1025.759590px;}
.y79{bottom:1040.699584px;}
.yb7{bottom:1042.499583px;}
.y1b{bottom:1043.759582px;}
.yd2{bottom:1047.539581px;}
.y53{bottom:1048.439581px;}
.y21{bottom:1050.059580px;}
.y78{bottom:1063.559575px;}
.y106{bottom:1065.359574px;}
.yd1{bottom:1068.239573px;}
.y20{bottom:1068.419573px;}
.ycf{bottom:1085.700600px;}
.y77{bottom:1086.239566px;}
.y1f{bottom:1086.779565px;}
.yce{bottom:1089.659564px;}
.y52{bottom:1090.199564px;}
.ycb{bottom:1100.099560px;}
.y1e{bottom:1105.679558px;}
.y76{bottom:1109.099556px;}
.ycd{bottom:1110.359556px;}
.yca{bottom:1120.799552px;}
.y1c{bottom:1121.160600px;}
.ycc{bottom:1131.059548px;}
.y51{bottom:1131.779547px;}
.y4{bottom:1153.019539px;}
.y7{bottom:1181.459527px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h3{height:5.940000px;}
.h15{height:16.560000px;}
.h14{height:18.000000px;}
.h7{height:18.900000px;}
.hd{height:20.160000px;}
.h6{height:20.340000px;}
.h1a{height:20.520000px;}
.h11{height:33.706744px;}
.h13{height:36.624009px;}
.h4{height:36.703110px;}
.h5{height:38.759750px;}
.h12{height:39.313461px;}
.ha{height:40.501390px;}
.hf{height:40.851546px;}
.h1{height:42.894123px;}
.h18{height:43.506897px;}
.h10{height:44.149201px;}
.he{height:45.281232px;}
.h2{height:47.545293px;}
.h16{height:48.796855px;}
.hc{height:51.679667px;}
.h17{height:52.417948px;}
.hb{height:57.092321px;}
.h8{height:64.899818px;}
.h9{height:68.733957px;}
.h19{height:92.719650px;}
.h0{height:1263.000000px;}
.w9{width:3.420000px;}
.w5{width:3.600000px;}
.w3{width:4.500000px;}
.w11{width:5.040000px;}
.w14{width:5.580000px;}
.wa{width:7.560000px;}
.w6{width:8.100000px;}
.w7{width:8.280000px;}
.wb{width:9.000000px;}
.w2{width:9.720000px;}
.wc{width:50.940000px;}
.w17{width:70.560000px;}
.w10{width:91.980000px;}
.wd{width:98.460000px;}
.w8{width:108.720000px;}
.w16{width:124.020000px;}
.w13{width:131.400000px;}
.we{width:131.940000px;}
.w19{width:165.960000px;}
.w18{width:169.380000px;}
.w15{width:178.920000px;}
.wf{width:198.540000px;}
.w12{width:200.880000px;}
.w4{width:331.920000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x17{left:-4.680262px;}
.x0{left:0.000000px;}
.x38{left:1.430771px;}
.x1{left:107.999957px;}
.xd{left:112.499925px;}
.x2d{left:116.459953px;}
.x1e{left:117.899953px;}
.x1d{left:120.599952px;}
.x8{left:131.579947px;}
.x5{left:132.659947px;}
.x27{left:134.999907px;}
.x9{left:137.159673px;}
.x18{left:141.119944px;}
.x20{left:156.419937px;}
.x28{left:161.999886px;}
.x31{left:167.400000px;}
.x1f{left:174.599930px;}
.x2b{left:188.999924px;}
.x35{left:208.440000px;}
.x2c{left:215.999914px;}
.xf{left:222.479911px;}
.x19{left:236.879905px;}
.x1a{left:239.759904px;}
.x21{left:258.659906px;}
.x22{left:259.739896px;}
.xa{left:265.500870px;}
.x2e{left:270.000000px;}
.x1b{left:277.560000px;}
.x10{left:295.740000px;}
.x1c{left:296.819881px;}
.x26{left:300.059880px;}
.x2{left:302.579879px;}
.x13{left:319.139876px;}
.x2f{left:331.920000px;}
.xe{left:341.999834px;}
.x25{left:358.379879px;}
.xb{left:369.359852px;}
.x11{left:394.739842px;}
.x12{left:399.959840px;}
.x36{left:401.940000px;}
.x23{left:405.540000px;}
.x24{left:408.959836px;}
.x14{left:411.479835px;}
.x30{left:415.439834px;}
.x6{left:432.359827px;}
.x29{left:435.059826px;}
.x2a{left:438.839824px;}
.x3{left:446.399821px;}
.xc{left:485.999806px;}
.x15{left:508.319797px;}
.x39{left:513.900000px;}
.x32{left:547.380000px;}
.x37{left:572.220000px;}
.x33{left:573.659771px;}
.x3d{left:644.220000px;}
.x16{left:659.700000px;}
.x4{left:666.179734px;}
.x3c{left:739.620000px;}
.x3b{left:743.040000px;}
.x3a{left:752.580000px;}
.x34{left:772.200000px;}
.x7{left:780.120000px;}
@media print{
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:36.479985pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.009446pt;}
.lsa{letter-spacing:0.009459pt;}
.ls1{letter-spacing:0.016494pt;}
.ls9{letter-spacing:0.018917pt;}
.ls2{letter-spacing:0.162365pt;}
.ls4{letter-spacing:0.802773pt;}
.ls3{letter-spacing:24.503190pt;}
.lsb{letter-spacing:25.113323pt;}
.ls7{letter-spacing:30.236308pt;}
.ls8{letter-spacing:71.731705pt;}
.ls0{letter-spacing:1134.899294pt;}
.ws8{word-spacing:-31.871987pt;}
.ws3{word-spacing:-28.816482pt;}
.ws4{word-spacing:-28.799988pt;}
.ws9{word-spacing:-16.018911pt;}
.ws7{word-spacing:-15.999994pt;}
.ws2{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws5{word-spacing:-13.279995pt;}
.ws1{word-spacing:-12.005115pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-4.526376pt;}
._1{margin-left:-2.918046pt;}
._3{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._b{width:1.823778pt;}
._8{width:3.193447pt;}
._c{width:4.215874pt;}
._10{width:5.622282pt;}
._a{width:7.262922pt;}
._9{width:8.352073pt;}
._6{width:9.769364pt;}
._5{width:10.745371pt;}
._7{width:11.946850pt;}
._1a{width:13.626793pt;}
._18{width:14.677333pt;}
._f{width:16.892953pt;}
._17{width:18.157340pt;}
._16{width:19.659573pt;}
._14{width:20.971843pt;}
._15{width:21.978558pt;}
._4{width:23.373729pt;}
._12{width:24.557007pt;}
._19{width:25.533879pt;}
._d{width:26.740270pt;}
._e{width:27.658493pt;}
._11{width:29.067226pt;}
._13{width:31.240170pt;}
._1d{width:32.513620pt;}
._1b{width:33.921114pt;}
._1c{width:34.879056pt;}
._1e{width:127.802596pt;}
.fs6{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.fs3{font-size:85.119966pt;}
.y6{bottom:-8.799992pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.yd{bottom:2.720042pt;}
.y4b{bottom:2.879375pt;}
.yd0{bottom:3.519079pt;}
.yd4{bottom:3.519102pt;}
.yd8{bottom:3.519124pt;}
.ye1{bottom:3.519146pt;}
.ye5{bottom:3.519169pt;}
.yef{bottom:3.519198pt;}
.y35{bottom:3.519200pt;}
.yf4{bottom:3.519228pt;}
.ydc{bottom:3.839120pt;}
.y1d{bottom:3.999066pt;}
.y25{bottom:3.999183pt;}
.y33{bottom:3.999200pt;}
.yb{bottom:4.000034pt;}
.yc{bottom:25.386880pt;}
.ya{bottom:44.906880pt;}
.y8{bottom:48.906914pt;}
.y9{bottom:49.866913pt;}
.y120{bottom:128.106615pt;}
.y12f{bottom:129.706615pt;}
.y1a{bottom:130.826614pt;}
.y75{bottom:131.786614pt;}
.y9a{bottom:145.226609pt;}
.y105{bottom:145.386609pt;}
.y11f{bottom:148.426607pt;}
.y12e{bottom:150.026607pt;}
.y19{bottom:150.346607pt;}
.y74{bottom:152.106606pt;}
.y99{bottom:165.546600pt;}
.y104{bottom:165.706600pt;}
.yb6{bottom:168.586599pt;}
.y18{bottom:169.866599pt;}
.y12d{bottom:170.186599pt;}
.y73{bottom:172.266598pt;}
.y98{bottom:185.706592pt;}
.y11e{bottom:187.306592pt;}
.yb5{bottom:188.906591pt;}
.y12c{bottom:190.506590pt;}
.y72{bottom:192.586590pt;}
.y103{bottom:204.586585pt;}
.y97{bottom:206.026584pt;}
.y11d{bottom:207.626584pt;}
.y17{bottom:207.786584pt;}
.yb4{bottom:209.066583pt;}
.y12b{bottom:210.666582pt;}
.y71{bottom:212.746582pt;}
.y4a{bottom:225.867200pt;}
.y11c{bottom:227.786576pt;}
.yb3{bottom:229.386575pt;}
.y12a{bottom:230.986574pt;}
.y70{bottom:233.066573pt;}
.y102{bottom:243.466569pt;}
.y49{bottom:244.106569pt;}
.y96{bottom:244.906569pt;}
.y11b{bottom:248.106567pt;}
.yb2{bottom:249.546567pt;}
.y129{bottom:251.146566pt;}
.y48{bottom:259.466563pt;}
.y31{bottom:266.186560pt;}
.y11a{bottom:268.266559pt;}
.yb1{bottom:269.866559pt;}
.y6f{bottom:271.946558pt;}
.y101{bottom:282.346554pt;}
.y95{bottom:283.786553pt;}
.y119{bottom:288.586551pt;}
.yc9{bottom:290.026551pt;}
.y50{bottom:292.586550pt;}
.y100{bottom:302.666546pt;}
.y94{bottom:304.106545pt;}
.y139{bottom:307.146544pt;}
.yb0{bottom:308.746543pt;}
.yc8{bottom:310.346543pt;}
.y6e{bottom:310.826542pt;}
.y4f{bottom:311.146542pt;}
.yff{bottom:322.826538pt;}
.y93{bottom:324.266537pt;}
.y118{bottom:327.466536pt;}
.yaf{bottom:328.906535pt;}
.y4e{bottom:329.866535pt;}
.yfe{bottom:343.146529pt;}
.y92{bottom:344.586529pt;}
.y138{bottom:347.626528pt;}
.y4d{bottom:348.586527pt;}
.yae{bottom:349.226527pt;}
.y6d{bottom:349.706527pt;}
.yfd{bottom:363.306521pt;}
.y91{bottom:364.746521pt;}
.y117{bottom:366.346520pt;}
.y4c{bottom:367.306520pt;}
.y128{bottom:367.946519pt;}
.yad{bottom:369.386519pt;}
.y6c{bottom:370.026519pt;}
.y30{bottom:381.386514pt;}
.yfc{bottom:383.626513pt;}
.y137{bottom:388.106511pt;}
.yac{bottom:389.706511pt;}
.y6b{bottom:390.186511pt;}
.y90{bottom:403.626505pt;}
.yfb{bottom:403.786505pt;}
.y116{bottom:405.226505pt;}
.y127{bottom:406.826504pt;}
.y47{bottom:407.146504pt;}
.y136{bottom:408.426503pt;}
.yab{bottom:409.866503pt;}
.y6a{bottom:410.506502pt;}
.y46{bottom:422.506498pt;}
.y8f{bottom:423.946497pt;}
.y115{bottom:425.386497pt;}
.y126{bottom:426.986496pt;}
.y135{bottom:428.586495pt;}
.yaa{bottom:430.186495pt;}
.y69{bottom:430.666494pt;}
.y45{bottom:437.866492pt;}
.yfa{bottom:442.666490pt;}
.y8e{bottom:444.106489pt;}
.y114{bottom:445.706488pt;}
.y125{bottom:447.306488pt;}
.y134{bottom:448.906487pt;}
.yc7{bottom:450.346487pt;}
.y68{bottom:450.986486pt;}
.y44{bottom:453.226485pt;}
.y2f{bottom:457.226484pt;}
.yf9{bottom:462.986481pt;}
.y8d{bottom:464.426481pt;}
.y113{bottom:465.866480pt;}
.y124{bottom:467.466480pt;}
.y43{bottom:468.586479pt;}
.ya9{bottom:469.066479pt;}
.y67{bottom:471.146478pt;}
.yf8{bottom:483.146473pt;}
.y42{bottom:483.946473pt;}
.y8c{bottom:484.586473pt;}
.y112{bottom:486.186472pt;}
.y2e{bottom:487.626472pt;}
.y123{bottom:487.786472pt;}
.yc6{bottom:489.386471pt;}
.y66{bottom:491.466470pt;}
.y41{bottom:499.146467pt;}
.y2d{bottom:503.306465pt;}
.yf7{bottom:503.466465pt;}
.y8b{bottom:504.906465pt;}
.y111{bottom:506.346464pt;}
.ya8{bottom:507.946463pt;}
.y133{bottom:509.546463pt;}
.y65{bottom:511.626462pt;}
.y40{bottom:514.506461pt;}
.y2c{bottom:518.986459pt;}
.y8a{bottom:525.066457pt;}
.y110{bottom:526.666456pt;}
.yc5{bottom:528.266455pt;}
.y3f{bottom:529.866455pt;}
.y64{bottom:531.946454pt;}
.y2b{bottom:533.546453pt;}
.yf6{bottom:540.426450pt;}
.y3e{bottom:545.226449pt;}
.ya7{bottom:546.826448pt;}
.yc4{bottom:548.426447pt;}
.y3d{bottom:560.586442pt;}
.y2a{bottom:562.506442pt;}
.y89{bottom:563.946441pt;}
.ya6{bottom:567.146440pt;}
.yc3{bottom:568.746439pt;}
.y63{bottom:570.826438pt;}
.y3c{bottom:575.786436pt;}
.yf5{bottom:577.546436pt;}
.ya5{bottom:587.306432pt;}
.yc2{bottom:588.906431pt;}
.y3b{bottom:591.146430pt;}
.y29{bottom:591.786430pt;}
.yf3{bottom:593.067200pt;}
.y88{bottom:602.826426pt;}
.y3a{bottom:606.506424pt;}
.ya4{bottom:607.626424pt;}
.yc1{bottom:609.226423pt;}
.y62{bottom:609.706423pt;}
.yf1{bottom:614.986421pt;}
.y28{bottom:621.066418pt;}
.y39{bottom:621.866418pt;}
.y87{bottom:623.146417pt;}
.ya3{bottom:627.786416pt;}
.yc0{bottom:629.386415pt;}
.y61{bottom:630.026415pt;}
.yf0{bottom:633.386413pt;}
.y27{bottom:637.066412pt;}
.y38{bottom:637.226412pt;}
.y140{bottom:641.866410pt;}
.y86{bottom:643.306409pt;}
.y10f{bottom:646.506408pt;}
.ya2{bottom:648.106407pt;}
.ybf{bottom:649.706407pt;}
.y60{bottom:650.186407pt;}
.yf2{bottom:651.786406pt;}
.y37{bottom:652.586406pt;}
.y13f{bottom:662.026402pt;}
.y32{bottom:662.347200pt;}
.y85{bottom:663.626401pt;}
.y34{bottom:664.267200pt;}
.y10e{bottom:666.826400pt;}
.yee{bottom:667.467200pt;}
.y36{bottom:667.786400pt;}
.ya1{bottom:668.266399pt;}
.ybe{bottom:669.866399pt;}
.y26{bottom:670.026399pt;}
.y5f{bottom:670.506398pt;}
.yec{bottom:680.106395pt;}
.y13e{bottom:682.346394pt;}
.y84{bottom:683.786393pt;}
.y10d{bottom:686.986392pt;}
.ya0{bottom:688.586391pt;}
.ye9{bottom:689.386391pt;}
.y5e{bottom:690.666390pt;}
.yeb{bottom:698.506387pt;}
.y22{bottom:700.106387pt;}
.y23{bottom:700.266387pt;}
.y13d{bottom:702.506386pt;}
.y83{bottom:704.106385pt;}
.y24{bottom:704.267200pt;}
.y10c{bottom:707.306384pt;}
.ye8{bottom:707.786384pt;}
.y9f{bottom:708.746383pt;}
.y5d{bottom:710.986382pt;}
.yea{bottom:716.906380pt;}
.y13c{bottom:722.826378pt;}
.y82{bottom:724.266377pt;}
.yed{bottom:726.186376pt;}
.y10b{bottom:727.466376pt;}
.y9e{bottom:729.066375pt;}
.y5c{bottom:731.146374pt;}
.y16{bottom:736.906372pt;}
.ye4{bottom:741.707200pt;}
.y13b{bottom:742.986369pt;}
.y81{bottom:744.586369pt;}
.y122{bottom:747.626368pt;}
.ybd{bottom:749.226367pt;}
.y5b{bottom:751.306366pt;}
.ye7{bottom:754.346365pt;}
.y15{bottom:757.226364pt;}
.y13a{bottom:763.306361pt;}
.ye3{bottom:763.626361pt;}
.y10a{bottom:766.346360pt;}
.y9d{bottom:767.946359pt;}
.ybc{bottom:769.546359pt;}
.y14{bottom:772.426358pt;}
.ye6{bottom:772.746358pt;}
.ye2{bottom:782.026354pt;}
.y80{bottom:783.466353pt;}
.y121{bottom:786.666352pt;}
.y13{bottom:787.786352pt;}
.y132{bottom:788.106351pt;}
.ybb{bottom:789.706351pt;}
.y5a{bottom:790.346351pt;}
.ye0{bottom:797.547200pt;}
.y12{bottom:803.146345pt;}
.y7f{bottom:803.626345pt;}
.y109{bottom:805.226345pt;}
.y9c{bottom:806.826344pt;}
.y131{bottom:808.426343pt;}
.ydd{bottom:810.186343pt;}
.y59{bottom:810.506342pt;}
.y11{bottom:818.506339pt;}
.ydf{bottom:819.466339pt;}
.y7e{bottom:823.946337pt;}
.y108{bottom:825.546336pt;}
.yba{bottom:828.586335pt;}
.y58{bottom:830.826334pt;}
.yde{bottom:837.866332pt;}
.y10{bottom:843.626329pt;}
.y7d{bottom:844.106329pt;}
.y9b{bottom:845.706328pt;}
.y57{bottom:850.986326pt;}
.yd7{bottom:853.387200pt;}
.ydb{bottom:862.187200pt;}
.y7c{bottom:864.426321pt;}
.yda{bottom:866.026320pt;}
.yb9{bottom:867.626320pt;}
.yf{bottom:868.106319pt;}
.y56{bottom:871.306318pt;}
.yd6{bottom:875.306317pt;}
.yd9{bottom:884.426313pt;}
.y7b{bottom:884.586313pt;}
.y107{bottom:886.186312pt;}
.y130{bottom:887.786312pt;}
.y55{bottom:891.466310pt;}
.ye{bottom:892.746310pt;}
.yd5{bottom:893.706309pt;}
.y7a{bottom:904.906305pt;}
.yb8{bottom:906.506304pt;}
.yd3{bottom:909.227200pt;}
.y54{bottom:911.786302pt;}
.y79{bottom:925.066297pt;}
.yb7{bottom:926.666296pt;}
.y1b{bottom:927.786296pt;}
.yd2{bottom:931.146294pt;}
.y53{bottom:931.946294pt;}
.y21{bottom:933.386293pt;}
.y78{bottom:945.386289pt;}
.y106{bottom:946.986288pt;}
.yd1{bottom:949.546287pt;}
.y20{bottom:949.706287pt;}
.ycf{bottom:965.067200pt;}
.y77{bottom:965.546280pt;}
.y1f{bottom:966.026280pt;}
.yce{bottom:968.586279pt;}
.y52{bottom:969.066279pt;}
.ycb{bottom:977.866276pt;}
.y1e{bottom:982.826274pt;}
.y76{bottom:985.866272pt;}
.ycd{bottom:986.986272pt;}
.yca{bottom:996.266268pt;}
.y1c{bottom:996.587200pt;}
.ycc{bottom:1005.386265pt;}
.y51{bottom:1006.026264pt;}
.y4{bottom:1024.906257pt;}
.y7{bottom:1050.186247pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h3{height:5.280000pt;}
.h15{height:14.720000pt;}
.h14{height:16.000000pt;}
.h7{height:16.800000pt;}
.hd{height:17.920000pt;}
.h6{height:18.080000pt;}
.h1a{height:18.240000pt;}
.h11{height:29.961551pt;}
.h13{height:32.554674pt;}
.h4{height:32.624987pt;}
.h5{height:34.453111pt;}
.h12{height:34.945299pt;}
.ha{height:36.001236pt;}
.hf{height:36.312485pt;}
.h1{height:38.128110pt;}
.h18{height:38.672797pt;}
.h10{height:39.243734pt;}
.he{height:40.249984pt;}
.h2{height:42.262483pt;}
.h16{height:43.374983pt;}
.hc{height:45.937482pt;}
.h17{height:46.593731pt;}
.hb{height:50.748730pt;}
.h8{height:57.688727pt;}
.h9{height:61.096851pt;}
.h19{height:82.417467pt;}
.h0{height:1122.666667pt;}
.w9{width:3.040000pt;}
.w5{width:3.200000pt;}
.w3{width:4.000000pt;}
.w11{width:4.480000pt;}
.w14{width:4.960000pt;}
.wa{width:6.720000pt;}
.w6{width:7.200000pt;}
.w7{width:7.360000pt;}
.wb{width:8.000000pt;}
.w2{width:8.640000pt;}
.wc{width:45.280000pt;}
.w17{width:62.720000pt;}
.w10{width:81.760000pt;}
.wd{width:87.520000pt;}
.w8{width:96.640000pt;}
.w16{width:110.240000pt;}
.w13{width:116.800000pt;}
.we{width:117.280000pt;}
.w19{width:147.520000pt;}
.w18{width:150.560000pt;}
.w15{width:159.040000pt;}
.wf{width:176.480000pt;}
.w12{width:178.560000pt;}
.w4{width:295.040000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x17{left:-4.160233pt;}
.x0{left:0.000000pt;}
.x38{left:1.271796pt;}
.x1{left:95.999962pt;}
.xd{left:99.999933pt;}
.x2d{left:103.519959pt;}
.x1e{left:104.799958pt;}
.x1d{left:107.199957pt;}
.x8{left:116.959953pt;}
.x5{left:117.919953pt;}
.x27{left:119.999917pt;}
.x9{left:121.919710pt;}
.x18{left:125.439950pt;}
.x20{left:139.039944pt;}
.x28{left:143.999899pt;}
.x31{left:148.800000pt;}
.x1f{left:155.199938pt;}
.x2b{left:167.999933pt;}
.x35{left:185.280000pt;}
.x2c{left:191.999923pt;}
.xf{left:197.759921pt;}
.x19{left:210.559916pt;}
.x1a{left:213.119915pt;}
.x21{left:229.919917pt;}
.x22{left:230.879908pt;}
.xa{left:236.000773pt;}
.x2e{left:240.000000pt;}
.x1b{left:246.720000pt;}
.x10{left:262.880000pt;}
.x1c{left:263.839894pt;}
.x26{left:266.719893pt;}
.x2{left:268.959892pt;}
.x13{left:283.679890pt;}
.x2f{left:295.040000pt;}
.xe{left:303.999852pt;}
.x25{left:318.559893pt;}
.xb{left:328.319869pt;}
.x11{left:350.879860pt;}
.x12{left:355.519858pt;}
.x36{left:357.280000pt;}
.x23{left:360.480000pt;}
.x24{left:363.519855pt;}
.x14{left:365.759854pt;}
.x30{left:369.279852pt;}
.x6{left:384.319846pt;}
.x29{left:386.719845pt;}
.x2a{left:390.079844pt;}
.x3{left:396.799841pt;}
.xc{left:431.999827pt;}
.x15{left:451.839819pt;}
.x39{left:456.800000pt;}
.x32{left:486.560000pt;}
.x37{left:508.640000pt;}
.x33{left:509.919796pt;}
.x3d{left:572.640000pt;}
.x16{left:586.400000pt;}
.x4{left:592.159763pt;}
.x3c{left:657.440000pt;}
.x3b{left:660.480000pt;}
.x3a{left:668.960000pt;}
.x34{left:686.400000pt;}
.x7{left:693.440000pt;}
}




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