
    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_bb8b9e44e27b4d1177c81065.woff')format("woff");}.ff1{font-family:ff1;line-height:1.140625;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_1e45856edd264c5df0bedb59.woff')format("woff");}.ff2{font-family:ff2;line-height:0.682617;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_83260e03082d1b757217b256.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_d8788e3eaa94e2b96f6416d5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_bd3e26d4aef0a0617b1c5c6c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_4c65a3c76ea5fa02d9684229.woff')format("woff");}.ff6{font-family:ff6;line-height:1.122070;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_3aeadc50d4dad08d124e4b8d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.145508;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;}
.m1{transform:matrix(0.095455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095455,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235295,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.236363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236363,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.237132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237132,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.m7{transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.v2{vertical-align:-74.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2b{letter-spacing:-1.626000px;}
.ls23{letter-spacing:-1.614000px;}
.ls45{letter-spacing:-1.590000px;}
.ls22{letter-spacing:-1.542000px;}
.ls3b{letter-spacing:-1.044000px;}
.ls47{letter-spacing:-0.936000px;}
.ls46{letter-spacing:-0.930000px;}
.ls9{letter-spacing:-0.906000px;}
.ls2f{letter-spacing:-0.894000px;}
.ls48{letter-spacing:-0.888000px;}
.ls1b{letter-spacing:-0.822000px;}
.lsd{letter-spacing:-0.732000px;}
.ls3f{letter-spacing:-0.558000px;}
.ls50{letter-spacing:-0.495000px;}
.ls2c{letter-spacing:-0.452400px;}
.ls17{letter-spacing:-0.450000px;}
.ls10{letter-spacing:-0.397200px;}
.ls4a{letter-spacing:-0.291000px;}
.ls40{letter-spacing:-0.270000px;}
.ls3d{letter-spacing:-0.259200px;}
.ls49{letter-spacing:-0.256200px;}
.ls53{letter-spacing:-0.243000px;}
.ls3e{letter-spacing:-0.224400px;}
.lsc{letter-spacing:-0.216000px;}
.ls44{letter-spacing:-0.201600px;}
.ls1c{letter-spacing:-0.187200px;}
.ls39{letter-spacing:-0.182400px;}
.lsf{letter-spacing:-0.181200px;}
.ls8{letter-spacing:-0.175800px;}
.lse{letter-spacing:-0.166800px;}
.ls3{letter-spacing:-0.164400px;}
.ls32{letter-spacing:-0.162000px;}
.ls21{letter-spacing:-0.158400px;}
.ls20{letter-spacing:-0.156000px;}
.ls4b{letter-spacing:-0.150000px;}
.ls5{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.132600px;}
.ls41{letter-spacing:-0.118800px;}
.ls7{letter-spacing:-0.100800px;}
.ls12{letter-spacing:-0.090000px;}
.ls6{letter-spacing:-0.072000px;}
.ls31{letter-spacing:-0.045000px;}
.ls1d{letter-spacing:-0.028800px;}
.lsb{letter-spacing:-0.002880px;}
.ls4{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.009000px;}
.ls18{letter-spacing:0.036000px;}
.ls4e{letter-spacing:0.071925px;}
.ls4c{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.108000px;}
.ls4d{letter-spacing:0.116400px;}
.ls38{letter-spacing:0.135000px;}
.ls0{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.162000px;}
.ls30{letter-spacing:0.182400px;}
.ls2d{letter-spacing:0.194400px;}
.ls43{letter-spacing:0.221760px;}
.ls52{letter-spacing:0.252000px;}
.ls3c{letter-spacing:0.262200px;}
.ls24{letter-spacing:0.276000px;}
.ls1{letter-spacing:0.306000px;}
.ls54{letter-spacing:0.315000px;}
.ls1e{letter-spacing:0.322800px;}
.ls1f{letter-spacing:0.331200px;}
.ls2e{letter-spacing:0.342000px;}
.ls19{letter-spacing:0.405000px;}
.ls51{letter-spacing:0.468000px;}
.ls1a{letter-spacing:0.522000px;}
.ls3a{letter-spacing:0.599400px;}
.ls14{letter-spacing:0.810000px;}
.ls26{letter-spacing:0.836923px;}
.ls4f{letter-spacing:2.105931px;}
.ls28{letter-spacing:2.870928px;}
.ls33{letter-spacing:3.323334px;}
.ls27{letter-spacing:3.635925px;}
.ls16{letter-spacing:5.592000px;}
.ls36{letter-spacing:8.117760px;}
.ls37{letter-spacing:8.141760px;}
.ls35{letter-spacing:9.581760px;}
.ls34{letter-spacing:12.594240px;}
.ls15{letter-spacing:17.501760px;}
.ls29{letter-spacing:21.821760px;}
.ls2a{letter-spacing:29.021760px;}
.ls42{letter-spacing:29.741760px;}
.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;}
}
.ws4{word-spacing:-65.160000px;}
.ws2{word-spacing:-65.016000px;}
.ws3{word-spacing:-64.944000px;}
.ws1{word-spacing:-39.600000px;}
.ws17{word-spacing:-25.530240px;}
.ws32{word-spacing:-20.537640px;}
.ws29{word-spacing:-20.280240px;}
.ws21{word-spacing:-20.269440px;}
.ws20{word-spacing:-20.261040px;}
.ws2b{word-spacing:-20.214240px;}
.ws34{word-spacing:-20.200440px;}
.ws28{word-spacing:-20.132640px;}
.ws44{word-spacing:-20.054640px;}
.ws43{word-spacing:-20.010240px;}
.ws6{word-spacing:-19.938240px;}
.wsb{word-spacing:-19.935360px;}
.ws1f{word-spacing:-19.909440px;}
.ws2f{word-spacing:-19.848240px;}
.ws7{word-spacing:-19.837440px;}
.wsa{word-spacing:-19.805640px;}
.ws42{word-spacing:-19.788240px;}
.ws22{word-spacing:-19.782240px;}
.ws23{word-spacing:-19.779840px;}
.ws0{word-spacing:-19.773840px;}
.wse{word-spacing:-19.771440px;}
.ws8{word-spacing:-19.762440px;}
.wsf{word-spacing:-19.757040px;}
.ws31{word-spacing:-19.755840px;}
.ws1e{word-spacing:-19.751040px;}
.ws3b{word-spacing:-19.736640px;}
.wsc{word-spacing:-19.722240px;}
.ws36{word-spacing:-19.713840px;}
.ws40{word-spacing:-19.682040px;}
.ws35{word-spacing:-19.679040px;}
.ws41{word-spacing:-19.647240px;}
.ws10{word-spacing:-19.541040px;}
.ws27{word-spacing:-19.485840px;}
.wsd{word-spacing:-19.206240px;}
.ws1d{word-spacing:-19.116240px;}
.ws3f{word-spacing:-19.050240px;}
.ws2a{word-spacing:-19.044240px;}
.ws9{word-spacing:-19.032240px;}
.ws3d{word-spacing:-19.008240px;}
.ws3e{word-spacing:-19.002240px;}
.ws33{word-spacing:-18.894240px;}
.ws24{word-spacing:-18.396240px;}
.ws3c{word-spacing:-18.348240px;}
.ws25{word-spacing:-18.324240px;}
.ws26{word-spacing:-18.312240px;}
.ws14{word-spacing:-17.064000px;}
.ws1c{word-spacing:-16.776000px;}
.ws47{word-spacing:-16.722000px;}
.ws1b{word-spacing:-16.659000px;}
.ws18{word-spacing:-16.613280px;}
.ws4a{word-spacing:-16.569000px;}
.ws48{word-spacing:-16.506000px;}
.ws13{word-spacing:-16.416000px;}
.ws30{word-spacing:-16.389000px;}
.ws15{word-spacing:-16.362000px;}
.ws11{word-spacing:-16.344000px;}
.ws46{word-spacing:-16.326000px;}
.ws1a{word-spacing:-16.290000px;}
.ws2c{word-spacing:-16.263000px;}
.ws5{word-spacing:-16.254000px;}
.ws2d{word-spacing:-16.209000px;}
.ws12{word-spacing:-16.164000px;}
.ws37{word-spacing:-16.110000px;}
.ws2e{word-spacing:-16.092000px;}
.ws49{word-spacing:-16.011000px;}
.ws39{word-spacing:-15.984000px;}
.ws19{word-spacing:-15.804000px;}
.ws45{word-spacing:-15.759000px;}
.ws38{word-spacing:-15.696000px;}
.ws3a{word-spacing:-14.401440px;}
.ws16{word-spacing:0.000000px;}
._2{margin-left:-28.944000px;}
._3{margin-left:-13.680000px;}
._6{margin-left:-12.624000px;}
._5{margin-left:-11.580000px;}
._13{margin-left:-7.807118px;}
._18{margin-left:-6.323040px;}
._f{margin-left:-4.861680px;}
._9{margin-left:-3.756240px;}
._1{margin-left:-2.428800px;}
._0{margin-left:-1.315440px;}
._4{width:1.296000px;}
._11{width:2.325954px;}
._a{width:4.239360px;}
._b{width:5.422320px;}
._c{width:6.888960px;}
._e{width:8.147520px;}
._14{width:9.259272px;}
._12{width:10.598400px;}
._16{width:12.468480px;}
._d{width:14.018160px;}
._10{width:15.168960px;}
._1d{width:16.475040px;}
._15{width:17.487360px;}
._17{width:18.613440px;}
._1c{width:21.390240px;}
._1f{width:22.455360px;}
._8{width:23.576883px;}
._7{width:24.695867px;}
._1b{width:26.850240px;}
._1a{width:28.442160px;}
._19{width:29.705040px;}
._22{width:35.245440px;}
._21{width:37.110720px;}
._20{width:39.786240px;}
._1e{width:56.116800px;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:23.760000px;}
.fsb{font-size:33.120000px;}
.fsf{font-size:45.360000px;}
.fse{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:69.120000px;}
.fs9{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fsc{font-size:81.360000px;}
.fs7{font-size:84.240000px;}
.fs5{font-size:87.120000px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.860000px;}
.y31{bottom:5.220000px;}
.y2{bottom:5.580000px;}
.y4{bottom:5.940000px;}
.y5{bottom:52.200000px;}
.y30{bottom:52.920000px;}
.y3{bottom:53.100000px;}
.y5c{bottom:61.380000px;}
.y8{bottom:61.560000px;}
.y146{bottom:117.360000px;}
.y9c{bottom:123.300000px;}
.y85{bottom:124.020000px;}
.ydc{bottom:124.200000px;}
.y120{bottom:124.380000px;}
.y51{bottom:124.740000px;}
.y5b{bottom:124.920000px;}
.y2e{bottom:125.460000px;}
.y145{bottom:133.020000px;}
.ye0{bottom:140.940000px;}
.y2d{bottom:141.660000px;}
.y9b{bottom:145.620000px;}
.y84{bottom:146.340000px;}
.ydb{bottom:146.520000px;}
.yfb{bottom:146.700000px;}
.y112{bottom:146.880000px;}
.y50{bottom:147.060000px;}
.ybc{bottom:147.240000px;}
.y5a{bottom:147.420000px;}
.y49{bottom:147.780000px;}
.y144{bottom:149.760000px;}
.y2c{bottom:157.860000px;}
.ydf{bottom:162.360000px;}
.y143{bottom:165.810000px;}
.y9a{bottom:167.970000px;}
.y83{bottom:168.690000px;}
.yda{bottom:168.870000px;}
.yfa{bottom:169.050000px;}
.y111{bottom:169.230000px;}
.y4f{bottom:169.590000px;}
.y59{bottom:169.770000px;}
.y48{bottom:170.130000px;}
.y2b{bottom:173.910000px;}
.y142{bottom:181.470000px;}
.y2a{bottom:189.930000px;}
.y99{bottom:190.470000px;}
.y82{bottom:191.010000px;}
.yd9{bottom:191.190000px;}
.yf9{bottom:191.370000px;}
.y110{bottom:191.550000px;}
.y4e{bottom:191.910000px;}
.y58{bottom:192.090000px;}
.y47{bottom:192.450000px;}
.y141{bottom:198.390000px;}
.y29{bottom:207.390000px;}
.y98{bottom:212.790000px;}
.y81{bottom:213.330000px;}
.yd8{bottom:213.690000px;}
.y10f{bottom:213.870000px;}
.y4d{bottom:214.230000px;}
.y57{bottom:214.410000px;}
.y46{bottom:214.950000px;}
.y28{bottom:224.850000px;}
.y140{bottom:230.610000px;}
.y97{bottom:235.110000px;}
.yd7{bottom:236.010000px;}
.yf8{bottom:236.190000px;}
.y80{bottom:236.370000px;}
.y4c{bottom:236.550000px;}
.y56{bottom:236.730000px;}
.y45{bottom:237.270000px;}
.y27{bottom:242.310000px;}
.y13f{bottom:246.270000px;}
.y96{bottom:257.430000px;}
.yd6{bottom:258.330000px;}
.yf7{bottom:258.510000px;}
.y7f{bottom:258.690000px;}
.y4b{bottom:258.870000px;}
.y55{bottom:259.230000px;}
.y44{bottom:259.590000px;}
.y26{bottom:259.770000px;}
.y13e{bottom:263.190000px;}
.y25{bottom:277.050000px;}
.y4a{bottom:278.850000px;}
.y13d{bottom:279.210000px;}
.y95{bottom:279.750000px;}
.yd5{bottom:280.650000px;}
.yf6{bottom:280.830000px;}
.y7e{bottom:281.010000px;}
.ybb{bottom:281.370000px;}
.y54{bottom:281.550000px;}
.y43{bottom:281.910000px;}
.y24{bottom:294.510000px;}
.y13c{bottom:295.050000px;}
.y94{bottom:299.910000px;}
.yd4{bottom:300.450000px;}
.yf5{bottom:300.810000px;}
.y11f{bottom:303.150000px;}
.y7d{bottom:303.330000px;}
.yba{bottom:303.690000px;}
.y53{bottom:303.870000px;}
.y42{bottom:304.230000px;}
.y13b{bottom:311.610000px;}
.y23{bottom:311.970000px;}
.y52{bottom:323.670000px;}
.y10e{bottom:325.650000px;}
.y7c{bottom:325.830000px;}
.yb9{bottom:326.010000px;}
.y41{bottom:326.550000px;}
.y13a{bottom:327.270000px;}
.yf4{bottom:327.450000px;}
.y22{bottom:329.430000px;}
.y139{bottom:344.010000px;}
.y10d{bottom:345.450000px;}
.y11e{bottom:345.990000px;}
.y21{bottom:347.070000px;}
.y7b{bottom:348.150000px;}
.yb8{bottom:348.330000px;}
.y40{bottom:349.050000px;}
.yf3{bottom:349.770000px;}
.y138{bottom:360.210000px;}
.y7a{bottom:370.290000px;}
.y93{bottom:370.470000px;}
.yb7{bottom:370.650000px;}
.y10c{bottom:371.190000px;}
.y3f{bottom:371.370000px;}
.yf2{bottom:372.090000px;}
.y20{bottom:374.970000px;}
.y137{bottom:376.050000px;}
.y79{bottom:390.270000px;}
.y11d{bottom:390.450000px;}
.yde{bottom:390.855000px;}
.y136{bottom:392.655000px;}
.y92{bottom:392.835000px;}
.yb6{bottom:393.015000px;}
.y3e{bottom:393.735000px;}
.yf1{bottom:394.455000px;}
.y1f{bottom:399.495000px;}
.ydd{bottom:400.215000px;}
.y135{bottom:408.855000px;}
.y91{bottom:415.335000px;}
.yb5{bottom:415.515000px;}
.y78{bottom:415.875000px;}
.y3d{bottom:416.055000px;}
.yd2{bottom:416.235000px;}
.y11c{bottom:416.415000px;}
.y1e{bottom:416.775000px;}
.yf0{bottom:416.955000px;}
.yd1{bottom:433.695000px;}
.yd0{bottom:435.135000px;}
.yb4{bottom:435.495000px;}
.y134{bottom:436.935000px;}
.y1d{bottom:437.655000px;}
.yd3{bottom:438.015000px;}
.y77{bottom:438.195000px;}
.y10b{bottom:438.375000px;}
.y11b{bottom:438.735000px;}
.yef{bottom:439.275000px;}
.y3c{bottom:442.515000px;}
.y1c{bottom:459.975000px;}
.ycf{bottom:460.335000px;}
.y76{bottom:460.515000px;}
.y10a{bottom:460.695000px;}
.y3b{bottom:461.055000px;}
.yee{bottom:461.595000px;}
.yb3{bottom:461.775000px;}
.y133{bottom:473.295000px;}
.y90{bottom:482.295000px;}
.y1b{bottom:482.475000px;}
.y75{bottom:482.835000px;}
.y109{bottom:483.015000px;}
.y11a{bottom:483.375000px;}
.yed{bottom:483.915000px;}
.yb2{bottom:484.095000px;}
.y3a{bottom:488.775000px;}
.y132{bottom:490.575000px;}
.y8f{bottom:504.615000px;}
.y1a{bottom:504.795000px;}
.y74{bottom:505.155000px;}
.yce{bottom:505.335000px;}
.y119{bottom:505.875000px;}
.yec{bottom:506.235000px;}
.yb1{bottom:506.415000px;}
.y131{bottom:508.035000px;}
.y39{bottom:512.355000px;}
.y130{bottom:525.495000px;}
.y8e{bottom:526.935000px;}
.y19{bottom:527.115000px;}
.ycd{bottom:527.655000px;}
.y108{bottom:527.835000px;}
.y118{bottom:528.195000px;}
.y73{bottom:528.375000px;}
.yeb{bottom:528.555000px;}
.yb0{bottom:528.735000px;}
.y38{bottom:529.815000px;}
.ybf{bottom:538.635000px;}
.y12f{bottom:542.955000px;}
.y37{bottom:547.275000px;}
.ycc{bottom:547.635000px;}
.y18{bottom:549.435000px;}
.y107{bottom:549.975000px;}
.y117{bottom:550.515000px;}
.y72{bottom:550.875000px;}
.yaf{bottom:551.055000px;}
.y12e{bottom:560.235000px;}
.ybe{bottom:560.775000px;}
.y36{bottom:564.735000px;}
.y106{bottom:570.135000px;}
.y17{bottom:571.755000px;}
.y116{bottom:572.835000px;}
.ycb{bottom:573.015000px;}
.y71{bottom:573.195000px;}
.yae{bottom:573.375000px;}
.y12d{bottom:577.695000px;}
.y35{bottom:581.835000px;}
.y16{bottom:594.075000px;}
.y115{bottom:595.155000px;}
.yca{bottom:595.335000px;}
.y70{bottom:595.515000px;}
.yea{bottom:595.695000px;}
.yad{bottom:595.875000px;}
.y105{bottom:596.595000px;}
.y12c{bottom:612.615000px;}
.y8d{bottom:613.335000px;}
.y15{bottom:616.395000px;}
.y114{bottom:617.475000px;}
.yc9{bottom:617.655000px;}
.y6f{bottom:617.835000px;}
.ye9{bottom:618.015000px;}
.yac{bottom:618.195000px;}
.y104{bottom:618.945000px;}
.y12b{bottom:630.105000px;}
.y8c{bottom:633.705000px;}
.yc8{bottom:640.005000px;}
.y6e{bottom:640.185000px;}
.ye8{bottom:640.365000px;}
.yab{bottom:640.545000px;}
.y103{bottom:641.265000px;}
.y14{bottom:642.885000px;}
.y12a{bottom:647.385000px;}
.y8b{bottom:649.905000px;}
.y113{bottom:659.985000px;}
.y13{bottom:661.425000px;}
.yc7{bottom:662.325000px;}
.y6d{bottom:662.685000px;}
.yaa{bottom:662.865000px;}
.y102{bottom:663.585000px;}
.y129{bottom:664.845000px;}
.y8a{bottom:671.685000px;}
.y128{bottom:682.305000px;}
.yc6{bottom:684.645000px;}
.y6c{bottom:685.005000px;}
.ya9{bottom:685.185000px;}
.y101{bottom:686.085000px;}
.y12{bottom:687.525000px;}
.y127{bottom:699.765000px;}
.y11{bottom:704.085000px;}
.y6b{bottom:707.325000px;}
.ya8{bottom:707.505000px;}
.yc5{bottom:708.045000px;}
.y100{bottom:708.405000px;}
.y126{bottom:717.045000px;}
.y10{bottom:721.545000px;}
.y6a{bottom:729.645000px;}
.ye7{bottom:729.825000px;}
.ya7{bottom:730.005000px;}
.yc4{bottom:730.365000px;}
.yff{bottom:730.725000px;}
.y125{bottom:734.505000px;}
.yf{bottom:739.005000px;}
.y69{bottom:751.965000px;}
.ye6{bottom:752.145000px;}
.ya6{bottom:752.325000px;}
.yc3{bottom:752.865000px;}
.yfe{bottom:753.045000px;}
.ye{bottom:756.465000px;}
.y124{bottom:769.425000px;}
.y68{bottom:771.945000px;}
.yd{bottom:774.105000px;}
.ye5{bottom:774.465000px;}
.ya5{bottom:774.645000px;}
.yc2{bottom:775.185000px;}
.yfd{bottom:775.365000px;}
.y123{bottom:786.705000px;}
.ye4{bottom:794.265000px;}
.ya4{bottom:796.965000px;}
.y67{bottom:797.505000px;}
.yfc{bottom:797.685000px;}
.y122{bottom:804.165000px;}
.ya3{bottom:816.765000px;}
.y66{bottom:819.825000px;}
.ye3{bottom:820.185000px;}
.y121{bottom:821.625000px;}
.yc{bottom:841.245000px;}
.y65{bottom:842.145000px;}
.ya2{bottom:842.505000px;}
.y64{bottom:864.510000px;}
.ya1{bottom:864.870000px;}
.y63{bottom:886.830000px;}
.yc1{bottom:887.010000px;}
.ya0{bottom:887.190000px;}
.yb{bottom:908.970000px;}
.y62{bottom:909.330000px;}
.ye2{bottom:909.510000px;}
.y9f{bottom:909.690000px;}
.y61{bottom:931.470000px;}
.yc0{bottom:931.650000px;}
.y9e{bottom:932.010000px;}
.y60{bottom:951.450000px;}
.y9d{bottom:954.330000px;}
.y89{bottom:974.850000px;}
.ya{bottom:976.650000px;}
.y88{bottom:986.370000px;}
.ybd{bottom:990.510000px;}
.y5f{bottom:998.970000px;}
.y34{bottom:999.870000px;}
.y87{bottom:1002.570000px;}
.y33{bottom:1016.070000px;}
.y5e{bottom:1018.410000px;}
.y86{bottom:1018.950000px;}
.ye1{bottom:1024.530000px;}
.y9{bottom:1038.030000px;}
.y5d{bottom:1038.930000px;}
.y32{bottom:1039.470000px;}
.y1{bottom:1060.890000px;}
.y2f{bottom:1062.690000px;}
.y7{bottom:1092.600000px;}
.h5{height:18.900000px;}
.h1a{height:22.251797px;}
.h1{height:22.536000px;}
.h11{height:23.940000px;}
.h3{height:24.300000px;}
.h18{height:31.017656px;}
.h1c{height:42.259219px;}
.h4{height:44.149219px;}
.hc{height:50.308594px;}
.h10{height:50.572266px;}
.h12{height:52.991719px;}
.h8{height:55.674844px;}
.he{height:58.100625px;}
.hd{height:60.741562px;}
.h2{height:61.711875px;}
.h16{height:62.035312px;}
.h6{height:62.327813px;}
.h17{height:64.395000px;}
.h9{height:65.124096px;}
.h7{height:66.082500px;}
.h15{height:67.078125px;}
.h1d{height:69.086250px;}
.h1b{height:71.305312px;}
.h14{height:72.444375px;}
.hb{height:74.068594px;}
.h19{height:75.798281px;}
.h13{height:78.481406px;}
.h1e{height:79.888359px;}
.hf{height:81.164531px;}
.ha{height:201.234375px;}
.h0{height:1188.000000px;}
.w2{width:38.916000px;}
.w3{width:167.580000px;}
.w6{width:210.990000px;}
.w1{width:215.490000px;}
.w5{width:317.955000px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:1.404000px;}
.x4{left:5.220000px;}
.x6{left:69.294000px;}
.x8{left:71.999986px;}
.x3{left:79.560000px;}
.x15{left:80.999986px;}
.xa{left:82.079986px;}
.x1{left:101.376000px;}
.x11{left:116.685000px;}
.x5{left:118.656000px;}
.x30{left:120.095986px;}
.x1e{left:122.975986px;}
.x7{left:165.954000px;}
.x12{left:177.885000px;}
.x13{left:196.785000px;}
.xc{left:198.029986px;}
.x14{left:203.445000px;}
.x16{left:217.289986px;}
.x20{left:247.169986px;}
.x26{left:275.249986px;}
.xf{left:311.295000px;}
.x1d{left:315.974986px;}
.x1f{left:319.214986px;}
.x21{left:326.954986px;}
.x19{left:330.014986px;}
.x18{left:339.014986px;}
.x2d{left:356.654986px;}
.x2c{left:380.954986px;}
.xd{left:466.814986px;}
.xb{left:468.074986px;}
.xe{left:495.975000px;}
.x17{left:502.094986px;}
.x22{left:503.174986px;}
.x25{left:528.944986px;}
.x28{left:568.904986px;}
.x24{left:575.204986px;}
.x27{left:579.164986px;}
.x23{left:581.144986px;}
.x1c{left:588.164986px;}
.x1a{left:597.164986px;}
.x2a{left:606.344986px;}
.x10{left:630.645000px;}
.x2e{left:639.104986px;}
.x31{left:671.324986px;}
.x32{left:675.284986px;}
.x2f{left:791.249986px;}
.x29{left:793.229986px;}
.x1b{left:814.649986px;}
.x9{left:826.529986px;}
.x2b{left:838.409986px;}
@media print{
.v2{vertical-align:-66.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2b{letter-spacing:-1.445333pt;}
.ls23{letter-spacing:-1.434667pt;}
.ls45{letter-spacing:-1.413333pt;}
.ls22{letter-spacing:-1.370667pt;}
.ls3b{letter-spacing:-0.928000pt;}
.ls47{letter-spacing:-0.832000pt;}
.ls46{letter-spacing:-0.826667pt;}
.ls9{letter-spacing:-0.805333pt;}
.ls2f{letter-spacing:-0.794667pt;}
.ls48{letter-spacing:-0.789333pt;}
.ls1b{letter-spacing:-0.730667pt;}
.lsd{letter-spacing:-0.650667pt;}
.ls3f{letter-spacing:-0.496000pt;}
.ls50{letter-spacing:-0.440000pt;}
.ls2c{letter-spacing:-0.402133pt;}
.ls17{letter-spacing:-0.400000pt;}
.ls10{letter-spacing:-0.353067pt;}
.ls4a{letter-spacing:-0.258667pt;}
.ls40{letter-spacing:-0.240000pt;}
.ls3d{letter-spacing:-0.230400pt;}
.ls49{letter-spacing:-0.227733pt;}
.ls53{letter-spacing:-0.216000pt;}
.ls3e{letter-spacing:-0.199467pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls44{letter-spacing:-0.179200pt;}
.ls1c{letter-spacing:-0.166400pt;}
.ls39{letter-spacing:-0.162133pt;}
.lsf{letter-spacing:-0.161067pt;}
.ls8{letter-spacing:-0.156267pt;}
.lse{letter-spacing:-0.148267pt;}
.ls3{letter-spacing:-0.146133pt;}
.ls32{letter-spacing:-0.144000pt;}
.ls21{letter-spacing:-0.140800pt;}
.ls20{letter-spacing:-0.138667pt;}
.ls4b{letter-spacing:-0.133333pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.117867pt;}
.ls41{letter-spacing:-0.105600pt;}
.ls7{letter-spacing:-0.089600pt;}
.ls12{letter-spacing:-0.080000pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls31{letter-spacing:-0.040000pt;}
.ls1d{letter-spacing:-0.025600pt;}
.lsb{letter-spacing:-0.002560pt;}
.ls4{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.008000pt;}
.ls18{letter-spacing:0.032000pt;}
.ls4e{letter-spacing:0.063934pt;}
.ls4c{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls4d{letter-spacing:0.103467pt;}
.ls38{letter-spacing:0.120000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.144000pt;}
.ls30{letter-spacing:0.162133pt;}
.ls2d{letter-spacing:0.172800pt;}
.ls43{letter-spacing:0.197120pt;}
.ls52{letter-spacing:0.224000pt;}
.ls3c{letter-spacing:0.233067pt;}
.ls24{letter-spacing:0.245333pt;}
.ls1{letter-spacing:0.272000pt;}
.ls54{letter-spacing:0.280000pt;}
.ls1e{letter-spacing:0.286933pt;}
.ls1f{letter-spacing:0.294400pt;}
.ls2e{letter-spacing:0.304000pt;}
.ls19{letter-spacing:0.360000pt;}
.ls51{letter-spacing:0.416000pt;}
.ls1a{letter-spacing:0.464000pt;}
.ls3a{letter-spacing:0.532800pt;}
.ls14{letter-spacing:0.720000pt;}
.ls26{letter-spacing:0.743931pt;}
.ls4f{letter-spacing:1.871939pt;}
.ls28{letter-spacing:2.551936pt;}
.ls33{letter-spacing:2.954075pt;}
.ls27{letter-spacing:3.231934pt;}
.ls16{letter-spacing:4.970667pt;}
.ls36{letter-spacing:7.215787pt;}
.ls37{letter-spacing:7.237120pt;}
.ls35{letter-spacing:8.517120pt;}
.ls34{letter-spacing:11.194880pt;}
.ls15{letter-spacing:15.557120pt;}
.ls29{letter-spacing:19.397120pt;}
.ls2a{letter-spacing:25.797120pt;}
.ls42{letter-spacing:26.437120pt;}
.ws4{word-spacing:-57.920000pt;}
.ws2{word-spacing:-57.792000pt;}
.ws3{word-spacing:-57.728000pt;}
.ws1{word-spacing:-35.200000pt;}
.ws17{word-spacing:-22.693547pt;}
.ws32{word-spacing:-18.255680pt;}
.ws29{word-spacing:-18.026880pt;}
.ws21{word-spacing:-18.017280pt;}
.ws20{word-spacing:-18.009813pt;}
.ws2b{word-spacing:-17.968213pt;}
.ws34{word-spacing:-17.955947pt;}
.ws28{word-spacing:-17.895680pt;}
.ws44{word-spacing:-17.826347pt;}
.ws43{word-spacing:-17.786880pt;}
.ws6{word-spacing:-17.722880pt;}
.wsb{word-spacing:-17.720320pt;}
.ws1f{word-spacing:-17.697280pt;}
.ws2f{word-spacing:-17.642880pt;}
.ws7{word-spacing:-17.633280pt;}
.wsa{word-spacing:-17.605013pt;}
.ws42{word-spacing:-17.589547pt;}
.ws22{word-spacing:-17.584213pt;}
.ws23{word-spacing:-17.582080pt;}
.ws0{word-spacing:-17.576747pt;}
.wse{word-spacing:-17.574613pt;}
.ws8{word-spacing:-17.566613pt;}
.wsf{word-spacing:-17.561813pt;}
.ws31{word-spacing:-17.560747pt;}
.ws1e{word-spacing:-17.556480pt;}
.ws3b{word-spacing:-17.543680pt;}
.wsc{word-spacing:-17.530880pt;}
.ws36{word-spacing:-17.523413pt;}
.ws40{word-spacing:-17.495147pt;}
.ws35{word-spacing:-17.492480pt;}
.ws41{word-spacing:-17.464213pt;}
.ws10{word-spacing:-17.369813pt;}
.ws27{word-spacing:-17.320747pt;}
.wsd{word-spacing:-17.072213pt;}
.ws1d{word-spacing:-16.992213pt;}
.ws3f{word-spacing:-16.933547pt;}
.ws2a{word-spacing:-16.928213pt;}
.ws9{word-spacing:-16.917547pt;}
.ws3d{word-spacing:-16.896213pt;}
.ws3e{word-spacing:-16.890880pt;}
.ws33{word-spacing:-16.794880pt;}
.ws24{word-spacing:-16.352213pt;}
.ws3c{word-spacing:-16.309547pt;}
.ws25{word-spacing:-16.288213pt;}
.ws26{word-spacing:-16.277547pt;}
.ws14{word-spacing:-15.168000pt;}
.ws1c{word-spacing:-14.912000pt;}
.ws47{word-spacing:-14.864000pt;}
.ws1b{word-spacing:-14.808000pt;}
.ws18{word-spacing:-14.767360pt;}
.ws4a{word-spacing:-14.728000pt;}
.ws48{word-spacing:-14.672000pt;}
.ws13{word-spacing:-14.592000pt;}
.ws30{word-spacing:-14.568000pt;}
.ws15{word-spacing:-14.544000pt;}
.ws11{word-spacing:-14.528000pt;}
.ws46{word-spacing:-14.512000pt;}
.ws1a{word-spacing:-14.480000pt;}
.ws2c{word-spacing:-14.456000pt;}
.ws5{word-spacing:-14.448000pt;}
.ws2d{word-spacing:-14.408000pt;}
.ws12{word-spacing:-14.368000pt;}
.ws37{word-spacing:-14.320000pt;}
.ws2e{word-spacing:-14.304000pt;}
.ws49{word-spacing:-14.232000pt;}
.ws39{word-spacing:-14.208000pt;}
.ws19{word-spacing:-14.048000pt;}
.ws45{word-spacing:-14.008000pt;}
.ws38{word-spacing:-13.952000pt;}
.ws3a{word-spacing:-12.801280pt;}
.ws16{word-spacing:0.000000pt;}
._2{margin-left:-25.728000pt;}
._3{margin-left:-12.160000pt;}
._6{margin-left:-11.221333pt;}
._5{margin-left:-10.293333pt;}
._13{margin-left:-6.939661pt;}
._18{margin-left:-5.620480pt;}
._f{margin-left:-4.321493pt;}
._9{margin-left:-3.338880pt;}
._1{margin-left:-2.158933pt;}
._0{margin-left:-1.169280pt;}
._4{width:1.152000pt;}
._11{width:2.067514pt;}
._a{width:3.768320pt;}
._b{width:4.819840pt;}
._c{width:6.123520pt;}
._e{width:7.242240pt;}
._14{width:8.230464pt;}
._12{width:9.420800pt;}
._16{width:11.083093pt;}
._d{width:12.460587pt;}
._10{width:13.483520pt;}
._1d{width:14.644480pt;}
._15{width:15.544320pt;}
._17{width:16.545280pt;}
._1c{width:19.013547pt;}
._1f{width:19.960320pt;}
._8{width:20.957229pt;}
._7{width:21.951882pt;}
._1b{width:23.866880pt;}
._1a{width:25.281920pt;}
._19{width:26.404480pt;}
._22{width:31.329280pt;}
._21{width:32.987307pt;}
._20{width:35.365547pt;}
._1e{width:49.881600pt;}
.fsd{font-size:21.120000pt;}
.fsb{font-size:29.440000pt;}
.fsf{font-size:40.320000pt;}
.fse{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:61.440000pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fsc{font-size:72.320000pt;}
.fs7{font-size:74.880000pt;}
.fs5{font-size:77.440000pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.320000pt;}
.y31{bottom:4.640000pt;}
.y2{bottom:4.960000pt;}
.y4{bottom:5.280000pt;}
.y5{bottom:46.400000pt;}
.y30{bottom:47.040000pt;}
.y3{bottom:47.200000pt;}
.y5c{bottom:54.560000pt;}
.y8{bottom:54.720000pt;}
.y146{bottom:104.320000pt;}
.y9c{bottom:109.600000pt;}
.y85{bottom:110.240000pt;}
.ydc{bottom:110.400000pt;}
.y120{bottom:110.560000pt;}
.y51{bottom:110.880000pt;}
.y5b{bottom:111.040000pt;}
.y2e{bottom:111.520000pt;}
.y145{bottom:118.240000pt;}
.ye0{bottom:125.280000pt;}
.y2d{bottom:125.920000pt;}
.y9b{bottom:129.440000pt;}
.y84{bottom:130.080000pt;}
.ydb{bottom:130.240000pt;}
.yfb{bottom:130.400000pt;}
.y112{bottom:130.560000pt;}
.y50{bottom:130.720000pt;}
.ybc{bottom:130.880000pt;}
.y5a{bottom:131.040000pt;}
.y49{bottom:131.360000pt;}
.y144{bottom:133.120000pt;}
.y2c{bottom:140.320000pt;}
.ydf{bottom:144.320000pt;}
.y143{bottom:147.386667pt;}
.y9a{bottom:149.306667pt;}
.y83{bottom:149.946667pt;}
.yda{bottom:150.106667pt;}
.yfa{bottom:150.266667pt;}
.y111{bottom:150.426667pt;}
.y4f{bottom:150.746667pt;}
.y59{bottom:150.906667pt;}
.y48{bottom:151.226667pt;}
.y2b{bottom:154.586667pt;}
.y142{bottom:161.306667pt;}
.y2a{bottom:168.826667pt;}
.y99{bottom:169.306667pt;}
.y82{bottom:169.786667pt;}
.yd9{bottom:169.946667pt;}
.yf9{bottom:170.106667pt;}
.y110{bottom:170.266667pt;}
.y4e{bottom:170.586667pt;}
.y58{bottom:170.746667pt;}
.y47{bottom:171.066667pt;}
.y141{bottom:176.346667pt;}
.y29{bottom:184.346667pt;}
.y98{bottom:189.146667pt;}
.y81{bottom:189.626667pt;}
.yd8{bottom:189.946667pt;}
.y10f{bottom:190.106667pt;}
.y4d{bottom:190.426667pt;}
.y57{bottom:190.586667pt;}
.y46{bottom:191.066667pt;}
.y28{bottom:199.866667pt;}
.y140{bottom:204.986667pt;}
.y97{bottom:208.986667pt;}
.yd7{bottom:209.786667pt;}
.yf8{bottom:209.946667pt;}
.y80{bottom:210.106667pt;}
.y4c{bottom:210.266667pt;}
.y56{bottom:210.426667pt;}
.y45{bottom:210.906667pt;}
.y27{bottom:215.386667pt;}
.y13f{bottom:218.906667pt;}
.y96{bottom:228.826667pt;}
.yd6{bottom:229.626667pt;}
.yf7{bottom:229.786667pt;}
.y7f{bottom:229.946667pt;}
.y4b{bottom:230.106667pt;}
.y55{bottom:230.426667pt;}
.y44{bottom:230.746667pt;}
.y26{bottom:230.906667pt;}
.y13e{bottom:233.946667pt;}
.y25{bottom:246.266667pt;}
.y4a{bottom:247.866667pt;}
.y13d{bottom:248.186667pt;}
.y95{bottom:248.666667pt;}
.yd5{bottom:249.466667pt;}
.yf6{bottom:249.626667pt;}
.y7e{bottom:249.786667pt;}
.ybb{bottom:250.106667pt;}
.y54{bottom:250.266667pt;}
.y43{bottom:250.586667pt;}
.y24{bottom:261.786667pt;}
.y13c{bottom:262.266667pt;}
.y94{bottom:266.586667pt;}
.yd4{bottom:267.066667pt;}
.yf5{bottom:267.386667pt;}
.y11f{bottom:269.466667pt;}
.y7d{bottom:269.626667pt;}
.yba{bottom:269.946667pt;}
.y53{bottom:270.106667pt;}
.y42{bottom:270.426667pt;}
.y13b{bottom:276.986667pt;}
.y23{bottom:277.306667pt;}
.y52{bottom:287.706667pt;}
.y10e{bottom:289.466667pt;}
.y7c{bottom:289.626667pt;}
.yb9{bottom:289.786667pt;}
.y41{bottom:290.266667pt;}
.y13a{bottom:290.906667pt;}
.yf4{bottom:291.066667pt;}
.y22{bottom:292.826667pt;}
.y139{bottom:305.786667pt;}
.y10d{bottom:307.066667pt;}
.y11e{bottom:307.546667pt;}
.y21{bottom:308.506667pt;}
.y7b{bottom:309.466667pt;}
.yb8{bottom:309.626667pt;}
.y40{bottom:310.266667pt;}
.yf3{bottom:310.906667pt;}
.y138{bottom:320.186667pt;}
.y7a{bottom:329.146667pt;}
.y93{bottom:329.306667pt;}
.yb7{bottom:329.466667pt;}
.y10c{bottom:329.946667pt;}
.y3f{bottom:330.106667pt;}
.yf2{bottom:330.746667pt;}
.y20{bottom:333.306667pt;}
.y137{bottom:334.266667pt;}
.y79{bottom:346.906667pt;}
.y11d{bottom:347.066667pt;}
.yde{bottom:347.426667pt;}
.y136{bottom:349.026667pt;}
.y92{bottom:349.186667pt;}
.yb6{bottom:349.346667pt;}
.y3e{bottom:349.986667pt;}
.yf1{bottom:350.626667pt;}
.y1f{bottom:355.106667pt;}
.ydd{bottom:355.746667pt;}
.y135{bottom:363.426667pt;}
.y91{bottom:369.186667pt;}
.yb5{bottom:369.346667pt;}
.y78{bottom:369.666667pt;}
.y3d{bottom:369.826667pt;}
.yd2{bottom:369.986667pt;}
.y11c{bottom:370.146667pt;}
.y1e{bottom:370.466667pt;}
.yf0{bottom:370.626667pt;}
.yd1{bottom:385.506667pt;}
.yd0{bottom:386.786667pt;}
.yb4{bottom:387.106667pt;}
.y134{bottom:388.386667pt;}
.y1d{bottom:389.026667pt;}
.yd3{bottom:389.346667pt;}
.y77{bottom:389.506667pt;}
.y10b{bottom:389.666667pt;}
.y11b{bottom:389.986667pt;}
.yef{bottom:390.466667pt;}
.y3c{bottom:393.346667pt;}
.y1c{bottom:408.866667pt;}
.ycf{bottom:409.186667pt;}
.y76{bottom:409.346667pt;}
.y10a{bottom:409.506667pt;}
.y3b{bottom:409.826667pt;}
.yee{bottom:410.306667pt;}
.yb3{bottom:410.466667pt;}
.y133{bottom:420.706667pt;}
.y90{bottom:428.706667pt;}
.y1b{bottom:428.866667pt;}
.y75{bottom:429.186667pt;}
.y109{bottom:429.346667pt;}
.y11a{bottom:429.666667pt;}
.yed{bottom:430.146667pt;}
.yb2{bottom:430.306667pt;}
.y3a{bottom:434.466667pt;}
.y132{bottom:436.066667pt;}
.y8f{bottom:448.546667pt;}
.y1a{bottom:448.706667pt;}
.y74{bottom:449.026667pt;}
.yce{bottom:449.186667pt;}
.y119{bottom:449.666667pt;}
.yec{bottom:449.986667pt;}
.yb1{bottom:450.146667pt;}
.y131{bottom:451.586667pt;}
.y39{bottom:455.426667pt;}
.y130{bottom:467.106667pt;}
.y8e{bottom:468.386667pt;}
.y19{bottom:468.546667pt;}
.ycd{bottom:469.026667pt;}
.y108{bottom:469.186667pt;}
.y118{bottom:469.506667pt;}
.y73{bottom:469.666667pt;}
.yeb{bottom:469.826667pt;}
.yb0{bottom:469.986667pt;}
.y38{bottom:470.946667pt;}
.ybf{bottom:478.786667pt;}
.y12f{bottom:482.626667pt;}
.y37{bottom:486.466667pt;}
.ycc{bottom:486.786667pt;}
.y18{bottom:488.386667pt;}
.y107{bottom:488.866667pt;}
.y117{bottom:489.346667pt;}
.y72{bottom:489.666667pt;}
.yaf{bottom:489.826667pt;}
.y12e{bottom:497.986667pt;}
.ybe{bottom:498.466667pt;}
.y36{bottom:501.986667pt;}
.y106{bottom:506.786667pt;}
.y17{bottom:508.226667pt;}
.y116{bottom:509.186667pt;}
.ycb{bottom:509.346667pt;}
.y71{bottom:509.506667pt;}
.yae{bottom:509.666667pt;}
.y12d{bottom:513.506667pt;}
.y35{bottom:517.186667pt;}
.y16{bottom:528.066667pt;}
.y115{bottom:529.026667pt;}
.yca{bottom:529.186667pt;}
.y70{bottom:529.346667pt;}
.yea{bottom:529.506667pt;}
.yad{bottom:529.666667pt;}
.y105{bottom:530.306667pt;}
.y12c{bottom:544.546667pt;}
.y8d{bottom:545.186667pt;}
.y15{bottom:547.906667pt;}
.y114{bottom:548.866667pt;}
.yc9{bottom:549.026667pt;}
.y6f{bottom:549.186667pt;}
.ye9{bottom:549.346667pt;}
.yac{bottom:549.506667pt;}
.y104{bottom:550.173333pt;}
.y12b{bottom:560.093333pt;}
.y8c{bottom:563.293333pt;}
.yc8{bottom:568.893333pt;}
.y6e{bottom:569.053333pt;}
.ye8{bottom:569.213333pt;}
.yab{bottom:569.373333pt;}
.y103{bottom:570.013333pt;}
.y14{bottom:571.453333pt;}
.y12a{bottom:575.453333pt;}
.y8b{bottom:577.693333pt;}
.y113{bottom:586.653333pt;}
.y13{bottom:587.933333pt;}
.yc7{bottom:588.733333pt;}
.y6d{bottom:589.053333pt;}
.yaa{bottom:589.213333pt;}
.y102{bottom:589.853333pt;}
.y129{bottom:590.973333pt;}
.y8a{bottom:597.053333pt;}
.y128{bottom:606.493333pt;}
.yc6{bottom:608.573333pt;}
.y6c{bottom:608.893333pt;}
.ya9{bottom:609.053333pt;}
.y101{bottom:609.853333pt;}
.y12{bottom:611.133333pt;}
.y127{bottom:622.013333pt;}
.y11{bottom:625.853333pt;}
.y6b{bottom:628.733333pt;}
.ya8{bottom:628.893333pt;}
.yc5{bottom:629.373333pt;}
.y100{bottom:629.693333pt;}
.y126{bottom:637.373333pt;}
.y10{bottom:641.373333pt;}
.y6a{bottom:648.573333pt;}
.ye7{bottom:648.733333pt;}
.ya7{bottom:648.893333pt;}
.yc4{bottom:649.213333pt;}
.yff{bottom:649.533333pt;}
.y125{bottom:652.893333pt;}
.yf{bottom:656.893333pt;}
.y69{bottom:668.413333pt;}
.ye6{bottom:668.573333pt;}
.ya6{bottom:668.733333pt;}
.yc3{bottom:669.213333pt;}
.yfe{bottom:669.373333pt;}
.ye{bottom:672.413333pt;}
.y124{bottom:683.933333pt;}
.y68{bottom:686.173333pt;}
.yd{bottom:688.093333pt;}
.ye5{bottom:688.413333pt;}
.ya5{bottom:688.573333pt;}
.yc2{bottom:689.053333pt;}
.yfd{bottom:689.213333pt;}
.y123{bottom:699.293333pt;}
.ye4{bottom:706.013333pt;}
.ya4{bottom:708.413333pt;}
.y67{bottom:708.893333pt;}
.yfc{bottom:709.053333pt;}
.y122{bottom:714.813333pt;}
.ya3{bottom:726.013333pt;}
.y66{bottom:728.733333pt;}
.ye3{bottom:729.053333pt;}
.y121{bottom:730.333333pt;}
.yc{bottom:747.773333pt;}
.y65{bottom:748.573333pt;}
.ya2{bottom:748.893333pt;}
.y64{bottom:768.453333pt;}
.ya1{bottom:768.773333pt;}
.y63{bottom:788.293333pt;}
.yc1{bottom:788.453333pt;}
.ya0{bottom:788.613333pt;}
.yb{bottom:807.973333pt;}
.y62{bottom:808.293333pt;}
.ye2{bottom:808.453333pt;}
.y9f{bottom:808.613333pt;}
.y61{bottom:827.973333pt;}
.yc0{bottom:828.133333pt;}
.y9e{bottom:828.453333pt;}
.y60{bottom:845.733333pt;}
.y9d{bottom:848.293333pt;}
.y89{bottom:866.533333pt;}
.ya{bottom:868.133333pt;}
.y88{bottom:876.773333pt;}
.ybd{bottom:880.453333pt;}
.y5f{bottom:887.973333pt;}
.y34{bottom:888.773333pt;}
.y87{bottom:891.173333pt;}
.y33{bottom:903.173333pt;}
.y5e{bottom:905.253333pt;}
.y86{bottom:905.733333pt;}
.ye1{bottom:910.693333pt;}
.y9{bottom:922.693333pt;}
.y5d{bottom:923.493333pt;}
.y32{bottom:923.973333pt;}
.y1{bottom:943.013333pt;}
.y2f{bottom:944.613333pt;}
.y7{bottom:971.200000pt;}
.h5{height:16.800000pt;}
.h1a{height:19.779375pt;}
.h1{height:20.032000pt;}
.h11{height:21.280000pt;}
.h3{height:21.600000pt;}
.h18{height:27.571250pt;}
.h1c{height:37.563750pt;}
.h4{height:39.243750pt;}
.hc{height:44.718750pt;}
.h10{height:44.953125pt;}
.h12{height:47.103750pt;}
.h8{height:49.488750pt;}
.he{height:51.645000pt;}
.hd{height:53.992500pt;}
.h2{height:54.855000pt;}
.h16{height:55.142500pt;}
.h6{height:55.402500pt;}
.h17{height:57.240000pt;}
.h9{height:57.888085pt;}
.h7{height:58.740000pt;}
.h15{height:59.625000pt;}
.h1d{height:61.410000pt;}
.h1b{height:63.382500pt;}
.h14{height:64.395000pt;}
.hb{height:65.838750pt;}
.h19{height:67.376250pt;}
.h13{height:69.761250pt;}
.h1e{height:71.011875pt;}
.hf{height:72.146250pt;}
.ha{height:178.875000pt;}
.h0{height:1056.000000pt;}
.w2{width:34.592000pt;}
.w3{width:148.960000pt;}
.w6{width:187.546667pt;}
.w1{width:191.546667pt;}
.w5{width:282.626667pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.248000pt;}
.x4{left:4.640000pt;}
.x6{left:61.594667pt;}
.x8{left:63.999988pt;}
.x3{left:70.720000pt;}
.x15{left:71.999988pt;}
.xa{left:72.959988pt;}
.x1{left:90.112000pt;}
.x11{left:103.720000pt;}
.x5{left:105.472000pt;}
.x30{left:106.751988pt;}
.x1e{left:109.311988pt;}
.x7{left:147.514667pt;}
.x12{left:158.120000pt;}
.x13{left:174.920000pt;}
.xc{left:176.026655pt;}
.x14{left:180.840000pt;}
.x16{left:193.146655pt;}
.x20{left:219.706655pt;}
.x26{left:244.666655pt;}
.xf{left:276.706667pt;}
.x1d{left:280.866655pt;}
.x1f{left:283.746655pt;}
.x21{left:290.626655pt;}
.x19{left:293.346655pt;}
.x18{left:301.346655pt;}
.x2d{left:317.026655pt;}
.x2c{left:338.626655pt;}
.xd{left:414.946655pt;}
.xb{left:416.066655pt;}
.xe{left:440.866667pt;}
.x17{left:446.306655pt;}
.x22{left:447.266655pt;}
.x25{left:470.173321pt;}
.x28{left:505.693321pt;}
.x24{left:511.293321pt;}
.x27{left:514.813321pt;}
.x23{left:516.573321pt;}
.x1c{left:522.813321pt;}
.x1a{left:530.813321pt;}
.x2a{left:538.973321pt;}
.x10{left:560.573333pt;}
.x2e{left:568.093321pt;}
.x31{left:596.733321pt;}
.x32{left:600.253321pt;}
.x2f{left:703.333321pt;}
.x29{left:705.093321pt;}
.x1b{left:724.133321pt;}
.x9{left:734.693321pt;}
.x2b{left:745.253321pt;}
}




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