
    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_fcd45ffe42a5c4fb4691c431.woff2')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_7d0dbad255955bb081ec0e21.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_8e0ac76acad8fa15a79a8911.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_fdd67a045e95393d50e008fd.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_479c1e4c09eb23ff1d555251.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cc0d892af7ad605905f89b97.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.753418;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_6f6e1d584f9b613c860d93c6.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_b56e1176a9b83bafe9cb0d53.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_188d3754cf8fd1f83aefacd8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.856934;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9b3f3d77e06bb91cf2491765.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f811a8240c4a6b89861eba92.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_248a4b258a74096e5c59affa.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_347d48b971ec691f0ff574d0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.896973;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:fff;src:url('chunks/assets/font_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.fff{font-family:fff;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;}
.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.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v1{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.062743px;}
.ls4{letter-spacing:0.274574px;}
.ls1{letter-spacing:0.319697px;}
.lsc{letter-spacing:0.418419px;}
.lsd{letter-spacing:16.570673px;}
.ls8{letter-spacing:33.162647px;}
.ls9{letter-spacing:36.769605px;}
.lsb{letter-spacing:46.147902px;}
.lsa{letter-spacing:64.153294px;}
.ls7{letter-spacing:64.182694px;}
.ls3{letter-spacing:66.686424px;}
.ls2{letter-spacing:99.148413px;}
.ls0{letter-spacing:1923.377050px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-35.855986px;}
.ws5{word-spacing:-32.462730px;}
.ws2{word-spacing:-16.271993px;}
.ws9{word-spacing:-15.358413px;}
.ws4{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws8{word-spacing:-14.939994px;}
.ws1{word-spacing:-13.505755px;}
.ws3{word-spacing:-10.612796px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-8.589990px;}
._1{margin-left:-4.191630px;}
._4{margin-left:-2.455342px;}
._3{margin-left:-1.237776px;}
._0{width:1.152887px;}
._6{width:2.880441px;}
._5{width:4.015190px;}
._b{width:5.980701px;}
._10{width:6.999885px;}
._9{width:8.501920px;}
._e{width:9.519571px;}
._a{width:10.732771px;}
._12{width:11.781337px;}
._d{width:13.096453px;}
._c{width:14.185054px;}
._11{width:16.095585px;}
._8{width:17.338598px;}
._7{width:18.452141px;}
._f{width:19.773284px;}
._17{width:20.878057px;}
._13{width:22.568160px;}
._15{width:24.305727px;}
._14{width:25.837960px;}
._16{width:37.256654px;}
._19{width:71.341704px;}
._18{width:72.621975px;}
.fcd{color:rgb(0,112,192);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc6{color:rgb(0,176,80);}
.fca{color:rgb(51,51,51);}
.fc4{color:rgb(192,0,0);}
.fc8{color:rgb(83,129,53);}
.fcb{color:rgb(0,101,204);}
.fc1{color:rgb(0,0,0);}
.fc9{color:rgb(44,62,80);}
.fc3{color:rgb(68,84,106);}
.fc5{color:rgb(0,32,96);}
.fc7{color:rgb(0,0,255);}
.fcc{color:transparent;}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.y5{bottom:-14.759994px;}
.y4d{bottom:-13.860064px;}
.y0{bottom:0.000000px;}
.y1a{bottom:2.699695px;}
.ya{bottom:4.499980px;}
.yb{bottom:27.899989px;}
.y9{bottom:45.720000px;}
.y7{bottom:50.219980px;}
.y8{bottom:51.839979px;}
.y7f{bottom:130.859948px;}
.yed{bottom:132.659947px;}
.ya7{bottom:135.179946px;}
.y12b{bottom:135.359946px;}
.y109{bottom:136.079946px;}
.y144{bottom:138.419945px;}
.y16e{bottom:138.599945px;}
.y94{bottom:140.579944px;}
.y174{bottom:141.119944px;}
.yb0{bottom:145.439942px;}
.yc1{bottom:146.159942px;}
.y47{bottom:149.039940px;}
.y1ab{bottom:150.299940px;}
.y199{bottom:150.659940px;}
.y11b{bottom:151.019940px;}
.yd9{bottom:155.879938px;}
.y7e{bottom:156.779937px;}
.yec{bottom:158.579937px;}
.ya6{bottom:161.099936px;}
.y108{bottom:161.819935px;}
.y143{bottom:164.339934px;}
.y16d{bottom:164.519934px;}
.y93{bottom:166.499933px;}
.y173{bottom:167.039933px;}
.y150{bottom:168.299933px;}
.yaf{bottom:171.359931px;}
.yc0{bottom:171.899931px;}
.y155{bottom:173.159931px;}
.y4c{bottom:173.340000px;}
.y1aa{bottom:176.219930px;}
.y198{bottom:176.579929px;}
.y11a{bottom:176.759929px;}
.yd8{bottom:181.619927px;}
.y7d{bottom:182.699927px;}
.yeb{bottom:185.579926px;}
.y107{bottom:187.739925px;}
.y4b{bottom:189.719924px;}
.y142{bottom:190.259924px;}
.y16c{bottom:190.439924px;}
.y19f{bottom:197.279921px;}
.ybf{bottom:197.819921px;}
.y6d{bottom:198.719921px;}
.y197{bottom:202.319919px;}
.y119{bottom:203.759918px;}
.ya5{bottom:206.099918px;}
.y12a{bottom:206.279917px;}
.y4a{bottom:206.639917px;}
.y7c{bottom:208.439917px;}
.yd7{bottom:208.619917px;}
.yea{bottom:211.319915px;}
.y92{bottom:213.299915px;}
.y185{bottom:213.479915px;}
.y106{bottom:213.659915px;}
.y172{bottom:214.019914px;}
.y14f{bottom:215.099914px;}
.yae{bottom:218.339913px;}
.y154{bottom:219.959912px;}
.y1a1{bottom:223.199911px;}
.y49{bottom:223.379911px;}
.ybe{bottom:223.739911px;}
.y6c{bottom:224.639910px;}
.y25{bottom:226.079910px;}
.y118{bottom:230.759908px;}
.y7b{bottom:234.359906px;}
.yd6{bottom:234.539906px;}
.y141{bottom:235.259906px;}
.y16b{bottom:237.239905px;}
.ye9{bottom:238.319905px;}
.y91{bottom:239.219904px;}
.y105{bottom:239.399904px;}
.y48{bottom:240.839904px;}
.y14e{bottom:242.099903px;}
.y19e{bottom:244.079902px;}
.y1b6{bottom:245.699902px;}
.y196{bottom:246.599901px;}
.y6b{bottom:250.559900px;}
.ya4{bottom:251.279899px;}
.y129{bottom:251.459899px;}
.y117{bottom:257.579897px;}
.y7a{bottom:260.279896px;}
.yd5{bottom:260.459896px;}
.ye8{bottom:264.239894px;}
.y90{bottom:265.139894px;}
.y171{bottom:267.839893px;}
.y153{bottom:268.019893px;}
.y14d{bottom:269.099892px;}
.y19d{bottom:269.999892px;}
.ybd{bottom:270.539892px;}
.y1b5{bottom:271.439891px;}
.ya3{bottom:275.399890px;}
.y128{bottom:275.579890px;}
.y6a{bottom:276.299889px;}
.y140{bottom:280.439888px;}
.y16a{bottom:284.039886px;}
.yd4{bottom:286.199886px;}
.y104{bottom:286.379885px;}
.y46{bottom:289.619884px;}
.y195{bottom:290.879884px;}
.y8f{bottom:291.059884px;}
.y170{bottom:294.839882px;}
.y19c{bottom:295.919882px;}
.y1b4{bottom:297.359881px;}
.ya2{bottom:299.699880px;}
.y69{bottom:302.219879px;}
.y45{bottom:303.479879px;}
.y13f{bottom:304.559878px;}
.y116{bottom:305.639878px;}
.y79{bottom:307.079877px;}
.y169{bottom:309.959876px;}
.yd3{bottom:312.119875px;}
.y194{bottom:314.279874px;}
.y152{bottom:314.819874px;}
.y8e{bottom:316.799873px;}
.y14c{bottom:316.979873px;}
.ybc{bottom:317.519873px;}
.y16f{bottom:320.579872px;}
.y19b{bottom:321.659871px;}
.y1b3{bottom:323.279871px;}
.ya1{bottom:323.819870px;}
.y44{bottom:326.159870px;}
.y68{bottom:328.139869px;}
.y103{bottom:333.179867px;}
.y168{bottom:335.879866px;}
.y193{bottom:337.499865px;}
.y184{bottom:338.939864px;}
.yd2{bottom:339.119864px;}
.y43{bottom:340.019864px;}
.y151{bottom:341.819863px;}
.yad{bottom:342.719863px;}
.y14b{bottom:342.899863px;}
.y127{bottom:344.879862px;}
.y1a9{bottom:347.579861px;}
.y1b2{bottom:349.199860px;}
.y13e{bottom:349.739860px;}
.y115{bottom:352.439859px;}
.y42{bottom:353.879858px;}
.y67{bottom:354.059858px;}
.ye7{bottom:358.919856px;}
.y102{bottom:359.099856px;}
.y167{bottom:361.799855px;}
.y8d{bottom:363.779854px;}
.ybb{bottom:364.319854px;}
.yd1{bottom:365.039854px;}
.y183{bottom:365.939854px;}
.y41{bottom:367.739853px;}
.yac{bottom:368.639853px;}
.ya0{bottom:368.999852px;}
.y1a8{bottom:373.499851px;}
.y1b1{bottom:374.939850px;}
.y66{bottom:379.799848px;}
.y40{bottom:381.419847px;}
.y192{bottom:381.779847px;}
.y101{bottom:385.019846px;}
.y166{bottom:387.539845px;}
.y8c{bottom:389.699844px;}
.y126{bottom:390.059844px;}
.yd0{bottom:391.859843px;}
.y24{bottom:392.579843px;}
.y182{bottom:392.939843px;}
.y9f{bottom:393.119843px;}
.yab{bottom:394.559842px;}
.y13d{bottom:394.919842px;}
.y114{bottom:399.419840px;}
.y1b0{bottom:400.859840px;}
.y3f{bottom:404.279838px;}
.y191{bottom:405.179838px;}
.y65{bottom:405.719838px;}
.ye6{bottom:405.899838px;}
.y100{bottom:410.759836px;}
.yba{bottom:411.119836px;}
.y8b{bottom:415.439834px;}
.y9e{bottom:417.239833px;}
.ycf{bottom:417.779833px;}
.y3e{bottom:418.139833px;}
.y13c{bottom:419.039832px;}
.y181{bottom:419.939832px;}
.yaa{bottom:420.299832px;}
.y113{bottom:425.159830px;}
.y1af{bottom:426.779829px;}
.y190{bottom:428.399829px;}
.y64{bottom:431.639827px;}
.y3d{bottom:431.819827px;}
.y165{bottom:434.519826px;}
.y125{bottom:435.239826px;}
.y14a{bottom:436.679825px;}
.y8a{bottom:441.359823px;}
.yce{bottom:443.699823px;}
.y3c{bottom:445.679822px;}
.y1a7{bottom:446.219822px;}
.y112{bottom:451.079820px;}
.y1ae{bottom:452.699819px;}
.yff{bottom:455.939818px;}
.y63{bottom:457.559817px;}
.yb9{bottom:458.099817px;}
.y124{bottom:459.359816px;}
.y3b{bottom:459.539816px;}
.y23{bottom:461.519815px;}
.y149{bottom:463.499815px;}
.y13b{bottom:464.219814px;}
.y89{bottom:467.279813px;}
.y180{bottom:467.819813px;}
.y18f{bottom:472.679811px;}
.y111{bottom:476.999809px;}
.y1ad{bottom:478.439809px;}
.ye5{bottom:478.619809px;}
.y164{bottom:481.319807px;}
.y3a{bottom:482.219807px;}
.y62{bottom:483.299807px;}
.yb8{bottom:483.839806px;}
.y9d{bottom:488.159805px;}
.y148{bottom:490.499804px;}
.ycd{bottom:491.579803px;}
.y19a{bottom:493.199803px;}
.y17f{bottom:493.739803px;}
.y39{bottom:496.079802px;}
.yfe{bottom:501.119800px;}
.y1ac{bottom:504.359798px;}
.y123{bottom:504.539798px;}
.y163{bottom:507.239797px;}
.y61{bottom:509.219796px;}
.y13a{bottom:509.399796px;}
.y38{bottom:509.939796px;}
.yb7{bottom:510.839796px;}
.y22{bottom:512.999795px;}
.y88{bottom:514.079794px;}
.y18e{bottom:516.959793px;}
.y1a0{bottom:518.939792px;}
.y17e{bottom:519.479792px;}
.y37{bottom:523.619791px;}
.y110{bottom:523.799790px;}
.ye4{bottom:525.419790px;}
.yfd{bottom:526.319789px;}
.y78{bottom:530.279788px;}
.y122{bottom:531.359787px;}
.y162{bottom:533.159787px;}
.yb6{bottom:536.759785px;}
.y36{bottom:537.479785px;}
.ycc{bottom:538.559785px;}
.y9c{bottom:539.999784px;}
.y18d{bottom:540.179784px;}
.y1a6{bottom:544.859782px;}
.y17d{bottom:545.399782px;}
.y10f{bottom:549.719780px;}
.y35{bottom:551.339779px;}
.yfc{bottom:551.519779px;}
.y139{bottom:554.579778px;}
.y60{bottom:556.199778px;}
.y121{bottom:558.359777px;}
.y161{bottom:558.899776px;}
.y87{bottom:561.059776px;}
.yb5{bottom:563.759774px;}
.y147{bottom:564.299774px;}
.y34{bottom:565.019774px;}
.y21{bottom:565.739774px;}
.y9b{bottom:565.919774px;}
.y1a5{bottom:570.779772px;}
.y10e{bottom:575.639770px;}
.y33{bottom:578.879768px;}
.y20{bottom:581.039768px;}
.y5f{bottom:581.939767px;}
.y120{bottom:584.279766px;}
.y18c{bottom:584.459766px;}
.y160{bottom:584.819766px;}
.ycb{bottom:585.359766px;}
.y86{bottom:586.799765px;}
.yb4{bottom:589.499764px;}
.y9a{bottom:591.659763px;}
.y17c{bottom:592.379763px;}
.y1f{bottom:596.339761px;}
.y1a4{bottom:596.519761px;}
.yfb{bottom:597.779761px;}
.ye3{bottom:598.319761px;}
.y138{bottom:599.579760px;}
.y32{bottom:601.559759px;}
.y5e{bottom:607.859757px;}
.y18b{bottom:608.939756px;}
.y1e{bottom:610.559756px;}
.y15f{bottom:610.739756px;}
.y146{bottom:611.279755px;}
.y85{bottom:612.719755px;}
.y31{bottom:615.419754px;}
.y99{bottom:617.579753px;}
.y1a3{bottom:622.439751px;}
.y137{bottom:624.959750px;}
.y30{bottom:629.279748px;}
.yca{bottom:632.159747px;}
.y18a{bottom:633.239747px;}
.y5d{bottom:633.779746px;}
.y84{bottom:638.639745px;}
.y17b{bottom:639.179744px;}
.yb3{bottom:642.419743px;}
.yfa{bottom:642.959743px;}
.y2f{bottom:643.139743px;}
.ya9{bottom:643.499743px;}
.ye2{bottom:645.119742px;}
.y10d{bottom:648.359741px;}
.y136{bottom:650.159740px;}
.y2e{bottom:656.819737px;}
.y15e{bottom:657.539737px;}
.yc9{bottom:658.079737px;}
.y5c{bottom:659.519736px;}
.y1d{bottom:662.039735px;}
.y83{bottom:664.559734px;}
.y17a{bottom:665.099734px;}
.yb2{bottom:668.339733px;}
.ya8{bottom:669.419732px;}
.y2d{bottom:670.679732px;}
.ye1{bottom:671.039732px;}
.y11f{bottom:679.139728px;}
.y5b{bottom:685.439726px;}
.yf9{bottom:689.759724px;}
.y98{bottom:690.299724px;}
.y179{bottom:690.839724px;}
.y2c{bottom:693.359723px;}
.yb1{bottom:694.079722px;}
.y10c{bottom:695.159722px;}
.y135{bottom:696.419721px;}
.ye0{bottom:697.859721px;}
.y189{bottom:702.899719px;}
.y15d{bottom:704.519718px;}
.yc8{bottom:704.879718px;}
.y77{bottom:706.499717px;}
.y2b{bottom:707.219717px;}
.y5a{bottom:711.359715px;}
.y1c{bottom:713.519715px;}
.yf8{bottom:715.679714px;}
.y97{bottom:716.219714px;}
.y2a{bottom:721.079712px;}
.ydf{bottom:723.779710px;}
.y11e{bottom:725.939710px;}
.y188{bottom:726.299709px;}
.y1b{bottom:728.999708px;}
.y145{bottom:730.799708px;}
.y15c{bottom:731.339707px;}
.y76{bottom:732.419707px;}
.y29{bottom:734.939706px;}
.y59{bottom:737.279705px;}
.y178{bottom:737.819705px;}
.y134{bottom:741.419703px;}
.y96{bottom:742.139703px;}
.yf7{bottom:742.679703px;}
.y28{bottom:748.619701px;}
.y187{bottom:749.519700px;}
.yde{bottom:749.699700px;}
.yc7{bottom:751.859699px;}
.y26{bottom:756.539697px;}
.y75{bottom:758.159697px;}
.y19{bottom:759.600000px;}
.y27{bottom:762.479695px;}
.y58{bottom:763.019695px;}
.y177{bottom:764.819694px;}
.y95{bottom:767.879693px;}
.yf6{bottom:769.679692px;}
.ydd{bottom:776.699689px;}
.yc6{bottom:777.779689px;}
.y15b{bottom:779.399688px;}
.y74{bottom:784.079686px;}
.y133{bottom:786.599685px;}
.y18{bottom:787.679685px;}
.y82{bottom:788.939684px;}
.y176{bottom:791.639683px;}
.y186{bottom:793.799682px;}
.yf5{bottom:795.419682px;}
.y11d{bottom:798.659681px;}
.ydc{bottom:802.439679px;}
.y57{bottom:809.999676px;}
.y132{bottom:810.719676px;}
.y81{bottom:814.859674px;}
.y175{bottom:818.639673px;}
.y1a2{bottom:819.719672px;}
.yf4{bottom:822.419671px;}
.yc5{bottom:824.579670px;}
.y15a{bottom:826.199670px;}
.y12{bottom:831.959667px;}
.y131{bottom:835.019666px;}
.y56{bottom:835.919666px;}
.y80{bottom:840.779664px;}
.y11c{bottom:845.639662px;}
.yf3{bottom:848.339661px;}
.y11{bottom:849.239660px;}
.ydb{bottom:850.499660px;}
.y55{bottom:861.659655px;}
.y10{bottom:866.519653px;}
.yc4{bottom:871.379651px;}
.y159{bottom:874.259650px;}
.y130{bottom:880.019648px;}
.y73{bottom:882.719647px;}
.yf{bottom:883.619647px;}
.y54{bottom:887.579645px;}
.y10b{bottom:892.439643px;}
.yf2{bottom:896.219642px;}
.yc3{bottom:897.299641px;}
.ye{bottom:901.619639px;}
.y72{bottom:908.639637px;}
.y53{bottom:913.499635px;}
.y10a{bottom:918.359633px;}
.y158{bottom:921.059632px;}
.y12f{bottom:925.199630px;}
.yd{bottom:934.379626px;}
.y52{bottom:939.419624px;}
.yf1{bottom:943.199623px;}
.yc2{bottom:944.279622px;}
.yc{bottom:955.079618px;}
.y71{bottom:960.299616px;}
.y51{bottom:965.159614px;}
.y157{bottom:968.939612px;}
.yda{bottom:970.019612px;}
.y12e{bottom:970.379612px;}
.y70{bottom:986.219606px;}
.yf0{bottom:989.999604px;}
.y50{bottom:991.079604px;}
.y12d{bottom:994.499602px;}
.y16{bottom:997.019601px;}
.y6f{bottom:1012.139595px;}
.y156{bottom:1015.919594px;}
.y15{bottom:1016.819593px;}
.y4f{bottom:1016.999593px;}
.y12c{bottom:1018.619593px;}
.y14{bottom:1036.619585px;}
.yef{bottom:1036.799585px;}
.y6e{bottom:1037.879585px;}
.yee{bottom:1062.719575px;}
.y4e{bottom:1063.799574px;}
.y13{bottom:1064.879574px;}
.y17{bottom:1074.599570px;}
.y4{bottom:1082.339567px;}
.y6{bottom:1110.779556px;}
.y3{bottom:1114.019554px;}
.y2{bottom:1131.299547px;}
.y1{bottom:1148.579541px;}
.h12{height:0.360000px;}
.h3{height:1.080000px;}
.hd{height:14.040000px;}
.h6{height:20.340000px;}
.h11{height:33.518307px;}
.he{height:33.706744px;}
.h5{height:34.625377px;}
.h10{height:36.624009px;}
.h4{height:36.703110px;}
.hf{height:39.339828px;}
.h13{height:40.501390px;}
.h15{height:40.705648px;}
.ha{height:40.793187px;}
.h9{height:41.493499px;}
.h1{height:41.522679px;}
.h7{height:42.894123px;}
.h16{height:43.506897px;}
.h14{height:43.536076px;}
.hb{height:46.283888px;}
.h2{height:47.545293px;}
.h8{height:48.796855px;}
.hc{height:51.679667px;}
.h0{height:1188.000000px;}
.w5{width:7.020000px;}
.w2{width:7.740000px;}
.w6{width:8.820000px;}
.w1{width:9.720000px;}
.w3{width:55.440000px;}
.w4{width:58.140000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:71.639971px;}
.x1a{left:73.619971px;}
.x18{left:75.599970px;}
.x13{left:84.059966px;}
.x14{left:89.820000px;}
.x17{left:97.019961px;}
.x5{left:98.639961px;}
.x1{left:107.999957px;}
.x8{left:121.139952px;}
.x1b{left:122.219951px;}
.x19{left:132.299947px;}
.x22{left:134.992519px;}
.x15{left:145.260000px;}
.x1c{left:146.519939px;}
.x16{left:203.400000px;}
.x1d{left:216.359949px;}
.x1e{left:217.439913px;}
.x1f{left:237.779831px;}
.xd{left:254.879898px;}
.x20{left:258.479897px;}
.x21{left:265.139894px;}
.xf{left:298.259881px;}
.x2{left:302.579879px;}
.x9{left:314.459874px;}
.xb{left:318.779872px;}
.xa{left:352.432359px;}
.x6{left:365.219854px;}
.xc{left:381.592511px;}
.xe{left:398.159841px;}
.x10{left:419.399832px;}
.x11{left:515.519794px;}
.x3{left:684.359726px;}
.x12{left:732.419482px;}
.x7{left:873.900000px;}
@media print{
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.055772pt;}
.ls4{letter-spacing:0.244066pt;}
.ls1{letter-spacing:0.284175pt;}
.lsc{letter-spacing:0.371928pt;}
.lsd{letter-spacing:14.729487pt;}
.ls8{letter-spacing:29.477908pt;}
.ls9{letter-spacing:32.684094pt;}
.lsb{letter-spacing:41.020357pt;}
.lsa{letter-spacing:57.025151pt;}
.ls7{letter-spacing:57.051284pt;}
.ls3{letter-spacing:59.276821pt;}
.ls2{letter-spacing:88.131923pt;}
.ls0{letter-spacing:1709.668489pt;}
.ws7{word-spacing:-31.871987pt;}
.ws5{word-spacing:-28.855760pt;}
.ws2{word-spacing:-14.463994pt;}
.ws9{word-spacing:-13.651923pt;}
.ws4{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws8{word-spacing:-13.279995pt;}
.ws1{word-spacing:-12.005115pt;}
.ws3{word-spacing:-9.433596pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-7.635546pt;}
._1{margin-left:-3.725894pt;}
._4{margin-left:-2.182526pt;}
._3{margin-left:-1.100245pt;}
._0{width:1.024788pt;}
._6{width:2.560392pt;}
._5{width:3.569058pt;}
._b{width:5.316179pt;}
._10{width:6.222120pt;}
._9{width:7.557262pt;}
._e{width:8.461841pt;}
._a{width:9.540240pt;}
._12{width:10.472299pt;}
._d{width:11.641292pt;}
._c{width:12.608937pt;}
._11{width:14.307186pt;}
._8{width:15.412087pt;}
._7{width:16.401903pt;}
._f{width:17.576252pt;}
._17{width:18.558273pt;}
._13{width:20.060587pt;}
._15{width:21.605091pt;}
._14{width:22.967076pt;}
._16{width:33.117025pt;}
._19{width:63.414848pt;}
._18{width:64.552866pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.y5{bottom:-13.119995pt;}
.y4d{bottom:-12.320057pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:2.399729pt;}
.ya{bottom:3.999982pt;}
.yb{bottom:24.799990pt;}
.y9{bottom:40.640000pt;}
.y7{bottom:44.639982pt;}
.y8{bottom:46.079982pt;}
.y7f{bottom:116.319953pt;}
.yed{bottom:117.919953pt;}
.ya7{bottom:120.159952pt;}
.y12b{bottom:120.319952pt;}
.y109{bottom:120.959952pt;}
.y144{bottom:123.039951pt;}
.y16e{bottom:123.199951pt;}
.y94{bottom:124.959950pt;}
.y174{bottom:125.439950pt;}
.yb0{bottom:129.279948pt;}
.yc1{bottom:129.919948pt;}
.y47{bottom:132.479947pt;}
.y1ab{bottom:133.599947pt;}
.y199{bottom:133.919946pt;}
.y11b{bottom:134.239946pt;}
.yd9{bottom:138.559945pt;}
.y7e{bottom:139.359944pt;}
.yec{bottom:140.959944pt;}
.ya6{bottom:143.199943pt;}
.y108{bottom:143.839942pt;}
.y143{bottom:146.079942pt;}
.y16d{bottom:146.239942pt;}
.y93{bottom:147.999941pt;}
.y173{bottom:148.479941pt;}
.y150{bottom:149.599940pt;}
.yaf{bottom:152.319939pt;}
.yc0{bottom:152.799939pt;}
.y155{bottom:153.919938pt;}
.y4c{bottom:154.080000pt;}
.y1aa{bottom:156.639937pt;}
.y198{bottom:156.959937pt;}
.y11a{bottom:157.119937pt;}
.yd8{bottom:161.439935pt;}
.y7d{bottom:162.399935pt;}
.yeb{bottom:164.959934pt;}
.y107{bottom:166.879933pt;}
.y4b{bottom:168.639933pt;}
.y142{bottom:169.119932pt;}
.y16c{bottom:169.279932pt;}
.y19f{bottom:175.359930pt;}
.ybf{bottom:175.839930pt;}
.y6d{bottom:176.639929pt;}
.y197{bottom:179.839928pt;}
.y119{bottom:181.119928pt;}
.ya5{bottom:183.199927pt;}
.y12a{bottom:183.359927pt;}
.y4a{bottom:183.679927pt;}
.y7c{bottom:185.279926pt;}
.yd7{bottom:185.439926pt;}
.yea{bottom:187.839925pt;}
.y92{bottom:189.599924pt;}
.y185{bottom:189.759924pt;}
.y106{bottom:189.919924pt;}
.y172{bottom:190.239924pt;}
.y14f{bottom:191.199924pt;}
.yae{bottom:194.079922pt;}
.y154{bottom:195.519922pt;}
.y1a1{bottom:198.399921pt;}
.y49{bottom:198.559921pt;}
.ybe{bottom:198.879920pt;}
.y6c{bottom:199.679920pt;}
.y25{bottom:200.959920pt;}
.y118{bottom:205.119918pt;}
.y7b{bottom:208.319917pt;}
.yd6{bottom:208.479917pt;}
.y141{bottom:209.119916pt;}
.y16b{bottom:210.879916pt;}
.ye9{bottom:211.839915pt;}
.y91{bottom:212.639915pt;}
.y105{bottom:212.799915pt;}
.y48{bottom:214.079914pt;}
.y14e{bottom:215.199914pt;}
.y19e{bottom:216.959913pt;}
.y1b6{bottom:218.399913pt;}
.y196{bottom:219.199912pt;}
.y6b{bottom:222.719911pt;}
.ya4{bottom:223.359911pt;}
.y129{bottom:223.519911pt;}
.y117{bottom:228.959908pt;}
.y7a{bottom:231.359907pt;}
.yd5{bottom:231.519907pt;}
.ye8{bottom:234.879906pt;}
.y90{bottom:235.679906pt;}
.y171{bottom:238.079905pt;}
.y153{bottom:238.239905pt;}
.y14d{bottom:239.199904pt;}
.y19d{bottom:239.999904pt;}
.ybd{bottom:240.479904pt;}
.y1b5{bottom:241.279903pt;}
.ya3{bottom:244.799902pt;}
.y128{bottom:244.959902pt;}
.y6a{bottom:245.599902pt;}
.y140{bottom:249.279900pt;}
.y16a{bottom:252.479899pt;}
.yd4{bottom:254.399898pt;}
.y104{bottom:254.559898pt;}
.y46{bottom:257.439897pt;}
.y195{bottom:258.559897pt;}
.y8f{bottom:258.719897pt;}
.y170{bottom:262.079895pt;}
.y19c{bottom:263.039895pt;}
.y1b4{bottom:264.319894pt;}
.ya2{bottom:266.399893pt;}
.y69{bottom:268.639893pt;}
.y45{bottom:269.759892pt;}
.y13f{bottom:270.719892pt;}
.y116{bottom:271.679891pt;}
.y79{bottom:272.959891pt;}
.y169{bottom:275.519890pt;}
.yd3{bottom:277.439889pt;}
.y194{bottom:279.359888pt;}
.y152{bottom:279.839888pt;}
.y8e{bottom:281.599887pt;}
.y14c{bottom:281.759887pt;}
.ybc{bottom:282.239887pt;}
.y16f{bottom:284.959886pt;}
.y19b{bottom:285.919886pt;}
.y1b3{bottom:287.359885pt;}
.ya1{bottom:287.839885pt;}
.y44{bottom:289.919884pt;}
.y68{bottom:291.679883pt;}
.y103{bottom:296.159882pt;}
.y168{bottom:298.559881pt;}
.y193{bottom:299.999880pt;}
.y184{bottom:301.279879pt;}
.yd2{bottom:301.439879pt;}
.y43{bottom:302.239879pt;}
.y151{bottom:303.839878pt;}
.yad{bottom:304.639878pt;}
.y14b{bottom:304.799878pt;}
.y127{bottom:306.559877pt;}
.y1a9{bottom:308.959876pt;}
.y1b2{bottom:310.399876pt;}
.y13e{bottom:310.879876pt;}
.y115{bottom:313.279875pt;}
.y42{bottom:314.559874pt;}
.y67{bottom:314.719874pt;}
.ye7{bottom:319.039872pt;}
.y102{bottom:319.199872pt;}
.y167{bottom:321.599871pt;}
.y8d{bottom:323.359871pt;}
.ybb{bottom:323.839870pt;}
.yd1{bottom:324.479870pt;}
.y183{bottom:325.279870pt;}
.y41{bottom:326.879869pt;}
.yac{bottom:327.679869pt;}
.ya0{bottom:327.999869pt;}
.y1a8{bottom:331.999867pt;}
.y1b1{bottom:333.279867pt;}
.y66{bottom:337.599865pt;}
.y40{bottom:339.039864pt;}
.y192{bottom:339.359864pt;}
.y101{bottom:342.239863pt;}
.y166{bottom:344.479862pt;}
.y8c{bottom:346.399861pt;}
.y126{bottom:346.719861pt;}
.yd0{bottom:348.319861pt;}
.y24{bottom:348.959860pt;}
.y182{bottom:349.279860pt;}
.y9f{bottom:349.439860pt;}
.yab{bottom:350.719860pt;}
.y13d{bottom:351.039860pt;}
.y114{bottom:355.039858pt;}
.y1b0{bottom:356.319857pt;}
.y3f{bottom:359.359856pt;}
.y191{bottom:360.159856pt;}
.y65{bottom:360.639856pt;}
.ye6{bottom:360.799856pt;}
.y100{bottom:365.119854pt;}
.yba{bottom:365.439854pt;}
.y8b{bottom:369.279852pt;}
.y9e{bottom:370.879852pt;}
.ycf{bottom:371.359851pt;}
.y3e{bottom:371.679851pt;}
.y13c{bottom:372.479851pt;}
.y181{bottom:373.279851pt;}
.yaa{bottom:373.599851pt;}
.y113{bottom:377.919849pt;}
.y1af{bottom:379.359848pt;}
.y190{bottom:380.799848pt;}
.y64{bottom:383.679847pt;}
.y3d{bottom:383.839846pt;}
.y165{bottom:386.239846pt;}
.y125{bottom:386.879845pt;}
.y14a{bottom:388.159845pt;}
.y8a{bottom:392.319843pt;}
.yce{bottom:394.399842pt;}
.y3c{bottom:396.159842pt;}
.y1a7{bottom:396.639841pt;}
.y112{bottom:400.959840pt;}
.y1ae{bottom:402.399839pt;}
.yff{bottom:405.279838pt;}
.y63{bottom:406.719837pt;}
.yb9{bottom:407.199837pt;}
.y124{bottom:408.319837pt;}
.y3b{bottom:408.479837pt;}
.y23{bottom:410.239836pt;}
.y149{bottom:411.999835pt;}
.y13b{bottom:412.639835pt;}
.y89{bottom:415.359834pt;}
.y180{bottom:415.839834pt;}
.y18f{bottom:420.159832pt;}
.y111{bottom:423.999830pt;}
.y1ad{bottom:425.279830pt;}
.ye5{bottom:425.439830pt;}
.y164{bottom:427.839829pt;}
.y3a{bottom:428.639829pt;}
.y62{bottom:429.599828pt;}
.yb8{bottom:430.079828pt;}
.y9d{bottom:433.919826pt;}
.y148{bottom:435.999826pt;}
.ycd{bottom:436.959825pt;}
.y19a{bottom:438.399825pt;}
.y17f{bottom:438.879824pt;}
.y39{bottom:440.959824pt;}
.yfe{bottom:445.439822pt;}
.y1ac{bottom:448.319821pt;}
.y123{bottom:448.479821pt;}
.y163{bottom:450.879820pt;}
.y61{bottom:452.639819pt;}
.y13a{bottom:452.799819pt;}
.y38{bottom:453.279819pt;}
.yb7{bottom:454.079818pt;}
.y22{bottom:455.999818pt;}
.y88{bottom:456.959817pt;}
.y18e{bottom:459.519816pt;}
.y1a0{bottom:461.279815pt;}
.y17e{bottom:461.759815pt;}
.y37{bottom:465.439814pt;}
.y110{bottom:465.599814pt;}
.ye4{bottom:467.039813pt;}
.yfd{bottom:467.839813pt;}
.y78{bottom:471.359811pt;}
.y122{bottom:472.319811pt;}
.y162{bottom:473.919810pt;}
.yb6{bottom:477.119809pt;}
.y36{bottom:477.759809pt;}
.ycc{bottom:478.719809pt;}
.y9c{bottom:479.999808pt;}
.y18d{bottom:480.159808pt;}
.y1a6{bottom:484.319806pt;}
.y17d{bottom:484.799806pt;}
.y10f{bottom:488.639805pt;}
.y35{bottom:490.079804pt;}
.yfc{bottom:490.239804pt;}
.y139{bottom:492.959803pt;}
.y60{bottom:494.399802pt;}
.y121{bottom:496.319801pt;}
.y161{bottom:496.799801pt;}
.y87{bottom:498.719801pt;}
.yb5{bottom:501.119800pt;}
.y147{bottom:501.599799pt;}
.y34{bottom:502.239799pt;}
.y21{bottom:502.879799pt;}
.y9b{bottom:503.039799pt;}
.y1a5{bottom:507.359797pt;}
.y10e{bottom:511.679795pt;}
.y33{bottom:514.559794pt;}
.y20{bottom:516.479793pt;}
.y5f{bottom:517.279793pt;}
.y120{bottom:519.359792pt;}
.y18c{bottom:519.519792pt;}
.y160{bottom:519.839792pt;}
.ycb{bottom:520.319792pt;}
.y86{bottom:521.599791pt;}
.yb4{bottom:523.999790pt;}
.y9a{bottom:525.919790pt;}
.y17c{bottom:526.559789pt;}
.y1f{bottom:530.079788pt;}
.y1a4{bottom:530.239788pt;}
.yfb{bottom:531.359787pt;}
.ye3{bottom:531.839787pt;}
.y138{bottom:532.959787pt;}
.y32{bottom:534.719786pt;}
.y5e{bottom:540.319784pt;}
.y18b{bottom:541.279783pt;}
.y1e{bottom:542.719783pt;}
.y15f{bottom:542.879783pt;}
.y146{bottom:543.359783pt;}
.y85{bottom:544.639782pt;}
.y31{bottom:547.039781pt;}
.y99{bottom:548.959780pt;}
.y1a3{bottom:553.279779pt;}
.y137{bottom:555.519778pt;}
.y30{bottom:559.359776pt;}
.yca{bottom:561.919775pt;}
.y18a{bottom:562.879775pt;}
.y5d{bottom:563.359775pt;}
.y84{bottom:567.679773pt;}
.y17b{bottom:568.159773pt;}
.yb3{bottom:571.039772pt;}
.yfa{bottom:571.519771pt;}
.y2f{bottom:571.679771pt;}
.ya9{bottom:571.999771pt;}
.ye2{bottom:573.439771pt;}
.y10d{bottom:576.319769pt;}
.y136{bottom:577.919769pt;}
.y2e{bottom:583.839766pt;}
.y15e{bottom:584.479766pt;}
.yc9{bottom:584.959766pt;}
.y5c{bottom:586.239766pt;}
.y1d{bottom:588.479765pt;}
.y83{bottom:590.719764pt;}
.y17a{bottom:591.199764pt;}
.yb2{bottom:594.079762pt;}
.ya8{bottom:595.039762pt;}
.y2d{bottom:596.159762pt;}
.ye1{bottom:596.479761pt;}
.y11f{bottom:603.679759pt;}
.y5b{bottom:609.279756pt;}
.yf9{bottom:613.119755pt;}
.y98{bottom:613.599755pt;}
.y179{bottom:614.079754pt;}
.y2c{bottom:616.319753pt;}
.yb1{bottom:616.959753pt;}
.y10c{bottom:617.919753pt;}
.y135{bottom:619.039752pt;}
.ye0{bottom:620.319752pt;}
.y189{bottom:624.799750pt;}
.y15d{bottom:626.239750pt;}
.yc8{bottom:626.559749pt;}
.y77{bottom:627.999749pt;}
.y2b{bottom:628.639749pt;}
.y5a{bottom:632.319747pt;}
.y1c{bottom:634.239746pt;}
.yf8{bottom:636.159746pt;}
.y97{bottom:636.639745pt;}
.y2a{bottom:640.959744pt;}
.ydf{bottom:643.359743pt;}
.y11e{bottom:645.279742pt;}
.y188{bottom:645.599742pt;}
.y1b{bottom:647.999741pt;}
.y145{bottom:649.599740pt;}
.y15c{bottom:650.079740pt;}
.y76{bottom:651.039740pt;}
.y29{bottom:653.279739pt;}
.y59{bottom:655.359738pt;}
.y178{bottom:655.839738pt;}
.y134{bottom:659.039736pt;}
.y96{bottom:659.679736pt;}
.yf7{bottom:660.159736pt;}
.y28{bottom:665.439734pt;}
.y187{bottom:666.239734pt;}
.yde{bottom:666.399733pt;}
.yc7{bottom:668.319733pt;}
.y26{bottom:672.479731pt;}
.y75{bottom:673.919730pt;}
.y19{bottom:675.200000pt;}
.y27{bottom:677.759729pt;}
.y58{bottom:678.239729pt;}
.y177{bottom:679.839728pt;}
.y95{bottom:682.559727pt;}
.yf6{bottom:684.159726pt;}
.ydd{bottom:690.399724pt;}
.yc6{bottom:691.359723pt;}
.y15b{bottom:692.799723pt;}
.y74{bottom:696.959721pt;}
.y133{bottom:699.199720pt;}
.y18{bottom:700.159720pt;}
.y82{bottom:701.279719pt;}
.y176{bottom:703.679719pt;}
.y186{bottom:705.599718pt;}
.yf5{bottom:707.039717pt;}
.y11d{bottom:709.919716pt;}
.ydc{bottom:713.279715pt;}
.y57{bottom:719.999712pt;}
.y132{bottom:720.639712pt;}
.y81{bottom:724.319710pt;}
.y175{bottom:727.679709pt;}
.y1a2{bottom:728.639709pt;}
.yf4{bottom:731.039708pt;}
.yc5{bottom:732.959707pt;}
.y15a{bottom:734.399706pt;}
.y12{bottom:739.519704pt;}
.y131{bottom:742.239703pt;}
.y56{bottom:743.039703pt;}
.y80{bottom:747.359701pt;}
.y11c{bottom:751.679699pt;}
.yf3{bottom:754.079698pt;}
.y11{bottom:754.879698pt;}
.ydb{bottom:755.999698pt;}
.y55{bottom:765.919694pt;}
.y10{bottom:770.239692pt;}
.yc4{bottom:774.559690pt;}
.y159{bottom:777.119689pt;}
.y130{bottom:782.239687pt;}
.y73{bottom:784.639686pt;}
.yf{bottom:785.439686pt;}
.y54{bottom:788.959684pt;}
.y10b{bottom:793.279683pt;}
.yf2{bottom:796.639681pt;}
.yc3{bottom:797.599681pt;}
.ye{bottom:801.439679pt;}
.y72{bottom:807.679677pt;}
.y53{bottom:811.999675pt;}
.y10a{bottom:816.319673pt;}
.y158{bottom:818.719673pt;}
.y12f{bottom:822.399671pt;}
.yd{bottom:830.559668pt;}
.y52{bottom:835.039666pt;}
.yf1{bottom:838.399665pt;}
.yc2{bottom:839.359664pt;}
.yc{bottom:848.959660pt;}
.y71{bottom:853.599659pt;}
.y51{bottom:857.919657pt;}
.y157{bottom:861.279655pt;}
.yda{bottom:862.239655pt;}
.y12e{bottom:862.559655pt;}
.y70{bottom:876.639649pt;}
.yf0{bottom:879.999648pt;}
.y50{bottom:880.959648pt;}
.y12d{bottom:883.999646pt;}
.y16{bottom:886.239646pt;}
.y6f{bottom:899.679640pt;}
.y156{bottom:903.039639pt;}
.y15{bottom:903.839638pt;}
.y4f{bottom:903.999638pt;}
.y12c{bottom:905.439638pt;}
.y14{bottom:921.439631pt;}
.yef{bottom:921.599631pt;}
.y6e{bottom:922.559631pt;}
.yee{bottom:944.639622pt;}
.y4e{bottom:945.599622pt;}
.y13{bottom:946.559621pt;}
.y17{bottom:955.199618pt;}
.y4{bottom:962.079615pt;}
.y6{bottom:987.359605pt;}
.y3{bottom:990.239604pt;}
.y2{bottom:1005.599598pt;}
.y1{bottom:1020.959592pt;}
.h12{height:0.320000pt;}
.h3{height:0.960000pt;}
.hd{height:12.480000pt;}
.h6{height:18.080000pt;}
.h11{height:29.794051pt;}
.he{height:29.961551pt;}
.h5{height:30.778113pt;}
.h10{height:32.554674pt;}
.h4{height:32.624987pt;}
.hf{height:34.968736pt;}
.h13{height:36.001236pt;}
.h15{height:36.182798pt;}
.ha{height:36.260610pt;}
.h9{height:36.883110pt;}
.h1{height:36.909048pt;}
.h7{height:38.128110pt;}
.h16{height:38.672797pt;}
.h14{height:38.698735pt;}
.hb{height:41.141234pt;}
.h2{height:42.262483pt;}
.h8{height:43.374983pt;}
.hc{height:45.937482pt;}
.h0{height:1056.000000pt;}
.w5{width:6.240000pt;}
.w2{width:6.880000pt;}
.w6{width:7.840000pt;}
.w1{width:8.640000pt;}
.w3{width:49.280000pt;}
.w4{width:51.680000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:63.679975pt;}
.x1a{left:65.439974pt;}
.x18{left:67.199973pt;}
.x13{left:74.719970pt;}
.x14{left:79.840000pt;}
.x17{left:86.239966pt;}
.x5{left:87.679965pt;}
.x1{left:95.999962pt;}
.x8{left:107.679957pt;}
.x1b{left:108.639957pt;}
.x19{left:117.599953pt;}
.x22{left:119.993350pt;}
.x15{left:129.120000pt;}
.x1c{left:130.239946pt;}
.x16{left:180.800000pt;}
.x1d{left:192.319955pt;}
.x1e{left:193.279923pt;}
.x1f{left:211.359850pt;}
.xd{left:226.559909pt;}
.x20{left:229.759908pt;}
.x21{left:235.679906pt;}
.xf{left:265.119894pt;}
.x2{left:268.959892pt;}
.x9{left:279.519888pt;}
.xb{left:283.359887pt;}
.xa{left:313.273208pt;}
.x6{left:324.639870pt;}
.xc{left:339.193343pt;}
.xe{left:353.919858pt;}
.x10{left:372.799851pt;}
.x11{left:458.239817pt;}
.x3{left:608.319757pt;}
.x12{left:651.039540pt;}
.x7{left:776.800000pt;}
}




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