
    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_693f7ac15f330c41418e372f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.870605;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_c50b8f719a5c28f04b5a40c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_63f3a02ea97c3acebb7097a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1155739b2b3703724d8a74bf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_e61e68f159868c5a85bda8f0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.928223;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_0499224a00e27f9ff56cb03b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9f4c8f73f914856270341c39.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bbca92f1d960f116edc08a33.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.677734;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_0ab3acc78949c933400637b8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.862793;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_67b4ad84cdca63be3c0f7c73.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_836d90df987d7cc4620e91eb.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_6b18d4484c6712c5944411d4.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-30.240000px;}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.134748px;}
.v1{vertical-align:33.120000px;}
.ls26{letter-spacing:-0.014400px;}
.lsf{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000540px;}
.ls5a{letter-spacing:0.000600px;}
.ls20{letter-spacing:0.006480px;}
.ls2c{letter-spacing:0.011400px;}
.ls1b{letter-spacing:0.014400px;}
.ls1f{letter-spacing:0.036000px;}
.ls25{letter-spacing:0.054960px;}
.ls2a{letter-spacing:0.073140px;}
.ls21{letter-spacing:0.076320px;}
.ls1{letter-spacing:0.119640px;}
.ls52{letter-spacing:0.143856px;}
.ls50{letter-spacing:0.170496px;}
.ls56{letter-spacing:0.191160px;}
.ls4f{letter-spacing:0.191808px;}
.ls13{letter-spacing:0.194832px;}
.ls17{letter-spacing:0.224352px;}
.ls1c{letter-spacing:0.227880px;}
.ls59{letter-spacing:0.239760px;}
.ls18{letter-spacing:0.253872px;}
.ls5{letter-spacing:0.256680px;}
.lse{letter-spacing:0.257280px;}
.ls4a{letter-spacing:0.287712px;}
.ls3{letter-spacing:0.317376px;}
.ls1a{letter-spacing:0.318816px;}
.ls24{letter-spacing:0.319680px;}
.ls22{letter-spacing:0.320280px;}
.lsc{letter-spacing:0.320880px;}
.ls8{letter-spacing:0.322200px;}
.ls40{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.359136px;}
.ls51{letter-spacing:0.362304px;}
.ls16{letter-spacing:0.383760px;}
.ls47{letter-spacing:0.388944px;}
.ls54{letter-spacing:0.399600px;}
.ls3b{letter-spacing:0.400200px;}
.ls0{letter-spacing:0.400896px;}
.ls3f{letter-spacing:0.401760px;}
.ls48{letter-spacing:0.404928px;}
.ls45{letter-spacing:0.410256px;}
.ls55{letter-spacing:0.415584px;}
.ls43{letter-spacing:0.420912px;}
.ls42{letter-spacing:0.426240px;}
.ls44{letter-spacing:0.431568px;}
.ls53{letter-spacing:0.436896px;}
.ls19{letter-spacing:0.478224px;}
.ls4c{letter-spacing:0.479520px;}
.ls49{letter-spacing:0.507744px;}
.ls6{letter-spacing:0.519552px;}
.lsb{letter-spacing:0.525456px;}
.ls4e{letter-spacing:0.527472px;}
.lsa{letter-spacing:0.537264px;}
.ls9{letter-spacing:0.543168px;}
.ls4d{letter-spacing:0.548784px;}
.ls7{letter-spacing:0.549072px;}
.ls23{letter-spacing:0.554976px;}
.ls31{letter-spacing:0.560880px;}
.ls2e{letter-spacing:0.576960px;}
.ls2b{letter-spacing:0.578592px;}
.ls32{letter-spacing:0.584496px;}
.ls57{letter-spacing:0.596160px;}
.ls11{letter-spacing:0.602640px;}
.ls36{letter-spacing:0.608112px;}
.ls4b{letter-spacing:0.628704px;}
.ls15{letter-spacing:0.637632px;}
.ls58{letter-spacing:0.650016px;}
.ls41{letter-spacing:0.654480px;}
.ls3a{letter-spacing:0.660960px;}
.ls4{letter-spacing:0.667440px;}
.ls3d{letter-spacing:0.680400px;}
.ls10{letter-spacing:0.702576px;}
.ls30{letter-spacing:0.712800px;}
.ls34{letter-spacing:0.725760px;}
.ls38{letter-spacing:0.726192px;}
.ls37{letter-spacing:0.732096px;}
.ls35{letter-spacing:0.738000px;}
.ls39{letter-spacing:0.745200px;}
.ls12{letter-spacing:0.797040px;}
.ls27{letter-spacing:0.826560px;}
.ls14{letter-spacing:0.874800px;}
.ls3c{letter-spacing:0.920160px;}
.ls28{letter-spacing:0.941280px;}
.ls46{letter-spacing:0.972288px;}
.ls3e{letter-spacing:1.030320px;}
.ls29{letter-spacing:3.034200px;}
.ls1e{letter-spacing:6.988800px;}
.lsd{letter-spacing:7.370280px;}
.ls33{letter-spacing:7.387200px;}
.ls2f{letter-spacing:22.239480px;}
.ls2d{letter-spacing:849.355260px;}
.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;}
}
.ws1{word-spacing:-23.577696px;}
.ws28{word-spacing:-20.052000px;}
.wse{word-spacing:-20.030400px;}
.ws29{word-spacing:-20.016000px;}
.ws15{word-spacing:-20.001600px;}
.ws4{word-spacing:-18.811440px;}
.ws16{word-spacing:-18.727200px;}
.ws1e{word-spacing:-18.694800px;}
.ws19{word-spacing:-17.145216px;}
.ws1c{word-spacing:-17.139312px;}
.ws2{word-spacing:-17.115696px;}
.wsa{word-spacing:-17.050752px;}
.ws17{word-spacing:-16.997616px;}
.ws1b{word-spacing:-16.991712px;}
.ws21{word-spacing:-16.968096px;}
.ws3{word-spacing:-16.962192px;}
.ws7{word-spacing:-16.956288px;}
.ws6{word-spacing:-16.950384px;}
.ws1a{word-spacing:-16.938576px;}
.ws8{word-spacing:-16.796880px;}
.wsb{word-spacing:-16.731936px;}
.ws18{word-spacing:-16.666992px;}
.ws9{word-spacing:-16.637472px;}
.ws5{word-spacing:-16.607952px;}
.ws10{word-spacing:-16.413120px;}
.ws20{word-spacing:-15.222096px;}
.ws23{word-spacing:-15.174144px;}
.ws22{word-spacing:-15.099552px;}
.ws26{word-spacing:-15.051600px;}
.ws25{word-spacing:-15.003648px;}
.ws27{word-spacing:-14.955696px;}
.wsd{word-spacing:-13.210560px;}
.ws1d{word-spacing:-0.810000px;}
.ws1f{word-spacing:-0.719280px;}
.ws24{word-spacing:-0.660960px;}
.wsf{word-spacing:-0.071280px;}
.ws0{word-spacing:-0.064800px;}
.ws13{word-spacing:-0.064743px;}
.ws14{word-spacing:-0.057052px;}
.ws11{word-spacing:-0.056954px;}
.wsc{word-spacing:0.000000px;}
.ws12{word-spacing:652.403966px;}
._18{margin-left:-10.051200px;}
._19{margin-left:-4.785600px;}
._1f{margin-left:-3.075532px;}
._0{margin-left:-1.002240px;}
._1{width:1.003680px;}
._3{width:2.007360px;}
._5{width:3.070080px;}
._4{width:4.544640px;}
._b{width:5.766384px;}
._2{width:7.143840px;}
._9{width:8.493936px;}
._1e{width:9.714744px;}
._1c{width:10.861260px;}
._d{width:12.103200px;}
._13{width:13.850460px;}
._15{width:14.925300px;}
._14{width:16.344300px;}
._a{width:17.995392px;}
._26{width:19.011456px;}
._1d{width:21.609960px;}
._8{width:23.050320px;}
._7{width:24.520272px;}
._6{width:25.564320px;}
._10{width:26.733600px;}
._c{width:28.000800px;}
._1a{width:29.105280px;}
._1b{width:30.183936px;}
._31{width:31.518528px;}
._f{width:32.630400px;}
._22{width:33.658920px;}
._11{width:34.707780px;}
._12{width:35.908020px;}
._e{width:37.147800px;}
._27{width:38.414880px;}
._23{width:39.924000px;}
._17{width:41.328000px;}
._16{width:42.912000px;}
._21{width:46.195200px;}
._25{width:47.980800px;}
._24{width:50.500800px;}
._20{width:53.445600px;}
._32{width:55.540800px;}
._2e{width:73.046880px;}
._2a{width:79.493760px;}
._2b{width:99.154080px;}
._2d{width:106.506720px;}
._2c{width:108.095040px;}
._30{width:125.696400px;}
._29{width:203.423040px;}
._28{width:280.465920px;}
._2f{width:843.984060px;}
.fc3{color:rgb(0,153,204);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs9{font-size:53.280000px;}
.fs6{font-size:56.954293px;}
.fs8{font-size:57.051651px;}
.fs2{font-size:59.040000px;}
.fs7{font-size:64.742915px;}
.fs0{font-size:64.800000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y13f{bottom:2.880000px;}
.yc0{bottom:3.240000px;}
.yea{bottom:3.240150px;}
.ybd{bottom:3.600000px;}
.y12a{bottom:3.960000px;}
.yed{bottom:5.040000px;}
.y17a{bottom:6.480000px;}
.yb5{bottom:9.425100px;}
.y1{bottom:13.500000px;}
.yc4{bottom:14.760000px;}
.yb2{bottom:15.266250px;}
.yb7{bottom:16.917750px;}
.y159{bottom:17.279955px;}
.y150{bottom:17.280000px;}
.y14c{bottom:17.640000px;}
.yb4{bottom:17.778450px;}
.y15a{bottom:18.359955px;}
.y13e{bottom:18.360000px;}
.yb8{bottom:18.606000px;}
.y14d{bottom:18.720000px;}
.y87{bottom:19.252498px;}
.y146{bottom:20.520000px;}
.yd1{bottom:20.879955px;}
.ye8{bottom:20.880000px;}
.yb3{bottom:21.088950px;}
.y138{bottom:21.960000px;}
.yec{bottom:22.320000px;}
.y132{bottom:22.680000px;}
.y129{bottom:23.040000px;}
.yd4{bottom:25.920000px;}
.yc3{bottom:32.040000px;}
.y14a{bottom:32.760000px;}
.y184{bottom:33.839955px;}
.y13d{bottom:33.840000px;}
.y15d{bottom:34.200000px;}
.yb1{bottom:34.560000px;}
.y86{bottom:36.290107px;}
.y145{bottom:37.800000px;}
.yd0{bottom:38.159955px;}
.ye7{bottom:38.160000px;}
.y131{bottom:41.760000px;}
.yf0{bottom:42.480000px;}
.yd3{bottom:43.200000px;}
.yc9{bottom:43.560000px;}
.yb6{bottom:43.611000px;}
.y2{bottom:46.035045px;}
.y140{bottom:46.800000px;}
.y156{bottom:48.240000px;}
.y183{bottom:49.319955px;}
.y157{bottom:49.320000px;}
.y13c{bottom:49.680000px;}
.y85{bottom:53.327717px;}
.yb0{bottom:53.640000px;}
.ye6{bottom:55.080000px;}
.ycf{bottom:55.439955px;}
.y143{bottom:55.440000px;}
.yc8{bottom:60.840000px;}
.y13a{bottom:64.080000px;}
.y15f{bottom:64.800000px;}
.y13b{bottom:65.160000px;}
.ybb{bottom:66.240000px;}
.y84{bottom:70.365326px;}
.yd8{bottom:72.000000px;}
.yaf{bottom:72.360000px;}
.yce{bottom:72.719955px;}
.y142{bottom:72.720000px;}
.y130{bottom:79.560000px;}
.ye3{bottom:80.640000px;}
.yba{bottom:83.520000px;}
.yae{bottom:91.440000px;}
.y169{bottom:96.120000px;}
.ye2{bottom:97.920000px;}
.y12f{bottom:99.000000px;}
.yad{bottom:110.520000px;}
.y168{bottom:111.600000px;}
.ye1{bottom:115.200000px;}
.y12e{bottom:117.720000px;}
.y7f{bottom:118.756192px;}
.y54{bottom:119.475045px;}
.y64{bottom:127.035045px;}
.y17e{bottom:127.080000px;}
.y7e{bottom:135.814084px;}
.ycd{bottom:136.215045px;}
.y53{bottom:136.755000px;}
.y12d{bottom:136.800000px;}
.y63{bottom:137.835000px;}
.y182{bottom:138.015045px;}
.y158{bottom:139.455045px;}
.y126{bottom:145.755000px;}
.y7d{bottom:152.851693px;}
.y52{bottom:154.035000px;}
.y12c{bottom:155.520000px;}
.y109{bottom:156.915000px;}
.y125{bottom:166.635000px;}
.y7c{bottom:169.889302px;}
.y9e{bottom:170.955000px;}
.y155{bottom:171.495000px;}
.y108{bottom:177.435000px;}
.y2a{bottom:178.875000px;}
.y51{bottom:179.235000px;}
.y82{bottom:180.862334px;}
.y7b{bottom:186.926911px;}
.y124{bottom:187.875000px;}
.y50{bottom:189.315000px;}
.y16c{bottom:190.035000px;}
.y62{bottom:191.475000px;}
.y9d{bottom:196.515000px;}
.y81{bottom:197.899943px;}
.y107{bottom:198.315000px;}
.y181{bottom:200.655000px;}
.y7a{bottom:203.964521px;}
.y4f{bottom:206.595000px;}
.y9c{bottom:207.675000px;}
.y123{bottom:208.035000px;}
.y29{bottom:208.755000px;}
.y83{bottom:209.562592px;}
.y16b{bottom:210.915000px;}
.y61{bottom:211.995000px;}
.y80{bottom:214.937552px;}
.y79{bottom:221.002130px;}
.y122{bottom:223.515000px;}
.yc7{bottom:225.495000px;}
.y106{bottom:227.835000px;}
.y4e{bottom:231.435000px;}
.y60{bottom:232.875000px;}
.y154{bottom:234.135000px;}
.y28{bottom:238.275000px;}
.y16a{bottom:241.695000px;}
.y4d{bottom:243.675000px;}
.ycc{bottom:245.655000px;}
.y5f{bottom:253.395000px;}
.y105{bottom:257.715000px;}
.ycb{bottom:264.735000px;}
.y153{bottom:265.815000px;}
.y27{bottom:267.435000px;}
.y1ab{bottom:272.835000px;}
.y5e{bottom:274.275000px;}
.y104{bottom:278.235000px;}
.y180{bottom:279.135000px;}
.yca{bottom:282.735000px;}
.y73{bottom:283.290817px;}
.y26{bottom:284.715000px;}
.y5d{bottom:294.795000px;}
.y4c{bottom:297.315000px;}
.y77{bottom:297.671371px;}
.y152{bottom:297.855000px;}
.y103{bottom:299.115000px;}
.y72{bottom:300.328426px;}
.yc2{bottom:300.735000px;}
.y25{bottom:301.995000px;}
.y1aa{bottom:302.715000px;}
.y76{bottom:314.708980px;}
.y71{bottom:317.366036px;}
.y4b{bottom:317.835000px;}
.y24{bottom:319.275000px;}
.y102{bottom:319.635000px;}
.y167{bottom:319.815000px;}
.yc6{bottom:320.175000px;}
.y1a9{bottom:323.235000px;}
.y5c{bottom:324.315000px;}
.y17f{bottom:326.655000px;}
.y75{bottom:331.746589px;}
.y70{bottom:334.403645px;}
.y23{bottom:336.555000px;}
.y78{bottom:336.594194px;}
.y4a{bottom:338.715000px;}
.y136{bottom:339.795000px;}
.yc5{bottom:340.335000px;}
.y101{bottom:340.515000px;}
.y1a8{bottom:344.115000px;}
.y151{bottom:345.015000px;}
.y74{bottom:348.784198px;}
.y6f{bottom:351.441254px;}
.y22{bottom:353.835000px;}
.y5b{bottom:354.195000px;}
.y49{bottom:359.235000px;}
.y135{bottom:359.955000px;}
.yb9{bottom:360.495000px;}
.y100{bottom:361.035000px;}
.y1a7{bottom:373.635000px;}
.y5a{bottom:374.715000px;}
.y14f{bottom:377.055000px;}
.y134{bottom:377.235000px;}
.y21{bottom:380.115000px;}
.yc1{bottom:380.655000px;}
.yff{bottom:390.915000px;}
.y1a6{bottom:394.515000px;}
.y59{bottom:395.595000px;}
.y20{bottom:397.395000px;}
.y6d{bottom:400.677916px;}
.ybf{bottom:401.175000px;}
.y17d{bottom:404.775000px;}
.y14e{bottom:408.735000px;}
.y48{bottom:409.635000px;}
.yfe{bottom:411.435000px;}
.y1f{bottom:414.315000px;}
.y1a5{bottom:415.035000px;}
.y6c{bottom:417.735808px;}
.ybe{bottom:421.335000px;}
.y58{bottom:425.115000px;}
.y69{bottom:426.568997px;}
.y47{bottom:430.515000px;}
.y1e{bottom:431.595000px;}
.yfd{bottom:432.315000px;}
.y133{bottom:433.575000px;}
.y6b{bottom:434.773417px;}
.y6e{bottom:435.239923px;}
.ybc{bottom:440.415000px;}
.y68{bottom:443.606606px;}
.y166{bottom:444.735000px;}
.y1a4{bottom:444.915000px;}
.y1d{bottom:448.875000px;}
.y46{bottom:451.035000px;}
.y6a{bottom:451.811026px;}
.yfc{bottom:452.835000px;}
.y57{bottom:454.275000px;}
.y14b{bottom:455.895000px;}
.yac{bottom:458.415000px;}
.y1a3{bottom:465.435000px;}
.y1c{bottom:466.155000px;}
.y121{bottom:467.955000px;}
.y12b{bottom:469.575000px;}
.y45{bottom:471.915000px;}
.yfb{bottom:473.715000px;}
.y165{bottom:476.775000px;}
.y56{bottom:477.315000px;}
.y1b{bottom:483.435000px;}
.y1a2{bottom:486.315000px;}
.y149{bottom:487.935000px;}
.y120{bottom:488.115000px;}
.y65{bottom:490.670250px;}
.y44{bottom:492.435000px;}
.yfa{bottom:494.235000px;}
.y1a{bottom:500.715000px;}
.y67{bottom:512.101851px;}
.y43{bottom:513.315000px;}
.yf9{bottom:515.115000px;}
.y1a1{bottom:515.835000px;}
.y11f{bottom:516.915000px;}
.y164{bottom:523.935000px;}
.y19{bottom:527.715000px;}
.y66{bottom:529.139460px;}
.y42{bottom:533.835000px;}
.y148{bottom:535.095000px;}
.y1a0{bottom:536.715000px;}
.y11e{bottom:537.435000px;}
.yf8{bottom:544.635000px;}
.y17c{bottom:545.175000px;}
.y41{bottom:554.715000px;}
.y18{bottom:556.875000px;}
.y19f{bottom:557.235000px;}
.y11d{bottom:558.315000px;}
.yf7{bottom:574.515000px;}
.y40{bottom:575.235000px;}
.y17{bottom:575.595000px;}
.y17b{bottom:577.215000px;}
.y11c{bottom:578.835000px;}
.y197{bottom:582.435000px;}
.y9b{bottom:584.235000px;}
.y19e{bottom:587.115000px;}
.y3f{bottom:596.115000px;}
.y16{bottom:602.235000px;}
.yf6{bottom:603.675000px;}
.y147{bottom:604.935000px;}
.yab{bottom:605.115000px;}
.y19d{bottom:607.635000px;}
.y11b{bottom:608.715000px;}
.y179{bottom:608.895000px;}
.y196{bottom:611.955000px;}
.y9a{bottom:614.115000px;}
.y3e{bottom:616.635000px;}
.y163{bottom:617.895000px;}
.yaa{bottom:625.635000px;}
.y19c{bottom:628.515000px;}
.y11a{bottom:629.235000px;}
.y15{bottom:630.315000px;}
.yf5{bottom:632.655000px;}
.y178{bottom:634.275000px;}
.y3d{bottom:637.515000px;}
.y195{bottom:641.835000px;}
.y99{bottom:643.635000px;}
.ya9{bottom:646.515000px;}
.y119{bottom:650.115000px;}
.yef{bottom:651.735000px;}
.y177{bottom:652.635000px;}
.y128{bottom:657.135000px;}
.y144{bottom:657.495000px;}
.y14{bottom:658.035000px;}
.y98{bottom:664.515000px;}
.ya8{bottom:667.035000px;}
.yf4{bottom:669.735000px;}
.y118{bottom:670.635000px;}
.y176{bottom:670.995000px;}
.y194{bottom:671.355000px;}
.y19b{bottom:678.915000px;}
.y97{bottom:685.035000px;}
.y13{bottom:686.115000px;}
.y3c{bottom:687.915000px;}
.y175{bottom:688.275000px;}
.yf3{bottom:688.815000px;}
.y117{bottom:691.515000px;}
.y193{bottom:692.235000px;}
.y127{bottom:694.395000px;}
.y162{bottom:696.375000px;}
.y96{bottom:705.915000px;}
.y174{bottom:707.355000px;}
.y3b{bottom:708.435000px;}
.yf2{bottom:708.975000px;}
.y141{bottom:709.695000px;}
.y116{bottom:712.035000px;}
.y192{bottom:712.755000px;}
.y12{bottom:713.835000px;}
.y173{bottom:724.635000px;}
.y95{bottom:726.435000px;}
.y3a{bottom:729.315000px;}
.yf1{bottom:729.495000px;}
.y115{bottom:732.915000px;}
.y11{bottom:740.115000px;}
.y172{bottom:741.915000px;}
.y191{bottom:742.635000px;}
.y94{bottom:747.315000px;}
.yeb{bottom:749.655000px;}
.y39{bottom:749.835000px;}
.y114{bottom:753.435000px;}
.y171{bottom:759.555000px;}
.y190{bottom:763.155000px;}
.y10{bottom:766.395000px;}
.y93{bottom:767.835000px;}
.yee{bottom:769.815000px;}
.y38{bottom:770.715000px;}
.y113{bottom:774.315000px;}
.y161{bottom:774.495000px;}
.y170{bottom:779.715000px;}
.y18f{bottom:784.035000px;}
.y92{bottom:788.715000px;}
.ye0{bottom:789.975000px;}
.yf{bottom:794.115000px;}
.y112{bottom:794.835000px;}
.y139{bottom:796.815000px;}
.y37{bottom:800.235150px;}
.y18e{bottom:804.555000px;}
.y16f{bottom:806.715000px;}
.ye9{bottom:810.495000px;}
.y111{bottom:815.715000px;}
.y91{bottom:818.235150px;}
.ye{bottom:820.395000px;}
.ya7{bottom:821.115000px;}
.y160{bottom:822.015000px;}
.y18d{bottom:825.435000px;}
.y16e{bottom:827.595000px;}
.y36{bottom:830.115000px;}
.ye5{bottom:830.655000px;}
.y110{bottom:836.235000px;}
.y90{bottom:839.115000px;}
.ya6{bottom:841.635000px;}
.y18c{bottom:845.955000px;}
.yd{bottom:847.035000px;}
.y16d{bottom:852.435000px;}
.y10f{bottom:857.115000px;}
.y35{bottom:859.635000px;}
.ya5{bottom:862.515000px;}
.y19a{bottom:871.515000px;}
.yc{bottom:874.755000px;}
.y137{bottom:875.295000px;}
.y18b{bottom:875.835000px;}
.y10e{bottom:877.635000px;}
.y34{bottom:880.515000px;}
.ya4{bottom:883.035000px;}
.y199{bottom:892.035000px;}
.y18a{bottom:897.075000px;}
.y10d{bottom:898.515000px;}
.y15e{bottom:900.495000px;}
.yb{bottom:901.035000px;}
.ye4{bottom:901.575000px;}
.ya3{bottom:903.915000px;}
.y8f{bottom:910.035000px;}
.y198{bottom:912.915000px;}
.y189{bottom:917.235000px;}
.y10c{bottom:919.035000px;}
.yd7{bottom:920.655000px;}
.y33{bottom:921.915000px;}
.ya2{bottom:924.435000px;}
.ya{bottom:927.675000px;}
.y8e{bottom:930.915000px;}
.y188{bottom:935.595000px;}
.y10b{bottom:939.915000px;}
.ydf{bottom:940.815000px;}
.y32{bottom:942.435000px;}
.ya1{bottom:945.315000px;}
.y8d{bottom:951.435000px;}
.y9{bottom:955.035000px;}
.y10a{bottom:960.435000px;}
.yde{bottom:960.975000px;}
.y187{bottom:962.415000px;}
.y31{bottom:963.315000px;}
.y8c{bottom:972.315000px;}
.ya0{bottom:974.835000px;}
.y15c{bottom:978.615000px;}
.ydd{bottom:980.055000px;}
.y8{bottom:981.315000px;}
.y30{bottom:983.835000px;}
.ydc{bottom:998.055000px;}
.y8b{bottom:1001.835000px;}
.y9f{bottom:1004.715000px;}
.y7{bottom:1007.955000px;}
.y2f{bottom:1013.715000px;}
.ydb{bottom:1017.495000px;}
.y8a{bottom:1022.715000px;}
.y186{bottom:1025.415000px;}
.y6{bottom:1029.555000px;}
.y2e{bottom:1034.235000px;}
.yda{bottom:1037.655000px;}
.y89{bottom:1043.235000px;}
.y5{bottom:1053.675000px;}
.y2d{bottom:1055.115000px;}
.y15b{bottom:1057.095000px;}
.yd9{bottom:1057.815000px;}
.y88{bottom:1064.115000px;}
.y2c{bottom:1075.635000px;}
.yd2{bottom:1077.975000px;}
.y4{bottom:1078.155000px;}
.y55{bottom:1084.635000px;}
.y185{bottom:1088.055000px;}
.yd6{bottom:1098.495000px;}
.y3{bottom:1102.275000px;}
.y2b{bottom:1105.515000px;}
.yd5{bottom:1117.575000px;}
.h1a{height:16.920000px;}
.h21{height:16.920045px;}
.h19{height:17.279985px;}
.h1b{height:17.280000px;}
.h20{height:17.280030px;}
.h2b{height:19.080000px;}
.hd{height:26.938828px;}
.hc{height:28.448437px;}
.h35{height:30.959970px;}
.h36{height:30.960000px;}
.h33{height:31.320000px;}
.h2c{height:34.559970px;}
.h3f{height:34.560015px;}
.he{height:34.855313px;}
.h25{height:37.440030px;}
.h10{height:37.960259px;}
.h28{height:38.160000px;}
.h12{height:38.989218px;}
.h13{height:39.055867px;}
.h27{height:39.350391px;}
.h2a{height:43.189453px;}
.h14{height:44.321077px;}
.h3{height:44.898047px;}
.h32{height:46.439985px;}
.h37{height:46.440015px;}
.h3a{height:46.800015px;}
.h5{height:47.176172px;}
.h34{height:47.764688px;}
.h2e{height:48.102891px;}
.h2f{height:51.480015px;}
.h30{height:51.840000px;}
.h15{height:52.417969px;}
.h6{height:52.928438px;}
.h8{height:53.303203px;}
.h1f{height:56.879970px;}
.h1c{height:56.880000px;}
.h7{height:58.092188px;}
.h17{height:58.503516px;}
.h43{height:61.919955px;}
.h38{height:61.920000px;}
.h42{height:61.920015px;}
.h44{height:62.280030px;}
.h11{height:64.286154px;}
.ha{height:64.546875px;}
.h9{height:65.003906px;}
.h24{height:68.760045px;}
.h31{height:69.119985px;}
.h1d{height:74.520015px;}
.h4{height:75.404531px;}
.hb{height:75.720937px;}
.h39{height:77.399970px;}
.h41{height:77.399985px;}
.h3b{height:77.400015px;}
.h3c{height:77.760000px;}
.h2d{height:77.760045px;}
.h1e{height:86.400015px;}
.h3d{height:93.240000px;}
.h26{height:94.680000px;}
.h18{height:97.200000px;}
.h3e{height:124.199985px;}
.h16{height:125.639970px;}
.h23{height:128.879970px;}
.h40{height:139.680000px;}
.h22{height:154.440000px;}
.h29{height:170.640000px;}
.hf{height:564.624900px;}
.h2{height:1235.835000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w12{width:20.519985px;}
.we{width:20.520000px;}
.w16{width:30.959970px;}
.w10{width:30.960000px;}
.w5{width:52.560015px;}
.w8{width:56.519985px;}
.w7{width:58.320000px;}
.w6{width:63.000000px;}
.w13{width:126.719970px;}
.wf{width:134.999985px;}
.w9{width:137.519985px;}
.w17{width:148.319955px;}
.wc{width:158.400000px;}
.w15{width:158.760000px;}
.w11{width:169.200000px;}
.wb{width:187.560000px;}
.wd{width:193.680000px;}
.w14{width:203.760000px;}
.wa{width:264.960000px;}
.w4{width:403.200000px;}
.w3{width:556.425000px;}
.w2{width:865.935000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4e{left:7.560135px;}
.x3c{left:8.640150px;}
.x43{left:10.245255px;}
.x47{left:12.004050px;}
.x1{left:13.500000px;}
.x49{left:16.206750px;}
.x4b{left:17.502750px;}
.x42{left:19.890000px;}
.x62{left:21.006450px;}
.x36{left:22.320000px;}
.x40{left:24.386250px;}
.x3e{left:26.227050px;}
.x3f{left:27.761100px;}
.x34{left:29.940075px;}
.x41{left:31.514850px;}
.x59{left:33.244350px;}
.x64{left:36.012600px;}
.x5b{left:37.089000px;}
.x38{left:39.600000px;}
.x5f{left:41.491950px;}
.x1f{left:43.101629px;}
.x21{left:46.023773px;}
.x18{left:47.728357px;}
.x63{left:48.771000px;}
.x45{left:51.904200px;}
.x19{left:53.694402px;}
.x2e{left:55.033718px;}
.x39{left:56.880000px;}
.x1b{left:58.929911px;}
.x1e{left:61.243275px;}
.x65{left:62.547150px;}
.x26{left:65.017711px;}
.x28{left:66.600540px;}
.x1a{left:68.792148px;}
.x4c{left:70.794600px;}
.x29{left:72.323072px;}
.x27{left:74.271169px;}
.x20{left:78.410873px;}
.x60{left:79.544850px;}
.x61{left:84.510150px;}
.x22{left:91.925791px;}
.x4a{left:93.637500px;}
.x2a{left:96.065495px;}
.x2f{left:97.161289px;}
.x10{left:113.760135px;}
.x57{left:117.180000px;}
.x31{left:118.260000px;}
.x4d{left:119.700000px;}
.x14{left:124.410285px;}
.x13{left:135.000000px;}
.x58{left:138.420000px;}
.x30{left:140.760150px;}
.x4{left:150.250500px;}
.x12{left:166.935000px;}
.x44{left:175.500000px;}
.x3{left:189.917700px;}
.x33{left:194.587050px;}
.x11{left:198.810000px;}
.x56{left:232.668450px;}
.x25{left:241.198664px;}
.x1d{left:244.780320px;}
.x3d{left:256.500000px;}
.x5{left:271.005600px;}
.x4f{left:276.660000px;}
.x17{left:294.894300px;}
.x50{left:308.700000px;}
.x7{left:325.133100px;}
.x5a{left:329.940000px;}
.xc{left:348.786600px;}
.x1c{left:351.651661px;}
.x6{left:356.445150px;}
.x23{left:358.348242px;}
.xd{left:360.578250px;}
.x2b{left:362.122678px;}
.x46{left:363.780000px;}
.x2d{left:365.044823px;}
.x9{left:366.072900px;}
.xb{left:368.824200px;}
.x24{left:370.645599px;}
.xa{left:371.726100px;}
.x8{left:374.637450px;}
.xe{left:382.141050px;}
.x32{left:394.440000px;}
.x2c{left:399.988799px;}
.x15{left:432.472350px;}
.xf{left:443.122500px;}
.x51{left:478.620000px;}
.x5c{left:489.420000px;}
.x52{left:499.860000px;}
.x5d{left:521.100000px;}
.x35{left:522.180000px;}
.x48{left:523.260000px;}
.x37{left:575.460000px;}
.x53{left:627.660000px;}
.x3a{left:639.180000px;}
.x55{left:667.935000px;}
.x5e{left:680.580000px;}
.x3b{left:698.220000px;}
.x16{left:710.685000px;}
.x54{left:734.459400px;}
.x2{left:742.822200px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.786443pt;}
.v1{vertical-align:29.440000pt;}
.ls26{letter-spacing:-0.012800pt;}
.lsf{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000480pt;}
.ls5a{letter-spacing:0.000533pt;}
.ls20{letter-spacing:0.005760pt;}
.ls2c{letter-spacing:0.010133pt;}
.ls1b{letter-spacing:0.012800pt;}
.ls1f{letter-spacing:0.032000pt;}
.ls25{letter-spacing:0.048853pt;}
.ls2a{letter-spacing:0.065013pt;}
.ls21{letter-spacing:0.067840pt;}
.ls1{letter-spacing:0.106347pt;}
.ls52{letter-spacing:0.127872pt;}
.ls50{letter-spacing:0.151552pt;}
.ls56{letter-spacing:0.169920pt;}
.ls4f{letter-spacing:0.170496pt;}
.ls13{letter-spacing:0.173184pt;}
.ls17{letter-spacing:0.199424pt;}
.ls1c{letter-spacing:0.202560pt;}
.ls59{letter-spacing:0.213120pt;}
.ls18{letter-spacing:0.225664pt;}
.ls5{letter-spacing:0.228160pt;}
.lse{letter-spacing:0.228693pt;}
.ls4a{letter-spacing:0.255744pt;}
.ls3{letter-spacing:0.282112pt;}
.ls1a{letter-spacing:0.283392pt;}
.ls24{letter-spacing:0.284160pt;}
.ls22{letter-spacing:0.284693pt;}
.lsc{letter-spacing:0.285227pt;}
.ls8{letter-spacing:0.286400pt;}
.ls40{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.319232pt;}
.ls51{letter-spacing:0.322048pt;}
.ls16{letter-spacing:0.341120pt;}
.ls47{letter-spacing:0.345728pt;}
.ls54{letter-spacing:0.355200pt;}
.ls3b{letter-spacing:0.355733pt;}
.ls0{letter-spacing:0.356352pt;}
.ls3f{letter-spacing:0.357120pt;}
.ls48{letter-spacing:0.359936pt;}
.ls45{letter-spacing:0.364672pt;}
.ls55{letter-spacing:0.369408pt;}
.ls43{letter-spacing:0.374144pt;}
.ls42{letter-spacing:0.378880pt;}
.ls44{letter-spacing:0.383616pt;}
.ls53{letter-spacing:0.388352pt;}
.ls19{letter-spacing:0.425088pt;}
.ls4c{letter-spacing:0.426240pt;}
.ls49{letter-spacing:0.451328pt;}
.ls6{letter-spacing:0.461824pt;}
.lsb{letter-spacing:0.467072pt;}
.ls4e{letter-spacing:0.468864pt;}
.lsa{letter-spacing:0.477568pt;}
.ls9{letter-spacing:0.482816pt;}
.ls4d{letter-spacing:0.487808pt;}
.ls7{letter-spacing:0.488064pt;}
.ls23{letter-spacing:0.493312pt;}
.ls31{letter-spacing:0.498560pt;}
.ls2e{letter-spacing:0.512853pt;}
.ls2b{letter-spacing:0.514304pt;}
.ls32{letter-spacing:0.519552pt;}
.ls57{letter-spacing:0.529920pt;}
.ls11{letter-spacing:0.535680pt;}
.ls36{letter-spacing:0.540544pt;}
.ls4b{letter-spacing:0.558848pt;}
.ls15{letter-spacing:0.566784pt;}
.ls58{letter-spacing:0.577792pt;}
.ls41{letter-spacing:0.581760pt;}
.ls3a{letter-spacing:0.587520pt;}
.ls4{letter-spacing:0.593280pt;}
.ls3d{letter-spacing:0.604800pt;}
.ls10{letter-spacing:0.624512pt;}
.ls30{letter-spacing:0.633600pt;}
.ls34{letter-spacing:0.645120pt;}
.ls38{letter-spacing:0.645504pt;}
.ls37{letter-spacing:0.650752pt;}
.ls35{letter-spacing:0.656000pt;}
.ls39{letter-spacing:0.662400pt;}
.ls12{letter-spacing:0.708480pt;}
.ls27{letter-spacing:0.734720pt;}
.ls14{letter-spacing:0.777600pt;}
.ls3c{letter-spacing:0.817920pt;}
.ls28{letter-spacing:0.836693pt;}
.ls46{letter-spacing:0.864256pt;}
.ls3e{letter-spacing:0.915840pt;}
.ls29{letter-spacing:2.697067pt;}
.ls1e{letter-spacing:6.212267pt;}
.lsd{letter-spacing:6.551360pt;}
.ls33{letter-spacing:6.566400pt;}
.ls2f{letter-spacing:19.768427pt;}
.ls2d{letter-spacing:754.982453pt;}
.ws1{word-spacing:-20.957952pt;}
.ws28{word-spacing:-17.824000pt;}
.wse{word-spacing:-17.804800pt;}
.ws29{word-spacing:-17.792000pt;}
.ws15{word-spacing:-17.779200pt;}
.ws4{word-spacing:-16.721280pt;}
.ws16{word-spacing:-16.646400pt;}
.ws1e{word-spacing:-16.617600pt;}
.ws19{word-spacing:-15.240192pt;}
.ws1c{word-spacing:-15.234944pt;}
.ws2{word-spacing:-15.213952pt;}
.wsa{word-spacing:-15.156224pt;}
.ws17{word-spacing:-15.108992pt;}
.ws1b{word-spacing:-15.103744pt;}
.ws21{word-spacing:-15.082752pt;}
.ws3{word-spacing:-15.077504pt;}
.ws7{word-spacing:-15.072256pt;}
.ws6{word-spacing:-15.067008pt;}
.ws1a{word-spacing:-15.056512pt;}
.ws8{word-spacing:-14.930560pt;}
.wsb{word-spacing:-14.872832pt;}
.ws18{word-spacing:-14.815104pt;}
.ws9{word-spacing:-14.788864pt;}
.ws5{word-spacing:-14.762624pt;}
.ws10{word-spacing:-14.589440pt;}
.ws20{word-spacing:-13.530752pt;}
.ws23{word-spacing:-13.488128pt;}
.ws22{word-spacing:-13.421824pt;}
.ws26{word-spacing:-13.379200pt;}
.ws25{word-spacing:-13.336576pt;}
.ws27{word-spacing:-13.293952pt;}
.wsd{word-spacing:-11.742720pt;}
.ws1d{word-spacing:-0.720000pt;}
.ws1f{word-spacing:-0.639360pt;}
.ws24{word-spacing:-0.587520pt;}
.wsf{word-spacing:-0.063360pt;}
.ws0{word-spacing:-0.057600pt;}
.ws13{word-spacing:-0.057549pt;}
.ws14{word-spacing:-0.050713pt;}
.ws11{word-spacing:-0.050626pt;}
.wsc{word-spacing:0.000000pt;}
.ws12{word-spacing:579.914637pt;}
._18{margin-left:-8.934400pt;}
._19{margin-left:-4.253867pt;}
._1f{margin-left:-2.733806pt;}
._0{margin-left:-0.890880pt;}
._1{width:0.892160pt;}
._3{width:1.784320pt;}
._5{width:2.728960pt;}
._4{width:4.039680pt;}
._b{width:5.125675pt;}
._2{width:6.350080pt;}
._9{width:7.550165pt;}
._1e{width:8.635328pt;}
._1c{width:9.654453pt;}
._d{width:10.758400pt;}
._13{width:12.311520pt;}
._15{width:13.266933pt;}
._14{width:14.528267pt;}
._a{width:15.995904pt;}
._26{width:16.899072pt;}
._1d{width:19.208853pt;}
._8{width:20.489173pt;}
._7{width:21.795797pt;}
._6{width:22.723840pt;}
._10{width:23.763200pt;}
._c{width:24.889600pt;}
._1a{width:25.871360pt;}
._1b{width:26.830165pt;}
._31{width:28.016469pt;}
._f{width:29.004800pt;}
._22{width:29.919040pt;}
._11{width:30.851360pt;}
._12{width:31.918240pt;}
._e{width:33.020267pt;}
._27{width:34.146560pt;}
._23{width:35.488000pt;}
._17{width:36.736000pt;}
._16{width:38.144000pt;}
._21{width:41.062400pt;}
._25{width:42.649600pt;}
._24{width:44.889600pt;}
._20{width:47.507200pt;}
._32{width:49.369600pt;}
._2e{width:64.930560pt;}
._2a{width:70.661120pt;}
._2b{width:88.136960pt;}
._2d{width:94.672640pt;}
._2c{width:96.084480pt;}
._30{width:111.730133pt;}
._29{width:180.820480pt;}
._28{width:249.303040pt;}
._2f{width:750.208053pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs9{font-size:47.360000pt;}
.fs6{font-size:50.626039pt;}
.fs8{font-size:50.712579pt;}
.fs2{font-size:52.480000pt;}
.fs7{font-size:57.549257pt;}
.fs0{font-size:57.600000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y13f{bottom:2.560000pt;}
.yc0{bottom:2.880000pt;}
.yea{bottom:2.880133pt;}
.ybd{bottom:3.200000pt;}
.y12a{bottom:3.520000pt;}
.yed{bottom:4.480000pt;}
.y17a{bottom:5.760000pt;}
.yb5{bottom:8.377867pt;}
.y1{bottom:12.000000pt;}
.yc4{bottom:13.120000pt;}
.yb2{bottom:13.570000pt;}
.yb7{bottom:15.038000pt;}
.y159{bottom:15.359960pt;}
.y150{bottom:15.360000pt;}
.y14c{bottom:15.680000pt;}
.yb4{bottom:15.803067pt;}
.y15a{bottom:16.319960pt;}
.y13e{bottom:16.320000pt;}
.yb8{bottom:16.538667pt;}
.y14d{bottom:16.640000pt;}
.y87{bottom:17.113332pt;}
.y146{bottom:18.240000pt;}
.yd1{bottom:18.559960pt;}
.ye8{bottom:18.560000pt;}
.yb3{bottom:18.745733pt;}
.y138{bottom:19.520000pt;}
.yec{bottom:19.840000pt;}
.y132{bottom:20.160000pt;}
.y129{bottom:20.480000pt;}
.yd4{bottom:23.040000pt;}
.yc3{bottom:28.480000pt;}
.y14a{bottom:29.120000pt;}
.y184{bottom:30.079960pt;}
.y13d{bottom:30.080000pt;}
.y15d{bottom:30.400000pt;}
.yb1{bottom:30.720000pt;}
.y86{bottom:32.257873pt;}
.y145{bottom:33.600000pt;}
.yd0{bottom:33.919960pt;}
.ye7{bottom:33.920000pt;}
.y131{bottom:37.120000pt;}
.yf0{bottom:37.760000pt;}
.yd3{bottom:38.400000pt;}
.yc9{bottom:38.720000pt;}
.yb6{bottom:38.765333pt;}
.y2{bottom:40.920040pt;}
.y140{bottom:41.600000pt;}
.y156{bottom:42.880000pt;}
.y183{bottom:43.839960pt;}
.y157{bottom:43.840000pt;}
.y13c{bottom:44.160000pt;}
.y85{bottom:47.402415pt;}
.yb0{bottom:47.680000pt;}
.ye6{bottom:48.960000pt;}
.ycf{bottom:49.279960pt;}
.y143{bottom:49.280000pt;}
.yc8{bottom:54.080000pt;}
.y13a{bottom:56.960000pt;}
.y15f{bottom:57.600000pt;}
.y13b{bottom:57.920000pt;}
.ybb{bottom:58.880000pt;}
.y84{bottom:62.546956pt;}
.yd8{bottom:64.000000pt;}
.yaf{bottom:64.320000pt;}
.yce{bottom:64.639960pt;}
.y142{bottom:64.640000pt;}
.y130{bottom:70.720000pt;}
.ye3{bottom:71.680000pt;}
.yba{bottom:74.240000pt;}
.yae{bottom:81.280000pt;}
.y169{bottom:85.440000pt;}
.ye2{bottom:87.040000pt;}
.y12f{bottom:88.000000pt;}
.yad{bottom:98.240000pt;}
.y168{bottom:99.200000pt;}
.ye1{bottom:102.400000pt;}
.y12e{bottom:104.640000pt;}
.y7f{bottom:105.561060pt;}
.y54{bottom:106.200040pt;}
.y64{bottom:112.920040pt;}
.y17e{bottom:112.960000pt;}
.y7e{bottom:120.723630pt;}
.ycd{bottom:121.080040pt;}
.y53{bottom:121.560000pt;}
.y12d{bottom:121.600000pt;}
.y63{bottom:122.520000pt;}
.y182{bottom:122.680040pt;}
.y158{bottom:123.960040pt;}
.y126{bottom:129.560000pt;}
.y7d{bottom:135.868172pt;}
.y52{bottom:136.920000pt;}
.y12c{bottom:138.240000pt;}
.y109{bottom:139.480000pt;}
.y125{bottom:148.120000pt;}
.y7c{bottom:151.012713pt;}
.y9e{bottom:151.960000pt;}
.y155{bottom:152.440000pt;}
.y108{bottom:157.720000pt;}
.y2a{bottom:159.000000pt;}
.y51{bottom:159.320000pt;}
.y82{bottom:160.766519pt;}
.y7b{bottom:166.157255pt;}
.y124{bottom:167.000000pt;}
.y50{bottom:168.280000pt;}
.y16c{bottom:168.920000pt;}
.y62{bottom:170.200000pt;}
.y9d{bottom:174.680000pt;}
.y81{bottom:175.911061pt;}
.y107{bottom:176.280000pt;}
.y181{bottom:178.360000pt;}
.y7a{bottom:181.301796pt;}
.y4f{bottom:183.640000pt;}
.y9c{bottom:184.600000pt;}
.y123{bottom:184.920000pt;}
.y29{bottom:185.560000pt;}
.y83{bottom:186.277860pt;}
.y16b{bottom:187.480000pt;}
.y61{bottom:188.440000pt;}
.y80{bottom:191.055602pt;}
.y79{bottom:196.446338pt;}
.y122{bottom:198.680000pt;}
.yc7{bottom:200.440000pt;}
.y106{bottom:202.520000pt;}
.y4e{bottom:205.720000pt;}
.y60{bottom:207.000000pt;}
.y154{bottom:208.120000pt;}
.y28{bottom:211.800000pt;}
.y16a{bottom:214.840000pt;}
.y4d{bottom:216.600000pt;}
.ycc{bottom:218.360000pt;}
.y5f{bottom:225.240000pt;}
.y105{bottom:229.080000pt;}
.ycb{bottom:235.320000pt;}
.y153{bottom:236.280000pt;}
.y27{bottom:237.720000pt;}
.y1ab{bottom:242.520000pt;}
.y5e{bottom:243.800000pt;}
.y104{bottom:247.320000pt;}
.y180{bottom:248.120000pt;}
.yca{bottom:251.320000pt;}
.y73{bottom:251.814060pt;}
.y26{bottom:253.080000pt;}
.y5d{bottom:262.040000pt;}
.y4c{bottom:264.280000pt;}
.y77{bottom:264.596774pt;}
.y152{bottom:264.760000pt;}
.y103{bottom:265.880000pt;}
.y72{bottom:266.958601pt;}
.yc2{bottom:267.320000pt;}
.y25{bottom:268.440000pt;}
.y1aa{bottom:269.080000pt;}
.y76{bottom:279.741315pt;}
.y71{bottom:282.103143pt;}
.y4b{bottom:282.520000pt;}
.y24{bottom:283.800000pt;}
.y102{bottom:284.120000pt;}
.y167{bottom:284.280000pt;}
.yc6{bottom:284.600000pt;}
.y1a9{bottom:287.320000pt;}
.y5c{bottom:288.280000pt;}
.y17f{bottom:290.360000pt;}
.y75{bottom:294.885857pt;}
.y70{bottom:297.247684pt;}
.y23{bottom:299.160000pt;}
.y78{bottom:299.194840pt;}
.y4a{bottom:301.080000pt;}
.y136{bottom:302.040000pt;}
.yc5{bottom:302.520000pt;}
.y101{bottom:302.680000pt;}
.y1a8{bottom:305.880000pt;}
.y151{bottom:306.680000pt;}
.y74{bottom:310.030398pt;}
.y6f{bottom:312.392226pt;}
.y22{bottom:314.520000pt;}
.y5b{bottom:314.840000pt;}
.y49{bottom:319.320000pt;}
.y135{bottom:319.960000pt;}
.yb9{bottom:320.440000pt;}
.y100{bottom:320.920000pt;}
.y1a7{bottom:332.120000pt;}
.y5a{bottom:333.080000pt;}
.y14f{bottom:335.160000pt;}
.y134{bottom:335.320000pt;}
.y21{bottom:337.880000pt;}
.yc1{bottom:338.360000pt;}
.yff{bottom:347.480000pt;}
.y1a6{bottom:350.680000pt;}
.y59{bottom:351.640000pt;}
.y20{bottom:353.240000pt;}
.y6d{bottom:356.158147pt;}
.ybf{bottom:356.600000pt;}
.y17d{bottom:359.800000pt;}
.y14e{bottom:363.320000pt;}
.y48{bottom:364.120000pt;}
.yfe{bottom:365.720000pt;}
.y1f{bottom:368.280000pt;}
.y1a5{bottom:368.920000pt;}
.y6c{bottom:371.320718pt;}
.ybe{bottom:374.520000pt;}
.y58{bottom:377.880000pt;}
.y69{bottom:379.172442pt;}
.y47{bottom:382.680000pt;}
.y1e{bottom:383.640000pt;}
.yfd{bottom:384.280000pt;}
.y133{bottom:385.400000pt;}
.y6b{bottom:386.465260pt;}
.y6e{bottom:386.879932pt;}
.ybc{bottom:391.480000pt;}
.y68{bottom:394.316983pt;}
.y166{bottom:395.320000pt;}
.y1a4{bottom:395.480000pt;}
.y1d{bottom:399.000000pt;}
.y46{bottom:400.920000pt;}
.y6a{bottom:401.609801pt;}
.yfc{bottom:402.520000pt;}
.y57{bottom:403.800000pt;}
.y14b{bottom:405.240000pt;}
.yac{bottom:407.480000pt;}
.y1a3{bottom:413.720000pt;}
.y1c{bottom:414.360000pt;}
.y121{bottom:415.960000pt;}
.y12b{bottom:417.400000pt;}
.y45{bottom:419.480000pt;}
.yfb{bottom:421.080000pt;}
.y165{bottom:423.800000pt;}
.y56{bottom:424.280000pt;}
.y1b{bottom:429.720000pt;}
.y1a2{bottom:432.280000pt;}
.y149{bottom:433.720000pt;}
.y120{bottom:433.880000pt;}
.y65{bottom:436.151333pt;}
.y44{bottom:437.720000pt;}
.yfa{bottom:439.320000pt;}
.y1a{bottom:445.080000pt;}
.y67{bottom:455.201646pt;}
.y43{bottom:456.280000pt;}
.yf9{bottom:457.880000pt;}
.y1a1{bottom:458.520000pt;}
.y11f{bottom:459.480000pt;}
.y164{bottom:465.720000pt;}
.y19{bottom:469.080000pt;}
.y66{bottom:470.346187pt;}
.y42{bottom:474.520000pt;}
.y148{bottom:475.640000pt;}
.y1a0{bottom:477.080000pt;}
.y11e{bottom:477.720000pt;}
.yf8{bottom:484.120000pt;}
.y17c{bottom:484.600000pt;}
.y41{bottom:493.080000pt;}
.y18{bottom:495.000000pt;}
.y19f{bottom:495.320000pt;}
.y11d{bottom:496.280000pt;}
.yf7{bottom:510.680000pt;}
.y40{bottom:511.320000pt;}
.y17{bottom:511.640000pt;}
.y17b{bottom:513.080000pt;}
.y11c{bottom:514.520000pt;}
.y197{bottom:517.720000pt;}
.y9b{bottom:519.320000pt;}
.y19e{bottom:521.880000pt;}
.y3f{bottom:529.880000pt;}
.y16{bottom:535.320000pt;}
.yf6{bottom:536.600000pt;}
.y147{bottom:537.720000pt;}
.yab{bottom:537.880000pt;}
.y19d{bottom:540.120000pt;}
.y11b{bottom:541.080000pt;}
.y179{bottom:541.240000pt;}
.y196{bottom:543.960000pt;}
.y9a{bottom:545.880000pt;}
.y3e{bottom:548.120000pt;}
.y163{bottom:549.240000pt;}
.yaa{bottom:556.120000pt;}
.y19c{bottom:558.680000pt;}
.y11a{bottom:559.320000pt;}
.y15{bottom:560.280000pt;}
.yf5{bottom:562.360000pt;}
.y178{bottom:563.800000pt;}
.y3d{bottom:566.680000pt;}
.y195{bottom:570.520000pt;}
.y99{bottom:572.120000pt;}
.ya9{bottom:574.680000pt;}
.y119{bottom:577.880000pt;}
.yef{bottom:579.320000pt;}
.y177{bottom:580.120000pt;}
.y128{bottom:584.120000pt;}
.y144{bottom:584.440000pt;}
.y14{bottom:584.920000pt;}
.y98{bottom:590.680000pt;}
.ya8{bottom:592.920000pt;}
.yf4{bottom:595.320000pt;}
.y118{bottom:596.120000pt;}
.y176{bottom:596.440000pt;}
.y194{bottom:596.760000pt;}
.y19b{bottom:603.480000pt;}
.y97{bottom:608.920000pt;}
.y13{bottom:609.880000pt;}
.y3c{bottom:611.480000pt;}
.y175{bottom:611.800000pt;}
.yf3{bottom:612.280000pt;}
.y117{bottom:614.680000pt;}
.y193{bottom:615.320000pt;}
.y127{bottom:617.240000pt;}
.y162{bottom:619.000000pt;}
.y96{bottom:627.480000pt;}
.y174{bottom:628.760000pt;}
.y3b{bottom:629.720000pt;}
.yf2{bottom:630.200000pt;}
.y141{bottom:630.840000pt;}
.y116{bottom:632.920000pt;}
.y192{bottom:633.560000pt;}
.y12{bottom:634.520000pt;}
.y173{bottom:644.120000pt;}
.y95{bottom:645.720000pt;}
.y3a{bottom:648.280000pt;}
.yf1{bottom:648.440000pt;}
.y115{bottom:651.480000pt;}
.y11{bottom:657.880000pt;}
.y172{bottom:659.480000pt;}
.y191{bottom:660.120000pt;}
.y94{bottom:664.280000pt;}
.yeb{bottom:666.360000pt;}
.y39{bottom:666.520000pt;}
.y114{bottom:669.720000pt;}
.y171{bottom:675.160000pt;}
.y190{bottom:678.360000pt;}
.y10{bottom:681.240000pt;}
.y93{bottom:682.520000pt;}
.yee{bottom:684.280000pt;}
.y38{bottom:685.080000pt;}
.y113{bottom:688.280000pt;}
.y161{bottom:688.440000pt;}
.y170{bottom:693.080000pt;}
.y18f{bottom:696.920000pt;}
.y92{bottom:701.080000pt;}
.ye0{bottom:702.200000pt;}
.yf{bottom:705.880000pt;}
.y112{bottom:706.520000pt;}
.y139{bottom:708.280000pt;}
.y37{bottom:711.320133pt;}
.y18e{bottom:715.160000pt;}
.y16f{bottom:717.080000pt;}
.ye9{bottom:720.440000pt;}
.y111{bottom:725.080000pt;}
.y91{bottom:727.320133pt;}
.ye{bottom:729.240000pt;}
.ya7{bottom:729.880000pt;}
.y160{bottom:730.680000pt;}
.y18d{bottom:733.720000pt;}
.y16e{bottom:735.640000pt;}
.y36{bottom:737.880000pt;}
.ye5{bottom:738.360000pt;}
.y110{bottom:743.320000pt;}
.y90{bottom:745.880000pt;}
.ya6{bottom:748.120000pt;}
.y18c{bottom:751.960000pt;}
.yd{bottom:752.920000pt;}
.y16d{bottom:757.720000pt;}
.y10f{bottom:761.880000pt;}
.y35{bottom:764.120000pt;}
.ya5{bottom:766.680000pt;}
.y19a{bottom:774.680000pt;}
.yc{bottom:777.560000pt;}
.y137{bottom:778.040000pt;}
.y18b{bottom:778.520000pt;}
.y10e{bottom:780.120000pt;}
.y34{bottom:782.680000pt;}
.ya4{bottom:784.920000pt;}
.y199{bottom:792.920000pt;}
.y18a{bottom:797.400000pt;}
.y10d{bottom:798.680000pt;}
.y15e{bottom:800.440000pt;}
.yb{bottom:800.920000pt;}
.ye4{bottom:801.400000pt;}
.ya3{bottom:803.480000pt;}
.y8f{bottom:808.920000pt;}
.y198{bottom:811.480000pt;}
.y189{bottom:815.320000pt;}
.y10c{bottom:816.920000pt;}
.yd7{bottom:818.360000pt;}
.y33{bottom:819.480000pt;}
.ya2{bottom:821.720000pt;}
.ya{bottom:824.600000pt;}
.y8e{bottom:827.480000pt;}
.y188{bottom:831.640000pt;}
.y10b{bottom:835.480000pt;}
.ydf{bottom:836.280000pt;}
.y32{bottom:837.720000pt;}
.ya1{bottom:840.280000pt;}
.y8d{bottom:845.720000pt;}
.y9{bottom:848.920000pt;}
.y10a{bottom:853.720000pt;}
.yde{bottom:854.200000pt;}
.y187{bottom:855.480000pt;}
.y31{bottom:856.280000pt;}
.y8c{bottom:864.280000pt;}
.ya0{bottom:866.520000pt;}
.y15c{bottom:869.880000pt;}
.ydd{bottom:871.160000pt;}
.y8{bottom:872.280000pt;}
.y30{bottom:874.520000pt;}
.ydc{bottom:887.160000pt;}
.y8b{bottom:890.520000pt;}
.y9f{bottom:893.080000pt;}
.y7{bottom:895.960000pt;}
.y2f{bottom:901.080000pt;}
.ydb{bottom:904.440000pt;}
.y8a{bottom:909.080000pt;}
.y186{bottom:911.480000pt;}
.y6{bottom:915.160000pt;}
.y2e{bottom:919.320000pt;}
.yda{bottom:922.360000pt;}
.y89{bottom:927.320000pt;}
.y5{bottom:936.600000pt;}
.y2d{bottom:937.880000pt;}
.y15b{bottom:939.640000pt;}
.yd9{bottom:940.280000pt;}
.y88{bottom:945.880000pt;}
.y2c{bottom:956.120000pt;}
.yd2{bottom:958.200000pt;}
.y4{bottom:958.360000pt;}
.y55{bottom:964.120000pt;}
.y185{bottom:967.160000pt;}
.yd6{bottom:976.440000pt;}
.y3{bottom:979.800000pt;}
.y2b{bottom:982.680000pt;}
.yd5{bottom:993.400000pt;}
.h1a{height:15.040000pt;}
.h21{height:15.040040pt;}
.h19{height:15.359987pt;}
.h1b{height:15.360000pt;}
.h20{height:15.360027pt;}
.h2b{height:16.960000pt;}
.hd{height:23.945625pt;}
.hc{height:25.287500pt;}
.h35{height:27.519973pt;}
.h36{height:27.520000pt;}
.h33{height:27.840000pt;}
.h2c{height:30.719973pt;}
.h3f{height:30.720013pt;}
.he{height:30.982500pt;}
.h25{height:33.280027pt;}
.h10{height:33.742452pt;}
.h28{height:33.920000pt;}
.h12{height:34.657083pt;}
.h13{height:34.716326pt;}
.h27{height:34.978125pt;}
.h2a{height:38.390625pt;}
.h14{height:39.396513pt;}
.h3{height:39.909375pt;}
.h32{height:41.279987pt;}
.h37{height:41.280013pt;}
.h3a{height:41.600013pt;}
.h5{height:41.934375pt;}
.h34{height:42.457500pt;}
.h2e{height:42.758125pt;}
.h2f{height:45.760013pt;}
.h30{height:46.080000pt;}
.h15{height:46.593750pt;}
.h6{height:47.047500pt;}
.h8{height:47.380625pt;}
.h1f{height:50.559973pt;}
.h1c{height:50.560000pt;}
.h7{height:51.637500pt;}
.h17{height:52.003125pt;}
.h43{height:55.039960pt;}
.h38{height:55.040000pt;}
.h42{height:55.040013pt;}
.h44{height:55.360027pt;}
.h11{height:57.143248pt;}
.ha{height:57.375000pt;}
.h9{height:57.781250pt;}
.h24{height:61.120040pt;}
.h31{height:61.439987pt;}
.h1d{height:66.240013pt;}
.h4{height:67.026250pt;}
.hb{height:67.307500pt;}
.h39{height:68.799973pt;}
.h41{height:68.799987pt;}
.h3b{height:68.800013pt;}
.h3c{height:69.120000pt;}
.h2d{height:69.120040pt;}
.h1e{height:76.800013pt;}
.h3d{height:82.880000pt;}
.h26{height:84.160000pt;}
.h18{height:86.400000pt;}
.h3e{height:110.399987pt;}
.h16{height:111.679973pt;}
.h23{height:114.559973pt;}
.h40{height:124.160000pt;}
.h22{height:137.280000pt;}
.h29{height:151.680000pt;}
.hf{height:501.888800pt;}
.h2{height:1098.520000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w12{width:18.239987pt;}
.we{width:18.240000pt;}
.w16{width:27.519973pt;}
.w10{width:27.520000pt;}
.w5{width:46.720013pt;}
.w8{width:50.239987pt;}
.w7{width:51.840000pt;}
.w6{width:56.000000pt;}
.w13{width:112.639973pt;}
.wf{width:119.999987pt;}
.w9{width:122.239987pt;}
.w17{width:131.839960pt;}
.wc{width:140.800000pt;}
.w15{width:141.120000pt;}
.w11{width:150.400000pt;}
.wb{width:166.720000pt;}
.wd{width:172.160000pt;}
.w14{width:181.120000pt;}
.wa{width:235.520000pt;}
.w4{width:358.400000pt;}
.w3{width:494.600000pt;}
.w2{width:769.720000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4e{left:6.720120pt;}
.x3c{left:7.680133pt;}
.x43{left:9.106893pt;}
.x47{left:10.670267pt;}
.x1{left:12.000000pt;}
.x49{left:14.406000pt;}
.x4b{left:15.558000pt;}
.x42{left:17.680000pt;}
.x62{left:18.672400pt;}
.x36{left:19.840000pt;}
.x40{left:21.676667pt;}
.x3e{left:23.312933pt;}
.x3f{left:24.676533pt;}
.x34{left:26.613400pt;}
.x41{left:28.013200pt;}
.x59{left:29.550533pt;}
.x64{left:32.011200pt;}
.x5b{left:32.968000pt;}
.x38{left:35.200000pt;}
.x5f{left:36.881733pt;}
.x1f{left:38.312559pt;}
.x21{left:40.910021pt;}
.x18{left:42.425207pt;}
.x63{left:43.352000pt;}
.x45{left:46.137067pt;}
.x19{left:47.728357pt;}
.x2e{left:48.918861pt;}
.x39{left:50.560000pt;}
.x1b{left:52.382143pt;}
.x1e{left:54.438467pt;}
.x65{left:55.597467pt;}
.x26{left:57.793521pt;}
.x28{left:59.200480pt;}
.x1a{left:61.148576pt;}
.x4c{left:62.928533pt;}
.x29{left:64.287175pt;}
.x27{left:66.018816pt;}
.x20{left:69.698554pt;}
.x60{left:70.706533pt;}
.x61{left:75.120133pt;}
.x22{left:81.711814pt;}
.x4a{left:83.233333pt;}
.x2a{left:85.391551pt;}
.x2f{left:86.365590pt;}
.x10{left:101.120120pt;}
.x57{left:104.160000pt;}
.x31{left:105.120000pt;}
.x4d{left:106.400000pt;}
.x14{left:110.586920pt;}
.x13{left:120.000000pt;}
.x58{left:123.040000pt;}
.x30{left:125.120133pt;}
.x4{left:133.556000pt;}
.x12{left:148.386667pt;}
.x44{left:156.000000pt;}
.x3{left:168.815733pt;}
.x33{left:172.966267pt;}
.x11{left:176.720000pt;}
.x56{left:206.816400pt;}
.x25{left:214.398812pt;}
.x1d{left:217.582506pt;}
.x3d{left:228.000000pt;}
.x5{left:240.893867pt;}
.x4f{left:245.920000pt;}
.x17{left:262.128267pt;}
.x50{left:274.400000pt;}
.x7{left:289.007200pt;}
.x5a{left:293.280000pt;}
.xc{left:310.032533pt;}
.x1c{left:312.579254pt;}
.x6{left:316.840133pt;}
.x23{left:318.531771pt;}
.xd{left:320.514000pt;}
.x2b{left:321.886825pt;}
.x46{left:323.360000pt;}
.x2d{left:324.484287pt;}
.x9{left:325.398133pt;}
.xb{left:327.843733pt;}
.x24{left:329.462755pt;}
.xa{left:330.423200pt;}
.x8{left:333.011067pt;}
.xe{left:339.680933pt;}
.x32{left:350.613333pt;}
.x2c{left:355.545599pt;}
.x15{left:384.419867pt;}
.xf{left:393.886667pt;}
.x51{left:425.440000pt;}
.x5c{left:435.040000pt;}
.x52{left:444.320000pt;}
.x5d{left:463.200000pt;}
.x35{left:464.160000pt;}
.x48{left:465.120000pt;}
.x37{left:511.520000pt;}
.x53{left:557.920000pt;}
.x3a{left:568.160000pt;}
.x55{left:593.720000pt;}
.x5e{left:604.960000pt;}
.x3b{left:620.640000pt;}
.x16{left:631.720000pt;}
.x54{left:652.852800pt;}
.x2{left:660.286400pt;}
}




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