
    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_3ff46149306d0d31dcbe6f72.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_427254a7852b72a787134caf.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_a7f7eb3c41d6584fcf1ab76e.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_d1cf6753351b84b0e77dca36.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_46ee28afa3a7e92675327107.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_5ee7d559f41c449442e3357a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911133;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_31999d07f4bb06bb90659a98.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.915039;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_2eff158741b5be88acacf174.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_75f15542a939b87a807c3c2b.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_eae22035ae6a5f6e17a3d004.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_5a1dc2a3ff9ab0a55e011d0a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740234;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_560c24cbf736395906ed29bb.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_050753dabc8f9af30b1e7822.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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_4849954b1813717db3580c90.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.871094;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_d8797812e6c76b7f419924db.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_a6f77df15741739294a979b2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.931152;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;}
.m7{transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249513,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,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);}
.m5{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);}
.m3{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:34.559986px;}
.v3{vertical-align:40.319984px;}
.v2{vertical-align:46.079982px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.062787px;}
.ls4{letter-spacing:0.418463px;}
.ls7{letter-spacing:9.937316px;}
.ls3{letter-spacing:23.063211px;}
.ls8{letter-spacing:26.294580px;}
.ls5{letter-spacing:64.182694px;}
.ls6{letter-spacing:201.476919px;}
.ls0{letter-spacing:1374.407090px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(227,108,10),0 0.015em rgb(227,108,10),0.015em 0 rgb(227,108,10),0 -0.015em  rgb(227,108,10);}
.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(227,108,10);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-63.010055px;}
.ws9{word-spacing:-35.855986px;}
.ws4{word-spacing:-32.462774px;}
.ws8{word-spacing:-15.358457px;}
.ws3{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws7{word-spacing:-14.939994px;}
.ws2{word-spacing:-14.374074px;}
.ws5{word-spacing:-13.505755px;}
.wsa{word-spacing:-13.147195px;}
.wsd{word-spacing:-9.187196px;}
.ws6{word-spacing:0.000000px;}
.wsb{word-spacing:0.283800px;}
.wsc{word-spacing:0.640507px;}
.wsf{word-spacing:3.526078px;}
.wse{word-spacing:3.526137px;}
._3{margin-left:-8.388992px;}
._17{margin-left:-5.233163px;}
._2{margin-left:-4.191630px;}
._1{margin-left:-2.735560px;}
._4{margin-left:-1.237605px;}
._0{width:1.152887px;}
._9{width:2.330605px;}
._8{width:3.535490px;}
._13{width:4.554572px;}
._d{width:5.562824px;}
._e{width:7.209537px;}
._a{width:8.217302px;}
._7{width:9.599719px;}
._6{width:10.888579px;}
._5{width:12.605450px;}
._1a{width:14.972055px;}
._11{width:17.038615px;}
._12{width:18.290116px;}
._14{width:20.598485px;}
._b{width:21.985004px;}
._c{width:23.008300px;}
._10{width:24.827291px;}
._f{width:25.856878px;}
._1c{width:370.359244px;}
._20{width:381.107863px;}
._1e{width:401.008408px;}
._16{width:582.269152px;}
._15{width:671.312338px;}
._19{width:786.533703px;}
._18{width:795.864330px;}
._1f{width:947.328648px;}
._1d{width:1060.348729px;}
._1b{width:1406.332613px;}
.fcb{color:rgb(0,0,255);}
.fc8{color:rgb(0,32,96);}
.fc7{color:rgb(227,108,10);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fc9{color:rgb(44,62,80);}
.fc3{color:rgb(31,73,124);}
.fca{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.879984px;}
.fs8{font-size:41.759983px;}
.fs6{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs5{font-size:95.759962px;}
.fs3{font-size:107.999957px;}
.y5{bottom:-14.399994px;}
.y35{bottom:-0.000149px;}
.y0{bottom:0.000000px;}
.y28{bottom:2.699696px;}
.y89{bottom:3.239834px;}
.y8b{bottom:3.239842px;}
.y25{bottom:4.319687px;}
.y23{bottom:4.499573px;}
.y26{bottom:4.499687px;}
.y37{bottom:4.499698px;}
.ya{bottom:4.499980px;}
.yb{bottom:28.259989px;}
.y9{bottom:46.080000px;}
.y7{bottom:50.579980px;}
.y8{bottom:51.659979px;}
.y1d{bottom:130.859948px;}
.y67{bottom:134.819946px;}
.y96{bottom:142.199943px;}
.y1c{bottom:150.659940px;}
.ye3{bottom:150.839940px;}
.y66{bottom:154.619938px;}
.yc2{bottom:161.099936px;}
.y95{bottom:161.999935px;}
.y1b{bottom:170.459932px;}
.ye2{bottom:170.819932px;}
.y65{bottom:174.419930px;}
.y77{bottom:178.919928px;}
.y1a{bottom:190.259924px;}
.ye1{bottom:190.619924px;}
.y94{bottom:190.799924px;}
.yc1{bottom:193.139923px;}
.y64{bottom:194.219922px;}
.yc0{bottom:196.199922px;}
.y10a{bottom:201.959919px;}
.y76{bottom:207.719917px;}
.y19{bottom:210.059916px;}
.ye0{bottom:210.419916px;}
.y63{bottom:214.019914px;}
.y93{bottom:219.599912px;}
.y109{bottom:221.759911px;}
.y75{bottom:227.519909px;}
.ybf{bottom:229.139908px;}
.y18{bottom:230.039908px;}
.ydf{bottom:230.219908px;}
.ybe{bottom:232.199907px;}
.y92{bottom:239.579904px;}
.y108{bottom:241.559903px;}
.y62{bottom:242.819903px;}
.y74{bottom:247.319901px;}
.y17{bottom:249.839900px;}
.yde{bottom:250.019900px;}
.y91{bottom:259.379896px;}
.y107{bottom:261.359895px;}
.ybb{bottom:265.139894px;}
.yba{bottom:268.199893px;}
.y16{bottom:269.639892px;}
.ydd{bottom:269.999892px;}
.y61{bottom:271.799891px;}
.ybd{bottom:273.779890px;}
.ybc{bottom:275.219890px;}
.y73{bottom:276.119890px;}
.y90{bottom:279.179888px;}
.y106{bottom:281.159888px;}
.y15{bottom:289.439884px;}
.ydc{bottom:289.799884px;}
.y60{bottom:291.599883px;}
.y8f{bottom:298.979880px;}
.y105{bottom:301.139880px;}
.yb8{bottom:305.639878px;}
.y72{bottom:307.979877px;}
.y14{bottom:309.239876px;}
.ydb{bottom:309.599876px;}
.yb9{bottom:311.219876px;}
.y5f{bottom:311.399875px;}
.y8e{bottom:318.779872px;}
.y104{bottom:320.939872px;}
.y13{bottom:329.219868px;}
.y5e{bottom:331.199868px;}
.y71{bottom:332.639867px;}
.yda{bottom:338.399865px;}
.y103{bottom:340.739864px;}
.yb7{bottom:341.639863px;}
.y8d{bottom:349.379860px;}
.y5d{bottom:350.999860px;}
.y12{bottom:358.019857px;}
.y102{bottom:360.539856px;}
.yd9{bottom:367.199853px;}
.y5c{bottom:370.979852px;}
.y34{bottom:372.780000px;}
.yb6{bottom:377.459849px;}
.y8c{bottom:377.999849px;}
.y101{bottom:380.339848px;}
.y5b{bottom:390.779844px;}
.y8a{bottom:392.760000px;}
.y46{bottom:399.779840px;}
.y100{bottom:400.319840px;}
.yd8{bottom:405.899838px;}
.yb5{bottom:409.139836px;}
.y5a{bottom:410.579836px;}
.y88{bottom:410.760000px;}
.yb2{bottom:416.159834px;}
.y45{bottom:416.339833px;}
.yb1{bottom:419.219832px;}
.yff{bottom:420.119832px;}
.yb3{bottom:426.239830px;}
.y59{bottom:430.379828px;}
.yb4{bottom:436.319825px;}
.yfe{bottom:439.919824px;}
.yd7{bottom:444.419822px;}
.y87{bottom:444.959822px;}
.y58{bottom:450.179820px;}
.y4a{bottom:455.579818px;}
.yfd{bottom:459.719816px;}
.yb0{bottom:466.379813px;}
.y57{bottom:470.159812px;}
.y49{bottom:476.459809px;}
.y86{bottom:477.359809px;}
.yfc{bottom:479.519808px;}
.y33{bottom:481.499807px;}
.yd6{bottom:482.939807px;}
.y56{bottom:489.959804px;}
.y48{bottom:497.519801px;}
.yfb{bottom:499.499800px;}
.yae{bottom:500.219800px;}
.y85{bottom:504.899798px;}
.yaf{bottom:505.799798px;}
.y55{bottom:509.759796px;}
.y70{bottom:511.019796px;}
.y47{bottom:518.579793px;}
.yfa{bottom:519.299792px;}
.yd5{bottom:521.639791px;}
.y84{bottom:524.699790px;}
.y54{bottom:529.559788px;}
.yad{bottom:536.219786px;}
.yf9{bottom:539.099784px;}
.y83{bottom:544.679782px;}
.y32{bottom:550.439780px;}
.y53{bottom:558.359777px;}
.yf8{bottom:558.899776px;}
.yd4{bottom:560.159776px;}
.y44{bottom:562.319775px;}
.y82{bottom:564.479774px;}
.yac{bottom:571.139772px;}
.y31{bottom:574.919770px;}
.y43{bottom:577.799769px;}
.yf7{bottom:578.699769px;}
.y81{bottom:584.279766px;}
.y52{bottom:587.339765px;}
.yf6{bottom:598.679761px;}
.yd3{bottom:598.859760px;}
.y30{bottom:600.659760px;}
.y42{bottom:602.279759px;}
.y80{bottom:604.079758px;}
.yab{bottom:605.879758px;}
.y2f{bottom:615.959754px;}
.y41{bottom:617.759753px;}
.yf5{bottom:618.479753px;}
.y51{bottom:619.019752px;}
.y7f{bottom:623.879750px;}
.y2e{bottom:631.259747px;}
.y40{bottom:633.419747px;}
.yd2{bottom:637.379745px;}
.yf4{bottom:638.279745px;}
.yaa{bottom:638.819744px;}
.ya9{bottom:641.879743px;}
.y50{bottom:643.319743px;}
.y7e{bottom:643.859742px;}
.y2d{bottom:645.299742px;}
.y3f{bottom:648.899740px;}
.yf3{bottom:658.079737px;}
.y7d{bottom:663.659735px;}
.y3e{bottom:664.379734px;}
.y2c{bottom:669.959732px;}
.ya8{bottom:674.999730px;}
.yd1{bottom:675.899730px;}
.yf2{bottom:677.879729px;}
.ya7{bottom:678.059729px;}
.y3d{bottom:679.859728px;}
.y7c{bottom:692.459723px;}
.y2b{bottom:694.439722px;}
.y3c{bottom:695.519722px;}
.yf1{bottom:697.859721px;}
.y3b{bottom:710.999716px;}
.ya6{bottom:713.879714px;}
.yd0{bottom:714.599714px;}
.yf0{bottom:717.659713px;}
.y2a{bottom:718.919712px;}
.y7b{bottom:721.259711px;}
.y3a{bottom:726.479709px;}
.y29{bottom:734.399706px;}
.yef{bottom:737.459705px;}
.y39{bottom:741.959703px;}
.ya4{bottom:745.559702px;}
.y7a{bottom:746.819701px;}
.ya2{bottom:750.059700px;}
.y36{bottom:750.060000px;}
.ya1{bottom:753.119699px;}
.y27{bottom:756.180000px;}
.yee{bottom:757.259697px;}
.y38{bottom:757.619697px;}
.ya5{bottom:758.699697px;}
.y6f{bottom:761.039696px;}
.ya3{bottom:761.939695px;}
.yed{bottom:777.059689px;}
.y24{bottom:778.500000px;}
.y6e{bottom:789.839684px;}
.ya0{bottom:790.199684px;}
.ycf{bottom:791.639683px;}
.yec{bottom:797.039681px;}
.yeb{bottom:816.839673px;}
.y9f{bottom:817.919673px;}
.y6d{bottom:818.639673px;}
.y11{bottom:819.359672px;}
.yce{bottom:833.219667px;}
.yea{bottom:836.639665px;}
.y6c{bottom:838.439665px;}
.y9e{bottom:838.979664px;}
.y10{bottom:841.139664px;}
.ycd{bottom:848.879660px;}
.ye9{bottom:856.439657px;}
.y6b{bottom:858.239657px;}
.yf{bottom:863.099655px;}
.y9d{bottom:868.859652px;}
.ye8{bottom:876.239650px;}
.y6a{bottom:878.219649px;}
.ycc{bottom:879.839648px;}
.ye{bottom:884.879646px;}
.ye7{bottom:896.219642px;}
.ycb{bottom:897.119641px;}
.y9c{bottom:897.659641px;}
.y69{bottom:898.019641px;}
.yd{bottom:910.799636px;}
.yca{bottom:914.219634px;}
.ye6{bottom:916.019634px;}
.y68{bottom:917.819633px;}
.y9b{bottom:927.539629px;}
.yc9{bottom:931.499627px;}
.ye5{bottom:935.819626px;}
.yc{bottom:946.619621px;}
.yc8{bottom:948.779620px;}
.ye4{bottom:955.619618px;}
.y9a{bottom:956.339617px;}
.yc7{bottom:966.059614px;}
.y79{bottom:966.419613px;}
.y4f{bottom:975.419610px;}
.yc6{bottom:983.339607px;}
.y99{bottom:984.959606px;}
.y98{bottom:986.399605px;}
.y21{bottom:992.159603px;}
.y78{bottom:995.399602px;}
.yc5{bottom:1000.439600px;}
.y4e{bottom:1004.399598px;}
.y20{bottom:1011.599595px;}
.y97{bottom:1015.199594px;}
.yc4{bottom:1017.719593px;}
.y4d{bottom:1024.199590px;}
.y1f{bottom:1032.479587px;}
.yc3{bottom:1034.999586px;}
.y4c{bottom:1043.999582px;}
.y1e{bottom:1060.559576px;}
.y22{bottom:1063.260000px;}
.y4b{bottom:1063.799574px;}
.y4{bottom:1082.339567px;}
.y6{bottom:1110.779556px;}
.y3{bottom:1114.019554px;}
.y2{bottom:1131.299547px;}
.y1{bottom:1148.579541px;}
.h3{height:1.440000px;}
.h12{height:14.040000px;}
.h16{height:15.840000px;}
.h1b{height:16.560000px;}
.hf{height:20.160000px;}
.h6{height:20.340000px;}
.h1c{height:27.014755px;}
.h1f{height:29.668348px;}
.h13{height:33.706744px;}
.h23{height:36.571274px;}
.h17{height:36.597642px;}
.h15{height:36.624009px;}
.h4{height:36.703110px;}
.h1d{height:37.415024px;}
.h1a{height:37.494126px;}
.h18{height:37.520493px;}
.h5{height:38.759750px;}
.h14{height:39.313461px;}
.hc{height:40.501390px;}
.h1{height:41.522679px;}
.h1e{height:42.456428px;}
.h7{height:42.894123px;}
.h19{height:43.506897px;}
.h10{height:44.149201px;}
.ha{height:44.893107px;}
.h11{height:45.022482px;}
.hb{height:45.992794px;}
.he{height:46.283888px;}
.h2{height:47.545293px;}
.h9{height:50.027324px;}
.h22{height:64.228334px;}
.hd{height:67.144192px;}
.h8{height:75.040986px;}
.h21{height:82.776412px;}
.h20{height:88.536410px;}
.h0{height:1188.000000px;}
.w5{width:3.600000px;}
.w2{width:5.040000px;}
.wa{width:7.020000px;}
.wc{width:7.560000px;}
.w7{width:8.100000px;}
.w3{width:8.280000px;}
.w1{width:9.720000px;}
.wf{width:21.060000px;}
.w6{width:33.660000px;}
.wd{width:33.840000px;}
.we{width:38.700000px;}
.wb{width:43.380000px;}
.w4{width:58.500000px;}
.w8{width:70.200000px;}
.w9{width:113.580000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x56{left:116.099959px;}
.x20{left:120.419952px;}
.x1e{left:122.399951px;}
.x1d{left:125.099950px;}
.x4{left:133.199947px;}
.x3a{left:135.000021px;}
.x19{left:136.620000px;}
.x1c{left:140.039899px;}
.x1b{left:144.899942px;}
.x7{left:146.159942px;}
.x21{left:169.019932px;}
.x4e{left:170.279932px;}
.x42{left:172.439931px;}
.x52{left:173.519931px;}
.x41{left:176.759929px;}
.x1f{left:179.099928px;}
.xc{left:187.379477px;}
.x53{left:192.059923px;}
.x22{left:193.319920px;}
.x2e{left:197.639921px;}
.x4f{left:200.519920px;}
.x13{left:203.940000px;}
.x3b{left:205.019918px;}
.x14{left:207.540000px;}
.x30{left:208.979916px;}
.x3c{left:212.219915px;}
.x36{left:215.640000px;}
.xb{left:219.232412px;}
.x50{left:221.039911px;}
.x51{left:228.959908px;}
.x55{left:232.199907px;}
.x37{left:236.520000px;}
.x15{left:241.200000px;}
.x31{left:247.500000px;}
.x1a{left:250.200000px;}
.x8{left:251.999421px;}
.x3d{left:253.979898px;}
.x23{left:263.159930px;}
.x24{left:264.240000px;}
.x3e{left:265.319894px;}
.x38{left:273.599891px;}
.x39{left:278.459889px;}
.x16{left:286.560000px;}
.x11{left:300.419880px;}
.x2{left:302.579879px;}
.x27{left:307.439877px;}
.x3f{left:316.259873px;}
.x17{left:319.500000px;}
.x25{left:327.059869px;}
.xf{left:332.639867px;}
.x40{left:339.839864px;}
.x10{left:341.999861px;}
.x54{left:346.859861px;}
.x2d{left:355.139858px;}
.xa{left:365.759854px;}
.x45{left:377.459849px;}
.x2f{left:378.539849px;}
.x2a{left:384.479763px;}
.x29{left:386.639845px;}
.x46{left:387.899845px;}
.x18{left:389.520000px;}
.xe{left:392.219843px;}
.x58{left:400.859840px;}
.x12{left:405.539808px;}
.x59{left:408.599837px;}
.x47{left:411.479835px;}
.x5{left:432.899827px;}
.x48{left:437.399825px;}
.x32{left:444.960000px;}
.x57{left:446.759474px;}
.xd{left:458.998964px;}
.x49{left:466.919813px;}
.x4b{left:476.279809px;}
.x33{left:478.800000px;}
.x4a{left:481.499807px;}
.x43{left:496.079802px;}
.x4c{left:501.839799px;}
.x44{left:502.919799px;}
.x4d{left:537.299785px;}
.x26{left:588.239765px;}
.x28{left:610.379756px;}
.x2c{left:616.683277px;}
.x2b{left:621.003270px;}
.x9{left:665.999734px;}
.x34{left:678.060000px;}
.x3{left:691.199724px;}
.x35{left:716.760000px;}
.x6{left:804.600000px;}
@media print{
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:30.719988pt;}
.v3{vertical-align:35.839986pt;}
.v2{vertical-align:40.959984pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.055811pt;}
.ls4{letter-spacing:0.371967pt;}
.ls7{letter-spacing:8.833170pt;}
.ls3{letter-spacing:20.500632pt;}
.ls8{letter-spacing:23.372960pt;}
.ls5{letter-spacing:57.051284pt;}
.ls6{letter-spacing:179.090595pt;}
.ls0{letter-spacing:1221.695191pt;}
.ws1{word-spacing:-56.008938pt;}
.ws9{word-spacing:-31.871987pt;}
.ws4{word-spacing:-28.855799pt;}
.ws8{word-spacing:-13.651961pt;}
.ws3{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws7{word-spacing:-13.279995pt;}
.ws2{word-spacing:-12.776955pt;}
.ws5{word-spacing:-12.005115pt;}
.wsa{word-spacing:-11.686395pt;}
.wsd{word-spacing:-8.166397pt;}
.ws6{word-spacing:0.000000pt;}
.wsb{word-spacing:0.252267pt;}
.wsc{word-spacing:0.569340pt;}
.wsf{word-spacing:3.134291pt;}
.wse{word-spacing:3.134344pt;}
._3{margin-left:-7.456882pt;}
._17{margin-left:-4.651701pt;}
._2{margin-left:-3.725894pt;}
._1{margin-left:-2.431609pt;}
._4{margin-left:-1.100094pt;}
._0{width:1.024788pt;}
._9{width:2.071649pt;}
._8{width:3.142658pt;}
._13{width:4.048509pt;}
._d{width:4.944732pt;}
._e{width:6.408477pt;}
._a{width:7.304268pt;}
._7{width:8.533083pt;}
._6{width:9.678737pt;}
._5{width:11.204845pt;}
._1a{width:13.308494pt;}
._11{width:15.145436pt;}
._12{width:16.257881pt;}
._14{width:18.309765pt;}
._b{width:19.542226pt;}
._c{width:20.451822pt;}
._10{width:22.068703pt;}
._f{width:22.983892pt;}
._1c{width:329.208217pt;}
._20{width:338.762545pt;}
._1e{width:356.451918pt;}
._16{width:517.572580pt;}
._15{width:596.722079pt;}
._19{width:699.141070pt;}
._18{width:707.434960pt;}
._1f{width:842.069909pt;}
._1d{width:942.532203pt;}
._1b{width:1250.073434pt;}
.fs7{font-size:34.559986pt;}
.fs8{font-size:37.119985pt;}
.fs6{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs5{font-size:85.119966pt;}
.fs3{font-size:95.999962pt;}
.y5{bottom:-12.799995pt;}
.y35{bottom:-0.000133pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:2.399730pt;}
.y89{bottom:2.879853pt;}
.y8b{bottom:2.879859pt;}
.y25{bottom:3.839722pt;}
.y23{bottom:3.999620pt;}
.y26{bottom:3.999722pt;}
.y37{bottom:3.999732pt;}
.ya{bottom:3.999982pt;}
.yb{bottom:25.119990pt;}
.y9{bottom:40.960000pt;}
.y7{bottom:44.959982pt;}
.y8{bottom:45.919982pt;}
.y1d{bottom:116.319953pt;}
.y67{bottom:119.839952pt;}
.y96{bottom:126.399949pt;}
.y1c{bottom:133.919946pt;}
.ye3{bottom:134.079946pt;}
.y66{bottom:137.439945pt;}
.yc2{bottom:143.199943pt;}
.y95{bottom:143.999942pt;}
.y1b{bottom:151.519939pt;}
.ye2{bottom:151.839939pt;}
.y65{bottom:155.039938pt;}
.y77{bottom:159.039936pt;}
.y1a{bottom:169.119932pt;}
.ye1{bottom:169.439932pt;}
.y94{bottom:169.599932pt;}
.yc1{bottom:171.679931pt;}
.y64{bottom:172.639931pt;}
.yc0{bottom:174.399930pt;}
.y10a{bottom:179.519928pt;}
.y76{bottom:184.639926pt;}
.y19{bottom:186.719925pt;}
.ye0{bottom:187.039925pt;}
.y63{bottom:190.239924pt;}
.y93{bottom:195.199922pt;}
.y109{bottom:197.119921pt;}
.y75{bottom:202.239919pt;}
.ybf{bottom:203.679919pt;}
.y18{bottom:204.479918pt;}
.ydf{bottom:204.639918pt;}
.ybe{bottom:206.399917pt;}
.y92{bottom:212.959915pt;}
.y108{bottom:214.719914pt;}
.y62{bottom:215.839914pt;}
.y74{bottom:219.839912pt;}
.y17{bottom:222.079911pt;}
.yde{bottom:222.239911pt;}
.y91{bottom:230.559908pt;}
.y107{bottom:232.319907pt;}
.ybb{bottom:235.679906pt;}
.yba{bottom:238.399905pt;}
.y16{bottom:239.679904pt;}
.ydd{bottom:239.999904pt;}
.y61{bottom:241.599903pt;}
.ybd{bottom:243.359903pt;}
.ybc{bottom:244.639902pt;}
.y73{bottom:245.439902pt;}
.y90{bottom:248.159901pt;}
.y106{bottom:249.919900pt;}
.y15{bottom:257.279897pt;}
.ydc{bottom:257.599897pt;}
.y60{bottom:259.199896pt;}
.y8f{bottom:265.759894pt;}
.y105{bottom:267.679893pt;}
.yb8{bottom:271.679891pt;}
.y72{bottom:273.759890pt;}
.y14{bottom:274.879890pt;}
.ydb{bottom:275.199890pt;}
.yb9{bottom:276.639889pt;}
.y5f{bottom:276.799889pt;}
.y8e{bottom:283.359887pt;}
.y104{bottom:285.279886pt;}
.y13{bottom:292.639883pt;}
.y5e{bottom:294.399882pt;}
.y71{bottom:295.679882pt;}
.yda{bottom:300.799880pt;}
.y103{bottom:302.879879pt;}
.yb7{bottom:303.679879pt;}
.y8d{bottom:310.559876pt;}
.y5d{bottom:311.999875pt;}
.y12{bottom:318.239873pt;}
.y102{bottom:320.479872pt;}
.yd9{bottom:326.399869pt;}
.y5c{bottom:329.759868pt;}
.y34{bottom:331.360000pt;}
.yb6{bottom:335.519866pt;}
.y8c{bottom:335.999866pt;}
.y101{bottom:338.079865pt;}
.y5b{bottom:347.359861pt;}
.y8a{bottom:349.120000pt;}
.y46{bottom:355.359858pt;}
.y100{bottom:355.839858pt;}
.yd8{bottom:360.799856pt;}
.yb5{bottom:363.679855pt;}
.y5a{bottom:364.959854pt;}
.y88{bottom:365.120000pt;}
.yb2{bottom:369.919852pt;}
.y45{bottom:370.079852pt;}
.yb1{bottom:372.639851pt;}
.yff{bottom:373.439851pt;}
.yb3{bottom:378.879848pt;}
.y59{bottom:382.559847pt;}
.yb4{bottom:387.839845pt;}
.yfe{bottom:391.039844pt;}
.yd7{bottom:395.039842pt;}
.y87{bottom:395.519842pt;}
.y58{bottom:400.159840pt;}
.y4a{bottom:404.959838pt;}
.yfd{bottom:408.639837pt;}
.yb0{bottom:414.559834pt;}
.y57{bottom:417.919833pt;}
.y49{bottom:423.519831pt;}
.y86{bottom:424.319830pt;}
.yfc{bottom:426.239830pt;}
.y33{bottom:427.999829pt;}
.yd6{bottom:429.279828pt;}
.y56{bottom:435.519826pt;}
.y48{bottom:442.239823pt;}
.yfb{bottom:443.999822pt;}
.yae{bottom:444.639822pt;}
.y85{bottom:448.799820pt;}
.yaf{bottom:449.599820pt;}
.y55{bottom:453.119819pt;}
.y70{bottom:454.239818pt;}
.y47{bottom:460.959816pt;}
.yfa{bottom:461.599815pt;}
.yd5{bottom:463.679815pt;}
.y84{bottom:466.399813pt;}
.y54{bottom:470.719812pt;}
.yad{bottom:476.639809pt;}
.yf9{bottom:479.199808pt;}
.y83{bottom:484.159806pt;}
.y32{bottom:489.279804pt;}
.y53{bottom:496.319801pt;}
.yf8{bottom:496.799801pt;}
.yd4{bottom:497.919801pt;}
.y44{bottom:499.839800pt;}
.y82{bottom:501.759799pt;}
.yac{bottom:507.679797pt;}
.y31{bottom:511.039796pt;}
.y43{bottom:513.599795pt;}
.yf7{bottom:514.399794pt;}
.y81{bottom:519.359792pt;}
.y52{bottom:522.079791pt;}
.yf6{bottom:532.159787pt;}
.yd3{bottom:532.319787pt;}
.y30{bottom:533.919786pt;}
.y42{bottom:535.359786pt;}
.y80{bottom:536.959785pt;}
.yab{bottom:538.559785pt;}
.y2f{bottom:547.519781pt;}
.y41{bottom:549.119780pt;}
.yf5{bottom:549.759780pt;}
.y51{bottom:550.239780pt;}
.y7f{bottom:554.559778pt;}
.y2e{bottom:561.119776pt;}
.y40{bottom:563.039775pt;}
.yd2{bottom:566.559773pt;}
.yf4{bottom:567.359773pt;}
.yaa{bottom:567.839773pt;}
.ya9{bottom:570.559772pt;}
.y50{bottom:571.839771pt;}
.y7e{bottom:572.319771pt;}
.y2d{bottom:573.599771pt;}
.y3f{bottom:576.799769pt;}
.yf3{bottom:584.959766pt;}
.y7d{bottom:589.919764pt;}
.y3e{bottom:590.559764pt;}
.y2c{bottom:595.519762pt;}
.ya8{bottom:599.999760pt;}
.yd1{bottom:600.799760pt;}
.yf2{bottom:602.559759pt;}
.ya7{bottom:602.719759pt;}
.y3d{bottom:604.319758pt;}
.y7c{bottom:615.519754pt;}
.y2b{bottom:617.279753pt;}
.y3c{bottom:618.239753pt;}
.yf1{bottom:620.319752pt;}
.y3b{bottom:631.999747pt;}
.ya6{bottom:634.559746pt;}
.yd0{bottom:635.199746pt;}
.yf0{bottom:637.919745pt;}
.y2a{bottom:639.039744pt;}
.y7b{bottom:641.119744pt;}
.y3a{bottom:645.759742pt;}
.y29{bottom:652.799739pt;}
.yef{bottom:655.519738pt;}
.y39{bottom:659.519736pt;}
.ya4{bottom:662.719735pt;}
.y7a{bottom:663.839734pt;}
.ya2{bottom:666.719733pt;}
.y36{bottom:666.720000pt;}
.ya1{bottom:669.439732pt;}
.y27{bottom:672.160000pt;}
.yee{bottom:673.119731pt;}
.y38{bottom:673.439731pt;}
.ya5{bottom:674.399730pt;}
.y6f{bottom:676.479729pt;}
.ya3{bottom:677.279729pt;}
.yed{bottom:690.719724pt;}
.y24{bottom:692.000000pt;}
.y6e{bottom:702.079719pt;}
.ya0{bottom:702.399719pt;}
.ycf{bottom:703.679719pt;}
.yec{bottom:708.479717pt;}
.yeb{bottom:726.079710pt;}
.y9f{bottom:727.039709pt;}
.y6d{bottom:727.679709pt;}
.y11{bottom:728.319709pt;}
.yce{bottom:740.639704pt;}
.yea{bottom:743.679703pt;}
.y6c{bottom:745.279702pt;}
.y9e{bottom:745.759702pt;}
.y10{bottom:747.679701pt;}
.ycd{bottom:754.559698pt;}
.ye9{bottom:761.279695pt;}
.y6b{bottom:762.879695pt;}
.yf{bottom:767.199693pt;}
.y9d{bottom:772.319691pt;}
.ye8{bottom:778.879688pt;}
.y6a{bottom:780.639688pt;}
.ycc{bottom:782.079687pt;}
.ye{bottom:786.559685pt;}
.ye7{bottom:796.639681pt;}
.ycb{bottom:797.439681pt;}
.y9c{bottom:797.919681pt;}
.y69{bottom:798.239681pt;}
.yd{bottom:809.599676pt;}
.yca{bottom:812.639675pt;}
.ye6{bottom:814.239674pt;}
.y68{bottom:815.839674pt;}
.y9b{bottom:824.479670pt;}
.yc9{bottom:827.999669pt;}
.ye5{bottom:831.839667pt;}
.yc{bottom:841.439663pt;}
.yc8{bottom:843.359663pt;}
.ye4{bottom:849.439660pt;}
.y9a{bottom:850.079660pt;}
.yc7{bottom:858.719657pt;}
.y79{bottom:859.039656pt;}
.y4f{bottom:867.039653pt;}
.yc6{bottom:874.079650pt;}
.y99{bottom:875.519650pt;}
.y98{bottom:876.799649pt;}
.y21{bottom:881.919647pt;}
.y78{bottom:884.799646pt;}
.yc5{bottom:889.279644pt;}
.y4e{bottom:892.799643pt;}
.y20{bottom:899.199640pt;}
.y97{bottom:902.399639pt;}
.yc4{bottom:904.639638pt;}
.y4d{bottom:910.399636pt;}
.y1f{bottom:917.759633pt;}
.yc3{bottom:919.999632pt;}
.y4c{bottom:927.999629pt;}
.y1e{bottom:942.719623pt;}
.y22{bottom:945.120000pt;}
.y4b{bottom:945.599622pt;}
.y4{bottom:962.079615pt;}
.y6{bottom:987.359605pt;}
.y3{bottom:990.239604pt;}
.y2{bottom:1005.599598pt;}
.y1{bottom:1020.959592pt;}
.h3{height:1.280000pt;}
.h12{height:12.480000pt;}
.h16{height:14.080000pt;}
.h1b{height:14.720000pt;}
.hf{height:17.920000pt;}
.h6{height:18.080000pt;}
.h1c{height:24.013115pt;}
.h1f{height:26.371864pt;}
.h13{height:29.961551pt;}
.h23{height:32.507799pt;}
.h17{height:32.531237pt;}
.h15{height:32.554674pt;}
.h4{height:32.624987pt;}
.h1d{height:33.257799pt;}
.h1a{height:33.328112pt;}
.h18{height:33.351549pt;}
.h5{height:34.453111pt;}
.h14{height:34.945299pt;}
.hc{height:36.001236pt;}
.h1{height:36.909048pt;}
.h1e{height:37.739047pt;}
.h7{height:38.128110pt;}
.h19{height:38.672797pt;}
.h10{height:39.243734pt;}
.ha{height:39.904984pt;}
.h11{height:40.019984pt;}
.hb{height:40.882484pt;}
.he{height:41.141234pt;}
.h2{height:42.262483pt;}
.h9{height:44.468732pt;}
.h22{height:57.091852pt;}
.hd{height:59.683726pt;}
.h8{height:66.703098pt;}
.h21{height:73.579033pt;}
.h20{height:78.699031pt;}
.h0{height:1056.000000pt;}
.w5{width:3.200000pt;}
.w2{width:4.480000pt;}
.wa{width:6.240000pt;}
.wc{width:6.720000pt;}
.w7{width:7.200000pt;}
.w3{width:7.360000pt;}
.w1{width:8.640000pt;}
.wf{width:18.720000pt;}
.w6{width:29.920000pt;}
.wd{width:30.080000pt;}
.we{width:34.400000pt;}
.wb{width:38.560000pt;}
.w4{width:52.000000pt;}
.w8{width:62.400000pt;}
.w9{width:100.960000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x56{left:103.199964pt;}
.x20{left:107.039957pt;}
.x1e{left:108.799956pt;}
.x1d{left:111.199956pt;}
.x4{left:118.399953pt;}
.x3a{left:120.000019pt;}
.x19{left:121.440000pt;}
.x1c{left:124.479910pt;}
.x1b{left:128.799948pt;}
.x7{left:129.919948pt;}
.x21{left:150.239940pt;}
.x4e{left:151.359939pt;}
.x42{left:153.279939pt;}
.x52{left:154.239938pt;}
.x41{left:157.119937pt;}
.x1f{left:159.199936pt;}
.xc{left:166.559535pt;}
.x53{left:170.719932pt;}
.x22{left:171.839929pt;}
.x2e{left:175.679930pt;}
.x4f{left:178.239929pt;}
.x13{left:181.280000pt;}
.x3b{left:182.239927pt;}
.x14{left:184.480000pt;}
.x30{left:185.759926pt;}
.x3c{left:188.639925pt;}
.x36{left:191.680000pt;}
.xb{left:194.873255pt;}
.x50{left:196.479921pt;}
.x51{left:203.519919pt;}
.x55{left:206.399917pt;}
.x37{left:210.240000pt;}
.x15{left:214.400000pt;}
.x31{left:220.000000pt;}
.x1a{left:222.400000pt;}
.x8{left:223.999486pt;}
.x3d{left:225.759910pt;}
.x23{left:233.919938pt;}
.x24{left:234.880000pt;}
.x3e{left:235.839906pt;}
.x38{left:243.199903pt;}
.x39{left:247.519901pt;}
.x16{left:254.720000pt;}
.x11{left:267.039893pt;}
.x2{left:268.959892pt;}
.x27{left:273.279891pt;}
.x3f{left:281.119888pt;}
.x17{left:284.000000pt;}
.x25{left:290.719884pt;}
.xf{left:295.679882pt;}
.x40{left:302.079879pt;}
.x10{left:303.999877pt;}
.x54{left:308.319877pt;}
.x2d{left:315.679874pt;}
.xa{left:325.119870pt;}
.x45{left:335.519866pt;}
.x2f{left:336.479865pt;}
.x2a{left:341.759790pt;}
.x29{left:343.679863pt;}
.x46{left:344.799862pt;}
.x18{left:346.240000pt;}
.xe{left:348.639861pt;}
.x58{left:356.319857pt;}
.x12{left:360.479829pt;}
.x59{left:363.199855pt;}
.x47{left:365.759854pt;}
.x5{left:384.799846pt;}
.x48{left:388.799844pt;}
.x32{left:395.520000pt;}
.x57{left:397.119533pt;}
.xd{left:407.999079pt;}
.x49{left:415.039834pt;}
.x4b{left:423.359831pt;}
.x33{left:425.600000pt;}
.x4a{left:427.999829pt;}
.x43{left:440.959824pt;}
.x4c{left:446.079822pt;}
.x44{left:447.039821pt;}
.x4d{left:477.599809pt;}
.x26{left:522.879791pt;}
.x28{left:542.559783pt;}
.x2c{left:548.162913pt;}
.x2b{left:552.002907pt;}
.x9{left:591.999763pt;}
.x34{left:602.720000pt;}
.x3{left:614.399754pt;}
.x35{left:637.120000pt;}
.x6{left:715.200000pt;}
}




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