
    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_faf402caa5af1b8c0327e297.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_f56e21f2f3bd92253876853a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_4e66efbd6a5cb821ae8ed7ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107910;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_39ebd5610d5f892ca1e85f30.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_b047df57e2af3cf60ca6c888.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.475000;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_012086baddbb5920e2821d8f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107910;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_7153aa069d7b4ddac7416d8a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.188000;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_10978fc957f895a7be8ed52c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.109863;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_5b5c74549b1640f39612cfea.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;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_eb5b312ad5572d75c769ca89.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.107910;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_e4cb9ccbffc8db51111d06ce.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.703613;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_73e91fb83b3daf11c2e9aef0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.873000;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_5647b5f38e51f9240bff3abf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.773000;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_28bde5addf7e2426963fe409.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.578000;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_ca594fe55aee5afe3e301ece.woff2')format("woff");}.fff{font-family:fff;line-height:0.692383;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;}
.m6{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.276886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276886,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.379486px;}
.v3{vertical-align:9.862242px;}
.v2{vertical-align:12.246856px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:9.779313px;}
.ls5{letter-spacing:10.118839px;}
.lse{letter-spacing:10.123621px;}
.ls4{letter-spacing:10.463147px;}
.ls2{letter-spacing:10.797891px;}
.ls3{letter-spacing:10.802674px;}
.ls8{letter-spacing:11.137418px;}
.ls6{letter-spacing:11.142200px;}
.ls7{letter-spacing:11.476944px;}
.ls10{letter-spacing:11.481726px;}
.ls9{letter-spacing:11.821252px;}
.ls14{letter-spacing:12.782286px;}
.lsf{letter-spacing:12.839831px;}
.ls15{letter-spacing:13.122286px;}
.lsa{letter-spacing:14.202718px;}
.lsc{letter-spacing:14.876989px;}
.lsb{letter-spacing:14.881771px;}
.ls1{letter-spacing:19.038201px;}
.ls11{letter-spacing:19.690054px;}
.ls13{letter-spacing:20.026702px;}
.ls12{letter-spacing:20.030527px;}
.ls16{letter-spacing:24.828456px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-27.759510px;}
.ws4{word-spacing:-24.230394px;}
.ws5{word-spacing:-23.644221px;}
.ws0{word-spacing:-18.984000px;}
.ws7{word-spacing:-14.011436px;}
.ws9{word-spacing:-12.610134px;}
.ws8{word-spacing:-11.955150px;}
.ws2{word-spacing:-11.620260px;}
.ws6{word-spacing:-11.208832px;}
.wse{word-spacing:-10.759500px;}
.wsa{word-spacing:-10.061328px;}
.wsc{word-spacing:-9.563850px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:14.805072px;}
.wsb{word-spacing:15.900349px;}
._8{margin-left:-17.343592px;}
._2{margin-left:-7.353600px;}
._10{margin-left:-5.330416px;}
._3{margin-left:-4.284000px;}
._5{margin-left:-3.171392px;}
._1{margin-left:-1.996800px;}
._7{width:1.269058px;}
._f{width:2.290185px;}
._6{width:3.324716px;}
._d{width:4.383964px;}
._0{width:5.587200px;}
._b{width:7.066840px;}
._a{width:8.375195px;}
._9{width:9.877221px;}
._e{width:20.318240px;}
._24{width:21.893994px;}
._c{width:29.854401px;}
._13{width:56.748060px;}
._23{width:66.169344px;}
._20{width:75.064746px;}
._1e{width:84.507200px;}
._12{width:86.736468px;}
._22{width:89.169512px;}
._1c{width:95.030239px;}
._4{width:96.146892px;}
._11{width:99.016452px;}
._1b{width:112.298727px;}
._1d{width:114.154114px;}
._18{width:118.580263px;}
._15{width:139.884696px;}
._17{width:141.369005px;}
._14{width:168.109530px;}
._16{width:197.539409px;}
._21{width:242.275274px;}
._19{width:254.784790px;}
._1a{width:264.004341px;}
._1f{width:287.646178px;}
.fc3{color:rgb(33,150,209);}
.fc2{color:rgb(46,116,163);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:26.761800px;}
.fsc{font-size:30.108600px;}
.fs9{font-size:38.255400px;}
.fse{font-size:38.256000px;}
.fsa{font-size:41.842200px;}
.fs7{font-size:42.237000px;}
.fs3{font-size:43.038000px;}
.fs6{font-size:43.249200px;}
.fsb{font-size:47.820600px;}
.fsf{font-size:51.168000px;}
.fs5{font-size:63.362400px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:80.697000px;}
.fsd{font-size:83.685000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y56{bottom:53.097757px;}
.y15{bottom:77.715000px;}
.y1f{bottom:79.392757px;}
.ye0{bottom:84.188850px;}
.y129{bottom:84.191272px;}
.y8f{bottom:84.198034px;}
.y1a{bottom:91.590000px;}
.y102{bottom:93.464434px;}
.y1e{bottom:93.732757px;}
.y128{bottom:96.096352px;}
.y14{bottom:99.795000px;}
.y8e{bottom:99.844934px;}
.ydf{bottom:105.450571px;}
.y178{bottom:106.819853px;}
.y1d{bottom:108.012757px;}
.y127{bottom:108.087507px;}
.y101{bottom:109.196216px;}
.y19{bottom:113.670000px;}
.y8d{bottom:115.577911px;}
.yde{bottom:118.290996px;}
.y177{bottom:118.724934px;}
.y126{bottom:119.992588px;}
.y54{bottom:122.456736px;}
.y100{bottom:124.843116px;}
.y176{bottom:130.715133px;}
.ydd{bottom:131.131421px;}
.y98{bottom:131.224812px;}
.y125{bottom:131.982786px;}
.y10{bottom:133.935000px;}
.y18{bottom:135.750000px;}
.y53{bottom:136.828200px;}
.yff{bottom:140.576094px;}
.y175{bottom:142.706288px;}
.y124{bottom:143.887867px;}
.ydc{bottom:143.972803px;}
.y8c{bottom:146.956593px;}
.y174{bottom:154.611368px;}
.y16{bottom:154.950000px;}
.y123{bottom:155.879022px;}
.yf{bottom:156.015000px;}
.yfe{bottom:156.222994px;}
.ydb{bottom:156.813228px;}
.y17{bottom:157.830000px;}
.y97{bottom:162.603494px;}
.ya9{bottom:162.688375px;}
.y173{bottom:166.601567px;}
.y122{bottom:167.869221px;}
.y4f{bottom:168.207000px;}
.yda{bottom:169.654609px;}
.yfd{bottom:171.954776px;}
.y4e{bottom:172.969500px;}
.y8b{bottom:178.336471px;}
.y172{bottom:178.506647px;}
.y121{bottom:179.774301px;}
.y4d{bottom:182.494536px;}
.yd9{bottom:182.495034px;}
.yfc{bottom:187.601676px;}
.y171{bottom:190.497803px;}
.y120{bottom:191.764500px;}
.y96{bottom:193.983371px;}
.y8a{bottom:194.068253px;}
.yd8{bottom:195.420577px;}
.y4c{bottom:196.866000px;}
.y170{bottom:202.488001px;}
.yfb{bottom:203.333458px;}
.yd7{bottom:208.261959px;}
.y89{bottom:209.715153px;}
.y16f{bottom:214.393082px;}
.yfa{bottom:218.981554px;}
.y11f{bottom:219.324703px;}
.yd6{bottom:221.102384px;}
.y95{bottom:225.362054px;}
.y88{bottom:225.446935px;}
.y16e{bottom:226.383281px;}
.yd5{bottom:233.942809px;}
.yf9{bottom:234.713336px;}
.y16d{bottom:238.289317px;}
.y87{bottom:241.095031px;}
.yd4{bottom:246.784190px;}
.y4b{bottom:250.187638px;}
.y16c{bottom:250.279516px;}
.yf8{bottom:250.360236px;}
.y94{bottom:256.741931px;}
.y86{bottom:256.826813px;}
.y16b{bottom:262.184597px;}
.y11e{bottom:263.459530px;}
.y4a{bottom:265.834538px;}
.yf7{bottom:266.092018px;}
.yd3{bottom:266.512500px;}
.y85{bottom:272.473713px;}
.y16a{bottom:274.175752px;}
.y11d{bottom:279.191312px;}
.y49{bottom:281.567516px;}
.yf6{bottom:281.740114px;}
.y169{bottom:286.165951px;}
.yd2{bottom:286.242036px;}
.ya8{bottom:288.120614px;}
.y84{bottom:288.205495px;}
.y11c{bottom:294.839408px;}
.y48{bottom:297.214416px;}
.yf5{bottom:297.471896px;}
.y168{bottom:298.071031px;}
.yd1{bottom:300.613500px;}
.y83{bottom:303.853591px;}
.y167{bottom:310.061230px;}
.y11b{bottom:310.571190px;}
.y47{bottom:312.946198px;}
.yf4{bottom:313.118796px;}
.ya7{bottom:319.500491px;}
.y82{bottom:319.585373px;}
.y166{bottom:321.967267px;}
.y11a{bottom:326.218090px;}
.y46{bottom:328.593098px;}
.yf3{bottom:328.850578px;}
.y165{bottom:333.957465px;}
.yd0{bottom:334.632734px;}
.ya6{bottom:335.232273px;}
.y81{bottom:335.317155px;}
.y45{bottom:344.326076px;}
.yf2{bottom:344.497478px;}
.ya{bottom:344.680500px;}
.y164{bottom:345.947664px;}
.ycf{bottom:350.279634px;}
.y80{bottom:350.964055px;}
.y119{bottom:357.597968px;}
.y163{bottom:357.852745px;}
.y44{bottom:359.972976px;}
.yf1{bottom:360.230456px;}
.yce{bottom:366.012612px;}
.ya5{bottom:366.610955px;}
.y7f{bottom:366.697032px;}
.y162{bottom:369.843900px;}
.y43{bottom:375.704758px;}
.yf0{bottom:375.877356px;}
.ycd{bottom:381.659512px;}
.y161{bottom:381.748980px;}
.y7e{bottom:382.343933px;}
.yd{bottom:386.490000px;}
.y42{bottom:391.351658px;}
.yef{bottom:391.609138px;}
.y118{bottom:392.038364px;}
.y160{bottom:393.739179px;}
.y9{bottom:395.689500px;}
.ycc{bottom:397.391294px;}
.ya4{bottom:397.990833px;}
.y7d{bottom:398.075715px;}
.y15f{bottom:405.730334px;}
.y41{bottom:407.084636px;}
.yee{bottom:407.256038px;}
.y117{bottom:407.685264px;}
.ycb{bottom:413.038194px;}
.y7c{bottom:413.722615px;}
.y15e{bottom:417.635415px;}
.y40{bottom:422.731536px;}
.yed{bottom:422.989016px;}
.y116{bottom:423.417046px;}
.yca{bottom:428.771172px;}
.ya3{bottom:429.369515px;}
.y7b{bottom:429.455592px;}
.y15d{bottom:429.625613px;}
.yb{bottom:434.850000px;}
.y3f{bottom:438.463318px;}
.yec{bottom:438.635916px;}
.y15c{bottom:441.530694px;}
.y7a{bottom:445.102493px;}
.y8{bottom:446.698500px;}
.y15b{bottom:453.521849px;}
.yeb{bottom:454.367698px;}
.y115{bottom:454.796924px;}
.yc9{bottom:460.149854px;}
.ya2{bottom:460.749393px;}
.y79{bottom:460.834275px;}
.y15a{bottom:465.426929px;}
.y3e{bottom:469.842000px;}
.yea{bottom:470.014598px;}
.y78{bottom:476.481175px;}
.y159{bottom:477.417128px;}
.ye9{bottom:485.747576px;}
.y11{bottom:488.055000px;}
.y114{bottom:489.237320px;}
.y158{bottom:489.407327px;}
.yc8{bottom:491.869258px;}
.ya1{bottom:492.128075px;}
.y77{bottom:492.212957px;}
.y7{bottom:497.707500px;}
.y157{bottom:501.313364px;}
.ye8{bottom:501.394476px;}
.y113{bottom:504.884220px;}
.yc7{bottom:507.601040px;}
.y76{bottom:507.861053px;}
.y156{bottom:513.303562px;}
.ye7{bottom:517.126258px;}
.y112{bottom:520.616002px;}
.yc6{bottom:523.249136px;}
.ya0{bottom:523.507953px;}
.y75{bottom:523.592835px;}
.y155{bottom:525.208643px;}
.y3d{bottom:525.630287px;}
.ye6{bottom:532.773158px;}
.y111{bottom:536.262903px;}
.y154{bottom:537.198842px;}
.y12{bottom:538.230000px;}
.yc5{bottom:538.980917px;}
.y74{bottom:539.239735px;}
.y3c{bottom:539.916751px;}
.ye5{bottom:548.506136px;}
.y6{bottom:548.716500px;}
.y153{bottom:549.189997px;}
.y110{bottom:551.995880px;}
.y3b{bottom:554.288215px;}
.yc4{bottom:554.627818px;}
.y9f{bottom:554.886635px;}
.y73{bottom:554.971517px;}
.y152{bottom:561.095077px;}
.ye4{bottom:564.153036px;}
.y34{bottom:564.747419px;}
.y10f{bottom:567.642780px;}
.y3a{bottom:568.659679px;}
.yc3{bottom:570.359600px;}
.y72{bottom:570.619613px;}
.y151{bottom:573.085276px;}
.y33{bottom:577.588800px;}
.ye3{bottom:579.884818px;}
.y39{bottom:582.946143px;}
.y10e{bottom:583.374562px;}
.y150{bottom:584.991313px;}
.yc2{bottom:586.006500px;}
.yc1{bottom:586.010673px;}
.y9e{bottom:586.266513px;}
.y71{bottom:586.351394px;}
.y1b{bottom:589.605000px;}
.y32{bottom:590.429225px;}
.ye2{bottom:595.616600px;}
.y14f{bottom:596.981512px;}
.y38{bottom:597.317608px;}
.y5{bottom:599.725500px;}
.yc0{bottom:601.743650px;}
.y70{bottom:601.998295px;}
.y31{bottom:603.269650px;}
.y14e{bottom:608.886592px;}
.ye1{bottom:611.263500px;}
.y37{bottom:611.689072px;}
.y10d{bottom:614.754440px;}
.y30{bottom:616.196150px;}
.ybf{bottom:617.390550px;}
.y6f{bottom:617.730077px;}
.y14d{bottom:620.876791px;}
.y36{bottom:626.060536px;}
.y2f{bottom:629.036575px;}
.ye{bottom:631.920000px;}
.y14c{bottom:632.867946px;}
.ybe{bottom:633.122332px;}
.y6e{bottom:633.376977px;}
.y35{bottom:640.347000px;}
.y2e{bottom:641.877000px;}
.y14b{bottom:644.773027px;}
.y104{bottom:644.938036px;}
.ybd{bottom:648.769233px;}
.y6d{bottom:649.109954px;}
.y10c{bottom:649.194836px;}
.y14a{bottom:656.763225px;}
.y103{bottom:659.224500px;}
.ybc{bottom:664.502210px;}
.y6c{bottom:664.756855px;}
.y10b{bottom:664.841736px;}
.y149{bottom:668.668306px;}
.y2d{bottom:669.685500px;}
.ybb{bottom:680.149110px;}
.y6b{bottom:680.488637px;}
.y10a{bottom:680.573518px;}
.y148{bottom:680.659461px;}
.y147{bottom:692.649660px;}
.yba{bottom:695.880892px;}
.y6a{bottom:696.135537px;}
.y109{bottom:696.221614px;}
.y146{bottom:704.554740px;}
.yb9{bottom:711.527793px;}
.y69{bottom:711.868514px;}
.y108{bottom:711.953396px;}
.y145{bottom:716.545895px;}
.y2c{bottom:719.092500px;}
.y2b{bottom:723.345000px;}
.yb8{bottom:727.259574px;}
.y93{bottom:727.515415px;}
.y107{bottom:727.600296px;}
.y144{bottom:728.450976px;}
.y2a{bottom:731.934000px;}
.y29{bottom:736.186500px;}
.y143{bottom:740.441174px;}
.yb7{bottom:742.907670px;}
.y68{bottom:743.247197px;}
.y106{bottom:743.332078px;}
.y28{bottom:744.859500px;}
.y27{bottom:749.112000px;}
.y142{bottom:752.346255px;}
.yb6{bottom:758.639452px;}
.y92{bottom:758.894097px;}
.y105{bottom:758.978978px;}
.y141{bottom:764.337410px;}
.y25{bottom:769.522690px;}
.yb5{bottom:774.286352px;}
.y9d{bottom:774.627074px;}
.y67{bottom:774.711956px;}
.y140{bottom:776.327609px;}
.y26{bottom:776.580000px;}
.y4{bottom:778.225500px;}
.y13f{bottom:788.232689px;}
.y22{bottom:788.910000px;}
.yb4{bottom:790.018134px;}
.y91{bottom:790.273975px;}
.y66{bottom:790.358856px;}
.y24{bottom:795.969000px;}
.y23{bottom:796.053000px;}
.y13e{bottom:800.222888px;}
.yb3{bottom:805.666230px;}
.y9c{bottom:806.005756px;}
.y65{bottom:806.090638px;}
.y13d{bottom:812.128925px;}
.y13{bottom:815.670000px;}
.yb2{bottom:821.398012px;}
.y64{bottom:821.737538px;}
.y13c{bottom:824.119124px;}
.y21{bottom:826.412716px;}
.y13b{bottom:836.109322px;}
.yb1{bottom:837.129794px;}
.y9b{bottom:837.385634px;}
.y63{bottom:837.470516px;}
.y13a{bottom:848.014403px;}
.y20{bottom:852.264000px;}
.yb0{bottom:852.776694px;}
.y62{bottom:853.117416px;}
.y139{bottom:860.005558px;}
.yaf{bottom:868.509672px;}
.y9a{bottom:868.764316px;}
.y61{bottom:868.849198px;}
.y138{bottom:871.910638px;}
.y137{bottom:883.900837px;}
.yae{bottom:884.156572px;}
.y60{bottom:884.496098px;}
.y136{bottom:895.806874px;}
.y17a{bottom:898.272435px;}
.yad{bottom:899.888354px;}
.y99{bottom:900.144194px;}
.y5f{bottom:900.229076px;}
.y3{bottom:905.716500px;}
.y135{bottom:907.797073px;}
.yac{bottom:915.535254px;}
.y5e{bottom:915.875976px;}
.y134{bottom:919.787272px;}
.y52{bottom:931.096500px;}
.yab{bottom:931.268232px;}
.y5d{bottom:931.607758px;}
.y133{bottom:931.692352px;}
.y132{bottom:943.683507px;}
.y5c{bottom:947.254658px;}
.y131{bottom:955.588588px;}
.yaa{bottom:962.646914px;}
.y5b{bottom:962.987636px;}
.y2{bottom:964.228500px;}
.y130{bottom:967.578786px;}
.y51{bottom:971.490000px;}
.y5a{bottom:978.634536px;}
.y12f{bottom:979.568985px;}
.y1{bottom:989.716500px;}
.y12e{bottom:991.475022px;}
.y59{bottom:994.366318px;}
.y12d{bottom:1003.465221px;}
.y58{bottom:1010.013218px;}
.y50{bottom:1014.009000px;}
.y12c{bottom:1015.370301px;}
.y57{bottom:1025.745000px;}
.y12b{bottom:1027.360500px;}
.y1c{bottom:1054.632757px;}
.y12a{bottom:1055.075068px;}
.y179{bottom:1055.082276px;}
.y90{bottom:1055.083500px;}
.y55{bottom:1055.097757px;}
.h10{height:23.521113px;}
.h16{height:26.462637px;}
.h1b{height:26.702269px;}
.h4{height:33.000000px;}
.h11{height:33.622910px;}
.h19{height:33.623438px;}
.h1a{height:34.077888px;}
.h18{height:34.478653px;}
.h1c{height:36.564511px;}
.h12{height:36.775371px;}
.hf{height:37.122363px;}
.hb{height:37.826367px;}
.he{height:38.011992px;}
.h13{height:42.029824px;}
.h14{height:45.625634px;}
.hd{height:55.689609px;}
.h3{height:58.406250px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hc{height:70.925098px;}
.h17{height:73.551270px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.ha{height:1113.750000px;}
.h15{height:1114.015500px;}
.h9{height:1114.015503px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wb{width:816.375000px;}
.wc{width:816.378000px;}
.w9{width:816.378021px;}
.wa{width:816.750000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xb{left:58.335000px;}
.x36{left:59.611675px;}
.x1a{left:64.800000px;}
.x22{left:66.075450px;}
.x2c{left:67.438382px;}
.x31{left:68.966076px;}
.x1e{left:76.449339px;}
.x2d{left:85.381121px;}
.x34{left:94.138130px;}
.x2f{left:107.573377px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x21{left:138.697414px;}
.x30{left:152.303552px;}
.x19{left:154.941000px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.xc{left:192.699000px;}
.x28{left:194.910000px;}
.xd{left:198.736500px;}
.x7{left:200.715000px;}
.xe{left:203.244000px;}
.xf{left:209.962500px;}
.x10{left:214.470000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x33{left:240.744299px;}
.xa{left:249.450000px;}
.x29{left:258.859500px;}
.x23{left:282.753489px;}
.x1b{left:287.770643px;}
.x2e{left:291.258294px;}
.x1d{left:296.617500px;}
.x27{left:304.270500px;}
.x24{left:307.159263px;}
.x1c{left:308.434297px;}
.x11{left:345.514500px;}
.x12{left:352.147500px;}
.x13{left:356.655000px;}
.x14{left:364.563000px;}
.x32{left:402.570000px;}
.x2b{left:405.255000px;}
.x2a{left:490.140000px;}
.x15{left:492.123000px;}
.x16{left:498.841500px;}
.x1f{left:582.344662px;}
.x20{left:590.677402px;}
.x25{left:628.519705px;}
.x17{left:636.180000px;}
.x18{left:642.897000px;}
.x26{left:652.925479px;}
.x35{left:743.236629px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.115099pt;}
.v3{vertical-align:8.766437pt;}
.v2{vertical-align:10.886094pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:8.692722pt;}
.ls5{letter-spacing:8.994524pt;}
.lse{letter-spacing:8.998774pt;}
.ls4{letter-spacing:9.300575pt;}
.ls2{letter-spacing:9.598126pt;}
.ls3{letter-spacing:9.602376pt;}
.ls8{letter-spacing:9.899927pt;}
.ls6{letter-spacing:9.904178pt;}
.ls7{letter-spacing:10.201728pt;}
.ls10{letter-spacing:10.205979pt;}
.ls9{letter-spacing:10.507780pt;}
.ls14{letter-spacing:11.362032pt;}
.lsf{letter-spacing:11.413183pt;}
.ls15{letter-spacing:11.664254pt;}
.lsa{letter-spacing:12.624638pt;}
.lsc{letter-spacing:13.223990pt;}
.lsb{letter-spacing:13.228241pt;}
.ls1{letter-spacing:16.922845pt;}
.ls11{letter-spacing:17.502271pt;}
.ls13{letter-spacing:17.801513pt;}
.ls12{letter-spacing:17.804913pt;}
.ls16{letter-spacing:22.069738pt;}
.wsd{word-spacing:-24.675120pt;}
.ws4{word-spacing:-21.538128pt;}
.ws5{word-spacing:-21.017085pt;}
.ws0{word-spacing:-16.874667pt;}
.ws7{word-spacing:-12.454610pt;}
.ws9{word-spacing:-11.209008pt;}
.ws8{word-spacing:-10.626800pt;}
.ws2{word-spacing:-10.329120pt;}
.ws6{word-spacing:-9.963406pt;}
.wse{word-spacing:-9.564000pt;}
.wsa{word-spacing:-8.943403pt;}
.wsc{word-spacing:-8.501200pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:13.160064pt;}
.wsb{word-spacing:14.133644pt;}
._8{margin-left:-15.416526pt;}
._2{margin-left:-6.536533pt;}
._10{margin-left:-4.738148pt;}
._3{margin-left:-3.808000pt;}
._5{margin-left:-2.819015pt;}
._1{margin-left:-1.774933pt;}
._7{width:1.128051pt;}
._f{width:2.035720pt;}
._6{width:2.955303pt;}
._d{width:3.896857pt;}
._0{width:4.966400pt;}
._b{width:6.281635pt;}
._a{width:7.444618pt;}
._9{width:8.779752pt;}
._e{width:18.060658pt;}
._24{width:19.461328pt;}
._c{width:26.537245pt;}
._13{width:50.442720pt;}
._23{width:58.817194pt;}
._20{width:66.724219pt;}
._1e{width:75.117511pt;}
._12{width:77.099083pt;}
._22{width:79.261788pt;}
._1c{width:84.471324pt;}
._4{width:85.463904pt;}
._11{width:88.014624pt;}
._1b{width:99.821090pt;}
._1d{width:101.470323pt;}
._18{width:105.404679pt;}
._15{width:124.341952pt;}
._17{width:125.661338pt;}
._14{width:149.430693pt;}
._16{width:175.590586pt;}
._21{width:215.355799pt;}
._19{width:226.475368pt;}
._1a{width:234.670525pt;}
._1f{width:255.685492pt;}
.fs8{font-size:23.788267pt;}
.fsc{font-size:26.763200pt;}
.fs9{font-size:34.004800pt;}
.fse{font-size:34.005333pt;}
.fsa{font-size:37.193067pt;}
.fs7{font-size:37.544000pt;}
.fs3{font-size:38.256000pt;}
.fs6{font-size:38.443733pt;}
.fsb{font-size:42.507200pt;}
.fsf{font-size:45.482667pt;}
.fs5{font-size:56.322133pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:71.730667pt;}
.fsd{font-size:74.386667pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y56{bottom:47.198006pt;}
.y15{bottom:69.080000pt;}
.y1f{bottom:70.571340pt;}
.ye0{bottom:74.834533pt;}
.y129{bottom:74.836686pt;}
.y8f{bottom:74.842696pt;}
.y1a{bottom:81.413333pt;}
.y102{bottom:83.079497pt;}
.y1e{bottom:83.318006pt;}
.y128{bottom:85.418980pt;}
.y14{bottom:88.706667pt;}
.y8e{bottom:88.751052pt;}
.ydf{bottom:93.733841pt;}
.y178{bottom:94.950981pt;}
.y1d{bottom:96.011340pt;}
.y127{bottom:96.077784pt;}
.y101{bottom:97.063303pt;}
.y19{bottom:101.040000pt;}
.y8d{bottom:102.735921pt;}
.yde{bottom:105.147552pt;}
.y177{bottom:105.533275pt;}
.y126{bottom:106.660078pt;}
.y54{bottom:108.850432pt;}
.y100{bottom:110.971659pt;}
.y176{bottom:116.191229pt;}
.ydd{bottom:116.561263pt;}
.y98{bottom:116.644277pt;}
.y125{bottom:117.318032pt;}
.y10{bottom:119.053333pt;}
.y18{bottom:120.666667pt;}
.y53{bottom:121.625067pt;}
.yff{bottom:124.956528pt;}
.y175{bottom:126.850034pt;}
.y124{bottom:127.900326pt;}
.ydc{bottom:127.975825pt;}
.y8c{bottom:130.628083pt;}
.y174{bottom:137.432327pt;}
.y16{bottom:137.733333pt;}
.y123{bottom:138.559131pt;}
.yf{bottom:138.680000pt;}
.yfe{bottom:138.864884pt;}
.ydb{bottom:139.389536pt;}
.y17{bottom:140.293333pt;}
.y97{bottom:144.536439pt;}
.ya9{bottom:144.611889pt;}
.y173{bottom:148.090282pt;}
.y122{bottom:149.217085pt;}
.y4f{bottom:149.517333pt;}
.yda{bottom:150.804097pt;}
.yfd{bottom:152.848690pt;}
.y4e{bottom:153.750667pt;}
.y8b{bottom:158.521308pt;}
.y172{bottom:158.672576pt;}
.y121{bottom:159.799379pt;}
.y4d{bottom:162.217365pt;}
.yd9{bottom:162.217808pt;}
.yfc{bottom:166.757046pt;}
.y171{bottom:169.331380pt;}
.y120{bottom:170.457333pt;}
.y96{bottom:172.429664pt;}
.y8a{bottom:172.505114pt;}
.yd8{bottom:173.707180pt;}
.y4c{bottom:174.992000pt;}
.y170{bottom:179.989335pt;}
.yfb{bottom:180.740852pt;}
.yd7{bottom:185.121741pt;}
.y89{bottom:186.413470pt;}
.y16f{bottom:190.571628pt;}
.yfa{bottom:194.650270pt;}
.y11f{bottom:194.955291pt;}
.yd6{bottom:196.535452pt;}
.y95{bottom:200.321825pt;}
.y88{bottom:200.397276pt;}
.y16e{bottom:201.229583pt;}
.yd5{bottom:207.949163pt;}
.yf9{bottom:208.634076pt;}
.y16d{bottom:211.812727pt;}
.y87{bottom:214.306694pt;}
.yd4{bottom:219.363725pt;}
.y4b{bottom:222.389012pt;}
.y16c{bottom:222.470681pt;}
.yf8{bottom:222.542432pt;}
.y94{bottom:228.215050pt;}
.y86{bottom:228.290500pt;}
.y16b{bottom:233.052975pt;}
.y11e{bottom:234.186249pt;}
.y4a{bottom:236.297367pt;}
.yf7{bottom:236.526238pt;}
.yd3{bottom:236.900000pt;}
.y85{bottom:242.198856pt;}
.y16a{bottom:243.711779pt;}
.y11d{bottom:248.170055pt;}
.y49{bottom:250.282236pt;}
.yf6{bottom:250.435657pt;}
.y169{bottom:254.369734pt;}
.yd2{bottom:254.437365pt;}
.ya8{bottom:256.107212pt;}
.y84{bottom:256.182662pt;}
.y11c{bottom:262.079474pt;}
.y48{bottom:264.190592pt;}
.yf5{bottom:264.419463pt;}
.y168{bottom:264.952028pt;}
.yd1{bottom:267.212000pt;}
.y83{bottom:270.092081pt;}
.y167{bottom:275.609982pt;}
.y11b{bottom:276.063280pt;}
.y47{bottom:278.174398pt;}
.yf4{bottom:278.327819pt;}
.ya7{bottom:284.000437pt;}
.y82{bottom:284.075887pt;}
.y166{bottom:286.193126pt;}
.y11a{bottom:289.971636pt;}
.y46{bottom:292.082754pt;}
.yf3{bottom:292.311625pt;}
.y165{bottom:296.851080pt;}
.yd0{bottom:297.451319pt;}
.ya6{bottom:297.984243pt;}
.y81{bottom:298.059693pt;}
.y45{bottom:306.067623pt;}
.yf2{bottom:306.219981pt;}
.ya{bottom:306.382667pt;}
.y164{bottom:307.509035pt;}
.ycf{bottom:311.359675pt;}
.y80{bottom:311.968049pt;}
.y119{bottom:317.864860pt;}
.y163{bottom:318.091329pt;}
.y44{bottom:319.975979pt;}
.yf1{bottom:320.204850pt;}
.yce{bottom:325.344544pt;}
.ya5{bottom:325.876405pt;}
.y7f{bottom:325.952918pt;}
.y162{bottom:328.750133pt;}
.y43{bottom:333.959785pt;}
.yf0{bottom:334.113205pt;}
.ycd{bottom:339.252900pt;}
.y161{bottom:339.332427pt;}
.y7e{bottom:339.861274pt;}
.yd{bottom:343.546667pt;}
.y42{bottom:347.868141pt;}
.yef{bottom:348.097012pt;}
.y118{bottom:348.478546pt;}
.y160{bottom:349.990381pt;}
.y9{bottom:351.724000pt;}
.ycc{bottom:353.236706pt;}
.ya4{bottom:353.769629pt;}
.y7d{bottom:353.845080pt;}
.y15f{bottom:360.649186pt;}
.y41{bottom:361.853009pt;}
.yee{bottom:362.005367pt;}
.y117{bottom:362.386902pt;}
.ycb{bottom:367.145062pt;}
.y7c{bottom:367.753436pt;}
.y15e{bottom:371.231480pt;}
.y40{bottom:375.761365pt;}
.yed{bottom:375.990236pt;}
.y116{bottom:376.370708pt;}
.yca{bottom:381.129930pt;}
.ya3{bottom:381.661791pt;}
.y7b{bottom:381.738304pt;}
.y15d{bottom:381.889434pt;}
.yb{bottom:386.533333pt;}
.y3f{bottom:389.745171pt;}
.yec{bottom:389.898592pt;}
.y15c{bottom:392.471728pt;}
.y7a{bottom:395.646660pt;}
.y8{bottom:397.065333pt;}
.y15b{bottom:403.130532pt;}
.yeb{bottom:403.882398pt;}
.y115{bottom:404.263932pt;}
.yc9{bottom:409.022092pt;}
.ya2{bottom:409.555016pt;}
.y79{bottom:409.630466pt;}
.y15a{bottom:413.712826pt;}
.y3e{bottom:417.637333pt;}
.yea{bottom:417.790754pt;}
.y78{bottom:423.538822pt;}
.y159{bottom:424.370781pt;}
.ye9{bottom:431.775623pt;}
.y11{bottom:433.826667pt;}
.y114{bottom:434.877618pt;}
.y158{bottom:435.028735pt;}
.yc8{bottom:437.217118pt;}
.ya1{bottom:437.447178pt;}
.y77{bottom:437.522628pt;}
.y7{bottom:442.406667pt;}
.y157{bottom:445.611879pt;}
.ye8{bottom:445.683979pt;}
.y113{bottom:448.785974pt;}
.yc7{bottom:451.200924pt;}
.y76{bottom:451.432047pt;}
.y156{bottom:456.269833pt;}
.ye7{bottom:459.667785pt;}
.y112{bottom:462.769780pt;}
.yc6{bottom:465.110343pt;}
.ya0{bottom:465.340403pt;}
.y75{bottom:465.415853pt;}
.y155{bottom:466.852127pt;}
.y3d{bottom:467.226922pt;}
.ye6{bottom:473.576141pt;}
.y111{bottom:476.678136pt;}
.y154{bottom:477.510082pt;}
.y12{bottom:478.426667pt;}
.yc5{bottom:479.094149pt;}
.y74{bottom:479.324209pt;}
.y3c{bottom:479.926001pt;}
.ye5{bottom:487.561009pt;}
.y6{bottom:487.748000pt;}
.y153{bottom:488.168886pt;}
.y110{bottom:490.663004pt;}
.y3b{bottom:492.700636pt;}
.yc4{bottom:493.002505pt;}
.y9f{bottom:493.232565pt;}
.y73{bottom:493.308015pt;}
.y152{bottom:498.751180pt;}
.ye4{bottom:501.469365pt;}
.y34{bottom:501.997706pt;}
.y10f{bottom:504.571360pt;}
.y3a{bottom:505.475271pt;}
.yc3{bottom:506.986311pt;}
.y72{bottom:507.217433pt;}
.y151{bottom:509.409134pt;}
.y33{bottom:513.412267pt;}
.ye3{bottom:515.453171pt;}
.y39{bottom:518.174350pt;}
.y10e{bottom:518.555166pt;}
.y150{bottom:519.992278pt;}
.yc2{bottom:520.894667pt;}
.yc1{bottom:520.898376pt;}
.y9e{bottom:521.125789pt;}
.y71{bottom:521.201240pt;}
.y1b{bottom:524.093333pt;}
.y32{bottom:524.825978pt;}
.ye2{bottom:529.436977pt;}
.y14f{bottom:530.650233pt;}
.y38{bottom:530.948985pt;}
.y5{bottom:533.089333pt;}
.yc0{bottom:534.883245pt;}
.y70{bottom:535.109595pt;}
.y31{bottom:536.239689pt;}
.y14e{bottom:541.232526pt;}
.ye1{bottom:543.345333pt;}
.y37{bottom:543.723619pt;}
.y10d{bottom:546.448391pt;}
.y30{bottom:547.729911pt;}
.ybf{bottom:548.791600pt;}
.y6f{bottom:549.093401pt;}
.y14d{bottom:551.890481pt;}
.y36{bottom:556.498254pt;}
.y2f{bottom:559.143622pt;}
.ye{bottom:561.706667pt;}
.y14c{bottom:562.549285pt;}
.ybe{bottom:562.775406pt;}
.y6e{bottom:563.001757pt;}
.y35{bottom:569.197333pt;}
.y2e{bottom:570.557333pt;}
.y14b{bottom:573.131579pt;}
.y104{bottom:573.278254pt;}
.ybd{bottom:576.683762pt;}
.y6d{bottom:576.986626pt;}
.y10c{bottom:577.062076pt;}
.y14a{bottom:583.789534pt;}
.y103{bottom:585.977333pt;}
.ybc{bottom:590.668631pt;}
.y6c{bottom:590.894982pt;}
.y10b{bottom:590.970432pt;}
.y149{bottom:594.371827pt;}
.y2d{bottom:595.276000pt;}
.ybb{bottom:604.576987pt;}
.y6b{bottom:604.878788pt;}
.y10a{bottom:604.954238pt;}
.y148{bottom:605.030632pt;}
.y147{bottom:615.688586pt;}
.yba{bottom:618.560793pt;}
.y6a{bottom:618.787144pt;}
.y109{bottom:618.863657pt;}
.y146{bottom:626.270880pt;}
.yb9{bottom:632.469149pt;}
.y69{bottom:632.772013pt;}
.y108{bottom:632.847463pt;}
.y145{bottom:636.929685pt;}
.y2c{bottom:639.193333pt;}
.y2b{bottom:642.973333pt;}
.yb8{bottom:646.452955pt;}
.y93{bottom:646.680369pt;}
.y107{bottom:646.755819pt;}
.y144{bottom:647.511978pt;}
.y2a{bottom:650.608000pt;}
.y29{bottom:654.388000pt;}
.y143{bottom:658.169933pt;}
.yb7{bottom:660.362374pt;}
.y68{bottom:660.664175pt;}
.y106{bottom:660.739625pt;}
.y28{bottom:662.097333pt;}
.y27{bottom:665.877333pt;}
.y142{bottom:668.752227pt;}
.yb6{bottom:674.346180pt;}
.y92{bottom:674.572531pt;}
.y105{bottom:674.647981pt;}
.y141{bottom:679.411031pt;}
.y25{bottom:684.020169pt;}
.yb5{bottom:688.254536pt;}
.y9d{bottom:688.557399pt;}
.y67{bottom:688.632850pt;}
.y140{bottom:690.068986pt;}
.y26{bottom:690.293333pt;}
.y4{bottom:691.756000pt;}
.y13f{bottom:700.651279pt;}
.y22{bottom:701.253333pt;}
.yb4{bottom:702.238342pt;}
.y91{bottom:702.465755pt;}
.y66{bottom:702.541205pt;}
.y24{bottom:707.528000pt;}
.y23{bottom:707.602667pt;}
.y13e{bottom:711.309234pt;}
.yb3{bottom:716.147760pt;}
.y9c{bottom:716.449561pt;}
.y65{bottom:716.525012pt;}
.y13d{bottom:721.892378pt;}
.y13{bottom:725.040000pt;}
.yb2{bottom:730.131566pt;}
.y64{bottom:730.433367pt;}
.y13c{bottom:732.550332pt;}
.y21{bottom:734.589081pt;}
.y13b{bottom:743.208287pt;}
.yb1{bottom:744.115372pt;}
.y9b{bottom:744.342786pt;}
.y63{bottom:744.418236pt;}
.y13a{bottom:753.790580pt;}
.y20{bottom:757.568000pt;}
.yb0{bottom:758.023728pt;}
.y62{bottom:758.326592pt;}
.y139{bottom:764.449385pt;}
.yaf{bottom:772.008597pt;}
.y9a{bottom:772.234948pt;}
.y61{bottom:772.310398pt;}
.y138{bottom:775.031679pt;}
.y137{bottom:785.689633pt;}
.yae{bottom:785.916953pt;}
.y60{bottom:786.218754pt;}
.y136{bottom:796.272777pt;}
.y17a{bottom:798.464386pt;}
.yad{bottom:799.900759pt;}
.y99{bottom:800.128173pt;}
.y5f{bottom:800.203623pt;}
.y3{bottom:805.081333pt;}
.y135{bottom:806.930731pt;}
.yac{bottom:813.809115pt;}
.y5e{bottom:814.111979pt;}
.y134{bottom:817.588686pt;}
.y52{bottom:827.641333pt;}
.yab{bottom:827.793984pt;}
.y5d{bottom:828.095785pt;}
.y133{bottom:828.170980pt;}
.y132{bottom:838.829784pt;}
.y5c{bottom:842.004141pt;}
.y131{bottom:849.412078pt;}
.yaa{bottom:855.686146pt;}
.y5b{bottom:855.989009pt;}
.y2{bottom:857.092000pt;}
.y130{bottom:860.070032pt;}
.y51{bottom:863.546667pt;}
.y5a{bottom:869.897365pt;}
.y12f{bottom:870.727987pt;}
.y1{bottom:879.748000pt;}
.y12e{bottom:881.311131pt;}
.y59{bottom:883.881171pt;}
.y12d{bottom:891.969085pt;}
.y58{bottom:897.789527pt;}
.y50{bottom:901.341333pt;}
.y12c{bottom:902.551379pt;}
.y57{bottom:911.773333pt;}
.y12b{bottom:913.209333pt;}
.y1c{bottom:937.451340pt;}
.y12a{bottom:937.844505pt;}
.y179{bottom:937.850912pt;}
.y90{bottom:937.852000pt;}
.y55{bottom:937.864673pt;}
.h10{height:20.907656pt;}
.h16{height:23.522344pt;}
.h1b{height:23.735350pt;}
.h4{height:29.333333pt;}
.h11{height:29.887031pt;}
.h19{height:29.887500pt;}
.h1a{height:30.291456pt;}
.h18{height:30.647691pt;}
.h1c{height:32.501788pt;}
.h12{height:32.689219pt;}
.hf{height:32.997656pt;}
.hb{height:33.623437pt;}
.he{height:33.788438pt;}
.h13{height:37.359844pt;}
.h14{height:40.556120pt;}
.hd{height:49.501875pt;}
.h3{height:51.916667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hc{height:63.044531pt;}
.h17{height:65.378906pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.ha{height:990.000000pt;}
.h15{height:990.236000pt;}
.h9{height:990.236003pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wb{width:725.666667pt;}
.wc{width:725.669333pt;}
.w9{width:725.669352pt;}
.wa{width:726.000000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xb{left:51.853333pt;}
.x36{left:52.988155pt;}
.x1a{left:57.600000pt;}
.x22{left:58.733733pt;}
.x2c{left:59.945228pt;}
.x31{left:61.303179pt;}
.x1e{left:67.954968pt;}
.x2d{left:75.894329pt;}
.x34{left:83.678337pt;}
.x2f{left:95.620779pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x21{left:123.286590pt;}
.x30{left:135.380936pt;}
.x19{left:137.725333pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.xc{left:171.288000pt;}
.x28{left:173.253333pt;}
.xd{left:176.654667pt;}
.x7{left:178.413333pt;}
.xe{left:180.661333pt;}
.xf{left:186.633333pt;}
.x10{left:190.640000pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x33{left:213.994932pt;}
.xa{left:221.733333pt;}
.x29{left:230.097333pt;}
.x23{left:251.336435pt;}
.x1b{left:255.796127pt;}
.x2e{left:258.896261pt;}
.x1d{left:263.660000pt;}
.x27{left:270.462667pt;}
.x24{left:273.030456pt;}
.x1c{left:274.163819pt;}
.x11{left:307.124000pt;}
.x12{left:313.020000pt;}
.x13{left:317.026667pt;}
.x14{left:324.056000pt;}
.x32{left:357.840000pt;}
.x2b{left:360.226667pt;}
.x2a{left:435.680000pt;}
.x15{left:437.442667pt;}
.x16{left:443.414667pt;}
.x1f{left:517.639700pt;}
.x20{left:525.046579pt;}
.x25{left:558.684182pt;}
.x17{left:565.493333pt;}
.x18{left:571.464000pt;}
.x26{left:580.378203pt;}
.x35{left:660.654781pt;}
}




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