
    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_528af5ab590cd9fd0cea01de.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c66f75cfcc1a05f7d322b4fd.woff')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_95bc700bdd400269569c11ff.woff')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_c3971065dd33041e9adbba24.woff')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_69533b649d835f25dbcaca38.woff')format("woff");}.ff5{font-family:ff5;line-height:0.904297;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_67719a49a926620f36cc1a79.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_963e417ea4c70304b61bd18c.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_406accd4934247a0b8cacc60.woff')format("woff");}.ff9{font-family:ff9;line-height:0.774414;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_bf553398bf4034cd02a7aa0c.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1dceedf48f7fa4f2eb5084d5.woff')format("woff");}.ffb{font-family:ffb;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;}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v1{vertical-align:-8.639997px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.034440px;}
.ls8{letter-spacing:0.034446px;}
.lsa{letter-spacing:0.036085px;}
.ls4{letter-spacing:0.062787px;}
.ls10{letter-spacing:0.068862px;}
.lsb{letter-spacing:0.068906px;}
.lsf{letter-spacing:0.069038px;}
.ls3{letter-spacing:0.178760px;}
.ls5{letter-spacing:0.200640px;}
.ls1{letter-spacing:0.286367px;}
.ls2{letter-spacing:0.308315px;}
.ls9{letter-spacing:0.755915px;}
.ls6{letter-spacing:0.922080px;}
.lse{letter-spacing:34.052206px;}
.lsd{letter-spacing:34.087306px;}
.ls0{letter-spacing:1373.101155px;}
.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;}
}
.ws7{word-spacing:-42.724783px;}
.ws4{word-spacing:-32.462774px;}
.ws5{word-spacing:-32.399987px;}
.wsb{word-spacing:-18.068899px;}
.wsa{word-spacing:-17.999993px;}
.ws2{word-spacing:-16.559993px;}
.ws0{word-spacing:-16.558360px;}
.ws3{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.970234px;}
.ws6{word-spacing:-14.939994px;}
.ws8{word-spacing:-13.505755px;}
.ws9{word-spacing:0.000000px;}
._10{margin-left:-90.903204px;}
._32{margin-left:-9.400343px;}
._3{margin-left:-8.056432px;}
._4{margin-left:-6.690601px;}
._2e{margin-left:-5.644626px;}
._5{margin-left:-4.546531px;}
._2{margin-left:-3.432927px;}
._18{margin-left:-2.300937px;}
._1{margin-left:-1.237781px;}
._0{width:1.127437px;}
._15{width:2.161480px;}
._d{width:3.171561px;}
._16{width:4.300352px;}
._17{width:5.347572px;}
._8{width:6.846035px;}
._7{width:7.972741px;}
._1c{width:8.975141px;}
._1b{width:10.012098px;}
._c{width:11.827058px;}
._b{width:13.108456px;}
._1d{width:15.008278px;}
._19{width:16.572725px;}
._e{width:18.487116px;}
._1a{width:19.642500px;}
._a{width:21.258272px;}
._9{width:22.413411px;}
._2a{width:24.009566px;}
._35{width:25.247378px;}
._6{width:26.694720px;}
._31{width:28.653246px;}
._30{width:29.758916px;}
._1e{width:31.629395px;}
._f{width:33.005068px;}
._34{width:35.044189px;}
._33{width:36.136293px;}
._11{width:38.050774px;}
._12{width:39.227929px;}
._13{width:46.442130px;}
._14{width:47.561308px;}
._2f{width:55.161853px;}
._21{width:66.163281px;}
._1f{width:70.814460px;}
._20{width:73.018877px;}
._29{width:77.664080px;}
._24{width:81.482887px;}
._28{width:83.232941px;}
._27{width:84.478265px;}
._23{width:86.575902px;}
._22{width:87.859809px;}
._37{width:134.284052px;}
._36{width:140.712884px;}
._2d{width:154.758734px;}
._2c{width:158.992256px;}
._2b{width:160.010128px;}
._26{width:230.698304px;}
._25{width:237.642881px;}
._39{width:435.314425px;}
._38{width:442.514479px;}
._3a{width:962.509202px;}
.fc11{color:rgb(0,176,80);}
.fcf{color:rgb(153,142,164);}
.fce{color:rgb(225,216,236);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fcd{color:rgb(205,196,214);}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(83,129,53);}
.fc13{color:transparent;}
.fc12{color:rgb(112,48,160);}
.fc3{color:rgb(68,84,106);}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(5,99,193);}
.fc4{color:rgb(192,0,0);}
.fcb{color:rgb(56,87,36);}
.fc10{color:rgb(243,238,248);}
.fc1{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fcc{color:rgb(180,172,188);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs4{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.y5{bottom:-15.839994px;}
.y28{bottom:-0.000077px;}
.y0{bottom:0.000000px;}
.y1c{bottom:3.239727px;}
.y42{bottom:3.959596px;}
.y17{bottom:4.499718px;}
.y2a{bottom:4.499729px;}
.y1a{bottom:4.859718px;}
.ya{bottom:4.859980px;}
.yb{bottom:28.259989px;}
.y9{bottom:44.640000px;}
.y7{bottom:49.499980px;}
.y8{bottom:51.659979px;}
.y3f{bottom:138.419945px;}
.y6d{bottom:138.599945px;}
.yfa{bottom:140.939944px;}
.ybf{bottom:143.459943px;}
.y129{bottom:155.879938px;}
.y10c{bottom:159.119936px;}
.y6c{bottom:159.299936px;}
.y98{bottom:161.279935px;}
.yf9{bottom:161.639935px;}
.ydc{bottom:162.539935px;}
.ybe{bottom:164.159934px;}
.y3e{bottom:175.499930px;}
.y128{bottom:179.819928px;}
.y97{bottom:181.979927px;}
.ydb{bottom:183.239927px;}
.ybd{bottom:184.859926px;}
.y27{bottom:192.960000px;}
.y6b{bottom:201.059920px;}
.y96{bottom:202.679919px;}
.yf8{bottom:203.399919px;}
.y127{bottom:203.759918px;}
.yda{bottom:203.939918px;}
.ybc{bottom:205.559918px;}
.y10b{bottom:207.179917px;}
.y136{bottom:215.819914px;}
.y3d{bottom:218.699913px;}
.y6a{bottom:221.759911px;}
.y95{bottom:223.379911px;}
.yd9{bottom:224.639910px;}
.ybb{bottom:226.259909px;}
.y10a{bottom:231.119908px;}
.y126{bottom:239.759904px;}
.y69{bottom:242.459903px;}
.y94{bottom:244.079902px;}
.yf7{bottom:244.979902px;}
.yd8{bottom:245.339902px;}
.yba{bottom:246.959901px;}
.y49{bottom:255.059898px;}
.y125{bottom:263.699895px;}
.y93{bottom:264.779894px;}
.yf6{bottom:265.679894px;}
.yd7{bottom:266.039894px;}
.yb9{bottom:267.659893px;}
.y48{bottom:276.119890px;}
.y109{bottom:278.999888px;}
.y68{bottom:284.039886px;}
.y92{bottom:285.479886px;}
.yf5{bottom:286.379885px;}
.yd6{bottom:286.739885px;}
.y138{bottom:287.639885px;}
.y47{bottom:297.179881px;}
.y124{bottom:299.699880px;}
.y108{bottom:303.119879px;}
.y67{bottom:304.739878px;}
.y91{bottom:306.179878px;}
.yd5{bottom:307.439877px;}
.yb8{bottom:309.239876px;}
.y46{bottom:318.419873px;}
.y123{bottom:323.639871px;}
.y66{bottom:325.439870px;}
.y90{bottom:326.879869px;}
.y107{bottom:327.059869px;}
.yd4{bottom:328.139869px;}
.yb7{bottom:329.939868px;}
.y26{bottom:330.119868px;}
.y45{bottom:339.659864px;}
.y65{bottom:346.139862px;}
.y8f{bottom:347.579861px;}
.yd3{bottom:348.839860px;}
.yb6{bottom:350.639860px;}
.y106{bottom:350.999860px;}
.y64{bottom:366.839853px;}
.y8e{bottom:368.279853px;}
.yf4{bottom:369.539852px;}
.yb5{bottom:371.339851px;}
.y122{bottom:371.519851px;}
.y105{bottom:374.939850px;}
.y135{bottom:383.579847px;}
.y3c{bottom:386.639845px;}
.y8d{bottom:388.979844px;}
.yf3{bottom:390.239844px;}
.yd2{bottom:390.599844px;}
.yb4{bottom:392.039843px;}
.y3b{bottom:403.919838px;}
.y121{bottom:407.519837px;}
.y63{bottom:408.599837px;}
.y8c{bottom:409.679836px;}
.y104{bottom:410.939836px;}
.yb3{bottom:412.739835px;}
.y3a{bottom:421.199832px;}
.y25{bottom:426.059830px;}
.y62{bottom:429.299828px;}
.y8b{bottom:430.379828px;}
.y120{bottom:431.639827px;}
.yf2{bottom:431.999827px;}
.yd1{bottom:432.179827px;}
.yb2{bottom:433.439827px;}
.y39{bottom:438.299825px;}
.y61{bottom:449.999820px;}
.y8a{bottom:451.079820px;}
.yf1{bottom:452.699819px;}
.yd0{bottom:452.879819px;}
.y38{bottom:455.579818px;}
.y134{bottom:467.459813px;}
.y24{bottom:469.799812px;}
.y60{bottom:470.699812px;}
.y89{bottom:471.779811px;}
.y37{bottom:472.859811px;}
.y103{bottom:473.399811px;}
.ycf{bottom:473.579811px;}
.yb1{bottom:475.019810px;}
.y11f{bottom:479.519808px;}
.y23{bottom:485.099806px;}
.y36{bottom:490.139804px;}
.y5f{bottom:491.399803px;}
.y133{bottom:491.579803px;}
.y88{bottom:492.479803px;}
.y102{bottom:494.099802px;}
.yce{bottom:494.279802px;}
.y22{bottom:500.399800px;}
.y13b{bottom:503.459799px;}
.y35{bottom:507.419797px;}
.y87{bottom:513.179795px;}
.y21{bottom:514.439794px;}
.yf0{bottom:514.979794px;}
.y11e{bottom:515.519794px;}
.yb0{bottom:516.779793px;}
.y34{bottom:524.699790px;}
.y5e{bottom:533.159787px;}
.y86{bottom:533.879786px;}
.yef{bottom:535.679786px;}
.ycd{bottom:536.039786px;}
.yaf{bottom:537.479785px;}
.y11d{bottom:539.459784px;}
.y33{bottom:541.799783px;}
.y132{bottom:551.519779px;}
.y5d{bottom:553.859778px;}
.y85{bottom:554.579778px;}
.y101{bottom:556.379777px;}
.ycc{bottom:556.739777px;}
.y20{bottom:557.099777px;}
.yae{bottom:558.179777px;}
.y32{bottom:559.079776px;}
.y5c{bottom:574.559770px;}
.y84{bottom:575.279770px;}
.y11c{bottom:575.459770px;}
.y31{bottom:576.359769px;}
.y100{bottom:577.079769px;}
.yee{bottom:577.439769px;}
.yad{bottom:578.879768px;}
.y30{bottom:593.639763px;}
.y5b{bottom:595.259762px;}
.y83{bottom:595.979762px;}
.yff{bottom:597.779761px;}
.yed{bottom:598.139761px;}
.ycb{bottom:598.499761px;}
.y11b{bottom:599.399760px;}
.y1f{bottom:599.579760px;}
.y2f{bottom:610.919756px;}
.y5a{bottom:615.959754px;}
.y82{bottom:616.679753px;}
.yec{bottom:618.839752px;}
.yca{bottom:619.199752px;}
.yac{bottom:620.279752px;}
.y11a{bottom:623.339751px;}
.y2e{bottom:628.019749px;}
.y131{bottom:635.399746px;}
.y81{bottom:637.379745px;}
.yeb{bottom:639.539744px;}
.yc9{bottom:639.899744px;}
.yab{bottom:640.979744px;}
.y1e{bottom:642.059743px;}
.y2d{bottom:645.299742px;}
.y1d{bottom:657.539737px;}
.y80{bottom:658.079737px;}
.y119{bottom:659.339736px;}
.yea{bottom:660.239736px;}
.yaa{bottom:661.679735px;}
.y2c{bottom:662.579735px;}
.y29{bottom:673.740000px;}
.y59{bottom:678.239729px;}
.y7f{bottom:678.779728px;}
.y1b{bottom:679.320000px;}
.y2b{bottom:679.859728px;}
.yfe{bottom:681.299727px;}
.yc8{bottom:681.479727px;}
.ya9{bottom:682.379727px;}
.y118{bottom:683.279727px;}
.y130{bottom:695.339722px;}
.y58{bottom:698.939720px;}
.y7e{bottom:699.479720px;}
.y19{bottom:700.920000px;}
.y16{bottom:701.100000px;}
.ye9{bottom:701.999719px;}
.yc7{bottom:702.179719px;}
.ya8{bottom:703.079719px;}
.y18{bottom:705.779718px;}
.y117{bottom:707.399717px;}
.y12f{bottom:719.279712px;}
.y7d{bottom:720.179712px;}
.ye8{bottom:722.699711px;}
.yc6{bottom:722.879711px;}
.ya7{bottom:723.779710px;}
.y57{bottom:740.699704px;}
.y7c{bottom:740.879704px;}
.y116{bottom:743.219703px;}
.y15{bottom:743.939702px;}
.ya6{bottom:744.479702px;}
.y7b{bottom:761.579695px;}
.ye7{bottom:764.279694px;}
.y14{bottom:764.639694px;}
.ya5{bottom:765.179694px;}
.y115{bottom:767.339693px;}
.y12e{bottom:779.219688px;}
.y7a{bottom:782.099687px;}
.y56{bottom:782.279687px;}
.ye6{bottom:784.979686px;}
.ya4{bottom:785.879686px;}
.y114{bottom:791.279683px;}
.y13{bottom:797.219681px;}
.y79{bottom:802.799679px;}
.y55{bottom:802.979679px;}
.y12d{bottom:803.159679px;}
.ye5{bottom:805.679678px;}
.yc5{bottom:806.399677px;}
.ya3{bottom:806.579677px;}
.y12{bottom:817.919673px;}
.y78{bottom:823.499671px;}
.y54{bottom:823.679671px;}
.ye4{bottom:826.379669px;}
.yc4{bottom:827.099669px;}
.ya2{bottom:827.279669px;}
.y77{bottom:844.199662px;}
.y53{bottom:844.379662px;}
.yc3{bottom:847.799661px;}
.ya1{bottom:847.979661px;}
.y10{bottom:850.679660px;}
.y113{bottom:851.219660px;}
.y11{bottom:857.519657px;}
.y137{bottom:863.099655px;}
.y76{bottom:864.899654px;}
.y52{bottom:865.079654px;}
.ye3{bottom:868.139653px;}
.yc2{bottom:868.499653px;}
.ya0{bottom:868.679653px;}
.y112{bottom:875.159650px;}
.ye{bottom:883.439647px;}
.y75{bottom:885.599646px;}
.y51{bottom:885.779646px;}
.y12c{bottom:887.219645px;}
.ye2{bottom:888.839644px;}
.yc1{bottom:889.199644px;}
.yf{bottom:889.379644px;}
.y74{bottom:906.299637px;}
.y50{bottom:906.479637px;}
.ye1{bottom:909.539636px;}
.yc0{bottom:909.899636px;}
.y9f{bottom:910.079636px;}
.y111{bottom:911.159636px;}
.yd{bottom:919.259632px;}
.y13a{bottom:923.219631px;}
.y73{bottom:926.999629px;}
.y4f{bottom:927.179629px;}
.ye0{bottom:930.239628px;}
.yfd{bottom:930.599628px;}
.y9e{bottom:930.779628px;}
.y110{bottom:935.099626px;}
.yc{bottom:943.379623px;}
.y12b{bottom:947.159621px;}
.y72{bottom:947.699621px;}
.y4e{bottom:947.879621px;}
.ydf{bottom:950.939620px;}
.yfc{bottom:951.299619px;}
.y9d{bottom:951.479619px;}
.y10f{bottom:959.039616px;}
.y71{bottom:968.399613px;}
.y4d{bottom:968.579613px;}
.y12a{bottom:971.099612px;}
.yfb{bottom:971.999611px;}
.y9c{bottom:972.179611px;}
.y70{bottom:989.099604px;}
.y4c{bottom:989.279604px;}
.y43{bottom:990.359604px;}
.yde{bottom:992.699603px;}
.y9b{bottom:992.879603px;}
.y10e{bottom:995.039602px;}
.y139{bottom:1007.099597px;}
.y41{bottom:1007.280000px;}
.y6f{bottom:1009.799596px;}
.y4b{bottom:1009.979596px;}
.ydd{bottom:1013.399595px;}
.y9a{bottom:1013.579595px;}
.y10d{bottom:1031.039588px;}
.y99{bottom:1034.279586px;}
.y44{bottom:1047.779581px;}
.y40{bottom:1050.479580px;}
.y6e{bottom:1052.099579px;}
.y4a{bottom:1054.979578px;}
.y4{bottom:1076.579569px;}
.y6{bottom:1105.739558px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:1.260000px;}
.h11{height:14.580000px;}
.h15{height:15.840000px;}
.h19{height:18.180000px;}
.hc{height:19.980000px;}
.h10{height:20.160000px;}
.h6{height:21.960000px;}
.ha{height:32.693893px;}
.hb{height:33.518307px;}
.h12{height:34.625377px;}
.h14{height:36.624009px;}
.h4{height:36.703110px;}
.h5{height:38.759750px;}
.h13{height:39.313461px;}
.h1{height:41.522679px;}
.h7{height:42.894123px;}
.h18{height:43.390178px;}
.hf{height:44.893107px;}
.h16{height:46.025138px;}
.hd{height:47.545293px;}
.he{height:48.095137px;}
.h9{height:48.796855px;}
.h17{height:49.000762px;}
.h8{height:50.027324px;}
.h2{height:51.679667px;}
.h1b{height:52.417948px;}
.h1a{height:57.092321px;}
.h0{height:1188.000000px;}
.w5{width:3.780000px;}
.w2{width:3.960000px;}
.wb{width:7.020000px;}
.w8{width:8.100000px;}
.w7{width:8.280000px;}
.w9{width:9.000000px;}
.w1{width:10.620000px;}
.w3{width:18.720000px;}
.w6{width:32.580000px;}
.w4{width:55.620000px;}
.wa{width:106.380000px;}
.wc{width:434.700000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.xf{left:111.779025px;}
.xd{left:113.400422px;}
.x19{left:117.539953px;}
.x18{left:120.239952px;}
.xe{left:127.079739px;}
.x4{left:133.199947px;}
.x7{left:134.639946px;}
.x9{left:151.019940px;}
.x1b{left:156.059938px;}
.x25{left:161.999927px;}
.x1a{left:174.239930px;}
.x10{left:207.540000px;}
.x11{left:211.320000px;}
.x17{left:241.740000px;}
.x12{left:243.900000px;}
.x1c{left:258.299962px;}
.x1d{left:259.380000px;}
.x13{left:277.200000px;}
.x8{left:289.799961px;}
.x20{left:300.779880px;}
.x2{left:302.579879px;}
.x14{left:308.339877px;}
.x24{left:312.119875px;}
.x1e{left:319.140119px;}
.x21{left:347.759861px;}
.xa{left:361.439855px;}
.xb{left:367.559853px;}
.x15{left:369.900000px;}
.x16{left:373.860000px;}
.xc{left:424.979830px;}
.x5{left:431.639827px;}
.x1f{left:482.399807px;}
.x22{left:588.599765px;}
.x3{left:696.419721px;}
.x23{left:701.639700px;}
.x6{left:805.680000px;}
@media print{
.v1{vertical-align:-7.679997pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.030613pt;}
.ls8{letter-spacing:0.030618pt;}
.lsa{letter-spacing:0.032076pt;}
.ls4{letter-spacing:0.055811pt;}
.ls10{letter-spacing:0.061211pt;}
.lsb{letter-spacing:0.061250pt;}
.lsf{letter-spacing:0.061367pt;}
.ls3{letter-spacing:0.158898pt;}
.ls5{letter-spacing:0.178347pt;}
.ls1{letter-spacing:0.254548pt;}
.ls2{letter-spacing:0.274057pt;}
.ls9{letter-spacing:0.671924pt;}
.ls6{letter-spacing:0.819626pt;}
.lse{letter-spacing:30.268628pt;}
.lsd{letter-spacing:30.299828pt;}
.ls0{letter-spacing:1220.534360pt;}
.ws7{word-spacing:-37.977585pt;}
.ws4{word-spacing:-28.855799pt;}
.ws5{word-spacing:-28.799988pt;}
.wsb{word-spacing:-16.061243pt;}
.wsa{word-spacing:-15.999994pt;}
.ws2{word-spacing:-14.719994pt;}
.ws0{word-spacing:-14.718543pt;}
.ws3{word-spacing:-13.343995pt;}
.ws1{word-spacing:-13.306875pt;}
.ws6{word-spacing:-13.279995pt;}
.ws8{word-spacing:-12.005115pt;}
.ws9{word-spacing:0.000000pt;}
._10{margin-left:-80.802848pt;}
._32{margin-left:-8.355861pt;}
._3{margin-left:-7.161273pt;}
._4{margin-left:-5.947201pt;}
._2e{margin-left:-5.017445pt;}
._5{margin-left:-4.041361pt;}
._2{margin-left:-3.051491pt;}
._18{margin-left:-2.045278pt;}
._1{margin-left:-1.100250pt;}
._0{width:1.002166pt;}
._15{width:1.921315pt;}
._d{width:2.819165pt;}
._16{width:3.822535pt;}
._17{width:4.753397pt;}
._8{width:6.085365pt;}
._7{width:7.086881pt;}
._1c{width:7.977903pt;}
._1b{width:8.899642pt;}
._c{width:10.512940pt;}
._b{width:11.651961pt;}
._1d{width:13.340691pt;}
._19{width:14.731311pt;}
._e{width:16.432992pt;}
._1a{width:17.460000pt;}
._a{width:18.896241pt;}
._9{width:19.923032pt;}
._2a{width:21.341837pt;}
._35{width:22.442114pt;}
._6{width:23.728640pt;}
._31{width:25.469552pt;}
._30{width:26.452369pt;}
._1e{width:28.115018pt;}
._f{width:29.337838pt;}
._34{width:31.150390pt;}
._33{width:32.121149pt;}
._11{width:33.822910pt;}
._12{width:34.869271pt;}
._13{width:41.281894pt;}
._14{width:42.276718pt;}
._2f{width:49.032758pt;}
._21{width:58.811806pt;}
._1f{width:62.946186pt;}
._20{width:64.905668pt;}
._29{width:69.034738pt;}
._24{width:72.429233pt;}
._28{width:73.984836pt;}
._27{width:75.091791pt;}
._23{width:76.956357pt;}
._22{width:78.097608pt;}
._37{width:119.363602pt;}
._36{width:125.078119pt;}
._2d{width:137.563319pt;}
._2c{width:141.326450pt;}
._2b{width:142.231225pt;}
._26{width:205.065159pt;}
._25{width:211.238116pt;}
._39{width:386.946156pt;}
._38{width:393.346204pt;}
._3a{width:855.563735pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs4{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.y5{bottom:-14.079994pt;}
.y28{bottom:-0.000069pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:2.879757pt;}
.y42{bottom:3.519640pt;}
.y17{bottom:3.999749pt;}
.y2a{bottom:3.999759pt;}
.y1a{bottom:4.319749pt;}
.ya{bottom:4.319982pt;}
.yb{bottom:25.119990pt;}
.y9{bottom:39.680000pt;}
.y7{bottom:43.999982pt;}
.y8{bottom:45.919982pt;}
.y3f{bottom:123.039951pt;}
.y6d{bottom:123.199951pt;}
.yfa{bottom:125.279950pt;}
.ybf{bottom:127.519949pt;}
.y129{bottom:138.559945pt;}
.y10c{bottom:141.439943pt;}
.y6c{bottom:141.599943pt;}
.y98{bottom:143.359943pt;}
.yf9{bottom:143.679943pt;}
.ydc{bottom:144.479942pt;}
.ybe{bottom:145.919942pt;}
.y3e{bottom:155.999938pt;}
.y128{bottom:159.839936pt;}
.y97{bottom:161.759935pt;}
.ydb{bottom:162.879935pt;}
.ybd{bottom:164.319934pt;}
.y27{bottom:171.520000pt;}
.y6b{bottom:178.719929pt;}
.y96{bottom:180.159928pt;}
.yf8{bottom:180.799928pt;}
.y127{bottom:181.119928pt;}
.yda{bottom:181.279927pt;}
.ybc{bottom:182.719927pt;}
.y10b{bottom:184.159926pt;}
.y136{bottom:191.839923pt;}
.y3d{bottom:194.399922pt;}
.y6a{bottom:197.119921pt;}
.y95{bottom:198.559921pt;}
.yd9{bottom:199.679920pt;}
.ybb{bottom:201.119920pt;}
.y10a{bottom:205.439918pt;}
.y126{bottom:213.119915pt;}
.y69{bottom:215.519914pt;}
.y94{bottom:216.959913pt;}
.yf7{bottom:217.759913pt;}
.yd8{bottom:218.079913pt;}
.yba{bottom:219.519912pt;}
.y49{bottom:226.719909pt;}
.y125{bottom:234.399906pt;}
.y93{bottom:235.359906pt;}
.yf6{bottom:236.159906pt;}
.yd7{bottom:236.479905pt;}
.yb9{bottom:237.919905pt;}
.y48{bottom:245.439902pt;}
.y109{bottom:247.999901pt;}
.y68{bottom:252.479899pt;}
.y92{bottom:253.759898pt;}
.yf5{bottom:254.559898pt;}
.yd6{bottom:254.879898pt;}
.y138{bottom:255.679898pt;}
.y47{bottom:264.159894pt;}
.y124{bottom:266.399893pt;}
.y108{bottom:269.439892pt;}
.y67{bottom:270.879892pt;}
.y91{bottom:272.159891pt;}
.yd5{bottom:273.279891pt;}
.yb8{bottom:274.879890pt;}
.y46{bottom:283.039887pt;}
.y123{bottom:287.679885pt;}
.y66{bottom:289.279884pt;}
.y90{bottom:290.559884pt;}
.y107{bottom:290.719884pt;}
.yd4{bottom:291.679883pt;}
.yb7{bottom:293.279883pt;}
.y26{bottom:293.439883pt;}
.y45{bottom:301.919879pt;}
.y65{bottom:307.679877pt;}
.y8f{bottom:308.959876pt;}
.yd3{bottom:310.079876pt;}
.yb6{bottom:311.679875pt;}
.y106{bottom:311.999875pt;}
.y64{bottom:326.079870pt;}
.y8e{bottom:327.359869pt;}
.yf4{bottom:328.479869pt;}
.yb5{bottom:330.079868pt;}
.y122{bottom:330.239868pt;}
.y105{bottom:333.279867pt;}
.y135{bottom:340.959864pt;}
.y3c{bottom:343.679863pt;}
.y8d{bottom:345.759862pt;}
.yf3{bottom:346.879861pt;}
.yd2{bottom:347.199861pt;}
.yb4{bottom:348.479861pt;}
.y3b{bottom:359.039856pt;}
.y121{bottom:362.239855pt;}
.y63{bottom:363.199855pt;}
.y8c{bottom:364.159854pt;}
.y104{bottom:365.279854pt;}
.yb3{bottom:366.879853pt;}
.y3a{bottom:374.399850pt;}
.y25{bottom:378.719849pt;}
.y62{bottom:381.599847pt;}
.y8b{bottom:382.559847pt;}
.y120{bottom:383.679847pt;}
.yf2{bottom:383.999846pt;}
.yd1{bottom:384.159846pt;}
.yb2{bottom:385.279846pt;}
.y39{bottom:389.599844pt;}
.y61{bottom:399.999840pt;}
.y8a{bottom:400.959840pt;}
.yf1{bottom:402.399839pt;}
.yd0{bottom:402.559839pt;}
.y38{bottom:404.959838pt;}
.y134{bottom:415.519834pt;}
.y24{bottom:417.599833pt;}
.y60{bottom:418.399833pt;}
.y89{bottom:419.359832pt;}
.y37{bottom:420.319832pt;}
.y103{bottom:420.799832pt;}
.ycf{bottom:420.959832pt;}
.yb1{bottom:422.239831pt;}
.y11f{bottom:426.239830pt;}
.y23{bottom:431.199828pt;}
.y36{bottom:435.679826pt;}
.y5f{bottom:436.799825pt;}
.y133{bottom:436.959825pt;}
.y88{bottom:437.759825pt;}
.y102{bottom:439.199824pt;}
.yce{bottom:439.359824pt;}
.y22{bottom:444.799822pt;}
.y13b{bottom:447.519821pt;}
.y35{bottom:451.039820pt;}
.y87{bottom:456.159818pt;}
.y21{bottom:457.279817pt;}
.yf0{bottom:457.759817pt;}
.y11e{bottom:458.239817pt;}
.yb0{bottom:459.359816pt;}
.y34{bottom:466.399813pt;}
.y5e{bottom:473.919810pt;}
.y86{bottom:474.559810pt;}
.yef{bottom:476.159810pt;}
.ycd{bottom:476.479809pt;}
.yaf{bottom:477.759809pt;}
.y11d{bottom:479.519808pt;}
.y33{bottom:481.599807pt;}
.y132{bottom:490.239804pt;}
.y5d{bottom:492.319803pt;}
.y85{bottom:492.959803pt;}
.y101{bottom:494.559802pt;}
.ycc{bottom:494.879802pt;}
.y20{bottom:495.199802pt;}
.yae{bottom:496.159802pt;}
.y32{bottom:496.959801pt;}
.y5c{bottom:510.719796pt;}
.y84{bottom:511.359795pt;}
.y11c{bottom:511.519795pt;}
.y31{bottom:512.319795pt;}
.y100{bottom:512.959795pt;}
.yee{bottom:513.279795pt;}
.yad{bottom:514.559794pt;}
.y30{bottom:527.679789pt;}
.y5b{bottom:529.119788pt;}
.y83{bottom:529.759788pt;}
.yff{bottom:531.359787pt;}
.yed{bottom:531.679787pt;}
.ycb{bottom:531.999787pt;}
.y11b{bottom:532.799787pt;}
.y1f{bottom:532.959787pt;}
.y2f{bottom:543.039783pt;}
.y5a{bottom:547.519781pt;}
.y82{bottom:548.159781pt;}
.yec{bottom:550.079780pt;}
.yca{bottom:550.399780pt;}
.yac{bottom:551.359779pt;}
.y11a{bottom:554.079778pt;}
.y2e{bottom:558.239777pt;}
.y131{bottom:564.799774pt;}
.y81{bottom:566.559773pt;}
.yeb{bottom:568.479773pt;}
.yc9{bottom:568.799772pt;}
.yab{bottom:569.759772pt;}
.y1e{bottom:570.719772pt;}
.y2d{bottom:573.599771pt;}
.y1d{bottom:584.479766pt;}
.y80{bottom:584.959766pt;}
.y119{bottom:586.079766pt;}
.yea{bottom:586.879765pt;}
.yaa{bottom:588.159765pt;}
.y2c{bottom:588.959764pt;}
.y29{bottom:598.880000pt;}
.y59{bottom:602.879759pt;}
.y7f{bottom:603.359759pt;}
.y1b{bottom:603.840000pt;}
.y2b{bottom:604.319758pt;}
.yfe{bottom:605.599758pt;}
.yc8{bottom:605.759758pt;}
.ya9{bottom:606.559757pt;}
.y118{bottom:607.359757pt;}
.y130{bottom:618.079753pt;}
.y58{bottom:621.279751pt;}
.y7e{bottom:621.759751pt;}
.y19{bottom:623.040000pt;}
.y16{bottom:623.200000pt;}
.ye9{bottom:623.999750pt;}
.yc7{bottom:624.159750pt;}
.ya8{bottom:624.959750pt;}
.y18{bottom:627.359749pt;}
.y117{bottom:628.799748pt;}
.y12f{bottom:639.359744pt;}
.y7d{bottom:640.159744pt;}
.ye8{bottom:642.399743pt;}
.yc6{bottom:642.559743pt;}
.ya7{bottom:643.359743pt;}
.y57{bottom:658.399737pt;}
.y7c{bottom:658.559737pt;}
.y116{bottom:660.639736pt;}
.y15{bottom:661.279735pt;}
.ya6{bottom:661.759735pt;}
.y7b{bottom:676.959729pt;}
.ye7{bottom:679.359728pt;}
.y14{bottom:679.679728pt;}
.ya5{bottom:680.159728pt;}
.y115{bottom:682.079727pt;}
.y12e{bottom:692.639723pt;}
.y7a{bottom:695.199722pt;}
.y56{bottom:695.359722pt;}
.ye6{bottom:697.759721pt;}
.ya4{bottom:698.559721pt;}
.y114{bottom:703.359719pt;}
.y13{bottom:708.639717pt;}
.y79{bottom:713.599715pt;}
.y55{bottom:713.759714pt;}
.y12d{bottom:713.919714pt;}
.ye5{bottom:716.159714pt;}
.yc5{bottom:716.799713pt;}
.ya3{bottom:716.959713pt;}
.y12{bottom:727.039709pt;}
.y78{bottom:731.999707pt;}
.y54{bottom:732.159707pt;}
.ye4{bottom:734.559706pt;}
.yc4{bottom:735.199706pt;}
.ya2{bottom:735.359706pt;}
.y77{bottom:750.399700pt;}
.y53{bottom:750.559700pt;}
.yc3{bottom:753.599699pt;}
.ya1{bottom:753.759698pt;}
.y10{bottom:756.159698pt;}
.y113{bottom:756.639697pt;}
.y11{bottom:762.239695pt;}
.y137{bottom:767.199693pt;}
.y76{bottom:768.799692pt;}
.y52{bottom:768.959692pt;}
.ye3{bottom:771.679691pt;}
.yc2{bottom:771.999691pt;}
.ya0{bottom:772.159691pt;}
.y112{bottom:777.919689pt;}
.ye{bottom:785.279686pt;}
.y75{bottom:787.199685pt;}
.y51{bottom:787.359685pt;}
.y12c{bottom:788.639685pt;}
.ye2{bottom:790.079684pt;}
.yc1{bottom:790.399684pt;}
.yf{bottom:790.559684pt;}
.y74{bottom:805.599678pt;}
.y50{bottom:805.759678pt;}
.ye1{bottom:808.479677pt;}
.yc0{bottom:808.799676pt;}
.y9f{bottom:808.959676pt;}
.y111{bottom:809.919676pt;}
.yd{bottom:817.119673pt;}
.y13a{bottom:820.639672pt;}
.y73{bottom:823.999670pt;}
.y4f{bottom:824.159670pt;}
.ye0{bottom:826.879669pt;}
.yfd{bottom:827.199669pt;}
.y9e{bottom:827.359669pt;}
.y110{bottom:831.199668pt;}
.yc{bottom:838.559665pt;}
.y12b{bottom:841.919663pt;}
.y72{bottom:842.399663pt;}
.y4e{bottom:842.559663pt;}
.ydf{bottom:845.279662pt;}
.yfc{bottom:845.599662pt;}
.y9d{bottom:845.759662pt;}
.y10f{bottom:852.479659pt;}
.y71{bottom:860.799656pt;}
.y4d{bottom:860.959656pt;}
.y12a{bottom:863.199655pt;}
.yfb{bottom:863.999654pt;}
.y9c{bottom:864.159654pt;}
.y70{bottom:879.199648pt;}
.y4c{bottom:879.359648pt;}
.y43{bottom:880.319648pt;}
.yde{bottom:882.399647pt;}
.y9b{bottom:882.559647pt;}
.y10e{bottom:884.479646pt;}
.y139{bottom:895.199642pt;}
.y41{bottom:895.360000pt;}
.y6f{bottom:897.599641pt;}
.y4b{bottom:897.759641pt;}
.ydd{bottom:900.799640pt;}
.y9a{bottom:900.959640pt;}
.y10d{bottom:916.479633pt;}
.y99{bottom:919.359632pt;}
.y44{bottom:931.359627pt;}
.y40{bottom:933.759626pt;}
.y6e{bottom:935.199626pt;}
.y4a{bottom:937.759625pt;}
.y4{bottom:956.959617pt;}
.y6{bottom:982.879607pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:1.120000pt;}
.h11{height:12.960000pt;}
.h15{height:14.080000pt;}
.h19{height:16.160000pt;}
.hc{height:17.760000pt;}
.h10{height:17.920000pt;}
.h6{height:19.520000pt;}
.ha{height:29.061238pt;}
.hb{height:29.794051pt;}
.h12{height:30.778113pt;}
.h14{height:32.554674pt;}
.h4{height:32.624987pt;}
.h5{height:34.453111pt;}
.h13{height:34.945299pt;}
.h1{height:36.909048pt;}
.h7{height:38.128110pt;}
.h18{height:38.569047pt;}
.hf{height:39.904984pt;}
.h16{height:40.911234pt;}
.hd{height:42.262483pt;}
.he{height:42.751233pt;}
.h9{height:43.374983pt;}
.h17{height:43.556233pt;}
.h8{height:44.468732pt;}
.h2{height:45.937482pt;}
.h1b{height:46.593731pt;}
.h1a{height:50.748730pt;}
.h0{height:1056.000000pt;}
.w5{width:3.360000pt;}
.w2{width:3.520000pt;}
.wb{width:6.240000pt;}
.w8{width:7.200000pt;}
.w7{width:7.360000pt;}
.w9{width:8.000000pt;}
.w1{width:9.440000pt;}
.w3{width:16.640000pt;}
.w6{width:28.960000pt;}
.w4{width:49.440000pt;}
.wa{width:94.560000pt;}
.wc{width:386.400000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.xf{left:99.359134pt;}
.xd{left:100.800375pt;}
.x19{left:104.479958pt;}
.x18{left:106.879957pt;}
.xe{left:112.959768pt;}
.x4{left:118.399953pt;}
.x7{left:119.679952pt;}
.x9{left:134.239946pt;}
.x1b{left:138.719945pt;}
.x25{left:143.999935pt;}
.x1a{left:154.879938pt;}
.x10{left:184.480000pt;}
.x11{left:187.840000pt;}
.x17{left:214.880000pt;}
.x12{left:216.800000pt;}
.x1c{left:229.599966pt;}
.x1d{left:230.560000pt;}
.x13{left:246.400000pt;}
.x8{left:257.599966pt;}
.x20{left:267.359893pt;}
.x2{left:268.959892pt;}
.x14{left:274.079890pt;}
.x24{left:277.439889pt;}
.x1e{left:283.680106pt;}
.x21{left:309.119876pt;}
.xa{left:321.279871pt;}
.xb{left:326.719869pt;}
.x15{left:328.800000pt;}
.x16{left:332.320000pt;}
.xc{left:377.759849pt;}
.x5{left:383.679847pt;}
.x1f{left:428.799828pt;}
.x22{left:523.199791pt;}
.x3{left:619.039752pt;}
.x23{left:623.679733pt;}
.x6{left:716.160000pt;}
}




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