
    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_fc4003651e5bd0d37b21424c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_ed57a2b71775654d4b15e035.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_49be6516502fc2ad287aaebf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009766;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_9b76414527db25c92b5bc926.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_28a49d7ceccb9f987d970ee7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.891113;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_010d2e346572a1fc726f709f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_48653e93f624efc1ff5ce349.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8722e9dba7cda2a0dd022d39.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_702b8d4886917162ad45de39.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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_ce7ec0038d08b467512f4de6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_024f6c021caf72071e8fe794.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m7{transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-ms-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);-webkit-transform:matrix(0.236424,0.000000,-0.080860,0.236562,0,0);}
.m9{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m4{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m8{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);}
.m2{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);}
.m0{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);}
.ma{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:32.399948px;}
.lsf{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.034380px;}
.ls10{letter-spacing:0.183050px;}
.ls0{letter-spacing:0.187842px;}
.ls2{letter-spacing:0.189300px;}
.lsd{letter-spacing:0.268506px;}
.ls3{letter-spacing:0.269351px;}
.lsa{letter-spacing:0.272296px;}
.ls6{letter-spacing:0.272340px;}
.ls4{letter-spacing:0.274424px;}
.ls8{letter-spacing:0.275982px;}
.lse{letter-spacing:0.378513px;}
.ls19{letter-spacing:0.378586px;}
.ls1e{letter-spacing:0.378599px;}
.ls14{letter-spacing:0.378601px;}
.ls20{letter-spacing:0.907599px;}
.ls1a{letter-spacing:0.909719px;}
.ls1b{letter-spacing:1.397758px;}
.ls5{letter-spacing:2.838655px;}
.ls7{letter-spacing:4.999972px;}
.ls16{letter-spacing:5.232412px;}
.ls15{letter-spacing:5.720451px;}
.ls11{letter-spacing:6.673249px;}
.lsc{letter-spacing:8.602186px;}
.ls17{letter-spacing:11.483982px;}
.ls12{letter-spacing:17.967931px;}
.lsb{letter-spacing:28.774542px;}
.ls9{letter-spacing:29.494993px;}
.ls13{letter-spacing:30.447851px;}
.ls1c{letter-spacing:64.076170px;}
.ls1d{letter-spacing:64.076417px;}
.ls21{letter-spacing:64.079934px;}
.ls22{letter-spacing:64.080617px;}
.ls1f{letter-spacing:73.441802px;}
.ls18{letter-spacing:79.433273px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(34,34,34),0 0.015em rgb(34,34,34),0.015em 0 rgb(34,34,34),0 -0.015em  rgb(34,34,34);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(34,34,34);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-35.855943px;}
.ws1{word-spacing:-23.939962px;}
.ws3{word-spacing:-16.613253px;}
.ws8{word-spacing:-15.318577px;}
.ws9{word-spacing:-15.318489px;}
.ws2{word-spacing:-14.939976px;}
.wsa{word-spacing:-13.499978px;}
.ws0{word-spacing:-12.059981px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:5.425243px;}
.ws6{word-spacing:28.475717px;}
.ws7{word-spacing:104.925895px;}
._19{margin-left:-154.821378px;}
._17{margin-left:-72.549088px;}
._16{margin-left:-34.503703px;}
._15{margin-left:-12.853638px;}
._d{margin-left:-3.972098px;}
._b{margin-left:-2.750910px;}
._0{margin-left:-1.440825px;}
._2{width:1.002395px;}
._5{width:2.563671px;}
._a{width:3.673897px;}
._9{width:4.911042px;}
._6{width:6.169221px;}
._7{width:7.178232px;}
._c{width:8.845135px;}
._8{width:10.558218px;}
._10{width:11.806326px;}
._11{width:13.085288px;}
._12{width:16.106864px;}
._f{width:17.555059px;}
._1b{width:18.803547px;}
._3d{width:19.878103px;}
._1c{width:24.227226px;}
._13{width:27.529919px;}
._14{width:28.564214px;}
._e{width:29.595663px;}
._18{width:35.680126px;}
._1a{width:37.068985px;}
._3f{width:38.248720px;}
._3e{width:39.266935px;}
._29{width:68.303147px;}
._2c{width:74.998722px;}
._36{width:82.663992px;}
._33{width:88.082681px;}
._1{width:100.137518px;}
._25{width:101.609197px;}
._34{width:104.995471px;}
._40{width:112.725299px;}
._20{width:135.344183px;}
._28{width:140.015169px;}
._30{width:142.108873px;}
._1f{width:149.793392px;}
._21{width:160.128944px;}
._1e{width:163.441750px;}
._2e{width:170.868234px;}
._41{width:173.863075px;}
._3a{width:175.141682px;}
._22{width:199.116881px;}
._3{width:231.193804px;}
._1d{width:235.751934px;}
._38{width:238.351713px;}
._2d{width:256.499646px;}
._26{width:321.647930px;}
._37{width:332.414215px;}
._35{width:347.730668px;}
._2a{width:391.610258px;}
._27{width:415.529345px;}
._2f{width:421.306438px;}
._2b{width:464.722362px;}
._39{width:467.206900px;}
._3b{width:506.248627px;}
._23{width:546.514566px;}
._24{width:613.536458px;}
._3c{width:669.328761px;}
._31{width:720.601847px;}
._32{width:948.972882px;}
._4{width:1036.866328px;}
.fc5{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,63,96);}
.fc6{color:rgb(33,33,33);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(27,27,27);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:12.239980px;}
.fs1{font-size:17.999971px;}
.fs4{font-size:23.759962px;}
.fsa{font-size:38.879938px;}
.fs5{font-size:41.759933px;}
.fs6{font-size:45.359927px;}
.fs2{font-size:48.239923px;}
.fs0{font-size:53.999914px;}
.fs3{font-size:59.759904px;}
.fsd{font-size:66.239894px;}
.fs7{font-size:71.999885px;}
.fsc{font-size:84.239865px;}
.fs8{font-size:95.759847px;}
.fs9{font-size:101.199436px;}
.y0{bottom:0.000000px;}
.y8e{bottom:3.417907px;}
.y119{bottom:3.600004px;}
.y11c{bottom:3.600032px;}
.y11f{bottom:3.600060px;}
.yea{bottom:3.777387px;}
.y96{bottom:3.779428px;}
.y9d{bottom:3.779455px;}
.yab{bottom:3.779617px;}
.yb5{bottom:3.779807px;}
.ybf{bottom:3.779969px;}
.yce{bottom:3.780105px;}
.ye0{bottom:3.780268px;}
.y9{bottom:68.700790px;}
.y8{bottom:78.780774px;}
.y7{bottom:96.421346px;}
.y12a{bottom:126.300698px;}
.y129{bottom:132.780688px;}
.ye2{bottom:136.561282px;}
.y128{bottom:137.460680px;}
.y18a{bottom:143.220671px;}
.y45{bottom:144.840668px;}
.ye4{bottom:144.841268px;}
.ydd{bottom:145.201268px;}
.y15a{bottom:151.501258px;}
.ye1{bottom:153.481254px;}
.y127{bottom:159.061246px;}
.y79{bottom:161.041242px;}
.ydc{bottom:161.401242px;}
.ye3{bottom:161.581241px;}
.y189{bottom:161.761241px;}
.y1b5{bottom:164.641237px;}
.y44{bottom:165.001236px;}
.ydf{bottom:166.260960px;}
.yde{bottom:170.041228px;}
.y159{bottom:170.221228px;}
.y126{bottom:179.401213px;}
.y78{bottom:179.761212px;}
.y188{bottom:181.201210px;}
.y1b4{bottom:183.181207px;}
.y43{bottom:183.721206px;}
.yd9{bottom:187.141201px;}
.yd7{bottom:187.321200px;}
.y158{bottom:188.761198px;}
.ydb{bottom:195.781187px;}
.y125{bottom:196.141186px;}
.y77{bottom:198.481182px;}
.y187{bottom:199.741180px;}
.y1b3{bottom:201.901177px;}
.y42{bottom:202.441176px;}
.yd6{bottom:204.061174px;}
.y157{bottom:207.301168px;}
.yda{bottom:212.161161px;}
.y124{bottom:213.781158px;}
.y76{bottom:217.021153px;}
.y186{bottom:218.281151px;}
.y1b2{bottom:220.441147px;}
.yd8{bottom:220.801147px;}
.y41{bottom:220.981146px;}
.yca{bottom:221.341146px;}
.y156{bottom:226.741137px;}
.y123{bottom:230.521131px;}
.y75{bottom:235.741123px;}
.yc9{bottom:237.541120px;}
.ycb{bottom:237.721120px;}
.yd3{bottom:238.081119px;}
.yd0{bottom:238.261119px;}
.y1b1{bottom:239.161117px;}
.y40{bottom:241.321114px;}
.y155{bottom:245.281108px;}
.y122{bottom:247.981103px;}
.y74{bottom:254.281093px;}
.yd5{bottom:254.461093px;}
.yd2{bottom:254.641093px;}
.ycf{bottom:255.001092px;}
.y185{bottom:256.441090px;}
.y1b0{bottom:257.701088px;}
.y3f{bottom:259.861084px;}
.y154{bottom:264.721076px;}
.y121{bottom:265.621075px;}
.ycd{bottom:267.960960px;}
.yd4{bottom:271.201066px;}
.yd1{bottom:271.381066px;}
.ycc{bottom:271.741065px;}
.y73{bottom:273.001063px;}
.y184{bottom:274.981060px;}
.y1af{bottom:277.141057px;}
.y3e{bottom:278.581054px;}
.y120{bottom:283.081047px;}
.y153{bottom:283.261047px;}
.yc7{bottom:288.841038px;}
.yc3{bottom:289.561037px;}
.y72{bottom:291.541034px;}
.y183{bottom:294.241029px;}
.y1ae{bottom:295.681027px;}
.y11e{bottom:296.220960px;}
.y3d{bottom:297.121025px;}
.y11d{bottom:299.821020px;}
.y152{bottom:301.801017px;}
.yc6{bottom:305.581011px;}
.yc2{bottom:306.481010px;}
.y71{bottom:310.261004px;}
.y182{bottom:313.680998px;}
.y11b{bottom:313.860960px;}
.yc8{bottom:314.040998px;}
.y1ad{bottom:314.400997px;}
.y3c{bottom:315.840995px;}
.y11a{bottom:317.460992px;}
.y151{bottom:321.240986px;}
.yc5{bottom:322.500984px;}
.ybc{bottom:322.860983px;}
.yc1{bottom:323.220983px;}
.y70{bottom:328.800974px;}
.y118{bottom:331.140960px;}
.ybb{bottom:331.320970px;}
.y181{bottom:332.400968px;}
.y1ac{bottom:332.940967px;}
.y3b{bottom:334.560965px;}
.y117{bottom:334.740964px;}
.yc4{bottom:339.240957px;}
.yc0{bottom:339.960956px;}
.y6f{bottom:347.520944px;}
.y180{bottom:350.760939px;}
.y116{bottom:352.020937px;}
.y1ab{bottom:352.380936px;}
.ybe{bottom:352.920960px;}
.y3a{bottom:354.720932px;}
.ybd{bottom:356.700929px;}
.y150{bottom:358.500926px;}
.y6e{bottom:366.240914px;}
.y115{bottom:369.480909px;}
.y17f{bottom:370.200908px;}
.y1aa{bottom:370.920907px;}
.y39{bottom:373.440902px;}
.y14f{bottom:377.940895px;}
.y6d{bottom:384.780884px;}
.y114{bottom:386.940881px;}
.y17e{bottom:388.920878px;}
.y1a9{bottom:389.640877px;}
.yb8{bottom:391.080874px;}
.y38{bottom:391.980873px;}
.y14e{bottom:396.480866px;}
.y6c{bottom:402.420856px;}
.y113{bottom:403.860854px;}
.yba{bottom:407.460848px;}
.yb7{bottom:407.820847px;}
.y1a8{bottom:408.180847px;}
.y37{bottom:410.700843px;}
.y14d{bottom:415.200836px;}
.y6b{bottom:420.420827px;}
.y112{bottom:421.320826px;}
.yb9{bottom:424.200821px;}
.yb1{bottom:424.560821px;}
.y17d{bottom:426.000818px;}
.y1a7{bottom:426.900817px;}
.y36{bottom:429.060814px;}
.yb0{bottom:433.020807px;}
.y14c{bottom:433.740806px;}
.y6a{bottom:438.780798px;}
.yb6{bottom:441.300794px;}
.y17c{bottom:445.440787px;}
.y35{bottom:449.040782px;}
.y14b{bottom:452.280776px;}
.yb4{bottom:454.440960px;}
.y111{bottom:455.700771px;}
.y69{bottom:457.500768px;}
.yb3{bottom:458.220767px;}
.y17b{bottom:464.160757px;}
.y1a6{bottom:464.880756px;}
.y14a{bottom:471.540746px;}
.y110{bottom:473.160743px;}
.y34{bottom:473.520742px;}
.yb2{bottom:474.960740px;}
.y68{bottom:476.040738px;}
.y17a{bottom:482.700728px;}
.y1a5{bottom:483.420727px;}
.y10f{bottom:489.900716px;}
.y33{bottom:492.060713px;}
.yaf{bottom:492.420712px;}
.y67{bottom:494.760708px;}
.y179{bottom:501.240698px;}
.y1a4{bottom:502.860695px;}
.y10e{bottom:507.360688px;}
.y149{bottom:508.440686px;}
.yae{bottom:509.160685px;}
.yad{bottom:509.520685px;}
.y32{bottom:509.700684px;}
.y66{bottom:513.300679px;}
.y31{bottom:519.600669px;}
.y178{bottom:520.680667px;}
.y1a3{bottom:521.400666px;}
.y10d{bottom:524.280661px;}
.ya4{bottom:526.080658px;}
.yac{bottom:526.260658px;}
.y148{bottom:527.160657px;}
.y65{bottom:532.020649px;}
.y30{bottom:538.320639px;}
.y177{bottom:539.400637px;}
.y1a2{bottom:539.940636px;}
.y10c{bottom:541.740633px;}
.ya3{bottom:542.820631px;}
.ya1{bottom:543.000631px;}
.y147{bottom:545.700627px;}
.y64{bottom:550.560619px;}
.y2f{bottom:556.860609px;}
.y176{bottom:557.940607px;}
.y10b{bottom:558.480606px;}
.y1a1{bottom:559.380605px;}
.ya2{bottom:559.740604px;}
.ya9{bottom:560.100604px;}
.y146{bottom:564.420597px;}
.ya6{bottom:568.380591px;}
.y63{bottom:569.280589px;}
.yaa{bottom:572.880960px;}
.y2e{bottom:575.580579px;}
.y10a{bottom:576.120578px;}
.y175{bottom:576.480578px;}
.ya8{bottom:576.660577px;}
.y1a0{bottom:577.920575px;}
.y145{bottom:583.140567px;}
.ya5{bottom:585.300564px;}
.y62{bottom:587.820559px;}
.y109{bottom:592.860551px;}
.ya7{bottom:593.400551px;}
.y2d{bottom:594.120549px;}
.y174{bottom:595.920547px;}
.y19f{bottom:596.460546px;}
.y144{bottom:601.680537px;}
.y61{bottom:606.180530px;}
.y108{bottom:610.320523px;}
.ya0{bottom:610.860523px;}
.y2c{bottom:612.840519px;}
.y173{bottom:614.640517px;}
.y19e{bottom:615.900515px;}
.y143{bottom:620.400507px;}
.y60{bottom:624.540501px;}
.y107{bottom:627.060497px;}
.y9f{bottom:627.600496px;}
.y98{bottom:627.960495px;}
.y2b{bottom:631.380490px;}
.y172{bottom:633.180487px;}
.y19d{bottom:634.620485px;}
.y9a{bottom:635.700483px;}
.y142{bottom:638.940478px;}
.y5f{bottom:643.260471px;}
.y9e{bottom:644.340469px;}
.y92{bottom:644.520469px;}
.y97{bottom:644.700468px;}
.y2a{bottom:650.100460px;}
.y171{bottom:651.720457px;}
.y99{bottom:652.620456px;}
.y19c{bottom:653.160455px;}
.y141{bottom:657.660448px;}
.y91{bottom:661.260442px;}
.y8f{bottom:661.440442px;}
.y5e{bottom:661.980441px;}
.y29{bottom:668.820430px;}
.y170{bottom:671.160426px;}
.y19b{bottom:672.600424px;}
.y9c{bottom:674.040960px;}
.y140{bottom:676.200418px;}
.y9b{bottom:677.820415px;}
.y90{bottom:678.180415px;}
.y5d{bottom:680.520411px;}
.y28{bottom:687.360400px;}
.y16f{bottom:689.880396px;}
.y19a{bottom:691.140394px;}
.y95{bottom:691.140960px;}
.y13f{bottom:694.560389px;}
.y94{bottom:694.920388px;}
.y106{bottom:695.820387px;}
.y5c{bottom:699.240381px;}
.y27{bottom:706.080370px;}
.y16e{bottom:708.420367px;}
.y199{bottom:709.860364px;}
.y93{bottom:711.840361px;}
.y105{bottom:712.560360px;}
.y13e{bottom:712.740360px;}
.y5b{bottom:717.780352px;}
.y26{bottom:724.620341px;}
.y16d{bottom:726.960337px;}
.y198{bottom:728.400335px;}
.y8c{bottom:729.120333px;}
.y104{bottom:729.300333px;}
.y13d{bottom:731.100330px;}
.y5a{bottom:736.500322px;}
.y8d{bottom:741.902400px;}
.y25{bottom:743.340311px;}
.y8b{bottom:745.500307px;}
.y16c{bottom:746.400306px;}
.y103{bottom:746.760305px;}
.y197{bottom:747.840303px;}
.y13c{bottom:749.640301px;}
.y59{bottom:755.040292px;}
.y24{bottom:759.360285px;}
.y8a{bottom:760.440283px;}
.y102{bottom:763.680278px;}
.y16b{bottom:765.120276px;}
.y196{bottom:766.380274px;}
.y13b{bottom:768.360271px;}
.y23{bottom:769.080269px;}
.y89{bottom:770.340267px;}
.y58{bottom:773.760262px;}
.y101{bottom:778.800254px;}
.y16a{bottom:783.660246px;}
.y195{bottom:784.920244px;}
.y13a{bottom:786.900241px;}
.y88{bottom:788.340239px;}
.y100{bottom:788.880238px;}
.y22{bottom:789.060238px;}
.y57{bottom:792.300232px;}
.y169{bottom:803.100215px;}
.y194{bottom:804.360213px;}
.y139{bottom:805.620211px;}
.yff{bottom:807.420208px;}
.y87{bottom:808.500206px;}
.y56{bottom:811.020202px;}
.y21{bottom:812.640200px;}
.y168{bottom:821.640185px;}
.y193{bottom:822.900183px;}
.y138{bottom:824.340181px;}
.yfe{bottom:826.140178px;}
.y86{bottom:826.860177px;}
.y20{bottom:828.480174px;}
.y55{bottom:829.740172px;}
.y167{bottom:840.360155px;}
.y192{bottom:842.340152px;}
.y137{bottom:842.880151px;}
.y1f{bottom:843.780150px;}
.yfd{bottom:844.500149px;}
.y85{bottom:845.400147px;}
.y54{bottom:848.820142px;}
.y1e{bottom:850.800139px;}
.y1d{bottom:854.580133px;}
.y166{bottom:858.900126px;}
.y191{bottom:861.060122px;}
.y136{bottom:861.600121px;}
.y84{bottom:864.120117px;}
.yfc{bottom:864.480117px;}
.y53{bottom:866.100114px;}
.y1c{bottom:869.520109px;}
.y1b{bottom:873.300103px;}
.y165{bottom:878.340095px;}
.y190{bottom:879.420093px;}
.y135{bottom:880.140092px;}
.yfb{bottom:882.660088px;}
.y83{bottom:882.840087px;}
.y52{bottom:883.380087px;}
.y1a{bottom:888.060079px;}
.y19{bottom:891.840073px;}
.y164{bottom:896.880065px;}
.y134{bottom:898.860062px;}
.y51{bottom:900.660059px;}
.yfa{bottom:901.200058px;}
.y82{bottom:901.380058px;}
.y18{bottom:906.780049px;}
.yf6{bottom:909.660045px;}
.y17{bottom:910.560043px;}
.y163{bottom:915.420035px;}
.y133{bottom:917.400032px;}
.y18f{bottom:917.580032px;}
.yf9{bottom:917.940031px;}
.yf5{bottom:918.120031px;}
.y50{bottom:918.840030px;}
.y81{bottom:920.100028px;}
.y16{bottom:925.140020px;}
.yf7{bottom:926.400018px;}
.yf8{bottom:934.860004px;}
.y132{bottom:936.120002px;}
.y18e{bottom:936.300002px;}
.y4f{bottom:937.560000px;}
.y80{bottom:938.639998px;}
.y14{bottom:943.139991px;}
.y15{bottom:946.919985px;}
.yf4{bottom:952.319976px;}
.y162{bottom:953.579974px;}
.y131{bottom:954.659973px;}
.y4e{bottom:956.279970px;}
.y7f{bottom:957.359968px;}
.yf0{bottom:960.779963px;}
.y13{bottom:961.319962px;}
.yf3{bottom:969.059950px;}
.yef{bottom:969.239949px;}
.y161{bottom:971.939945px;}
.y130{bottom:973.379943px;}
.y18d{bottom:974.099941px;}
.y4c{bottom:974.819940px;}
.y7e{bottom:975.899939px;}
.yf1{bottom:977.519936px;}
.y4d{bottom:978.599934px;}
.y12{bottom:981.659929px;}
.yf2{bottom:985.799923px;}
.y160{bottom:991.379914px;}
.y12f{bottom:992.099913px;}
.y18c{bottom:992.819911px;}
.y4b{bottom:993.539910px;}
.y7d{bottom:994.619909px;}
.yee{bottom:1003.439894px;}
.y15f{bottom:1010.099884px;}
.y11{bottom:1010.639883px;}
.y18b{bottom:1011.359882px;}
.y4a{bottom:1012.079881px;}
.y7c{bottom:1013.159879px;}
.yed{bottom:1020.179868px;}
.ye7{bottom:1028.639854px;}
.y12e{bottom:1029.359853px;}
.y49{bottom:1030.799851px;}
.y7b{bottom:1031.519850px;}
.yec{bottom:1036.919841px;}
.y10{bottom:1039.619837px;}
.yf{bottom:1039.799836px;}
.ye6{bottom:1045.379827px;}
.y12d{bottom:1047.899823px;}
.y15e{bottom:1048.079823px;}
.y48{bottom:1049.339821px;}
.y7a{bottom:1049.699820px;}
.yeb{bottom:1053.659814px;}
.ye5{bottom:1062.119801px;}
.y12c{bottom:1066.619793px;}
.ye9{bottom:1066.802400px;}
.ye{bottom:1067.339792px;}
.y47{bottom:1068.059791px;}
.y12b{bottom:1084.979764px;}
.y15c{bottom:1085.879763px;}
.y46{bottom:1086.599761px;}
.ye8{bottom:1087.319760px;}
.yd{bottom:1088.039759px;}
.y15d{bottom:1089.659757px;}
.y15b{bottom:1091.099754px;}
.y6{bottom:1112.879719px;}
.y5{bottom:1125.479699px;}
.y4{bottom:1133.759686px;}
.y3{bottom:1150.499659px;}
.yc{bottom:1154.819652px;}
.y2{bottom:1163.459638px;}
.yb{bottom:1168.319631px;}
.ya{bottom:1181.279610px;}
.y1{bottom:1196.039586px;}
.hf{height:8.911040px;}
.h2{height:13.104471px;}
.h5{height:15.836107px;}
.h17{height:16.200000px;}
.h1b{height:16.380000px;}
.h1a{height:16.560000px;}
.h11{height:17.297902px;}
.h12{height:17.321105px;}
.h20{height:25.913630px;}
.he{height:28.305658px;}
.hd{height:28.343627px;}
.h6{height:30.402373px;}
.h7{height:33.067564px;}
.h3{height:35.167092px;}
.h1{height:39.313414px;}
.h16{height:39.366148px;}
.h18{height:40.499935px;}
.h15{height:41.522629px;}
.h4{height:43.506844px;}
.hc{height:43.565204px;}
.h14{height:44.099929px;}
.h13{height:44.819928px;}
.h1e{height:48.224454px;}
.h1f{height:52.417885px;}
.h8{height:52.488197px;}
.h10{height:61.328925px;}
.h9{height:69.809302px;}
.hb{height:71.099886px;}
.h1c{height:72.433361px;}
.h1d{height:72.486095px;}
.ha{height:75.899577px;}
.h19{height:104.886043px;}
.h0{height:1263.000000px;}
.w3{width:3.240000px;}
.w7{width:3.780000px;}
.w2{width:5.580000px;}
.w1{width:7.560000px;}
.w6{width:8.100000px;}
.w4{width:86.040000px;}
.w5{width:87.300000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x36{left:97.379844px;}
.x1{left:107.999827px;}
.x45{left:112.499820px;}
.x3f{left:115.739815px;}
.x19{left:116.819813px;}
.x1b{left:120.419807px;}
.x26{left:121.859805px;}
.x1a{left:124.199801px;}
.x1c{left:127.799796px;}
.x1d{left:131.399790px;}
.x44{left:134.999784px;}
.x1f{left:140.039776px;}
.x1e{left:141.299774px;}
.x20{left:147.419764px;}
.x21{left:154.793752px;}
.x4{left:160.019470px;}
.x39{left:188.099149px;}
.xe{left:191.158949px;}
.x5{left:206.459670px;}
.x2b{left:219.599616px;}
.x29{left:245.519607px;}
.x27{left:248.219603px;}
.x38{left:261.718801px;}
.x25{left:288.720093px;}
.xb{left:293.759530px;}
.x10{left:296.460145px;}
.xa{left:313.559498px;}
.x28{left:317.160000px;}
.x3a{left:322.920313px;}
.x11{left:325.799479px;}
.x12{left:330.651971px;}
.x2{left:353.159877px;}
.x22{left:354.779432px;}
.x23{left:357.299428px;}
.xf{left:358.379432px;}
.x13{left:405.179352px;}
.x3b{left:407.699348px;}
.x14{left:410.031844px;}
.x24{left:413.279339px;}
.x3d{left:422.280000px;}
.x3e{left:426.059318px;}
.x47{left:427.139744px;}
.x6{left:428.399315px;}
.x40{left:429.480000px;}
.x41{left:433.259307px;}
.x34{left:437.940000px;}
.x37{left:441.179571px;}
.x3{left:446.399821px;}
.x3c{left:484.920000px;}
.x15{left:492.839211px;}
.x16{left:497.699204px;}
.x8{left:523.619125px;}
.x2c{left:534.599113px;}
.x9{left:562.313100px;}
.xc{left:564.659097px;}
.xd{left:571.319086px;}
.x17{left:591.479054px;}
.x18{left:596.339046px;}
.x7{left:598.139043px;}
.x33{left:613.440000px;}
.x43{left:692.818891px;}
.x35{left:694.078981px;}
.x2e{left:698.578826px;}
.x32{left:702.538861px;}
.x31{left:705.958860px;}
.x2d{left:707.038822px;}
.x30{left:717.478852px;}
.x2a{left:720.538847px;}
.x46{left:746.278806px;}
.x42{left:750.238800px;}
.x2f{left:779.040000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:28.799954pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.030560pt;}
.ls10{letter-spacing:0.162711pt;}
.ls0{letter-spacing:0.166971pt;}
.ls2{letter-spacing:0.168266pt;}
.lsd{letter-spacing:0.238672pt;}
.ls3{letter-spacing:0.239423pt;}
.lsa{letter-spacing:0.242041pt;}
.ls6{letter-spacing:0.242080pt;}
.ls4{letter-spacing:0.243933pt;}
.ls8{letter-spacing:0.245317pt;}
.lse{letter-spacing:0.336456pt;}
.ls19{letter-spacing:0.336521pt;}
.ls1e{letter-spacing:0.336533pt;}
.ls14{letter-spacing:0.336534pt;}
.ls20{letter-spacing:0.806754pt;}
.ls1a{letter-spacing:0.808639pt;}
.ls1b{letter-spacing:1.242451pt;}
.ls5{letter-spacing:2.523249pt;}
.ls7{letter-spacing:4.444420pt;}
.ls16{letter-spacing:4.651033pt;}
.ls15{letter-spacing:5.084845pt;}
.ls11{letter-spacing:5.931777pt;}
.lsc{letter-spacing:7.646388pt;}
.ls17{letter-spacing:10.207984pt;}
.ls12{letter-spacing:15.971494pt;}
.lsb{letter-spacing:25.577371pt;}
.ls9{letter-spacing:26.217771pt;}
.ls13{letter-spacing:27.064757pt;}
.ls1c{letter-spacing:56.956596pt;}
.ls1d{letter-spacing:56.956816pt;}
.ls21{letter-spacing:56.959942pt;}
.ls22{letter-spacing:56.960549pt;}
.ls1f{letter-spacing:65.281602pt;}
.ls18{letter-spacing:70.607354pt;}
.wsb{word-spacing:-31.871949pt;}
.ws1{word-spacing:-21.279966pt;}
.ws3{word-spacing:-14.767336pt;}
.ws8{word-spacing:-13.616513pt;}
.ws9{word-spacing:-13.616435pt;}
.ws2{word-spacing:-13.279979pt;}
.wsa{word-spacing:-11.999981pt;}
.ws0{word-spacing:-10.719983pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:4.822438pt;}
.ws6{word-spacing:25.311749pt;}
.ws7{word-spacing:93.267462pt;}
._19{margin-left:-137.619003pt;}
._17{margin-left:-64.488078pt;}
._16{margin-left:-30.669958pt;}
._15{margin-left:-11.425456pt;}
._d{margin-left:-3.530754pt;}
._b{margin-left:-2.445254pt;}
._0{margin-left:-1.280733pt;}
._2{width:0.891018pt;}
._5{width:2.278819pt;}
._a{width:3.265686pt;}
._9{width:4.365371pt;}
._6{width:5.483752pt;}
._7{width:6.380651pt;}
._c{width:7.862342pt;}
._8{width:9.385083pt;}
._10{width:10.494512pt;}
._11{width:11.631367pt;}
._12{width:14.317213pt;}
._f{width:15.604497pt;}
._1b{width:16.714264pt;}
._3d{width:17.669425pt;}
._1c{width:21.535312pt;}
._13{width:24.471039pt;}
._14{width:25.390413pt;}
._e{width:26.307256pt;}
._18{width:31.715668pt;}
._1a{width:32.950209pt;}
._3f{width:33.998862pt;}
._3e{width:34.903942pt;}
._29{width:60.713909pt;}
._2c{width:66.665530pt;}
._36{width:73.479104pt;}
._33{width:78.295716pt;}
._1{width:89.011127pt;}
._25{width:90.319286pt;}
._34{width:93.329308pt;}
._40{width:100.200266pt;}
._20{width:120.305941pt;}
._28{width:124.457928pt;}
._30{width:126.318998pt;}
._1f{width:133.149682pt;}
._21{width:142.336839pt;}
._1e{width:145.281555pt;}
._2e{width:151.882875pt;}
._41{width:154.544956pt;}
._3a{width:155.681496pt;}
._22{width:176.992783pt;}
._3{width:205.505603pt;}
._1d{width:209.557275pt;}
._38{width:211.868190pt;}
._2d{width:227.999685pt;}
._26{width:285.909271pt;}
._37{width:295.479302pt;}
._35{width:309.093927pt;}
._2a{width:348.098007pt;}
._27{width:369.359418pt;}
._2f{width:374.494612pt;}
._2b{width:413.086544pt;}
._39{width:415.295023pt;}
._3b{width:449.998780pt;}
._23{width:485.790726pt;}
._24{width:545.365741pt;}
._3c{width:594.958899pt;}
._31{width:640.534975pt;}
._32{width:843.531450pt;}
._4{width:921.658958pt;}
.fsb{font-size:10.879983pt;}
.fs1{font-size:15.999974pt;}
.fs4{font-size:21.119966pt;}
.fsa{font-size:34.559945pt;}
.fs5{font-size:37.119941pt;}
.fs6{font-size:40.319935pt;}
.fs2{font-size:42.879931pt;}
.fs0{font-size:47.999923pt;}
.fs3{font-size:53.119915pt;}
.fsd{font-size:58.879906pt;}
.fs7{font-size:63.999898pt;}
.fsc{font-size:74.879880pt;}
.fs8{font-size:85.119864pt;}
.fs9{font-size:89.955054pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:3.038140pt;}
.y119{bottom:3.200004pt;}
.y11c{bottom:3.200028pt;}
.y11f{bottom:3.200054pt;}
.yea{bottom:3.357677pt;}
.y96{bottom:3.359492pt;}
.y9d{bottom:3.359516pt;}
.yab{bottom:3.359660pt;}
.yb5{bottom:3.359828pt;}
.ybf{bottom:3.359973pt;}
.yce{bottom:3.360094pt;}
.ye0{bottom:3.360238pt;}
.y9{bottom:61.067369pt;}
.y8{bottom:70.027355pt;}
.y7{bottom:85.707863pt;}
.y12a{bottom:112.267287pt;}
.y129{bottom:118.027278pt;}
.ye2{bottom:121.387806pt;}
.y128{bottom:122.187271pt;}
.y18a{bottom:127.307263pt;}
.y45{bottom:128.747261pt;}
.ye4{bottom:128.747794pt;}
.ydd{bottom:129.067793pt;}
.y15a{bottom:134.667785pt;}
.ye1{bottom:136.427782pt;}
.y127{bottom:141.387774pt;}
.y79{bottom:143.147771pt;}
.ydc{bottom:143.467770pt;}
.ye3{bottom:143.627770pt;}
.y189{bottom:143.787770pt;}
.y1b5{bottom:146.347766pt;}
.y44{bottom:146.667765pt;}
.ydf{bottom:147.787520pt;}
.yde{bottom:151.147758pt;}
.y159{bottom:151.307758pt;}
.y126{bottom:159.467745pt;}
.y78{bottom:159.787744pt;}
.y188{bottom:161.067742pt;}
.y1b4{bottom:162.827739pt;}
.y43{bottom:163.307739pt;}
.yd9{bottom:166.347734pt;}
.yd7{bottom:166.507734pt;}
.y158{bottom:167.787732pt;}
.ydb{bottom:174.027722pt;}
.y125{bottom:174.347721pt;}
.y77{bottom:176.427718pt;}
.y187{bottom:177.547716pt;}
.y1b3{bottom:179.467713pt;}
.y42{bottom:179.947712pt;}
.yd6{bottom:181.387710pt;}
.y157{bottom:184.267705pt;}
.yda{bottom:188.587698pt;}
.y124{bottom:190.027696pt;}
.y76{bottom:192.907691pt;}
.y186{bottom:194.027690pt;}
.y1b2{bottom:195.947686pt;}
.yd8{bottom:196.267686pt;}
.y41{bottom:196.427686pt;}
.yca{bottom:196.747685pt;}
.y156{bottom:201.547678pt;}
.y123{bottom:204.907672pt;}
.y75{bottom:209.547665pt;}
.yc9{bottom:211.147662pt;}
.ycb{bottom:211.307662pt;}
.yd3{bottom:211.627661pt;}
.yd0{bottom:211.787661pt;}
.y1b1{bottom:212.587660pt;}
.y40{bottom:214.507657pt;}
.y155{bottom:218.027651pt;}
.y122{bottom:220.427647pt;}
.y74{bottom:226.027638pt;}
.yd5{bottom:226.187638pt;}
.yd2{bottom:226.347638pt;}
.ycf{bottom:226.667637pt;}
.y185{bottom:227.947635pt;}
.y1b0{bottom:229.067633pt;}
.y3f{bottom:230.987630pt;}
.y154{bottom:235.307624pt;}
.y121{bottom:236.107622pt;}
.ycd{bottom:238.187520pt;}
.yd4{bottom:241.067614pt;}
.yd1{bottom:241.227614pt;}
.ycc{bottom:241.547614pt;}
.y73{bottom:242.667612pt;}
.y184{bottom:244.427609pt;}
.y1af{bottom:246.347606pt;}
.y3e{bottom:247.627604pt;}
.y120{bottom:251.627597pt;}
.y153{bottom:251.787597pt;}
.yc7{bottom:256.747589pt;}
.yc3{bottom:257.387588pt;}
.y72{bottom:259.147585pt;}
.y183{bottom:261.547582pt;}
.y1ae{bottom:262.827579pt;}
.y11e{bottom:263.307520pt;}
.y3d{bottom:264.107577pt;}
.y11d{bottom:266.507574pt;}
.y152{bottom:268.267571pt;}
.yc6{bottom:271.627565pt;}
.yc2{bottom:272.427564pt;}
.y71{bottom:275.787559pt;}
.y182{bottom:278.827554pt;}
.y11b{bottom:278.987520pt;}
.yc8{bottom:279.147553pt;}
.y1ad{bottom:279.467553pt;}
.y3c{bottom:280.747551pt;}
.y11a{bottom:282.187548pt;}
.y151{bottom:285.547543pt;}
.yc5{bottom:286.667541pt;}
.ybc{bottom:286.987541pt;}
.yc1{bottom:287.307540pt;}
.y70{bottom:292.267532pt;}
.y118{bottom:294.347520pt;}
.ybb{bottom:294.507529pt;}
.y181{bottom:295.467527pt;}
.y1ac{bottom:295.947526pt;}
.y3b{bottom:297.387524pt;}
.y117{bottom:297.547524pt;}
.yc4{bottom:301.547518pt;}
.yc0{bottom:302.187516pt;}
.y6f{bottom:308.907506pt;}
.y180{bottom:311.787501pt;}
.y116{bottom:312.907499pt;}
.y1ab{bottom:313.227499pt;}
.ybe{bottom:313.707520pt;}
.y3a{bottom:315.307496pt;}
.ybd{bottom:317.067493pt;}
.y150{bottom:318.667490pt;}
.y6e{bottom:325.547479pt;}
.y115{bottom:328.427475pt;}
.y17f{bottom:329.067473pt;}
.y1aa{bottom:329.707472pt;}
.y39{bottom:331.947469pt;}
.y14f{bottom:335.947462pt;}
.y6d{bottom:342.027453pt;}
.y114{bottom:343.947450pt;}
.y17e{bottom:345.707447pt;}
.y1a9{bottom:346.347446pt;}
.yb8{bottom:347.627444pt;}
.y38{bottom:348.427443pt;}
.y14e{bottom:352.427436pt;}
.y6c{bottom:357.707428pt;}
.y113{bottom:358.987426pt;}
.yba{bottom:362.187420pt;}
.yb7{bottom:362.507420pt;}
.y1a8{bottom:362.827419pt;}
.y37{bottom:365.067416pt;}
.y14d{bottom:369.067409pt;}
.y6b{bottom:373.707402pt;}
.y112{bottom:374.507401pt;}
.yb9{bottom:377.067397pt;}
.yb1{bottom:377.387396pt;}
.y17d{bottom:378.667394pt;}
.y1a7{bottom:379.467393pt;}
.y36{bottom:381.387390pt;}
.yb0{bottom:384.907384pt;}
.y14c{bottom:385.547383pt;}
.y6a{bottom:390.027376pt;}
.yb6{bottom:392.267372pt;}
.y17c{bottom:395.947366pt;}
.y35{bottom:399.147361pt;}
.y14b{bottom:402.027357pt;}
.yb4{bottom:403.947520pt;}
.y111{bottom:405.067352pt;}
.y69{bottom:406.667349pt;}
.yb3{bottom:407.307348pt;}
.y17b{bottom:412.587340pt;}
.y1a6{bottom:413.227339pt;}
.y14a{bottom:419.147329pt;}
.y110{bottom:420.587327pt;}
.y34{bottom:420.907327pt;}
.yb2{bottom:422.187324pt;}
.y68{bottom:423.147323pt;}
.y17a{bottom:429.067313pt;}
.y1a5{bottom:429.707312pt;}
.y10f{bottom:435.467303pt;}
.y33{bottom:437.387300pt;}
.yaf{bottom:437.707300pt;}
.y67{bottom:439.787296pt;}
.y179{bottom:445.547287pt;}
.y1a4{bottom:446.987285pt;}
.y10e{bottom:450.987278pt;}
.y149{bottom:451.947277pt;}
.yae{bottom:452.587276pt;}
.yad{bottom:452.907275pt;}
.y32{bottom:453.067275pt;}
.y66{bottom:456.267270pt;}
.y31{bottom:461.867261pt;}
.y178{bottom:462.827259pt;}
.y1a3{bottom:463.467258pt;}
.y10d{bottom:466.027254pt;}
.ya4{bottom:467.627252pt;}
.yac{bottom:467.787252pt;}
.y148{bottom:468.587250pt;}
.y65{bottom:472.907243pt;}
.y30{bottom:478.507234pt;}
.y177{bottom:479.467233pt;}
.y1a2{bottom:479.947232pt;}
.y10c{bottom:481.547230pt;}
.ya3{bottom:482.507228pt;}
.ya1{bottom:482.667228pt;}
.y147{bottom:485.067224pt;}
.y64{bottom:489.387217pt;}
.y2f{bottom:494.987208pt;}
.y176{bottom:495.947206pt;}
.y10b{bottom:496.427206pt;}
.y1a1{bottom:497.227204pt;}
.ya2{bottom:497.547204pt;}
.ya9{bottom:497.867203pt;}
.y146{bottom:501.707197pt;}
.ya6{bottom:505.227192pt;}
.y63{bottom:506.027190pt;}
.yaa{bottom:509.227520pt;}
.y2e{bottom:511.627181pt;}
.y10a{bottom:512.107181pt;}
.y175{bottom:512.427180pt;}
.ya8{bottom:512.587180pt;}
.y1a0{bottom:513.707178pt;}
.y145{bottom:518.347171pt;}
.ya5{bottom:520.267168pt;}
.y62{bottom:522.507164pt;}
.y109{bottom:526.987157pt;}
.ya7{bottom:527.467156pt;}
.y2d{bottom:528.107155pt;}
.y174{bottom:529.707152pt;}
.y19f{bottom:530.187152pt;}
.y144{bottom:534.827144pt;}
.y61{bottom:538.827138pt;}
.y108{bottom:542.507132pt;}
.ya0{bottom:542.987131pt;}
.y2c{bottom:544.747128pt;}
.y173{bottom:546.347126pt;}
.y19e{bottom:547.467124pt;}
.y143{bottom:551.467118pt;}
.y60{bottom:555.147112pt;}
.y107{bottom:557.387108pt;}
.y9f{bottom:557.867107pt;}
.y98{bottom:558.187107pt;}
.y2b{bottom:561.227102pt;}
.y172{bottom:562.827099pt;}
.y19d{bottom:564.107097pt;}
.y9a{bottom:565.067096pt;}
.y142{bottom:567.947091pt;}
.y5f{bottom:571.787085pt;}
.y9e{bottom:572.747084pt;}
.y92{bottom:572.907083pt;}
.y97{bottom:573.067083pt;}
.y2a{bottom:577.867075pt;}
.y171{bottom:579.307073pt;}
.y99{bottom:580.107072pt;}
.y19c{bottom:580.587071pt;}
.y141{bottom:584.587065pt;}
.y91{bottom:587.787060pt;}
.y8f{bottom:587.947059pt;}
.y5e{bottom:588.427059pt;}
.y29{bottom:594.507049pt;}
.y170{bottom:596.587045pt;}
.y19b{bottom:597.867043pt;}
.y9c{bottom:599.147520pt;}
.y140{bottom:601.067038pt;}
.y9b{bottom:602.507036pt;}
.y90{bottom:602.827035pt;}
.y5d{bottom:604.907032pt;}
.y28{bottom:610.987022pt;}
.y16f{bottom:613.227019pt;}
.y19a{bottom:614.347017pt;}
.y95{bottom:614.347520pt;}
.y13f{bottom:617.387012pt;}
.y94{bottom:617.707012pt;}
.y106{bottom:618.507010pt;}
.y5c{bottom:621.547006pt;}
.y27{bottom:627.626996pt;}
.y16e{bottom:629.706992pt;}
.y199{bottom:630.986990pt;}
.y93{bottom:632.746988pt;}
.y105{bottom:633.386987pt;}
.y13e{bottom:633.546986pt;}
.y5b{bottom:638.026979pt;}
.y26{bottom:644.106969pt;}
.y16d{bottom:646.186966pt;}
.y198{bottom:647.466964pt;}
.y8c{bottom:648.106963pt;}
.y104{bottom:648.266963pt;}
.y13d{bottom:649.866960pt;}
.y5a{bottom:654.666953pt;}
.y8d{bottom:659.468800pt;}
.y25{bottom:660.746943pt;}
.y8b{bottom:662.666940pt;}
.y16c{bottom:663.466938pt;}
.y103{bottom:663.786938pt;}
.y197{bottom:664.746936pt;}
.y13c{bottom:666.346934pt;}
.y59{bottom:671.146926pt;}
.y24{bottom:674.986920pt;}
.y8a{bottom:675.946918pt;}
.y102{bottom:678.826914pt;}
.y16b{bottom:680.106912pt;}
.y196{bottom:681.226910pt;}
.y13b{bottom:682.986907pt;}
.y23{bottom:683.626906pt;}
.y89{bottom:684.746904pt;}
.y58{bottom:687.786900pt;}
.y101{bottom:692.266892pt;}
.y16a{bottom:696.586885pt;}
.y195{bottom:697.706884pt;}
.y13a{bottom:699.466881pt;}
.y88{bottom:700.746879pt;}
.y100{bottom:701.226878pt;}
.y22{bottom:701.386878pt;}
.y57{bottom:704.266873pt;}
.y169{bottom:713.866858pt;}
.y194{bottom:714.986856pt;}
.y139{bottom:716.106854pt;}
.yff{bottom:717.706852pt;}
.y87{bottom:718.666850pt;}
.y56{bottom:720.906847pt;}
.y21{bottom:722.346844pt;}
.y168{bottom:730.346831pt;}
.y193{bottom:731.466830pt;}
.y138{bottom:732.746828pt;}
.yfe{bottom:734.346825pt;}
.y86{bottom:734.986824pt;}
.y20{bottom:736.426822pt;}
.y55{bottom:737.546820pt;}
.y167{bottom:746.986805pt;}
.y192{bottom:748.746802pt;}
.y137{bottom:749.226801pt;}
.y1f{bottom:750.026800pt;}
.yfd{bottom:750.666799pt;}
.y85{bottom:751.466798pt;}
.y54{bottom:754.506793pt;}
.y1e{bottom:756.266790pt;}
.y1d{bottom:759.626785pt;}
.y166{bottom:763.466778pt;}
.y191{bottom:765.386775pt;}
.y136{bottom:765.866775pt;}
.y84{bottom:768.106771pt;}
.yfc{bottom:768.426771pt;}
.y53{bottom:769.866768pt;}
.y1c{bottom:772.906763pt;}
.y1b{bottom:776.266758pt;}
.y165{bottom:780.746751pt;}
.y190{bottom:781.706749pt;}
.y135{bottom:782.346748pt;}
.yfb{bottom:784.586745pt;}
.y83{bottom:784.746744pt;}
.y52{bottom:785.226744pt;}
.y1a{bottom:789.386737pt;}
.y19{bottom:792.746732pt;}
.y164{bottom:797.226724pt;}
.y134{bottom:798.986722pt;}
.y51{bottom:800.586719pt;}
.yfa{bottom:801.066718pt;}
.y82{bottom:801.226718pt;}
.y18{bottom:806.026710pt;}
.yf6{bottom:808.586706pt;}
.y17{bottom:809.386705pt;}
.y163{bottom:813.706698pt;}
.y133{bottom:815.466695pt;}
.y18f{bottom:815.626695pt;}
.yf9{bottom:815.946694pt;}
.yf5{bottom:816.106694pt;}
.y50{bottom:816.746693pt;}
.y81{bottom:817.866691pt;}
.y16{bottom:822.346684pt;}
.yf7{bottom:823.466682pt;}
.yf8{bottom:830.986670pt;}
.y132{bottom:832.106669pt;}
.y18e{bottom:832.266668pt;}
.y4f{bottom:833.386667pt;}
.y80{bottom:834.346665pt;}
.y14{bottom:838.346659pt;}
.y15{bottom:841.706653pt;}
.yf4{bottom:846.506646pt;}
.y162{bottom:847.626644pt;}
.y131{bottom:848.586642pt;}
.y4e{bottom:850.026640pt;}
.y7f{bottom:850.986638pt;}
.yf0{bottom:854.026634pt;}
.y13{bottom:854.506633pt;}
.yf3{bottom:861.386622pt;}
.yef{bottom:861.546622pt;}
.y161{bottom:863.946618pt;}
.y130{bottom:865.226616pt;}
.y18d{bottom:865.866615pt;}
.y4c{bottom:866.506614pt;}
.y7e{bottom:867.466612pt;}
.yf1{bottom:868.906610pt;}
.y4d{bottom:869.866608pt;}
.y12{bottom:872.586604pt;}
.yf2{bottom:876.266598pt;}
.y160{bottom:881.226590pt;}
.y12f{bottom:881.866589pt;}
.y18c{bottom:882.506588pt;}
.y4b{bottom:883.146587pt;}
.y7d{bottom:884.106585pt;}
.yee{bottom:891.946573pt;}
.y15f{bottom:897.866563pt;}
.y11{bottom:898.346563pt;}
.y18b{bottom:898.986562pt;}
.y4a{bottom:899.626561pt;}
.y7c{bottom:900.586559pt;}
.yed{bottom:906.826549pt;}
.ye7{bottom:914.346537pt;}
.y12e{bottom:914.986536pt;}
.y49{bottom:916.266534pt;}
.y7b{bottom:916.906533pt;}
.yec{bottom:921.706525pt;}
.y10{bottom:924.106521pt;}
.yf{bottom:924.266521pt;}
.ye6{bottom:929.226513pt;}
.y12d{bottom:931.466510pt;}
.y15e{bottom:931.626509pt;}
.y48{bottom:932.746508pt;}
.y7a{bottom:933.066507pt;}
.yeb{bottom:936.586501pt;}
.ye5{bottom:944.106489pt;}
.y12c{bottom:948.106483pt;}
.ye9{bottom:948.268800pt;}
.ye{bottom:948.746482pt;}
.y47{bottom:949.386481pt;}
.y12b{bottom:964.426457pt;}
.y15c{bottom:965.226456pt;}
.y46{bottom:965.866455pt;}
.ye8{bottom:966.506454pt;}
.yd{bottom:967.146453pt;}
.y15d{bottom:968.586450pt;}
.y15b{bottom:969.866448pt;}
.y6{bottom:989.226417pt;}
.y5{bottom:1000.426399pt;}
.y4{bottom:1007.786388pt;}
.y3{bottom:1022.666364pt;}
.yc{bottom:1026.506358pt;}
.y2{bottom:1034.186345pt;}
.yb{bottom:1038.506338pt;}
.ya{bottom:1050.026320pt;}
.y1{bottom:1063.146299pt;}
.hf{height:7.920925pt;}
.h2{height:11.648419pt;}
.h5{height:14.076540pt;}
.h17{height:14.400000pt;}
.h1b{height:14.560000pt;}
.h1a{height:14.720000pt;}
.h11{height:15.375913pt;}
.h12{height:15.396538pt;}
.h20{height:23.034338pt;}
.he{height:25.160585pt;}
.hd{height:25.194335pt;}
.h6{height:27.024332pt;}
.h7{height:29.393390pt;}
.h3{height:31.259637pt;}
.h1{height:34.945257pt;}
.h16{height:34.992132pt;}
.h18{height:35.999942pt;}
.h15{height:36.909003pt;}
.h4{height:38.672751pt;}
.hc{height:38.724626pt;}
.h14{height:39.199937pt;}
.h13{height:39.839936pt;}
.h1e{height:42.866181pt;}
.h1f{height:46.593675pt;}
.h8{height:46.656175pt;}
.h10{height:54.514600pt;}
.h9{height:62.052713pt;}
.hb{height:63.199899pt;}
.h1c{height:64.385209pt;}
.h1d{height:64.432084pt;}
.ha{height:67.466291pt;}
.h19{height:93.232038pt;}
.h0{height:1122.666667pt;}
.w3{width:2.880000pt;}
.w7{width:3.360000pt;}
.w2{width:4.960000pt;}
.w1{width:6.720000pt;}
.w6{width:7.200000pt;}
.w4{width:76.480000pt;}
.w5{width:77.600000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x36{left:86.559862pt;}
.x1{left:95.999846pt;}
.x45{left:99.999840pt;}
.x3f{left:102.879835pt;}
.x19{left:103.839834pt;}
.x1b{left:107.039829pt;}
.x26{left:108.319827pt;}
.x1a{left:110.399823pt;}
.x1c{left:113.599818pt;}
.x1d{left:116.799813pt;}
.x44{left:119.999808pt;}
.x1f{left:124.479801pt;}
.x1e{left:125.599799pt;}
.x20{left:131.039790pt;}
.x21{left:137.594447pt;}
.x4{left:142.239529pt;}
.x39{left:167.199244pt;}
.xe{left:169.919066pt;}
.x5{left:183.519706pt;}
.x2b{left:195.199658pt;}
.x29{left:218.239651pt;}
.x27{left:220.639647pt;}
.x38{left:232.638935pt;}
.x25{left:256.640082pt;}
.xb{left:261.119582pt;}
.x10{left:263.520129pt;}
.xa{left:278.719554pt;}
.x28{left:281.920000pt;}
.x3a{left:287.040278pt;}
.x11{left:289.599537pt;}
.x12{left:293.912863pt;}
.x2{left:313.919891pt;}
.x22{left:315.359495pt;}
.x23{left:317.599492pt;}
.xf{left:318.559495pt;}
.x13{left:360.159424pt;}
.x3b{left:362.399420pt;}
.x14{left:364.472750pt;}
.x24{left:367.359412pt;}
.x3d{left:375.360000pt;}
.x3e{left:378.719394pt;}
.x47{left:379.679772pt;}
.x6{left:380.799391pt;}
.x40{left:381.760000pt;}
.x41{left:385.119384pt;}
.x34{left:389.280000pt;}
.x37{left:392.159619pt;}
.x3{left:396.799841pt;}
.x3c{left:431.040000pt;}
.x15{left:438.079299pt;}
.x16{left:442.399292pt;}
.x8{left:465.439222pt;}
.x2c{left:475.199212pt;}
.x9{left:499.833867pt;}
.xc{left:501.919197pt;}
.xd{left:507.839187pt;}
.x17{left:525.759159pt;}
.x18{left:530.079152pt;}
.x7{left:531.679149pt;}
.x33{left:545.280000pt;}
.x43{left:615.839015pt;}
.x35{left:616.959095pt;}
.x2e{left:620.958957pt;}
.x32{left:624.478988pt;}
.x31{left:627.518987pt;}
.x2d{left:628.478953pt;}
.x30{left:637.758980pt;}
.x2a{left:640.478975pt;}
.x46{left:663.358939pt;}
.x42{left:666.878933pt;}
.x2f{left:692.480000pt;}
}




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