
    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_228526fc2f7e60657b63b9e9.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_ad14088382cb136b5723997b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9f2f53e0529530d7faed1909.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b99bd10578983384a7687841.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_5a385aa454446ba3cfe09ff9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9420a9281b3a187c8e0d7228.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_7449ddaf8090ff408976abbc.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_e02af3423c153a58914e211f.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_848c363a3453c8cd72d5217e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_dd0a3ff558a415e641553395.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_e4f19bf981711205d87c2c8c.woff2')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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_224fbd9702b57c7e8a0d96c3.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5415449fff2fd309b7399e64.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_96e3e69db86c259c33246736.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_3ef3c388936305c65c4cddb2.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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_200c738fb1a26a3c8465d552.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.959961;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);}
.m3{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);}
.m4{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);}
.m1{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);}
.v1{vertical-align:-5.039998px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.439999px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.009909px;}
.ls4{letter-spacing:0.079920px;}
.ls6{letter-spacing:0.079948px;}
.ls0{letter-spacing:0.189257px;}
.ls1{letter-spacing:0.189289px;}
.ls2{letter-spacing:0.378602px;}
.ls8{letter-spacing:62.867749px;}
.ls7{letter-spacing:201.913067px;}
.ls3{letter-spacing:1718.443611px;}
.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;}
}
.ws3{word-spacing:-38.545185px;}
.ws9{word-spacing:-35.855986px;}
.ws5{word-spacing:-32.399987px;}
.ws6{word-spacing:-16.613273px;}
.ws2{word-spacing:-16.559993px;}
.ws1{word-spacing:-15.318596px;}
.ws4{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.939994px;}
.ws8{word-spacing:-13.499995px;}
.wsa{word-spacing:-12.059995px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-82.050447px;}
._15{margin-left:-5.813495px;}
._14{margin-left:-4.796931px;}
._4{margin-left:-3.385799px;}
._9{margin-left:-2.314324px;}
._1{margin-left:-1.215043px;}
._0{width:1.003097px;}
._6{width:2.765949px;}
._7{width:3.931215px;}
._8{width:5.631009px;}
._12{width:6.833945px;}
._11{width:8.655457px;}
._c{width:9.838028px;}
._b{width:11.155579px;}
._13{width:12.366313px;}
._17{width:13.968661px;}
._18{width:15.057616px;}
._a{width:16.325063px;}
._d{width:17.613017px;}
._16{width:41.142505px;}
._19{width:66.782698px;}
._f{width:69.353165px;}
._e{width:70.388640px;}
._5{width:144.277913px;}
._3{width:299.172783px;}
._10{width:1426.664575px;}
.fc11{color:rgb(0,101,204);}
.fc10{color:rgb(51,51,51);}
.fcd{color:rgb(83,129,53);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc4{color:rgb(192,0,0);}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(0,112,192);}
.fc8{color:rgb(205,196,214);}
.fc9{color:rgb(225,216,236);}
.fca{color:rgb(153,142,164);}
.fcf{color:rgb(44,62,80);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(180,172,188);}
.fcb{color:rgb(243,238,248);}
.fc12{color:transparent;}
.fce{color:rgb(0,32,96);}
.fc3{color:rgb(68,84,106);}
.fcc{color:rgb(112,48,160);}
.fs1{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs3{font-size:66.239974px;}
.fs4{font-size:95.759962px;}
.y50{bottom:-8.279991px;}
.y7{bottom:-5.579992px;}
.y0{bottom:0.000000px;}
.y6{bottom:0.120234px;}
.y4a{bottom:2.339325px;}
.y26{bottom:2.699153px;}
.y1f{bottom:2.878984px;}
.y4d{bottom:3.598909px;}
.y3{bottom:3.598911px;}
.y81{bottom:3.598935px;}
.y88{bottom:3.598961px;}
.y91{bottom:3.598994px;}
.y96{bottom:3.599026px;}
.y9c{bottom:3.599045px;}
.ya3{bottom:3.599070px;}
.yaa{bottom:3.599103px;}
.y145{bottom:3.599212px;}
.y123{bottom:3.958948px;}
.y125{bottom:3.958959px;}
.y85{bottom:3.958961px;}
.y127{bottom:3.958970px;}
.y129{bottom:3.958981px;}
.y8c{bottom:3.958994px;}
.y93{bottom:3.959026px;}
.y98{bottom:3.959045px;}
.y9e{bottom:3.959070px;}
.ya5{bottom:3.959103px;}
.y147{bottom:3.959231px;}
.y14a{bottom:3.959238px;}
.y14d{bottom:3.959256px;}
.y151{bottom:3.959282px;}
.y153{bottom:3.959300px;}
.yb{bottom:32.880287px;}
.y9{bottom:55.200278px;}
.ya{bottom:56.460277px;}
.y44{bottom:158.339937px;}
.y49{bottom:184.260600px;}
.yf2{bottom:184.439926px;}
.yc2{bottom:185.879926px;}
.y156{bottom:186.059926px;}
.y121{bottom:193.259923px;}
.y48{bottom:203.879918px;}
.y120{bottom:211.259915px;}
.yf1{bottom:212.519915px;}
.y155{bottom:213.779914px;}
.y30{bottom:216.119914px;}
.y47{bottom:221.159912px;}
.yc1{bottom:221.879911px;}
.y189{bottom:227.279909px;}
.y11f{bottom:229.439908px;}
.yf0{bottom:231.419907px;}
.y154{bottom:231.779907px;}
.y46{bottom:238.439905px;}
.yc0{bottom:240.239904px;}
.y188{bottom:244.559902px;}
.y152{bottom:246.000600px;}
.y11e{bottom:247.439901px;}
.yef{bottom:250.319900px;}
.y7f{bottom:250.679900px;}
.y45{bottom:256.259897px;}
.y187{bottom:258.059897px;}
.ybf{bottom:259.139896px;}
.y11d{bottom:265.439894px;}
.yee{bottom:269.399892px;}
.y186{bottom:275.339890px;}
.y7e{bottom:277.679889px;}
.ybe{bottom:278.039889px;}
.yed{bottom:288.299885px;}
.y185{bottom:288.839884px;}
.y43{bottom:289.559884px;}
.y150{bottom:291.720600px;}
.y11c{bottom:292.439883px;}
.y7d{bottom:295.679882px;}
.ybd{bottom:297.119881px;}
.y184{bottom:306.119878px;}
.y42{bottom:306.839877px;}
.yec{bottom:307.379877px;}
.y7c{bottom:313.679875px;}
.ybc{bottom:316.019874px;}
.y11b{bottom:319.439872px;}
.y183{bottom:319.619872px;}
.y14f{bottom:323.399871px;}
.yeb{bottom:326.279869px;}
.y7b{bottom:331.859867px;}
.ybb{bottom:335.099866px;}
.y182{bottom:336.899865px;}
.y11a{bottom:337.439865px;}
.y41{bottom:339.059864px;}
.y14e{bottom:341.399863px;}
.y2f{bottom:344.459862px;}
.yea{bottom:345.359862px;}
.y7a{bottom:349.859860px;}
.y181{bottom:350.399860px;}
.y119{bottom:355.439858px;}
.y14c{bottom:355.620600px;}
.y40{bottom:356.339857px;}
.yba{bottom:362.819855px;}
.ye9{bottom:364.259854px;}
.y180{bottom:367.499853px;}
.y118{bottom:373.439851px;}
.y3f{bottom:373.619851px;}
.y79{bottom:376.859849px;}
.yb9{bottom:380.819848px;}
.y17f{bottom:380.999848px;}
.ye8{bottom:383.159847px;}
.y14b{bottom:387.299845px;}
.y3e{bottom:390.719844px;}
.y117{bottom:391.619843px;}
.y78{bottom:394.859842px;}
.y17e{bottom:398.279841px;}
.yb8{bottom:398.819840px;}
.y149{bottom:401.340600px;}
.ye7{bottom:402.239839px;}
.y148{bottom:405.299838px;}
.y3d{bottom:407.999837px;}
.y17d{bottom:411.779835px;}
.y77{bottom:412.859835px;}
.y116{bottom:414.119834px;}
.yb7{bottom:416.819833px;}
.y146{bottom:419.340600px;}
.ye6{bottom:421.139832px;}
.y2e{bottom:422.399831px;}
.y3c{bottom:425.279830px;}
.y17c{bottom:429.059828px;}
.y76{bottom:430.859828px;}
.yb6{bottom:434.819826px;}
.ye5{bottom:440.219824px;}
.y115{bottom:442.019823px;}
.y3b{bottom:442.559823px;}
.y75{bottom:448.859820px;}
.yb5{bottom:452.819819px;}
.y2d{bottom:457.139817px;}
.ye4{bottom:459.119816px;}
.y3a{bottom:459.839816px;}
.y114{bottom:460.019816px;}
.y144{bottom:466.140600px;}
.y74{bottom:467.039813px;}
.y2c{bottom:472.439811px;}
.y17b{bottom:473.339811px;}
.y39{bottom:477.119809px;}
.ye3{bottom:478.019809px;}
.yb4{bottom:479.999808px;}
.y2b{bottom:487.739805px;}
.y17a{bottom:490.619804px;}
.y73{bottom:494.039802px;}
.y38{bottom:494.219802px;}
.y113{bottom:496.199802px;}
.ye2{bottom:497.099801px;}
.y143{bottom:497.459801px;}
.yb3{bottom:497.999801px;}
.y2a{bottom:501.779799px;}
.y179{bottom:504.119798px;}
.y37{bottom:511.499795px;}
.y72{bottom:512.039795px;}
.y112{bottom:514.199794px;}
.y142{bottom:515.639794px;}
.yb2{bottom:515.999794px;}
.y178{bottom:521.399791px;}
.y36{bottom:528.779788px;}
.y71{bottom:530.039788px;}
.y111{bottom:532.199787px;}
.y141{bottom:533.639787px;}
.yb1{bottom:533.999786px;}
.y177{bottom:534.899786px;}
.y29{bottom:535.259786px;}
.ye1{bottom:539.399784px;}
.y35{bottom:546.059782px;}
.y70{bottom:548.039781px;}
.y140{bottom:551.639779px;}
.yb0{bottom:551.999779px;}
.y110{bottom:554.699778px;}
.ye0{bottom:558.479777px;}
.y34{bottom:563.339775px;}
.y176{bottom:565.499774px;}
.y6f{bottom:566.039774px;}
.y28{bottom:568.919772px;}
.y13f{bottom:569.639772px;}
.yaf{bottom:569.999772px;}
.ydf{bottom:577.379769px;}
.y33{bottom:580.619768px;}
.y10f{bottom:582.599767px;}
.y175{bottom:582.779767px;}
.y27{bottom:584.399766px;}
.yae{bottom:587.999765px;}
.y13e{bottom:592.139763px;}
.y6e{bottom:593.039763px;}
.y174{bottom:596.279761px;}
.yde{bottom:596.459761px;}
.y32{bottom:597.719761px;}
.y10e{bottom:609.779756px;}
.y6d{bottom:611.219756px;}
.yad{bottom:612.119755px;}
.y173{bottom:613.559755px;}
.y31{bottom:614.999754px;}
.y25{bottom:615.000600px;}
.y13d{bottom:620.219752px;}
.ydd{bottom:624.179750px;}
.y172{bottom:627.059749px;}
.y10d{bottom:627.779749px;}
.y6c{bottom:629.219748px;}
.y13c{bottom:638.219745px;}
.y24{bottom:641.099744px;}
.yac{bottom:643.079743px;}
.y171{bottom:644.339742px;}
.y10c{bottom:645.779742px;}
.y6b{bottom:647.219741px;}
.ydc{bottom:652.079739px;}
.y13b{bottom:656.219738px;}
.yab{bottom:661.079736px;}
.y170{bottom:661.619735px;}
.y1d{bottom:663.239735px;}
.y10b{bottom:663.779734px;}
.y6a{bottom:665.219734px;}
.ydb{bottom:670.079732px;}
.y13a{bottom:674.219730px;}
.y16f{bottom:678.899728px;}
.y10a{bottom:681.779727px;}
.y1c{bottom:682.319727px;}
.yda{bottom:688.259725px;}
.ya8{bottom:688.799724px;}
.y69{bottom:689.159724px;}
.y139{bottom:692.219723px;}
.y16e{bottom:695.999722px;}
.y109{bottom:699.779720px;}
.y1b{bottom:702.119719px;}
.yd9{bottom:706.259717px;}
.ya7{bottom:706.979717px;}
.y16d{bottom:713.279715px;}
.y138{bottom:714.719714px;}
.y108{bottom:717.779713px;}
.y68{bottom:720.119712px;}
.y1a{bottom:721.019712px;}
.yd8{bottom:724.259710px;}
.ya6{bottom:724.979710px;}
.y16c{bottom:730.559708px;}
.y67{bottom:738.299705px;}
.ya4{bottom:739.020600px;}
.ya9{bottom:739.380600px;}
.y19{bottom:740.099704px;}
.y137{bottom:742.799703px;}
.y16b{bottom:744.059702px;}
.y107{bottom:744.959702px;}
.yd7{bottom:751.259699px;}
.y66{bottom:756.299697px;}
.y18{bottom:760.079696px;}
.y136{bottom:760.799696px;}
.y106{bottom:762.959695px;}
.y16a{bottom:767.279693px;}
.yd6{bottom:769.259692px;}
.ya1{bottom:770.699692px;}
.y65{bottom:774.299690px;}
.y135{bottom:778.799688px;}
.y17{bottom:778.979688px;}
.yd5{bottom:787.259685px;}
.ya0{bottom:788.699685px;}
.y105{bottom:789.959684px;}
.y169{bottom:791.399683px;}
.y64{bottom:792.299683px;}
.y134{bottom:796.799681px;}
.y16{bottom:798.059681px;}
.yd4{bottom:805.259678px;}
.y9f{bottom:806.699677px;}
.y104{bottom:807.959677px;}
.y63{bottom:810.299676px;}
.y15{bottom:817.859673px;}
.y133{bottom:819.299672px;}
.y9d{bottom:820.920600px;}
.ya2{bottom:821.280600px;}
.y168{bottom:822.359671px;}
.y103{bottom:825.959670px;}
.yd3{bottom:827.939669px;}
.y14{bottom:836.939665px;}
.y62{bottom:837.299665px;}
.y102{bottom:843.959662px;}
.y132{bottom:847.379661px;}
.y167{bottom:849.359660px;}
.y9a{bottom:852.599659px;}
.y61{bottom:855.299658px;}
.yd2{bottom:855.839658px;}
.y13{bottom:856.019658px;}
.y101{bottom:861.959655px;}
.y131{bottom:865.379654px;}
.y166{bottom:867.359653px;}
.y99{bottom:870.599652px;}
.y60{bottom:873.479651px;}
.yd1{bottom:873.839650px;}
.y12{bottom:875.819650px;}
.y100{bottom:879.959648px;}
.y130{bottom:883.379647px;}
.y97{bottom:884.640600px;}
.y9b{bottom:885.000600px;}
.y165{bottom:885.359646px;}
.y5f{bottom:891.479643px;}
.yd0{bottom:891.839643px;}
.y11{bottom:894.719642px;}
.y12f{bottom:901.379639px;}
.y164{bottom:903.359639px;}
.yff{bottom:904.079638px;}
.y5e{bottom:909.479636px;}
.ycf{bottom:909.839636px;}
.y10{bottom:913.799634px;}
.y94{bottom:916.319633px;}
.y12e{bottom:919.379632px;}
.y163{bottom:921.539631px;}
.y92{bottom:930.540600px;}
.y95{bottom:930.900600px;}
.yf{bottom:933.599627px;}
.yce{bottom:933.959626px;}
.yfe{bottom:935.219626px;}
.y5d{bottom:936.479625px;}
.y12d{bottom:941.879623px;}
.y162{bottom:948.539621px;}
.ye{bottom:952.679619px;}
.yfd{bottom:954.299618px;}
.y5c{bottom:954.479618px;}
.y8f{bottom:962.219615px;}
.ycd{bottom:965.099614px;}
.y161{bottom:966.539613px;}
.y12c{bottom:969.959612px;}
.y5b{bottom:972.479611px;}
.yfc{bottom:973.199611px;}
.y8e{bottom:980.219608px;}
.ycc{bottom:984.179606px;}
.y160{bottom:984.539606px;}
.y5a{bottom:990.479604px;}
.yfb{bottom:992.279603px;}
.yd{bottom:994.259602px;}
.y8d{bottom:998.219601px;}
.y12b{bottom:1000.919600px;}
.y15f{bottom:1002.539599px;}
.ycb{bottom:1003.079599px;}
.y59{bottom:1008.659597px;}
.yfa{bottom:1011.179596px;}
.y8b{bottom:1012.260600px;}
.y90{bottom:1012.620600px;}
.y12a{bottom:1018.919592px;}
.yc{bottom:1020.179592px;}
.y15e{bottom:1020.539592px;}
.yca{bottom:1021.979591px;}
.yf9{bottom:1034.399586px;}
.y58{bottom:1035.659586px;}
.y1e{bottom:1037.820600px;}
.y15d{bottom:1038.539585px;}
.yc9{bottom:1041.059584px;}
.y128{bottom:1042.680600px;}
.y8a{bottom:1044.119582px;}
.y57{bottom:1053.659579px;}
.yc8{bottom:1059.959576px;}
.y89{bottom:1062.119575px;}
.yf8{bottom:1062.659575px;}
.y15c{bottom:1065.539574px;}
.y23{bottom:1065.719574px;}
.y126{bottom:1070.400600px;}
.y56{bottom:1071.659571px;}
.yc7{bottom:1079.039568px;}
.y86{bottom:1080.119568px;}
.yf7{bottom:1081.559567px;}
.y22{bottom:1082.999567px;}
.y15b{bottom:1083.719567px;}
.y55{bottom:1089.659564px;}
.y84{bottom:1094.160600px;}
.y87{bottom:1094.520600px;}
.yc6{bottom:1097.939561px;}
.y124{bottom:1098.300600px;}
.yf6{bottom:1100.639560px;}
.y15a{bottom:1101.719559px;}
.y54{bottom:1107.659557px;}
.y21{bottom:1109.279556px;}
.yc5{bottom:1116.839553px;}
.yf5{bottom:1119.539552px;}
.y159{bottom:1119.719552px;}
.y53{bottom:1125.659550px;}
.y83{bottom:1125.839550px;}
.y122{bottom:1126.020600px;}
.y20{bottom:1126.559549px;}
.y158{bottom:1137.719545px;}
.yf4{bottom:1138.439545px;}
.y82{bottom:1143.839542px;}
.yc4{bottom:1144.739542px;}
.y52{bottom:1149.779540px;}
.y80{bottom:1158.420600px;}
.y157{bottom:1161.659535px;}
.yf3{bottom:1161.839535px;}
.yc3{bottom:1162.739535px;}
.y51{bottom:1177.679529px;}
.y4f{bottom:1180.559528px;}
.y8{bottom:1185.959526px;}
.y5{bottom:1189.019524px;}
.y4{bottom:1206.299517px;}
.y4e{bottom:1210.439516px;}
.y2{bottom:1219.980600px;}
.y1{bottom:1223.579511px;}
.y4c{bottom:1224.120600px;}
.y4b{bottom:1227.719509px;}
.h16{height:5.040000px;}
.h3{height:5.220000px;}
.he{height:14.040000px;}
.h14{height:15.660000px;}
.hb{height:16.200000px;}
.h15{height:16.560000px;}
.h2{height:16.920000px;}
.h18{height:18.180000px;}
.h19{height:18.540000px;}
.h1b{height:18.720000px;}
.h4{height:33.518307px;}
.hf{height:33.706744px;}
.h1c{height:35.143580px;}
.h5{height:36.597642px;}
.h11{height:36.624009px;}
.h10{height:39.339828px;}
.h6{height:39.830258px;}
.hc{height:40.501390px;}
.h12{height:41.493499px;}
.h1{height:41.522679px;}
.h17{height:43.506897px;}
.h13{height:43.536076px;}
.hd{height:43.682678px;}
.ha{height:44.207209px;}
.h9{height:44.893107px;}
.h1a{height:45.992794px;}
.h7{height:46.025138px;}
.h1d{height:56.957321px;}
.h8{height:64.899818px;}
.h0{height:1263.000000px;}
.w3a{width:3.960000px;}
.w8{width:4.140000px;}
.w26{width:5.220000px;}
.w3{width:5.400000px;}
.wc{width:6.840000px;}
.w6{width:7.020000px;}
.w19{width:7.200000px;}
.w4{width:7.560000px;}
.w3f{width:7.740000px;}
.w35{width:7.920000px;}
.we{width:8.100000px;}
.w20{width:8.280000px;}
.w2e{width:8.640000px;}
.wa{width:8.820000px;}
.w3d{width:12.420000px;}
.w2f{width:13.500000px;}
.w31{width:20.340000px;}
.w28{width:25.380000px;}
.w1e{width:28.980000px;}
.w29{width:30.240000px;}
.w7{width:30.780000px;}
.w25{width:33.660000px;}
.w1d{width:34.020000px;}
.w42{width:37.980000px;}
.w2b{width:38.520000px;}
.wf{width:39.060000px;}
.w1b{width:41.220000px;}
.w1c{width:43.020000px;}
.w10{width:43.200000px;}
.w27{width:43.560000px;}
.w1a{width:44.460000px;}
.w21{width:45.000000px;}
.w41{width:45.360000px;}
.w22{width:45.540000px;}
.w2c{width:47.160000px;}
.w18{width:49.140000px;}
.w23{width:50.040000px;}
.w14{width:51.480000px;}
.w15{width:51.660000px;}
.w3c{width:51.840000px;}
.w3e{width:52.560000px;}
.w17{width:53.100000px;}
.w39{width:54.000000px;}
.wd{width:54.360000px;}
.w11{width:54.540000px;}
.w2a{width:55.620000px;}
.w13{width:61.200000px;}
.w24{width:61.740000px;}
.w16{width:62.100000px;}
.w37{width:62.640000px;}
.w38{width:63.000000px;}
.w1f{width:64.440000px;}
.w12{width:66.780000px;}
.w36{width:69.480000px;}
.w3b{width:70.380000px;}
.w33{width:71.640000px;}
.w32{width:77.940000px;}
.w30{width:89.280000px;}
.w40{width:95.400000px;}
.w5{width:113.760000px;}
.w2d{width:127.080000px;}
.w34{width:131.400000px;}
.wb{width:152.640000px;}
.w2{width:155.160000px;}
.w9{width:293.760000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x6b{left:50.939980px;}
.x6a{left:53.819978px;}
.x49{left:56.339977px;}
.x34{left:59.219976px;}
.x30{left:62.099975px;}
.x1{left:66.959973px;}
.x2e{left:69.479972px;}
.x4{left:74.879970px;}
.x31{left:83.159967px;}
.x20{left:85.859966px;}
.x33{left:88.559965px;}
.x8{left:89.819964px;}
.x5{left:93.239963px;}
.x35{left:95.039962px;}
.x6c{left:98.459961px;}
.x1e{left:99.900000px;}
.x23{left:100.979960px;}
.x14{left:104.939958px;}
.x1d{left:113.579955px;}
.x4c{left:120.959952px;}
.x21{left:142.559943px;}
.x4e{left:146.879941px;}
.x22{left:148.679941px;}
.x36{left:153.899938px;}
.x5d{left:160.379936px;}
.x4a{left:161.819935px;}
.x37{left:170.459932px;}
.x15{left:176.219279px;}
.x6d{left:179.459928px;}
.x5e{left:183.239927px;}
.x19{left:194.400000px;}
.x32{left:195.659922px;}
.x38{left:204.659918px;}
.x1f{left:213.660000px;}
.x4b{left:219.059912px;}
.x24{left:226.619919px;}
.x25{left:227.699909px;}
.xf{left:235.439773px;}
.x9{left:237.599980px;}
.x26{left:254.519921px;}
.x1a{left:259.199896px;}
.x48{left:266.219706px;}
.x27{left:273.959969px;}
.x39{left:275.760000px;}
.x29{left:282.059887px;}
.x28{left:295.560150px;}
.x42{left:307.620000px;}
.x2a{left:312.840000px;}
.x2b{left:316.980000px;}
.x2c{left:321.120000px;}
.x3d{left:323.100000px;}
.x59{left:324.720000px;}
.x3a{left:330.120000px;}
.x67{left:337.860000px;}
.x4f{left:341.820000px;}
.x5f{left:343.440000px;}
.x69{left:346.499861px;}
.x3b{left:348.120000px;}
.x4d{left:358.379334px;}
.x6{left:362.339855px;}
.x64{left:363.600000px;}
.x3e{left:377.100000px;}
.x45{left:378.180000px;}
.x60{left:379.980000px;}
.x54{left:383.940000px;}
.x7{left:392.579843px;}
.x5a{left:396.360000px;}
.x56{left:399.600000px;}
.x13{left:405.179838px;}
.xc{left:408.419837px;}
.xe{left:412.019835px;}
.x1b{left:416.160900px;}
.x12{left:422.099831px;}
.x66{left:423.540000px;}
.x5b{left:426.240000px;}
.x65{left:434.520000px;}
.x3f{left:440.820000px;}
.x46{left:441.900000px;}
.x18{left:446.399821px;}
.xa{left:455.579818px;}
.x5c{left:457.199817px;}
.x61{left:458.820000px;}
.x10{left:461.519815px;}
.x50{left:464.400000px;}
.xd{left:475.919810px;}
.xb{left:479.879808px;}
.x11{left:482.039807px;}
.x55{left:484.740000px;}
.x62{left:502.380000px;}
.x40{left:504.720000px;}
.x68{left:511.380000px;}
.x16{left:513.179795px;}
.x41{left:525.780000px;}
.x43{left:527.400000px;}
.x57{left:531.000000px;}
.x17{left:537.299785px;}
.x3c{left:550.080000px;}
.x58{left:551.340000px;}
.x63{left:566.640000px;}
.x44{left:575.460000px;}
.x47{left:588.600000px;}
.x51{left:591.300000px;}
.x52{left:599.760000px;}
.x53{left:613.260000px;}
.x2d{left:614.880000px;}
.x3{left:700.199720px;}
.x1c{left:710.459596px;}
.x2{left:737.280000px;}
.x2f{left:739.800000px;}
@media print{
.v1{vertical-align:-4.479998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279999pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.008808pt;}
.ls4{letter-spacing:0.071040pt;}
.ls6{letter-spacing:0.071065pt;}
.ls0{letter-spacing:0.168228pt;}
.ls1{letter-spacing:0.168257pt;}
.ls2{letter-spacing:0.336535pt;}
.ls8{letter-spacing:55.882443pt;}
.ls7{letter-spacing:179.478282pt;}
.ls3{letter-spacing:1527.505432pt;}
.ws3{word-spacing:-34.262386pt;}
.ws9{word-spacing:-31.871987pt;}
.ws5{word-spacing:-28.799988pt;}
.ws6{word-spacing:-14.767354pt;}
.ws2{word-spacing:-14.719994pt;}
.ws1{word-spacing:-13.616529pt;}
.ws4{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.279995pt;}
.ws8{word-spacing:-11.999995pt;}
.wsa{word-spacing:-10.719996pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-72.933731pt;}
._15{margin-left:-5.167551pt;}
._14{margin-left:-4.263939pt;}
._4{margin-left:-3.009599pt;}
._9{margin-left:-2.057177pt;}
._1{margin-left:-1.080038pt;}
._0{width:0.891642pt;}
._6{width:2.458622pt;}
._7{width:3.494413pt;}
._8{width:5.005341pt;}
._12{width:6.074618pt;}
._11{width:7.693740pt;}
._c{width:8.744913pt;}
._b{width:9.916070pt;}
._13{width:10.992278pt;}
._17{width:12.416588pt;}
._18{width:13.384548pt;}
._a{width:14.511167pt;}
._d{width:15.656015pt;}
._16{width:36.571116pt;}
._19{width:59.362399pt;}
._f{width:61.647258pt;}
._e{width:62.567680pt;}
._5{width:128.247034pt;}
._3{width:265.931362pt;}
._10{width:1268.146289pt;}
.fs1{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs3{font-size:58.879976pt;}
.fs4{font-size:85.119966pt;}
.y50{bottom:-7.359992pt;}
.y7{bottom:-4.959993pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:0.106875pt;}
.y4a{bottom:2.079400pt;}
.y26{bottom:2.399247pt;}
.y1f{bottom:2.559097pt;}
.y4d{bottom:3.199030pt;}
.y3{bottom:3.199032pt;}
.y81{bottom:3.199054pt;}
.y88{bottom:3.199076pt;}
.y91{bottom:3.199105pt;}
.y96{bottom:3.199134pt;}
.y9c{bottom:3.199151pt;}
.ya3{bottom:3.199173pt;}
.yaa{bottom:3.199202pt;}
.y145{bottom:3.199300pt;}
.y123{bottom:3.519065pt;}
.y125{bottom:3.519075pt;}
.y85{bottom:3.519076pt;}
.y127{bottom:3.519085pt;}
.y129{bottom:3.519095pt;}
.y8c{bottom:3.519105pt;}
.y93{bottom:3.519134pt;}
.y98{bottom:3.519151pt;}
.y9e{bottom:3.519173pt;}
.ya5{bottom:3.519202pt;}
.y147{bottom:3.519316pt;}
.y14a{bottom:3.519323pt;}
.y14d{bottom:3.519339pt;}
.y151{bottom:3.519362pt;}
.y153{bottom:3.519378pt;}
.yb{bottom:29.226922pt;}
.y9{bottom:49.066914pt;}
.ya{bottom:50.186913pt;}
.y44{bottom:140.746610pt;}
.y49{bottom:163.787200pt;}
.yf2{bottom:163.946601pt;}
.yc2{bottom:165.226601pt;}
.y156{bottom:165.386601pt;}
.y121{bottom:171.786598pt;}
.y48{bottom:181.226594pt;}
.y120{bottom:187.786592pt;}
.yf1{bottom:188.906591pt;}
.y155{bottom:190.026591pt;}
.y30{bottom:192.106590pt;}
.y47{bottom:196.586588pt;}
.yc1{bottom:197.226588pt;}
.y189{bottom:202.026586pt;}
.y11f{bottom:203.946585pt;}
.yf0{bottom:205.706584pt;}
.y154{bottom:206.026584pt;}
.y46{bottom:211.946582pt;}
.yc0{bottom:213.546581pt;}
.y188{bottom:217.386580pt;}
.y152{bottom:218.667200pt;}
.y11e{bottom:219.946579pt;}
.yef{bottom:222.506578pt;}
.y7f{bottom:222.826578pt;}
.y45{bottom:227.786576pt;}
.y187{bottom:229.386575pt;}
.ybf{bottom:230.346575pt;}
.y11d{bottom:235.946572pt;}
.yee{bottom:239.466571pt;}
.y186{bottom:244.746569pt;}
.y7e{bottom:246.826568pt;}
.ybe{bottom:247.146568pt;}
.yed{bottom:256.266564pt;}
.y185{bottom:256.746564pt;}
.y43{bottom:257.386564pt;}
.y150{bottom:259.307200pt;}
.y11c{bottom:259.946563pt;}
.y7d{bottom:262.826562pt;}
.ybd{bottom:264.106561pt;}
.y184{bottom:272.106558pt;}
.y42{bottom:272.746558pt;}
.yec{bottom:273.226557pt;}
.y7c{bottom:278.826555pt;}
.ybc{bottom:280.906554pt;}
.y11b{bottom:283.946553pt;}
.y183{bottom:284.106553pt;}
.y14f{bottom:287.466552pt;}
.yeb{bottom:290.026551pt;}
.y7b{bottom:294.986549pt;}
.ybb{bottom:297.866548pt;}
.y182{bottom:299.466547pt;}
.y11a{bottom:299.946547pt;}
.y41{bottom:301.386546pt;}
.y14e{bottom:303.466545pt;}
.y2f{bottom:306.186544pt;}
.yea{bottom:306.986544pt;}
.y7a{bottom:310.986542pt;}
.y181{bottom:311.466542pt;}
.y119{bottom:315.946540pt;}
.y14c{bottom:316.107200pt;}
.y40{bottom:316.746540pt;}
.yba{bottom:322.506538pt;}
.ye9{bottom:323.786537pt;}
.y180{bottom:326.666536pt;}
.y118{bottom:331.946534pt;}
.y3f{bottom:332.106534pt;}
.y79{bottom:334.986533pt;}
.yb9{bottom:338.506531pt;}
.y17f{bottom:338.666531pt;}
.ye8{bottom:340.586530pt;}
.y14b{bottom:344.266529pt;}
.y3e{bottom:347.306528pt;}
.y117{bottom:348.106527pt;}
.y78{bottom:350.986526pt;}
.y17e{bottom:354.026525pt;}
.yb8{bottom:354.506525pt;}
.y149{bottom:356.747200pt;}
.ye7{bottom:357.546524pt;}
.y148{bottom:360.266523pt;}
.y3d{bottom:362.666522pt;}
.y17d{bottom:366.026520pt;}
.y77{bottom:366.986520pt;}
.y116{bottom:368.106519pt;}
.yb7{bottom:370.506518pt;}
.y146{bottom:372.747200pt;}
.ye6{bottom:374.346517pt;}
.y2e{bottom:375.466516pt;}
.y3c{bottom:378.026515pt;}
.y17c{bottom:381.386514pt;}
.y76{bottom:382.986513pt;}
.yb6{bottom:386.506512pt;}
.ye5{bottom:391.306510pt;}
.y115{bottom:392.906510pt;}
.y3b{bottom:393.386509pt;}
.y75{bottom:398.986507pt;}
.yb5{bottom:402.506506pt;}
.y2d{bottom:406.346504pt;}
.ye4{bottom:408.106503pt;}
.y3a{bottom:408.746503pt;}
.y114{bottom:408.906503pt;}
.y144{bottom:414.347200pt;}
.y74{bottom:415.146501pt;}
.y2c{bottom:419.946499pt;}
.y17b{bottom:420.746498pt;}
.y39{bottom:424.106497pt;}
.ye3{bottom:424.906497pt;}
.yb4{bottom:426.666496pt;}
.y2b{bottom:433.546493pt;}
.y17a{bottom:436.106492pt;}
.y73{bottom:439.146491pt;}
.y38{bottom:439.306491pt;}
.y113{bottom:441.066490pt;}
.ye2{bottom:441.866490pt;}
.y143{bottom:442.186490pt;}
.yb3{bottom:442.666490pt;}
.y2a{bottom:446.026488pt;}
.y179{bottom:448.106487pt;}
.y37{bottom:454.666485pt;}
.y72{bottom:455.146485pt;}
.y112{bottom:457.066484pt;}
.y142{bottom:458.346483pt;}
.yb2{bottom:458.666483pt;}
.y178{bottom:463.466481pt;}
.y36{bottom:470.026479pt;}
.y71{bottom:471.146478pt;}
.y111{bottom:473.066477pt;}
.y141{bottom:474.346477pt;}
.yb1{bottom:474.666477pt;}
.y177{bottom:475.466476pt;}
.y29{bottom:475.786476pt;}
.ye1{bottom:479.466475pt;}
.y35{bottom:485.386473pt;}
.y70{bottom:487.146472pt;}
.y140{bottom:490.346471pt;}
.yb0{bottom:490.666470pt;}
.y110{bottom:493.066469pt;}
.ye0{bottom:496.426468pt;}
.y34{bottom:500.746466pt;}
.y176{bottom:502.666466pt;}
.y6f{bottom:503.146465pt;}
.y28{bottom:505.706464pt;}
.y13f{bottom:506.346464pt;}
.yaf{bottom:506.666464pt;}
.ydf{bottom:513.226461pt;}
.y33{bottom:516.106460pt;}
.y10f{bottom:517.866460pt;}
.y175{bottom:518.026459pt;}
.y27{bottom:519.466459pt;}
.yae{bottom:522.666458pt;}
.y13e{bottom:526.346456pt;}
.y6e{bottom:527.146456pt;}
.y174{bottom:530.026455pt;}
.yde{bottom:530.186455pt;}
.y32{bottom:531.306454pt;}
.y10e{bottom:542.026450pt;}
.y6d{bottom:543.306449pt;}
.yad{bottom:544.106449pt;}
.y173{bottom:545.386449pt;}
.y31{bottom:546.666448pt;}
.y25{bottom:546.667200pt;}
.y13d{bottom:551.306446pt;}
.ydd{bottom:554.826445pt;}
.y172{bottom:557.386444pt;}
.y10d{bottom:558.026443pt;}
.y6c{bottom:559.306443pt;}
.y13c{bottom:567.306440pt;}
.y24{bottom:569.866439pt;}
.yac{bottom:571.626438pt;}
.y171{bottom:572.746438pt;}
.y10c{bottom:574.026437pt;}
.y6b{bottom:575.306437pt;}
.ydc{bottom:579.626435pt;}
.y13b{bottom:583.306433pt;}
.yab{bottom:587.626432pt;}
.y170{bottom:588.106431pt;}
.y1d{bottom:589.546431pt;}
.y10b{bottom:590.026431pt;}
.y6a{bottom:591.306430pt;}
.ydb{bottom:595.626428pt;}
.y13a{bottom:599.306427pt;}
.y16f{bottom:603.466425pt;}
.y10a{bottom:606.026424pt;}
.y1c{bottom:606.506424pt;}
.yda{bottom:611.786422pt;}
.ya8{bottom:612.266422pt;}
.y69{bottom:612.586422pt;}
.y139{bottom:615.306421pt;}
.y16e{bottom:618.666419pt;}
.y109{bottom:622.026418pt;}
.y1b{bottom:624.106417pt;}
.yd9{bottom:627.786416pt;}
.ya7{bottom:628.426415pt;}
.y16d{bottom:634.026413pt;}
.y138{bottom:635.306413pt;}
.y108{bottom:638.026411pt;}
.y68{bottom:640.106411pt;}
.y1a{bottom:640.906410pt;}
.yd8{bottom:643.786409pt;}
.ya6{bottom:644.426409pt;}
.y16c{bottom:649.386407pt;}
.y67{bottom:656.266404pt;}
.ya4{bottom:656.907200pt;}
.ya9{bottom:657.227200pt;}
.y19{bottom:657.866404pt;}
.y137{bottom:660.266403pt;}
.y16b{bottom:661.386402pt;}
.y107{bottom:662.186402pt;}
.yd7{bottom:667.786400pt;}
.y66{bottom:672.266398pt;}
.y18{bottom:675.626396pt;}
.y136{bottom:676.266396pt;}
.y106{bottom:678.186395pt;}
.y16a{bottom:682.026394pt;}
.yd6{bottom:683.786393pt;}
.ya1{bottom:685.066393pt;}
.y65{bottom:688.266391pt;}
.y135{bottom:692.266390pt;}
.y17{bottom:692.426390pt;}
.yd5{bottom:699.786387pt;}
.ya0{bottom:701.066386pt;}
.y105{bottom:702.186386pt;}
.y169{bottom:703.466385pt;}
.y64{bottom:704.266385pt;}
.y134{bottom:708.266383pt;}
.y16{bottom:709.386383pt;}
.yd4{bottom:715.786380pt;}
.y9f{bottom:717.066380pt;}
.y104{bottom:718.186379pt;}
.y63{bottom:720.266379pt;}
.y15{bottom:726.986376pt;}
.y133{bottom:728.266375pt;}
.y9d{bottom:729.707200pt;}
.ya2{bottom:730.027200pt;}
.y168{bottom:730.986374pt;}
.y103{bottom:734.186373pt;}
.yd3{bottom:735.946372pt;}
.y14{bottom:743.946369pt;}
.y62{bottom:744.266369pt;}
.y102{bottom:750.186367pt;}
.y132{bottom:753.226365pt;}
.y167{bottom:754.986365pt;}
.y9a{bottom:757.866364pt;}
.y61{bottom:760.266363pt;}
.yd2{bottom:760.746362pt;}
.y13{bottom:760.906362pt;}
.y101{bottom:766.186360pt;}
.y131{bottom:769.226359pt;}
.y166{bottom:770.986358pt;}
.y99{bottom:773.866357pt;}
.y60{bottom:776.426356pt;}
.yd1{bottom:776.746356pt;}
.y12{bottom:778.506355pt;}
.y100{bottom:782.186354pt;}
.y130{bottom:785.226353pt;}
.y97{bottom:786.347200pt;}
.y9b{bottom:786.667200pt;}
.y165{bottom:786.986352pt;}
.y5f{bottom:792.426350pt;}
.yd0{bottom:792.746350pt;}
.y11{bottom:795.306349pt;}
.y12f{bottom:801.226346pt;}
.y164{bottom:802.986345pt;}
.yff{bottom:803.626345pt;}
.y5e{bottom:808.426343pt;}
.ycf{bottom:808.746343pt;}
.y10{bottom:812.266342pt;}
.y94{bottom:814.506341pt;}
.y12e{bottom:817.226340pt;}
.y163{bottom:819.146339pt;}
.y92{bottom:827.147200pt;}
.y95{bottom:827.467200pt;}
.yf{bottom:829.866335pt;}
.yce{bottom:830.186335pt;}
.yfe{bottom:831.306334pt;}
.y5d{bottom:832.426334pt;}
.y12d{bottom:837.226332pt;}
.y162{bottom:843.146329pt;}
.ye{bottom:846.826328pt;}
.yfd{bottom:848.266327pt;}
.y5c{bottom:848.426327pt;}
.y8f{bottom:855.306325pt;}
.ycd{bottom:857.866324pt;}
.y161{bottom:859.146323pt;}
.y12c{bottom:862.186322pt;}
.y5b{bottom:864.426321pt;}
.yfc{bottom:865.066321pt;}
.y8e{bottom:871.306318pt;}
.ycc{bottom:874.826317pt;}
.y160{bottom:875.146317pt;}
.y5a{bottom:880.426314pt;}
.yfb{bottom:882.026314pt;}
.yd{bottom:883.786313pt;}
.y8d{bottom:887.306312pt;}
.y12b{bottom:889.706311pt;}
.y15f{bottom:891.146310pt;}
.ycb{bottom:891.626310pt;}
.y59{bottom:896.586308pt;}
.yfa{bottom:898.826307pt;}
.y8b{bottom:899.787200pt;}
.y90{bottom:900.107200pt;}
.y12a{bottom:905.706304pt;}
.yc{bottom:906.826304pt;}
.y15e{bottom:907.146304pt;}
.yca{bottom:908.426303pt;}
.yf9{bottom:919.466299pt;}
.y58{bottom:920.586298pt;}
.y1e{bottom:922.507200pt;}
.y15d{bottom:923.146297pt;}
.yc9{bottom:925.386297pt;}
.y128{bottom:926.827200pt;}
.y8a{bottom:928.106295pt;}
.y57{bottom:936.586292pt;}
.yc8{bottom:942.186290pt;}
.y89{bottom:944.106289pt;}
.yf8{bottom:944.586289pt;}
.y15c{bottom:947.146288pt;}
.y23{bottom:947.306288pt;}
.y126{bottom:951.467200pt;}
.y56{bottom:952.586286pt;}
.yc7{bottom:959.146283pt;}
.y86{bottom:960.106283pt;}
.yf7{bottom:961.386282pt;}
.y22{bottom:962.666282pt;}
.y15b{bottom:963.306281pt;}
.y55{bottom:968.586279pt;}
.y84{bottom:972.587200pt;}
.y87{bottom:972.907200pt;}
.yc6{bottom:975.946276pt;}
.y124{bottom:976.267200pt;}
.yf6{bottom:978.346275pt;}
.y15a{bottom:979.306275pt;}
.y54{bottom:984.586273pt;}
.y21{bottom:986.026272pt;}
.yc5{bottom:992.746270pt;}
.yf5{bottom:995.146269pt;}
.y159{bottom:995.306269pt;}
.y53{bottom:1000.586266pt;}
.y83{bottom:1000.746266pt;}
.y122{bottom:1000.907200pt;}
.y20{bottom:1001.386266pt;}
.y158{bottom:1011.306262pt;}
.yf4{bottom:1011.946262pt;}
.y82{bottom:1016.746260pt;}
.yc4{bottom:1017.546260pt;}
.y52{bottom:1022.026258pt;}
.y80{bottom:1029.707200pt;}
.y157{bottom:1032.586254pt;}
.yf3{bottom:1032.746254pt;}
.yc3{bottom:1033.546253pt;}
.y51{bottom:1046.826248pt;}
.y4f{bottom:1049.386247pt;}
.y8{bottom:1054.186245pt;}
.y5{bottom:1056.906244pt;}
.y4{bottom:1072.266238pt;}
.y4e{bottom:1075.946236pt;}
.y2{bottom:1084.427200pt;}
.y1{bottom:1087.626232pt;}
.y4c{bottom:1088.107200pt;}
.y4b{bottom:1091.306230pt;}
.h16{height:4.480000pt;}
.h3{height:4.640000pt;}
.he{height:12.480000pt;}
.h14{height:13.920000pt;}
.hb{height:14.400000pt;}
.h15{height:14.720000pt;}
.h2{height:15.040000pt;}
.h18{height:16.160000pt;}
.h19{height:16.480000pt;}
.h1b{height:16.640000pt;}
.h4{height:29.794051pt;}
.hf{height:29.961551pt;}
.h1c{height:31.238738pt;}
.h5{height:32.531237pt;}
.h11{height:32.554674pt;}
.h10{height:34.968736pt;}
.h6{height:35.404673pt;}
.hc{height:36.001236pt;}
.h12{height:36.883110pt;}
.h1{height:36.909048pt;}
.h17{height:38.672797pt;}
.h13{height:38.698735pt;}
.hd{height:38.829047pt;}
.ha{height:39.295297pt;}
.h9{height:39.904984pt;}
.h1a{height:40.882484pt;}
.h7{height:40.911234pt;}
.h1d{height:50.628730pt;}
.h8{height:57.688727pt;}
.h0{height:1122.666667pt;}
.w3a{width:3.520000pt;}
.w8{width:3.680000pt;}
.w26{width:4.640000pt;}
.w3{width:4.800000pt;}
.wc{width:6.080000pt;}
.w6{width:6.240000pt;}
.w19{width:6.400000pt;}
.w4{width:6.720000pt;}
.w3f{width:6.880000pt;}
.w35{width:7.040000pt;}
.we{width:7.200000pt;}
.w20{width:7.360000pt;}
.w2e{width:7.680000pt;}
.wa{width:7.840000pt;}
.w3d{width:11.040000pt;}
.w2f{width:12.000000pt;}
.w31{width:18.080000pt;}
.w28{width:22.560000pt;}
.w1e{width:25.760000pt;}
.w29{width:26.880000pt;}
.w7{width:27.360000pt;}
.w25{width:29.920000pt;}
.w1d{width:30.240000pt;}
.w42{width:33.760000pt;}
.w2b{width:34.240000pt;}
.wf{width:34.720000pt;}
.w1b{width:36.640000pt;}
.w1c{width:38.240000pt;}
.w10{width:38.400000pt;}
.w27{width:38.720000pt;}
.w1a{width:39.520000pt;}
.w21{width:40.000000pt;}
.w41{width:40.320000pt;}
.w22{width:40.480000pt;}
.w2c{width:41.920000pt;}
.w18{width:43.680000pt;}
.w23{width:44.480000pt;}
.w14{width:45.760000pt;}
.w15{width:45.920000pt;}
.w3c{width:46.080000pt;}
.w3e{width:46.720000pt;}
.w17{width:47.200000pt;}
.w39{width:48.000000pt;}
.wd{width:48.320000pt;}
.w11{width:48.480000pt;}
.w2a{width:49.440000pt;}
.w13{width:54.400000pt;}
.w24{width:54.880000pt;}
.w16{width:55.200000pt;}
.w37{width:55.680000pt;}
.w38{width:56.000000pt;}
.w1f{width:57.280000pt;}
.w12{width:59.360000pt;}
.w36{width:61.760000pt;}
.w3b{width:62.560000pt;}
.w33{width:63.680000pt;}
.w32{width:69.280000pt;}
.w30{width:79.360000pt;}
.w40{width:84.800000pt;}
.w5{width:101.120000pt;}
.w2d{width:112.960000pt;}
.w34{width:116.800000pt;}
.wb{width:135.680000pt;}
.w2{width:137.920000pt;}
.w9{width:261.120000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x6b{left:45.279982pt;}
.x6a{left:47.839981pt;}
.x49{left:50.079980pt;}
.x34{left:52.639979pt;}
.x30{left:55.199978pt;}
.x1{left:59.519976pt;}
.x2e{left:61.759975pt;}
.x4{left:66.559973pt;}
.x31{left:73.919970pt;}
.x20{left:76.319969pt;}
.x33{left:78.719969pt;}
.x8{left:79.839968pt;}
.x5{left:82.879967pt;}
.x35{left:84.479966pt;}
.x6c{left:87.519965pt;}
.x1e{left:88.800000pt;}
.x23{left:89.759964pt;}
.x14{left:93.279963pt;}
.x1d{left:100.959960pt;}
.x4c{left:107.519957pt;}
.x21{left:126.719949pt;}
.x4e{left:130.559948pt;}
.x22{left:132.159947pt;}
.x36{left:136.799945pt;}
.x5d{left:142.559943pt;}
.x4a{left:143.839942pt;}
.x37{left:151.519939pt;}
.x15{left:156.639359pt;}
.x6d{left:159.519936pt;}
.x5e{left:162.879935pt;}
.x19{left:172.800000pt;}
.x32{left:173.919930pt;}
.x38{left:181.919927pt;}
.x1f{left:189.920000pt;}
.x4b{left:194.719922pt;}
.x24{left:201.439928pt;}
.x25{left:202.399919pt;}
.xf{left:209.279798pt;}
.x9{left:211.199982pt;}
.x26{left:226.239929pt;}
.x1a{left:230.399908pt;}
.x48{left:236.639738pt;}
.x27{left:243.519973pt;}
.x39{left:245.120000pt;}
.x29{left:250.719900pt;}
.x28{left:262.720133pt;}
.x42{left:273.440000pt;}
.x2a{left:278.080000pt;}
.x2b{left:281.760000pt;}
.x2c{left:285.440000pt;}
.x3d{left:287.200000pt;}
.x59{left:288.640000pt;}
.x3a{left:293.440000pt;}
.x67{left:300.320000pt;}
.x4f{left:303.840000pt;}
.x5f{left:305.280000pt;}
.x69{left:307.999877pt;}
.x3b{left:309.440000pt;}
.x4d{left:318.559408pt;}
.x6{left:322.079871pt;}
.x64{left:323.200000pt;}
.x3e{left:335.200000pt;}
.x45{left:336.160000pt;}
.x60{left:337.760000pt;}
.x54{left:341.280000pt;}
.x7{left:348.959860pt;}
.x5a{left:352.320000pt;}
.x56{left:355.200000pt;}
.x13{left:360.159856pt;}
.xc{left:363.039855pt;}
.xe{left:366.239854pt;}
.x1b{left:369.920800pt;}
.x12{left:375.199850pt;}
.x66{left:376.480000pt;}
.x5b{left:378.880000pt;}
.x65{left:386.240000pt;}
.x3f{left:391.840000pt;}
.x46{left:392.800000pt;}
.x18{left:396.799841pt;}
.xa{left:404.959838pt;}
.x5c{left:406.399837pt;}
.x61{left:407.840000pt;}
.x10{left:410.239836pt;}
.x50{left:412.800000pt;}
.xd{left:423.039831pt;}
.xb{left:426.559829pt;}
.x11{left:428.479829pt;}
.x55{left:430.880000pt;}
.x62{left:446.560000pt;}
.x40{left:448.640000pt;}
.x68{left:454.560000pt;}
.x16{left:456.159818pt;}
.x41{left:467.360000pt;}
.x43{left:468.800000pt;}
.x57{left:472.000000pt;}
.x17{left:477.599809pt;}
.x3c{left:488.960000pt;}
.x58{left:490.080000pt;}
.x63{left:503.680000pt;}
.x44{left:511.520000pt;}
.x47{left:523.200000pt;}
.x51{left:525.600000pt;}
.x52{left:533.120000pt;}
.x53{left:545.120000pt;}
.x2d{left:546.560000pt;}
.x3{left:622.399751pt;}
.x1c{left:631.519641pt;}
.x2{left:655.360000pt;}
.x2f{left:657.600000pt;}
}




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