
    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_cd80280f461686596d514678.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.077000;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_eccbf77415324eb5d3a238a8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.057129;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_755d658adff11fe4f8d8b20e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.100000;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_7f722862cd684691a7f0dcc6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.985352;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_41ec6adbf824c9b712ca93c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.907715;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_16493cc2a6a20ca43cbe9a06.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003418;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_3e0d912378e96a1d6b82972c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.182617;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_845e64fa9dd257e998aaa663.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c490e544ab809ea91d669db9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_41d70d6a08a3cc8fec2eeb3a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.717285;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_a417ee2366bfcea28c019da1.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_41d70d6a08a3cc8fec2eeb3a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4ce9bbbf7d62224ff0f73661.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_41d70d6a08a3cc8fec2eeb3a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.717285;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0a19a45de906c7e700d6dee0.woff2')format("woff");}.fff{font-family:fff;line-height:1.057129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_dc83ffe6c29f359f0c935b1b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.004395;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.031200px;}
.ls5{letter-spacing:-0.026400px;}
.ls7{letter-spacing:-0.013200px;}
.ls9{letter-spacing:-0.006600px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000002px;}
.ls29{letter-spacing:0.001200px;}
.ls22{letter-spacing:0.001620px;}
.ls8{letter-spacing:0.006600px;}
.ls2{letter-spacing:0.013200px;}
.ls11{letter-spacing:0.020400px;}
.ls15{letter-spacing:0.021600px;}
.ls6{letter-spacing:0.026400px;}
.ls17{letter-spacing:0.030000px;}
.ls1e{letter-spacing:0.036000px;}
.ls10{letter-spacing:0.063600px;}
.ls14{letter-spacing:0.085800px;}
.ls19{letter-spacing:0.111060px;}
.ls2d{letter-spacing:0.112200px;}
.ls21{letter-spacing:0.113820px;}
.ls2e{letter-spacing:0.118800px;}
.ls2f{letter-spacing:0.145200px;}
.ls1{letter-spacing:0.462000px;}
.ls2b{letter-spacing:1.841400px;}
.ls24{letter-spacing:1.841760px;}
.ls1f{letter-spacing:1.841820px;}
.ls2a{letter-spacing:1.842000px;}
.ls20{letter-spacing:1.842240px;}
.ls2c{letter-spacing:1.842600px;}
.ls27{letter-spacing:1.843200px;}
.ls23{letter-spacing:1.843440px;}
.ls26{letter-spacing:1.843800px;}
.ls25{letter-spacing:1.845000px;}
.ls28{letter-spacing:1.895400px;}
.ls1c{letter-spacing:5.172000px;}
.ls18{letter-spacing:5.194740px;}
.ls1b{letter-spacing:5.194800px;}
.ls1a{letter-spacing:5.196000px;}
.ls1d{letter-spacing:5.219400px;}
.lsb{letter-spacing:12.375000px;}
.ls16{letter-spacing:22.515600px;}
.lse{letter-spacing:22.516200px;}
.ls13{letter-spacing:22.521000px;}
.ls12{letter-spacing:22.522200px;}
.lsf{letter-spacing:22.522800px;}
.lsc{letter-spacing:22.546020px;}
.lsd{letter-spacing:22.546200px;}
.lsa{letter-spacing:1151.739000px;}
.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;}
}
.wsa{word-spacing:-28.875000px;}
.ws4{word-spacing:-22.500000px;}
.ws1{word-spacing:-21.912000px;}
.ws7{word-spacing:-16.526400px;}
.ws8{word-spacing:-16.513200px;}
.ws5{word-spacing:-16.500000px;}
.ws9{word-spacing:-16.493400px;}
.ws6{word-spacing:-16.473600px;}
.wsf{word-spacing:-0.211200px;}
.wsd{word-spacing:-0.184800px;}
.ws10{word-spacing:-0.178200px;}
.ws3{word-spacing:-0.156000px;}
.wse{word-spacing:-0.151800px;}
.wsc{word-spacing:-0.129600px;}
.ws2{word-spacing:-0.090000px;}
.wsb{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-13.886400px;}
._26{margin-left:-10.548120px;}
._4{margin-left:-8.289000px;}
._6{margin-left:-7.061400px;}
._5{margin-left:-6.058800px;}
._3{margin-left:-4.248000px;}
._0{margin-left:-2.460000px;}
._2{margin-left:-1.380000px;}
._1{width:1.380000px;}
._d{width:12.361800px;}
._1b{width:38.181600px;}
._e{width:39.201240px;}
._1d{width:51.454440px;}
._15{width:59.229000px;}
._19{width:63.939600px;}
._b{width:65.656800px;}
._24{width:71.982600px;}
._22{width:93.190800px;}
._1f{width:97.922040px;}
._10{width:102.585000px;}
._9{width:104.296200px;}
._1e{width:150.792240px;}
._25{width:173.062200px;}
._12{width:182.358600px;}
._1a{width:185.263200px;}
._c{width:186.634800px;}
._a{width:187.921800px;}
._18{width:203.646600px;}
._13{width:208.108200px;}
._23{width:230.478600px;}
._1c{width:238.669800px;}
._20{width:250.130100px;}
._11{width:262.017600px;}
._21{width:324.128400px;}
._17{width:329.326200px;}
._f{width:345.785520px;}
._8{width:346.929000px;}
._14{width:366.682200px;}
._16{width:706.909560px;}
.fc2{color:rgb(181,23,0);}
.fc1{color:rgb(33,37,41);}
.fc3{color:rgb(94,94,94);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:90.000000px;}
.fs3{font-size:156.000000px;}
.fs5{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.500000px;}
.y2{bottom:7.500000px;}
.y6{bottom:11.550030px;}
.y1d5{bottom:24.522300px;}
.y151{bottom:32.148600px;}
.y101{bottom:41.228280px;}
.y1{bottom:49.213500px;}
.y19b{bottom:50.910750px;}
.yc7{bottom:51.381225px;}
.y6a{bottom:53.428635px;}
.y14f{bottom:54.755190px;}
.y5{bottom:56.354505px;}
.y3d{bottom:56.698380px;}
.y100{bottom:62.228280px;}
.y1db{bottom:66.451050px;}
.y102{bottom:68.694945px;}
.yc6{bottom:70.881225px;}
.y9a{bottom:72.943185px;}
.y19a{bottom:74.910750px;}
.y14e{bottom:75.755190px;}
.y54{bottom:77.672100px;}
.y69{bottom:78.275700px;}
.y9b{bottom:78.289425px;}
.yff{bottom:83.228280px;}
.y3e{bottom:84.295650px;}
.y3{bottom:85.039380px;}
.y1da{bottom:87.451050px;}
.y177{bottom:88.344750px;}
.y13d{bottom:90.167190px;}
.yc5{bottom:90.381225px;}
.y12e{bottom:92.929410px;}
.y99{bottom:93.943185px;}
.y12c{bottom:95.066655px;}
.y199{bottom:95.910750px;}
.y14d{bottom:96.755190px;}
.y68{bottom:97.775700px;}
.y53{bottom:100.772100px;}
.yfe{bottom:104.228280px;}
.y3c{bottom:104.698380px;}
.y1d9{bottom:108.451050px;}
.y176{bottom:109.344750px;}
.yc4{bottom:109.881225px;}
.y98{bottom:114.943215px;}
.y12b{bottom:116.066655px;}
.y13c{bottom:117.167190px;}
.y67{bottom:117.275700px;}
.y14c{bottom:117.755190px;}
.y198{bottom:119.910750px;}
.y52{bottom:123.872100px;}
.y152{bottom:125.026950px;}
.yfd{bottom:125.228280px;}
.y13e{bottom:128.341410px;}
.yc3{bottom:129.381225px;}
.y175{bottom:130.344750px;}
.yd5{bottom:131.057670px;}
.y22{bottom:133.706070px;}
.y97{bottom:135.943215px;}
.y66{bottom:136.775700px;}
.y12a{bottom:137.066655px;}
.y13b{bottom:138.167190px;}
.y14b{bottom:138.755190px;}
.y197{bottom:140.910750px;}
.yfc{bottom:146.228280px;}
.y51{bottom:146.972100px;}
.yc2{bottom:148.881225px;}
.y174{bottom:151.344750px;}
.y3b{bottom:152.698380px;}
.y65{bottom:156.275700px;}
.y96{bottom:156.943215px;}
.y129{bottom:158.066655px;}
.y14a{bottom:159.755190px;}
.y196{bottom:161.910750px;}
.y178{bottom:162.461100px;}
.y13a{bottom:165.167190px;}
.yfb{bottom:167.228280px;}
.yc1{bottom:168.381225px;}
.y50{bottom:170.072100px;}
.y1d8{bottom:171.451050px;}
.y1b7{bottom:171.734400px;}
.y173{bottom:172.344750px;}
.y64{bottom:175.775700px;}
.y95{bottom:177.943215px;}
.y128{bottom:179.066655px;}
.y149{bottom:180.755190px;}
.y21{bottom:186.804450px;}
.y1d4{bottom:186.986250px;}
.yc0{bottom:187.881225px;}
.yfa{bottom:188.228280px;}
.y139{bottom:192.167190px;}
.y1d7{bottom:192.451050px;}
.y1b6{bottom:192.734400px;}
.y4f{bottom:193.172100px;}
.y172{bottom:193.344750px;}
.y63{bottom:195.275700px;}
.y94{bottom:198.943215px;}
.y127{bottom:200.066655px;}
.y3a{bottom:200.698380px;}
.y148{bottom:201.755190px;}
.ybf{bottom:207.381225px;}
.yf9{bottom:209.228280px;}
.y138{bottom:213.167190px;}
.y62{bottom:214.775700px;}
.y4e{bottom:216.272100px;}
.y93{bottom:219.943215px;}
.y126{bottom:221.066655px;}
.y39{bottom:221.698380px;}
.y147{bottom:222.755190px;}
.ybe{bottom:226.881225px;}
.yf8{bottom:230.228280px;}
.y20{bottom:233.004450px;}
.y61{bottom:234.275700px;}
.y4d{bottom:239.372100px;}
.y137{bottom:240.167190px;}
.y92{bottom:240.943215px;}
.y125{bottom:242.066655px;}
.y38{bottom:242.698380px;}
.y146{bottom:243.755190px;}
.ybd{bottom:246.381225px;}
.yf7{bottom:251.228280px;}
.y91{bottom:261.943215px;}
.y4c{bottom:262.472100px;}
.y124{bottom:263.066655px;}
.y37{bottom:263.698380px;}
.y145{bottom:264.755190px;}
.y195{bottom:265.815000px;}
.ybc{bottom:265.881225px;}
.y136{bottom:267.167190px;}
.yf6{bottom:272.228280px;}
.y1f{bottom:279.204450px;}
.y90{bottom:282.943215px;}
.y123{bottom:284.066655px;}
.y36{bottom:284.698380px;}
.ybb{bottom:285.381225px;}
.y1b5{bottom:285.734400px;}
.y144{bottom:285.755190px;}
.y135{bottom:288.167190px;}
.yf5{bottom:293.228280px;}
.y60{bottom:294.275700px;}
.y8f{bottom:303.943215px;}
.yba{bottom:304.881225px;}
.y122{bottom:305.066655px;}
.y35{bottom:305.698380px;}
.y171{bottom:306.249150px;}
.y1b4{bottom:306.734400px;}
.y143{bottom:306.755190px;}
.y4b{bottom:308.672100px;}
.y134{bottom:309.167190px;}
.y5f{bottom:314.226900px;}
.yf4{bottom:314.228280px;}
.yb9{bottom:324.381225px;}
.y8e{bottom:324.943215px;}
.y1e{bottom:325.404450px;}
.y121{bottom:326.066655px;}
.y34{bottom:326.698380px;}
.y1b3{bottom:327.734400px;}
.y142{bottom:327.755190px;}
.y4a{bottom:331.772100px;}
.y5e{bottom:335.226900px;}
.y133{bottom:336.167190px;}
.yb8{bottom:343.881225px;}
.y8d{bottom:345.943215px;}
.y120{bottom:347.066655px;}
.y33{bottom:347.698380px;}
.y1d{bottom:348.504450px;}
.y1b2{bottom:348.734400px;}
.y141{bottom:348.755190px;}
.y49{bottom:354.872100px;}
.y5d{bottom:356.226900px;}
.y132{bottom:357.167190px;}
.yf3{bottom:359.228280px;}
.yb7{bottom:363.381225px;}
.y19c{bottom:365.637300px;}
.y8c{bottom:366.943215px;}
.y32{bottom:368.698380px;}
.y1b1{bottom:369.734400px;}
.y140{bottom:369.755190px;}
.y1c{bottom:371.604450px;}
.y5c{bottom:377.226900px;}
.y48{bottom:377.972100px;}
.y131{bottom:378.167190px;}
.yf2{bottom:380.228280px;}
.yb6{bottom:382.881225px;}
.y8b{bottom:387.943215px;}
.y31{bottom:389.698380px;}
.y1b0{bottom:390.734400px;}
.y13f{bottom:390.755190px;}
.y1b{bottom:394.704450px;}
.y5b{bottom:398.226900px;}
.y194{bottom:398.910750px;}
.y47{bottom:401.072100px;}
.yf1{bottom:401.228280px;}
.yb5{bottom:402.381225px;}
.y130{bottom:405.167190px;}
.y8a{bottom:408.943215px;}
.y30{bottom:410.698380px;}
.y1af{bottom:411.734400px;}
.y11f{bottom:414.566655px;}
.y1a{bottom:417.804450px;}
.y193{bottom:419.910750px;}
.y170{bottom:421.344750px;}
.yb4{bottom:421.881225px;}
.yf0{bottom:422.228280px;}
.y46{bottom:424.172100px;}
.y12f{bottom:426.167190px;}
.y89{bottom:429.943215px;}
.y2f{bottom:431.698380px;}
.y1ae{bottom:432.734400px;}
.y11e{bottom:435.566655px;}
.y1d3{bottom:440.332320px;}
.y19{bottom:440.904450px;}
.yb3{bottom:441.381225px;}
.y16f{bottom:442.344750px;}
.yef{bottom:443.228280px;}
.y192{bottom:443.910750px;}
.y88{bottom:450.943215px;}
.y2e{bottom:452.698380px;}
.y1ad{bottom:453.734400px;}
.y11d{bottom:456.566655px;}
.y5a{bottom:459.726900px;}
.y1d2{bottom:461.332320px;}
.y16e{bottom:463.344750px;}
.y18{bottom:464.004450px;}
.yee{bottom:464.228280px;}
.y191{bottom:464.910750px;}
.y45{bottom:470.372100px;}
.y87{bottom:471.943215px;}
.y2d{bottom:473.698380px;}
.y1ac{bottom:474.734400px;}
.y11c{bottom:477.566655px;}
.y59{bottom:480.726900px;}
.y16d{bottom:484.344750px;}
.yed{bottom:485.228280px;}
.y190{bottom:485.910750px;}
.y17{bottom:487.104450px;}
.y44{bottom:493.472100px;}
.y2c{bottom:494.698380px;}
.y1ab{bottom:495.734400px;}
.y11b{bottom:498.566655px;}
.y58{bottom:501.726900px;}
.yb2{bottom:502.881225px;}
.y16c{bottom:505.344750px;}
.yec{bottom:506.228280px;}
.y18f{bottom:509.910750px;}
.y16{bottom:510.204450px;}
.y86{bottom:513.943215px;}
.y43{bottom:516.572100px;}
.y1aa{bottom:516.734400px;}
.y11a{bottom:519.566655px;}
.y57{bottom:522.726900px;}
.y16b{bottom:526.344750px;}
.yeb{bottom:527.228280px;}
.y18e{bottom:530.910750px;}
.y15{bottom:533.304450px;}
.y85{bottom:534.943215px;}
.y1a9{bottom:537.734400px;}
.y42{bottom:539.672100px;}
.y119{bottom:540.566655px;}
.yb1{bottom:541.881225px;}
.y2b{bottom:542.698380px;}
.y56{bottom:543.726900px;}
.y1d1{bottom:545.332320px;}
.y16a{bottom:547.344750px;}
.yea{bottom:548.228280px;}
.y12d{bottom:549.076200px;}
.y18d{bottom:551.910750px;}
.y84{bottom:555.943215px;}
.y14{bottom:556.404450px;}
.y1a8{bottom:558.734400px;}
.y118{bottom:561.566655px;}
.yd4{bottom:561.670500px;}
.y41{bottom:562.772100px;}
.y1d0{bottom:566.332320px;}
.y2a{bottom:568.198380px;}
.y169{bottom:568.344750px;}
.ye9{bottom:569.228280px;}
.y18c{bottom:575.910750px;}
.y83{bottom:576.943215px;}
.y13{bottom:579.504450px;}
.y1a7{bottom:579.734400px;}
.yb0{bottom:580.881225px;}
.yd3{bottom:581.170500px;}
.y117{bottom:582.566655px;}
.y1cf{bottom:587.332320px;}
.y29{bottom:589.198380px;}
.y168{bottom:589.344750px;}
.ye8{bottom:590.228280px;}
.y40{bottom:592.599750px;}
.y18b{bottom:596.910750px;}
.y82{bottom:597.943215px;}
.yd2{bottom:600.670500px;}
.y1a6{bottom:600.734400px;}
.y12{bottom:602.604450px;}
.y116{bottom:603.566655px;}
.y1ce{bottom:608.332320px;}
.y28{bottom:610.198380px;}
.y167{bottom:610.344750px;}
.ye7{bottom:611.228280px;}
.y55{bottom:611.644950px;}
.y150{bottom:614.812650px;}
.y81{bottom:618.943215px;}
.yaf{bottom:619.881225px;}
.yd1{bottom:620.170500px;}
.y18a{bottom:620.910750px;}
.y1a5{bottom:621.734400px;}
.y115{bottom:624.566655px;}
.y11{bottom:625.704450px;}
.y1cd{bottom:629.332320px;}
.y166{bottom:631.344750px;}
.yae{bottom:639.381225px;}
.yd0{bottom:639.670500px;}
.y80{bottom:639.943215px;}
.y189{bottom:641.910750px;}
.y1a4{bottom:642.734400px;}
.y114{bottom:645.566655px;}
.y1cc{bottom:650.332320px;}
.y165{bottom:652.344750px;}
.ye6{bottom:656.228280px;}
.ycf{bottom:659.170500px;}
.y7f{bottom:660.943215px;}
.y188{bottom:662.910750px;}
.y1a3{bottom:663.734400px;}
.y113{bottom:666.566655px;}
.y1cb{bottom:671.332320px;}
.y10{bottom:671.904450px;}
.y164{bottom:673.344750px;}
.ye5{bottom:677.228280px;}
.y27{bottom:677.746380px;}
.yce{bottom:678.670500px;}
.y7e{bottom:681.943215px;}
.y1a2{bottom:684.734400px;}
.y187{bottom:686.910750px;}
.y1ca{bottom:692.332320px;}
.y163{bottom:694.344750px;}
.yf{bottom:695.004450px;}
.ycd{bottom:698.170500px;}
.ye4{bottom:698.228280px;}
.y26{bottom:700.546380px;}
.y7d{bottom:702.943215px;}
.y1a1{bottom:705.734400px;}
.y186{bottom:707.910750px;}
.y1c9{bottom:713.332320px;}
.y162{bottom:715.344750px;}
.yad{bottom:717.381225px;}
.ycc{bottom:717.670500px;}
.ye{bottom:718.104450px;}
.ye3{bottom:719.228280px;}
.y25{bottom:723.346380px;}
.y7c{bottom:723.943215px;}
.y1a0{bottom:726.734400px;}
.y185{bottom:728.910750px;}
.y112{bottom:734.066655px;}
.y1c8{bottom:734.332320px;}
.y161{bottom:736.344750px;}
.ycb{bottom:737.170500px;}
.ye2{bottom:740.228280px;}
.yd{bottom:741.204450px;}
.y7b{bottom:744.943215px;}
.y19f{bottom:747.734400px;}
.y184{bottom:749.910750px;}
.y111{bottom:755.066655px;}
.y1c7{bottom:755.332320px;}
.yca{bottom:756.670500px;}
.y160{bottom:757.344750px;}
.yac{bottom:759.381225px;}
.ye1{bottom:761.228280px;}
.y19e{bottom:768.734400px;}
.y183{bottom:773.910750px;}
.y110{bottom:776.066655px;}
.yc9{bottom:776.170500px;}
.y1c6{bottom:776.332320px;}
.y15f{bottom:778.344750px;}
.yab{bottom:778.881225px;}
.ye0{bottom:782.228280px;}
.y7a{bottom:786.943215px;}
.y19d{bottom:789.734400px;}
.y182{bottom:794.910750px;}
.yc8{bottom:795.670500px;}
.y10f{bottom:797.066655px;}
.y1c5{bottom:797.332320px;}
.yaa{bottom:798.381225px;}
.y15e{bottom:799.344750px;}
.y24{bottom:803.862480px;}
.yc{bottom:803.952450px;}
.y79{bottom:807.943215px;}
.y181{bottom:815.910750px;}
.ya9{bottom:817.881225px;}
.y10e{bottom:818.066655px;}
.y1c4{bottom:818.332320px;}
.y15d{bottom:820.344750px;}
.yb{bottom:826.752450px;}
.ydf{bottom:827.228280px;}
.y78{bottom:828.943215px;}
.ya8{bottom:837.381225px;}
.y10d{bottom:839.066655px;}
.y1c3{bottom:839.332320px;}
.y180{bottom:839.910750px;}
.y15c{bottom:841.344750px;}
.yde{bottom:848.228280px;}
.ya{bottom:849.552450px;}
.y77{bottom:849.943215px;}
.y23{bottom:853.272180px;}
.ya7{bottom:856.881225px;}
.y10c{bottom:860.066655px;}
.y1c2{bottom:860.332320px;}
.y17f{bottom:860.910750px;}
.y15b{bottom:862.344750px;}
.ydd{bottom:869.228280px;}
.y76{bottom:870.943215px;}
.ya6{bottom:876.381225px;}
.y1c1{bottom:881.332320px;}
.y17e{bottom:881.910750px;}
.y15a{bottom:883.344750px;}
.y1d6{bottom:886.795800px;}
.ydc{bottom:890.228280px;}
.y75{bottom:891.943215px;}
.ya5{bottom:895.881225px;}
.y1c0{bottom:902.332320px;}
.y159{bottom:904.344750px;}
.y10b{bottom:905.066655px;}
.y17d{bottom:905.910750px;}
.ydb{bottom:911.228280px;}
.y74{bottom:912.943215px;}
.ya4{bottom:915.381225px;}
.y1bf{bottom:923.332320px;}
.y158{bottom:925.344750px;}
.y10a{bottom:926.066655px;}
.y17c{bottom:926.910750px;}
.yda{bottom:932.228280px;}
.y73{bottom:933.943215px;}
.ya3{bottom:934.881225px;}
.y1be{bottom:944.332320px;}
.y157{bottom:946.344750px;}
.y109{bottom:947.066655px;}
.y17b{bottom:950.910750px;}
.yd9{bottom:953.228280px;}
.ya2{bottom:954.381225px;}
.y72{bottom:954.943215px;}
.y9{bottom:955.044750px;}
.y1bd{bottom:965.332320px;}
.y156{bottom:967.344750px;}
.y108{bottom:968.066655px;}
.y17a{bottom:971.910750px;}
.ya1{bottom:973.881225px;}
.yd8{bottom:974.228280px;}
.y71{bottom:975.943215px;}
.y1bc{bottom:986.332320px;}
.y155{bottom:988.344750px;}
.y107{bottom:989.066655px;}
.y179{bottom:992.910750px;}
.ya0{bottom:993.381225px;}
.yd7{bottom:995.228280px;}
.y70{bottom:996.943215px;}
.y8{bottom:1001.468550px;}
.y1bb{bottom:1007.332320px;}
.y154{bottom:1009.344750px;}
.y106{bottom:1010.066655px;}
.y9f{bottom:1012.881225px;}
.y1e2{bottom:1016.099565px;}
.yd6{bottom:1016.228280px;}
.y6f{bottom:1017.943215px;}
.y1ba{bottom:1028.332320px;}
.y153{bottom:1030.344750px;}
.y105{bottom:1031.066655px;}
.y9e{bottom:1032.381225px;}
.y1e1{bottom:1037.095500px;}
.y1de{bottom:1037.247000px;}
.y6e{bottom:1038.943215px;}
.y1b9{bottom:1049.332320px;}
.y9d{bottom:1051.881225px;}
.y104{bottom:1052.066655px;}
.y1e0{bottom:1058.095500px;}
.y1dd{bottom:1058.247000px;}
.y6d{bottom:1059.943215px;}
.y1b8{bottom:1070.332320px;}
.y9c{bottom:1071.381225px;}
.y103{bottom:1073.066655px;}
.y4{bottom:1076.332470px;}
.y3f{bottom:1077.076200px;}
.y1df{bottom:1079.095500px;}
.y1dc{bottom:1079.247000px;}
.y6c{bottom:1080.943215px;}
.y6b{bottom:1101.943215px;}
.h2{height:18.000000px;}
.h6{height:27.750015px;}
.h23{height:42.108398px;}
.h13{height:45.213867px;}
.h1d{height:46.787109px;}
.h16{height:47.340820px;}
.h3{height:49.620000px;}
.h5{height:51.465820px;}
.h1c{height:53.488455px;}
.h7{height:56.100000px;}
.h22{height:57.809415px;}
.hf{height:59.780273px;}
.h9{height:65.039062px;}
.hb{height:65.501953px;}
.he{height:65.786133px;}
.hd{height:109.611328px;}
.ha{height:112.734375px;}
.h1f{height:119.970703px;}
.h24{height:270.749850px;}
.h1b{height:413.179050px;}
.h1a{height:448.591050px;}
.h12{height:566.150550px;}
.h11{height:585.195900px;}
.h21{height:812.158200px;}
.hc{height:901.272150px;}
.h20{height:1015.334550px;}
.h8{height:1029.916350px;}
.h17{height:1046.737950px;}
.h1e{height:1052.768700px;}
.h15{height:1092.756300px;}
.h19{height:1093.500000px;}
.h18{height:1095.490500px;}
.h4{height:1097.294100px;}
.h10{height:1098.037950px;}
.h14{height:1124.367000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w14{width:183.415500px;}
.wd{width:288.310800px;}
.w13{width:288.492750px;}
.wf{width:288.676500px;}
.w12{width:291.457650px;}
.w19{width:297.603600px;}
.w1a{width:298.060950px;}
.w17{width:302.187000px;}
.w9{width:305.086350px;}
.w16{width:308.052450px;}
.wc{width:309.615750px;}
.wa{width:315.101850px;}
.w1b{width:323.038200px;}
.w6{width:323.319600px;}
.w5{width:333.682800px;}
.w2{width:474.345000px;}
.we{width:523.246500px;}
.w1c{width:525.919500px;}
.w11{width:526.117500px;}
.w15{width:526.134000px;}
.w8{width:526.662000px;}
.w4{width:526.810500px;}
.w18{width:527.074500px;}
.wb{width:527.206500px;}
.w1d{width:615.907800px;}
.w7{width:722.841300px;}
.w10{width:727.379250px;}
.w3{width:731.917050px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:4.537905px;}
.x53{left:6.133050px;}
.x2c{left:7.247955px;}
.x34{left:8.825460px;}
.x50{left:9.836610px;}
.x22{left:11.101050px;}
.x14{left:12.580020px;}
.x11{left:13.945620px;}
.x21{left:14.964150px;}
.x1f{left:16.390200px;}
.x13{left:18.259950px;}
.x3c{left:19.357950px;}
.xf{left:20.648745px;}
.x12{left:21.825015px;}
.x2e{left:23.957430px;}
.x32{left:25.639650px;}
.x4f{left:26.924745px;}
.x25{left:27.975600px;}
.xb{left:29.438535px;}
.x10{left:30.715515px;}
.xd{left:32.463795px;}
.xe{left:33.636045px;}
.x1e{left:34.731150px;}
.x24{left:36.298200px;}
.xa{left:38.163870px;}
.x15{left:39.863820px;}
.x16{left:41.539605px;}
.x1d{left:44.021850px;}
.x29{left:45.563250px;}
.x23{left:46.936950px;}
.x9{left:48.199890px;}
.x1b{left:49.312950px;}
.x2d{left:51.362085px;}
.x7{left:53.490900px;}
.x5d{left:55.134660px;}
.x35{left:56.516745px;}
.x57{left:57.729090px;}
.x51{left:58.857240px;}
.x5a{left:61.138050px;}
.x4b{left:62.474460px;}
.x4d{left:64.806870px;}
.x4a{left:68.895570px;}
.x28{left:70.389900px;}
.x52{left:72.267570px;}
.x54{left:73.740150px;}
.x58{left:74.825220px;}
.x6{left:76.653030px;}
.x19{left:77.864250px;}
.x4c{left:79.389420px;}
.x2{left:80.501475px;}
.x27{left:82.088100px;}
.x67{left:83.650020px;}
.x2a{left:85.039380px;}
.x55{left:88.173600px;}
.x2f{left:90.384420px;}
.x1c{left:91.979400px;}
.x5e{left:93.000930px;}
.x20{left:94.148850px;}
.x8{left:96.157380px;}
.x62{left:97.307130px;}
.xc{left:98.846430px;}
.x5f{left:100.606380px;}
.x49{left:101.621670px;}
.x60{left:103.103880px;}
.x1a{left:104.611500px;}
.x17{left:106.629180px;}
.x56{left:109.072800px;}
.x5{left:112.338030px;}
.x59{left:113.760000px;}
.x31{left:115.156950px;}
.x5c{left:118.758030px;}
.x64{left:121.205250px;}
.x36{left:123.721170px;}
.x4e{left:127.543920px;}
.x26{left:132.208500px;}
.x65{left:136.941450px;}
.x61{left:138.772080px;}
.x6d{left:175.854000px;}
.x4{left:183.054750px;}
.x48{left:184.836750px;}
.x6c{left:198.672645px;}
.x1{left:199.915500px;}
.x66{left:218.655300px;}
.x6b{left:243.760860px;}
.x6a{left:252.400770px;}
.x3b{left:260.316450px;}
.x39{left:273.626400px;}
.x3a{left:276.137700px;}
.x38{left:280.248300px;}
.x47{left:305.798220px;}
.x2b{left:313.793520px;}
.x33{left:323.297220px;}
.x69{left:428.576655px;}
.x68{left:484.842450px;}
.x18{left:489.028800px;}
.x30{left:492.778800px;}
.x63{left:513.193800px;}
.x37{left:519.570000px;}
.x43{left:525.862956px;}
.x3d{left:527.704819px;}
.x42{left:531.812785px;}
.x3e{left:535.541740px;}
.x40{left:538.010913px;}
.x3f{left:541.915080px;}
.x41{left:543.968610px;}
.x44{left:547.636950px;}
.x45{left:563.189910px;}
.x46{left:580.433145px;}
.x5b{left:624.465150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.027733pt;}
.ls5{letter-spacing:-0.023467pt;}
.ls7{letter-spacing:-0.011733pt;}
.ls9{letter-spacing:-0.005867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000002pt;}
.ls29{letter-spacing:0.001067pt;}
.ls22{letter-spacing:0.001440pt;}
.ls8{letter-spacing:0.005867pt;}
.ls2{letter-spacing:0.011733pt;}
.ls11{letter-spacing:0.018133pt;}
.ls15{letter-spacing:0.019200pt;}
.ls6{letter-spacing:0.023467pt;}
.ls17{letter-spacing:0.026667pt;}
.ls1e{letter-spacing:0.032000pt;}
.ls10{letter-spacing:0.056533pt;}
.ls14{letter-spacing:0.076267pt;}
.ls19{letter-spacing:0.098720pt;}
.ls2d{letter-spacing:0.099733pt;}
.ls21{letter-spacing:0.101173pt;}
.ls2e{letter-spacing:0.105600pt;}
.ls2f{letter-spacing:0.129067pt;}
.ls1{letter-spacing:0.410667pt;}
.ls2b{letter-spacing:1.636800pt;}
.ls24{letter-spacing:1.637120pt;}
.ls1f{letter-spacing:1.637173pt;}
.ls2a{letter-spacing:1.637333pt;}
.ls20{letter-spacing:1.637547pt;}
.ls2c{letter-spacing:1.637867pt;}
.ls27{letter-spacing:1.638400pt;}
.ls23{letter-spacing:1.638613pt;}
.ls26{letter-spacing:1.638933pt;}
.ls25{letter-spacing:1.640000pt;}
.ls28{letter-spacing:1.684800pt;}
.ls1c{letter-spacing:4.597333pt;}
.ls18{letter-spacing:4.617547pt;}
.ls1b{letter-spacing:4.617600pt;}
.ls1a{letter-spacing:4.618667pt;}
.ls1d{letter-spacing:4.639467pt;}
.lsb{letter-spacing:11.000000pt;}
.ls16{letter-spacing:20.013867pt;}
.lse{letter-spacing:20.014400pt;}
.ls13{letter-spacing:20.018667pt;}
.ls12{letter-spacing:20.019733pt;}
.lsf{letter-spacing:20.020267pt;}
.lsc{letter-spacing:20.040907pt;}
.lsd{letter-spacing:20.041067pt;}
.lsa{letter-spacing:1023.768000pt;}
.wsa{word-spacing:-25.666667pt;}
.ws4{word-spacing:-20.000000pt;}
.ws1{word-spacing:-19.477333pt;}
.ws7{word-spacing:-14.690133pt;}
.ws8{word-spacing:-14.678400pt;}
.ws5{word-spacing:-14.666667pt;}
.ws9{word-spacing:-14.660800pt;}
.ws6{word-spacing:-14.643200pt;}
.wsf{word-spacing:-0.187733pt;}
.wsd{word-spacing:-0.164267pt;}
.ws10{word-spacing:-0.158400pt;}
.ws3{word-spacing:-0.138667pt;}
.wse{word-spacing:-0.134933pt;}
.wsc{word-spacing:-0.115200pt;}
.ws2{word-spacing:-0.080000pt;}
.wsb{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-12.343467pt;}
._26{margin-left:-9.376107pt;}
._4{margin-left:-7.368000pt;}
._6{margin-left:-6.276800pt;}
._5{margin-left:-5.385600pt;}
._3{margin-left:-3.776000pt;}
._0{margin-left:-2.186667pt;}
._2{margin-left:-1.226667pt;}
._1{width:1.226667pt;}
._d{width:10.988267pt;}
._1b{width:33.939200pt;}
._e{width:34.845547pt;}
._1d{width:45.737280pt;}
._15{width:52.648000pt;}
._19{width:56.835200pt;}
._b{width:58.361600pt;}
._24{width:63.984533pt;}
._22{width:82.836267pt;}
._1f{width:87.041813pt;}
._10{width:91.186667pt;}
._9{width:92.707733pt;}
._1e{width:134.037547pt;}
._25{width:153.833067pt;}
._12{width:162.096533pt;}
._1a{width:164.678400pt;}
._c{width:165.897600pt;}
._a{width:167.041600pt;}
._18{width:181.019200pt;}
._13{width:184.985067pt;}
._23{width:204.869867pt;}
._1c{width:212.150933pt;}
._20{width:222.337867pt;}
._11{width:232.904533pt;}
._21{width:288.114133pt;}
._17{width:292.734400pt;}
._f{width:307.364907pt;}
._8{width:308.381333pt;}
._14{width:325.939733pt;}
._16{width:628.364053pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:80.000000pt;}
.fs3{font-size:138.666667pt;}
.fs5{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.333333pt;}
.y2{bottom:6.666667pt;}
.y6{bottom:10.266693pt;}
.y1d5{bottom:21.797600pt;}
.y151{bottom:28.576533pt;}
.y101{bottom:36.647360pt;}
.y1{bottom:43.745333pt;}
.y19b{bottom:45.254000pt;}
.yc7{bottom:45.672200pt;}
.y6a{bottom:47.492120pt;}
.y14f{bottom:48.671280pt;}
.y5{bottom:50.092893pt;}
.y3d{bottom:50.398560pt;}
.y100{bottom:55.314027pt;}
.y1db{bottom:59.067600pt;}
.y102{bottom:61.062173pt;}
.yc6{bottom:63.005533pt;}
.y9a{bottom:64.838387pt;}
.y19a{bottom:66.587333pt;}
.y14e{bottom:67.337947pt;}
.y54{bottom:69.041867pt;}
.y69{bottom:69.578400pt;}
.y9b{bottom:69.590600pt;}
.yff{bottom:73.980693pt;}
.y3e{bottom:74.929467pt;}
.y3{bottom:75.590560pt;}
.y1da{bottom:77.734267pt;}
.y177{bottom:78.528667pt;}
.y13d{bottom:80.148613pt;}
.yc5{bottom:80.338867pt;}
.y12e{bottom:82.603920pt;}
.y99{bottom:83.505053pt;}
.y12c{bottom:84.503693pt;}
.y199{bottom:85.254000pt;}
.y14d{bottom:86.004613pt;}
.y68{bottom:86.911733pt;}
.y53{bottom:89.575200pt;}
.yfe{bottom:92.647360pt;}
.y3c{bottom:93.065227pt;}
.y1d9{bottom:96.400933pt;}
.y176{bottom:97.195333pt;}
.yc4{bottom:97.672200pt;}
.y98{bottom:102.171747pt;}
.y12b{bottom:103.170360pt;}
.y13c{bottom:104.148613pt;}
.y67{bottom:104.245067pt;}
.y14c{bottom:104.671280pt;}
.y198{bottom:106.587333pt;}
.y52{bottom:110.108533pt;}
.y152{bottom:111.135067pt;}
.yfd{bottom:111.314027pt;}
.y13e{bottom:114.081253pt;}
.yc3{bottom:115.005533pt;}
.y175{bottom:115.862000pt;}
.yd5{bottom:116.495707pt;}
.y22{bottom:118.849840pt;}
.y97{bottom:120.838413pt;}
.y66{bottom:121.578400pt;}
.y12a{bottom:121.837027pt;}
.y13b{bottom:122.815280pt;}
.y14b{bottom:123.337947pt;}
.y197{bottom:125.254000pt;}
.yfc{bottom:129.980693pt;}
.y51{bottom:130.641867pt;}
.yc2{bottom:132.338867pt;}
.y174{bottom:134.528667pt;}
.y3b{bottom:135.731893pt;}
.y65{bottom:138.911733pt;}
.y96{bottom:139.505080pt;}
.y129{bottom:140.503693pt;}
.y14a{bottom:142.004613pt;}
.y196{bottom:143.920667pt;}
.y178{bottom:144.409867pt;}
.y13a{bottom:146.815280pt;}
.yfb{bottom:148.647360pt;}
.yc1{bottom:149.672200pt;}
.y50{bottom:151.175200pt;}
.y1d8{bottom:152.400933pt;}
.y1b7{bottom:152.652800pt;}
.y173{bottom:153.195333pt;}
.y64{bottom:156.245067pt;}
.y95{bottom:158.171747pt;}
.y128{bottom:159.170360pt;}
.y149{bottom:160.671280pt;}
.y21{bottom:166.048400pt;}
.y1d4{bottom:166.210000pt;}
.yc0{bottom:167.005533pt;}
.yfa{bottom:167.314027pt;}
.y139{bottom:170.815280pt;}
.y1d7{bottom:171.067600pt;}
.y1b6{bottom:171.319467pt;}
.y4f{bottom:171.708533pt;}
.y172{bottom:171.862000pt;}
.y63{bottom:173.578400pt;}
.y94{bottom:176.838413pt;}
.y127{bottom:177.837027pt;}
.y3a{bottom:178.398560pt;}
.y148{bottom:179.337947pt;}
.ybf{bottom:184.338867pt;}
.yf9{bottom:185.980693pt;}
.y138{bottom:189.481947pt;}
.y62{bottom:190.911733pt;}
.y4e{bottom:192.241867pt;}
.y93{bottom:195.505080pt;}
.y126{bottom:196.503693pt;}
.y39{bottom:197.065227pt;}
.y147{bottom:198.004613pt;}
.ybe{bottom:201.672200pt;}
.yf8{bottom:204.647360pt;}
.y20{bottom:207.115067pt;}
.y61{bottom:208.245067pt;}
.y4d{bottom:212.775200pt;}
.y137{bottom:213.481947pt;}
.y92{bottom:214.171747pt;}
.y125{bottom:215.170360pt;}
.y38{bottom:215.731893pt;}
.y146{bottom:216.671280pt;}
.ybd{bottom:219.005533pt;}
.yf7{bottom:223.314027pt;}
.y91{bottom:232.838413pt;}
.y4c{bottom:233.308533pt;}
.y124{bottom:233.837027pt;}
.y37{bottom:234.398560pt;}
.y145{bottom:235.337947pt;}
.y195{bottom:236.280000pt;}
.ybc{bottom:236.338867pt;}
.y136{bottom:237.481947pt;}
.yf6{bottom:241.980693pt;}
.y1f{bottom:248.181733pt;}
.y90{bottom:251.505080pt;}
.y123{bottom:252.503693pt;}
.y36{bottom:253.065227pt;}
.ybb{bottom:253.672200pt;}
.y1b5{bottom:253.986133pt;}
.y144{bottom:254.004613pt;}
.y135{bottom:256.148613pt;}
.yf5{bottom:260.647360pt;}
.y60{bottom:261.578400pt;}
.y8f{bottom:270.171747pt;}
.yba{bottom:271.005533pt;}
.y122{bottom:271.170360pt;}
.y35{bottom:271.731893pt;}
.y171{bottom:272.221467pt;}
.y1b4{bottom:272.652800pt;}
.y143{bottom:272.671280pt;}
.y4b{bottom:274.375200pt;}
.y134{bottom:274.815280pt;}
.y5f{bottom:279.312800pt;}
.yf4{bottom:279.314027pt;}
.yb9{bottom:288.338867pt;}
.y8e{bottom:288.838413pt;}
.y1e{bottom:289.248400pt;}
.y121{bottom:289.837027pt;}
.y34{bottom:290.398560pt;}
.y1b3{bottom:291.319467pt;}
.y142{bottom:291.337947pt;}
.y4a{bottom:294.908533pt;}
.y5e{bottom:297.979467pt;}
.y133{bottom:298.815280pt;}
.yb8{bottom:305.672200pt;}
.y8d{bottom:307.505080pt;}
.y120{bottom:308.503693pt;}
.y33{bottom:309.065227pt;}
.y1d{bottom:309.781733pt;}
.y1b2{bottom:309.986133pt;}
.y141{bottom:310.004613pt;}
.y49{bottom:315.441867pt;}
.y5d{bottom:316.646133pt;}
.y132{bottom:317.481947pt;}
.yf3{bottom:319.314027pt;}
.yb7{bottom:323.005533pt;}
.y19c{bottom:325.010933pt;}
.y8c{bottom:326.171747pt;}
.y32{bottom:327.731893pt;}
.y1b1{bottom:328.652800pt;}
.y140{bottom:328.671280pt;}
.y1c{bottom:330.315067pt;}
.y5c{bottom:335.312800pt;}
.y48{bottom:335.975200pt;}
.y131{bottom:336.148613pt;}
.yf2{bottom:337.980693pt;}
.yb6{bottom:340.338867pt;}
.y8b{bottom:344.838413pt;}
.y31{bottom:346.398560pt;}
.y1b0{bottom:347.319467pt;}
.y13f{bottom:347.337947pt;}
.y1b{bottom:350.848400pt;}
.y5b{bottom:353.979467pt;}
.y194{bottom:354.587333pt;}
.y47{bottom:356.508533pt;}
.yf1{bottom:356.647360pt;}
.yb5{bottom:357.672200pt;}
.y130{bottom:360.148613pt;}
.y8a{bottom:363.505080pt;}
.y30{bottom:365.065227pt;}
.y1af{bottom:365.986133pt;}
.y11f{bottom:368.503693pt;}
.y1a{bottom:371.381733pt;}
.y193{bottom:373.254000pt;}
.y170{bottom:374.528667pt;}
.yb4{bottom:375.005533pt;}
.yf0{bottom:375.314027pt;}
.y46{bottom:377.041867pt;}
.y12f{bottom:378.815280pt;}
.y89{bottom:382.171747pt;}
.y2f{bottom:383.731893pt;}
.y1ae{bottom:384.652800pt;}
.y11e{bottom:387.170360pt;}
.y1d3{bottom:391.406507pt;}
.y19{bottom:391.915067pt;}
.yb3{bottom:392.338867pt;}
.y16f{bottom:393.195333pt;}
.yef{bottom:393.980693pt;}
.y192{bottom:394.587333pt;}
.y88{bottom:400.838413pt;}
.y2e{bottom:402.398560pt;}
.y1ad{bottom:403.319467pt;}
.y11d{bottom:405.837027pt;}
.y5a{bottom:408.646133pt;}
.y1d2{bottom:410.073173pt;}
.y16e{bottom:411.862000pt;}
.y18{bottom:412.448400pt;}
.yee{bottom:412.647360pt;}
.y191{bottom:413.254000pt;}
.y45{bottom:418.108533pt;}
.y87{bottom:419.505080pt;}
.y2d{bottom:421.065227pt;}
.y1ac{bottom:421.986133pt;}
.y11c{bottom:424.503693pt;}
.y59{bottom:427.312800pt;}
.y16d{bottom:430.528667pt;}
.yed{bottom:431.314027pt;}
.y190{bottom:431.920667pt;}
.y17{bottom:432.981733pt;}
.y44{bottom:438.641867pt;}
.y2c{bottom:439.731893pt;}
.y1ab{bottom:440.652800pt;}
.y11b{bottom:443.170360pt;}
.y58{bottom:445.979467pt;}
.yb2{bottom:447.005533pt;}
.y16c{bottom:449.195333pt;}
.yec{bottom:449.980693pt;}
.y18f{bottom:453.254000pt;}
.y16{bottom:453.515067pt;}
.y86{bottom:456.838413pt;}
.y43{bottom:459.175200pt;}
.y1aa{bottom:459.319467pt;}
.y11a{bottom:461.837027pt;}
.y57{bottom:464.646133pt;}
.y16b{bottom:467.862000pt;}
.yeb{bottom:468.647360pt;}
.y18e{bottom:471.920667pt;}
.y15{bottom:474.048400pt;}
.y85{bottom:475.505080pt;}
.y1a9{bottom:477.986133pt;}
.y42{bottom:479.708533pt;}
.y119{bottom:480.503693pt;}
.yb1{bottom:481.672200pt;}
.y2b{bottom:482.398560pt;}
.y56{bottom:483.312800pt;}
.y1d1{bottom:484.739840pt;}
.y16a{bottom:486.528667pt;}
.yea{bottom:487.314027pt;}
.y12d{bottom:488.067733pt;}
.y18d{bottom:490.587333pt;}
.y84{bottom:494.171747pt;}
.y14{bottom:494.581733pt;}
.y1a8{bottom:496.652800pt;}
.y118{bottom:499.170360pt;}
.yd4{bottom:499.262667pt;}
.y41{bottom:500.241867pt;}
.y1d0{bottom:503.406507pt;}
.y2a{bottom:505.065227pt;}
.y169{bottom:505.195333pt;}
.ye9{bottom:505.980693pt;}
.y18c{bottom:511.920667pt;}
.y83{bottom:512.838413pt;}
.y13{bottom:515.115067pt;}
.y1a7{bottom:515.319467pt;}
.yb0{bottom:516.338867pt;}
.yd3{bottom:516.596000pt;}
.y117{bottom:517.837027pt;}
.y1cf{bottom:522.073173pt;}
.y29{bottom:523.731893pt;}
.y168{bottom:523.862000pt;}
.ye8{bottom:524.647360pt;}
.y40{bottom:526.755333pt;}
.y18b{bottom:530.587333pt;}
.y82{bottom:531.505080pt;}
.yd2{bottom:533.929333pt;}
.y1a6{bottom:533.986133pt;}
.y12{bottom:535.648400pt;}
.y116{bottom:536.503693pt;}
.y1ce{bottom:540.739840pt;}
.y28{bottom:542.398560pt;}
.y167{bottom:542.528667pt;}
.ye7{bottom:543.314027pt;}
.y55{bottom:543.684400pt;}
.y150{bottom:546.500133pt;}
.y81{bottom:550.171747pt;}
.yaf{bottom:551.005533pt;}
.yd1{bottom:551.262667pt;}
.y18a{bottom:551.920667pt;}
.y1a5{bottom:552.652800pt;}
.y115{bottom:555.170360pt;}
.y11{bottom:556.181733pt;}
.y1cd{bottom:559.406507pt;}
.y166{bottom:561.195333pt;}
.yae{bottom:568.338867pt;}
.yd0{bottom:568.596000pt;}
.y80{bottom:568.838413pt;}
.y189{bottom:570.587333pt;}
.y1a4{bottom:571.319467pt;}
.y114{bottom:573.837027pt;}
.y1cc{bottom:578.073173pt;}
.y165{bottom:579.862000pt;}
.ye6{bottom:583.314027pt;}
.ycf{bottom:585.929333pt;}
.y7f{bottom:587.505080pt;}
.y188{bottom:589.254000pt;}
.y1a3{bottom:589.986133pt;}
.y113{bottom:592.503693pt;}
.y1cb{bottom:596.739840pt;}
.y10{bottom:597.248400pt;}
.y164{bottom:598.528667pt;}
.ye5{bottom:601.980693pt;}
.y27{bottom:602.441227pt;}
.yce{bottom:603.262667pt;}
.y7e{bottom:606.171747pt;}
.y1a2{bottom:608.652800pt;}
.y187{bottom:610.587333pt;}
.y1ca{bottom:615.406507pt;}
.y163{bottom:617.195333pt;}
.yf{bottom:617.781733pt;}
.ycd{bottom:620.596000pt;}
.ye4{bottom:620.647360pt;}
.y26{bottom:622.707893pt;}
.y7d{bottom:624.838413pt;}
.y1a1{bottom:627.319467pt;}
.y186{bottom:629.254000pt;}
.y1c9{bottom:634.073173pt;}
.y162{bottom:635.862000pt;}
.yad{bottom:637.672200pt;}
.ycc{bottom:637.929333pt;}
.ye{bottom:638.315067pt;}
.ye3{bottom:639.314027pt;}
.y25{bottom:642.974560pt;}
.y7c{bottom:643.505080pt;}
.y1a0{bottom:645.986133pt;}
.y185{bottom:647.920667pt;}
.y112{bottom:652.503693pt;}
.y1c8{bottom:652.739840pt;}
.y161{bottom:654.528667pt;}
.ycb{bottom:655.262667pt;}
.ye2{bottom:657.980693pt;}
.yd{bottom:658.848400pt;}
.y7b{bottom:662.171747pt;}
.y19f{bottom:664.652800pt;}
.y184{bottom:666.587333pt;}
.y111{bottom:671.170360pt;}
.y1c7{bottom:671.406507pt;}
.yca{bottom:672.596000pt;}
.y160{bottom:673.195333pt;}
.yac{bottom:675.005533pt;}
.ye1{bottom:676.647360pt;}
.y19e{bottom:683.319467pt;}
.y183{bottom:687.920667pt;}
.y110{bottom:689.837027pt;}
.yc9{bottom:689.929333pt;}
.y1c6{bottom:690.073173pt;}
.y15f{bottom:691.862000pt;}
.yab{bottom:692.338867pt;}
.ye0{bottom:695.314027pt;}
.y7a{bottom:699.505080pt;}
.y19d{bottom:701.986133pt;}
.y182{bottom:706.587333pt;}
.yc8{bottom:707.262667pt;}
.y10f{bottom:708.503693pt;}
.y1c5{bottom:708.739840pt;}
.yaa{bottom:709.672200pt;}
.y15e{bottom:710.528667pt;}
.y24{bottom:714.544427pt;}
.yc{bottom:714.624400pt;}
.y79{bottom:718.171747pt;}
.y181{bottom:725.254000pt;}
.ya9{bottom:727.005533pt;}
.y10e{bottom:727.170360pt;}
.y1c4{bottom:727.406507pt;}
.y15d{bottom:729.195333pt;}
.yb{bottom:734.891067pt;}
.ydf{bottom:735.314027pt;}
.y78{bottom:736.838413pt;}
.ya8{bottom:744.338867pt;}
.y10d{bottom:745.837027pt;}
.y1c3{bottom:746.073173pt;}
.y180{bottom:746.587333pt;}
.y15c{bottom:747.862000pt;}
.yde{bottom:753.980693pt;}
.ya{bottom:755.157733pt;}
.y77{bottom:755.505080pt;}
.y23{bottom:758.464160pt;}
.ya7{bottom:761.672200pt;}
.y10c{bottom:764.503693pt;}
.y1c2{bottom:764.739840pt;}
.y17f{bottom:765.254000pt;}
.y15b{bottom:766.528667pt;}
.ydd{bottom:772.647360pt;}
.y76{bottom:774.171747pt;}
.ya6{bottom:779.005533pt;}
.y1c1{bottom:783.406507pt;}
.y17e{bottom:783.920667pt;}
.y15a{bottom:785.195333pt;}
.y1d6{bottom:788.262933pt;}
.ydc{bottom:791.314027pt;}
.y75{bottom:792.838413pt;}
.ya5{bottom:796.338867pt;}
.y1c0{bottom:802.073173pt;}
.y159{bottom:803.862000pt;}
.y10b{bottom:804.503693pt;}
.y17d{bottom:805.254000pt;}
.ydb{bottom:809.980693pt;}
.y74{bottom:811.505080pt;}
.ya4{bottom:813.672200pt;}
.y1bf{bottom:820.739840pt;}
.y158{bottom:822.528667pt;}
.y10a{bottom:823.170360pt;}
.y17c{bottom:823.920667pt;}
.yda{bottom:828.647360pt;}
.y73{bottom:830.171747pt;}
.ya3{bottom:831.005533pt;}
.y1be{bottom:839.406507pt;}
.y157{bottom:841.195333pt;}
.y109{bottom:841.837027pt;}
.y17b{bottom:845.254000pt;}
.yd9{bottom:847.314027pt;}
.ya2{bottom:848.338867pt;}
.y72{bottom:848.838413pt;}
.y9{bottom:848.928667pt;}
.y1bd{bottom:858.073173pt;}
.y156{bottom:859.862000pt;}
.y108{bottom:860.503693pt;}
.y17a{bottom:863.920667pt;}
.ya1{bottom:865.672200pt;}
.yd8{bottom:865.980693pt;}
.y71{bottom:867.505080pt;}
.y1bc{bottom:876.739840pt;}
.y155{bottom:878.528667pt;}
.y107{bottom:879.170360pt;}
.y179{bottom:882.587333pt;}
.ya0{bottom:883.005533pt;}
.yd7{bottom:884.647360pt;}
.y70{bottom:886.171747pt;}
.y8{bottom:890.194267pt;}
.y1bb{bottom:895.406507pt;}
.y154{bottom:897.195333pt;}
.y106{bottom:897.837027pt;}
.y9f{bottom:900.338867pt;}
.y1e2{bottom:903.199613pt;}
.yd6{bottom:903.314027pt;}
.y6f{bottom:904.838413pt;}
.y1ba{bottom:914.073173pt;}
.y153{bottom:915.862000pt;}
.y105{bottom:916.503693pt;}
.y9e{bottom:917.672200pt;}
.y1e1{bottom:921.862667pt;}
.y1de{bottom:921.997333pt;}
.y6e{bottom:923.505080pt;}
.y1b9{bottom:932.739840pt;}
.y9d{bottom:935.005533pt;}
.y104{bottom:935.170360pt;}
.y1e0{bottom:940.529333pt;}
.y1dd{bottom:940.664000pt;}
.y6d{bottom:942.171747pt;}
.y1b8{bottom:951.406507pt;}
.y9c{bottom:952.338867pt;}
.y103{bottom:953.837027pt;}
.y4{bottom:956.739973pt;}
.y3f{bottom:957.401067pt;}
.y1df{bottom:959.196000pt;}
.y1dc{bottom:959.330667pt;}
.y6c{bottom:960.838413pt;}
.y6b{bottom:979.505080pt;}
.h2{height:16.000000pt;}
.h6{height:24.666680pt;}
.h23{height:37.429688pt;}
.h13{height:40.190104pt;}
.h1d{height:41.588542pt;}
.h16{height:42.080729pt;}
.h3{height:44.106667pt;}
.h5{height:45.747396pt;}
.h1c{height:47.545293pt;}
.h7{height:49.866667pt;}
.h22{height:51.386147pt;}
.hf{height:53.138021pt;}
.h9{height:57.812500pt;}
.hb{height:58.223958pt;}
.he{height:58.476562pt;}
.hd{height:97.432292pt;}
.ha{height:100.208333pt;}
.h1f{height:106.640625pt;}
.h24{height:240.666533pt;}
.h1b{height:367.270267pt;}
.h1a{height:398.747600pt;}
.h12{height:503.244933pt;}
.h11{height:520.174133pt;}
.h21{height:721.918400pt;}
.hc{height:801.130800pt;}
.h20{height:902.519600pt;}
.h8{height:915.481200pt;}
.h17{height:930.433733pt;}
.h1e{height:935.794400pt;}
.h15{height:971.338933pt;}
.h19{height:972.000000pt;}
.h18{height:973.769333pt;}
.h4{height:975.372533pt;}
.h10{height:976.033733pt;}
.h14{height:999.437333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w14{width:163.036000pt;}
.wd{width:256.276267pt;}
.w13{width:256.438000pt;}
.wf{width:256.601333pt;}
.w12{width:259.073467pt;}
.w19{width:264.536533pt;}
.w1a{width:264.943067pt;}
.w17{width:268.610667pt;}
.w9{width:271.187867pt;}
.w16{width:273.824400pt;}
.wc{width:275.214000pt;}
.wa{width:280.090533pt;}
.w1b{width:287.145067pt;}
.w6{width:287.395200pt;}
.w5{width:296.606933pt;}
.w2{width:421.640000pt;}
.we{width:465.108000pt;}
.w1c{width:467.484000pt;}
.w11{width:467.660000pt;}
.w15{width:467.674667pt;}
.w8{width:468.144000pt;}
.w4{width:468.276000pt;}
.w18{width:468.510667pt;}
.wb{width:468.628000pt;}
.w1d{width:547.473600pt;}
.w7{width:642.525600pt;}
.w10{width:646.559333pt;}
.w3{width:650.592933pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:4.033693pt;}
.x53{left:5.451600pt;}
.x2c{left:6.442627pt;}
.x34{left:7.844853pt;}
.x50{left:8.743653pt;}
.x22{left:9.867600pt;}
.x14{left:11.182240pt;}
.x11{left:12.396107pt;}
.x21{left:13.301467pt;}
.x1f{left:14.569067pt;}
.x13{left:16.231067pt;}
.x3c{left:17.207067pt;}
.xf{left:18.354440pt;}
.x12{left:19.400013pt;}
.x2e{left:21.295493pt;}
.x32{left:22.790800pt;}
.x4f{left:23.933107pt;}
.x25{left:24.867200pt;}
.xb{left:26.167587pt;}
.x10{left:27.302680pt;}
.xd{left:28.856707pt;}
.xe{left:29.898707pt;}
.x1e{left:30.872133pt;}
.x24{left:32.265067pt;}
.xa{left:33.923440pt;}
.x15{left:35.434507pt;}
.x16{left:36.924093pt;}
.x1d{left:39.130533pt;}
.x29{left:40.500667pt;}
.x23{left:41.721733pt;}
.x9{left:42.844347pt;}
.x1b{left:43.833733pt;}
.x2d{left:45.655187pt;}
.x7{left:47.547467pt;}
.x5d{left:49.008587pt;}
.x35{left:50.237107pt;}
.x57{left:51.314747pt;}
.x51{left:52.317547pt;}
.x5a{left:54.344933pt;}
.x4b{left:55.532853pt;}
.x4d{left:57.606107pt;}
.x4a{left:61.240507pt;}
.x28{left:62.568800pt;}
.x52{left:64.237840pt;}
.x54{left:65.546800pt;}
.x58{left:66.511307pt;}
.x6{left:68.136027pt;}
.x19{left:69.212667pt;}
.x4c{left:70.568373pt;}
.x2{left:71.556867pt;}
.x27{left:72.967200pt;}
.x67{left:74.355573pt;}
.x2a{left:75.590560pt;}
.x55{left:78.376533pt;}
.x2f{left:80.341707pt;}
.x1c{left:81.759467pt;}
.x5e{left:82.667493pt;}
.x20{left:83.687867pt;}
.x8{left:85.473227pt;}
.x62{left:86.495227pt;}
.xc{left:87.863493pt;}
.x5f{left:89.427893pt;}
.x49{left:90.330373pt;}
.x60{left:91.647893pt;}
.x1a{left:92.988000pt;}
.x17{left:94.781493pt;}
.x56{left:96.953600pt;}
.x5{left:99.856027pt;}
.x59{left:101.120000pt;}
.x31{left:102.361733pt;}
.x5c{left:105.562693pt;}
.x64{left:107.738000pt;}
.x36{left:109.974373pt;}
.x4e{left:113.372373pt;}
.x26{left:117.518667pt;}
.x65{left:121.725733pt;}
.x61{left:123.352960pt;}
.x6d{left:156.314667pt;}
.x4{left:162.715333pt;}
.x48{left:164.299333pt;}
.x6c{left:176.597907pt;}
.x1{left:177.702667pt;}
.x66{left:194.360267pt;}
.x6b{left:216.676320pt;}
.x6a{left:224.356240pt;}
.x3b{left:231.392400pt;}
.x39{left:243.223467pt;}
.x3a{left:245.455733pt;}
.x38{left:249.109600pt;}
.x47{left:271.820640pt;}
.x2b{left:278.927573pt;}
.x33{left:287.375307pt;}
.x69{left:380.957027pt;}
.x68{left:430.971067pt;}
.x18{left:434.692267pt;}
.x30{left:438.025600pt;}
.x63{left:456.172267pt;}
.x37{left:461.840000pt;}
.x43{left:467.433738pt;}
.x3d{left:469.070951pt;}
.x42{left:472.722476pt;}
.x3e{left:476.037103pt;}
.x40{left:478.231923pt;}
.x3f{left:481.702293pt;}
.x41{left:483.527653pt;}
.x44{left:486.788400pt;}
.x45{left:500.613253pt;}
.x46{left:515.940573pt;}
.x5b{left:555.080133pt;}
}




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