
    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_53321f19cb0dc996dfe31991.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_ac6034b16b1e9da3b868f8be.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7a22fa17dc803e8ea48e95e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_e797e541ee1ddb50c6ab984c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1f23625f0f10eeae05dbc379.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.871094;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_db11b20540fdf4651270fcdc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895996;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_4e0b5605a17d496654f75b50.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7651f9c127d22f63c3557175.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1a1cba0b85927fe9b0748936.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.873535;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5492ff178c42eb583ee4c188.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_47b6ef448f116b9a027c0649.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8c38f6a109d6c2079241879d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_a12926c207225281a226b5d2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_660e09b48ddd92e1b70bac37.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;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(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);}
.v5{vertical-align:-85.500000px;}
.v6{vertical-align:-81.000000px;}
.v4{vertical-align:-31.500000px;}
.v1{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.000000px;}
.v3{vertical-align:31.680000px;}
.lsa{letter-spacing:-6.540000px;}
.ls30{letter-spacing:-4.242000px;}
.ls12{letter-spacing:-4.032000px;}
.ls10{letter-spacing:-3.492000px;}
.ls32{letter-spacing:-2.760000px;}
.ls1d{letter-spacing:-2.724000px;}
.ls21{letter-spacing:-2.484000px;}
.ls15{letter-spacing:-2.034000px;}
.ls5{letter-spacing:-2.016000px;}
.ls1a{letter-spacing:-1.740000px;}
.ls13{letter-spacing:-1.548000px;}
.ls31{letter-spacing:-1.524000px;}
.ls2f{letter-spacing:-1.482000px;}
.ls8{letter-spacing:-1.476000px;}
.ls37{letter-spacing:-1.350000px;}
.ls14{letter-spacing:-1.308000px;}
.ls16{letter-spacing:-1.296000px;}
.ls19{letter-spacing:-1.026000px;}
.ls33{letter-spacing:-1.014000px;}
.ls1c{letter-spacing:-0.522000px;}
.ls0{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.018420px;}
.ls4{letter-spacing:0.150000px;}
.ls6{letter-spacing:0.432000px;}
.ls3{letter-spacing:0.468000px;}
.ls3d{letter-spacing:0.588000px;}
.ls28{letter-spacing:0.648000px;}
.ls34{letter-spacing:0.768000px;}
.lsf{letter-spacing:1.026000px;}
.ls7{letter-spacing:1.374000px;}
.ls38{letter-spacing:1.416000px;}
.ls11{letter-spacing:1.476000px;}
.ls2d{letter-spacing:1.482000px;}
.ls3f{letter-spacing:1.518000px;}
.ls2e{letter-spacing:1.734000px;}
.ls24{letter-spacing:1.737000px;}
.ls22{letter-spacing:1.878000px;}
.ls9{letter-spacing:2.016000px;}
.ls25{letter-spacing:2.028600px;}
.ls20{letter-spacing:2.166000px;}
.ls35{letter-spacing:2.226000px;}
.ls1e{letter-spacing:4.779000px;}
.ls18{letter-spacing:6.237000px;}
.ls2b{letter-spacing:6.240000px;}
.ls2c{letter-spacing:6.417000px;}
.ls1b{letter-spacing:6.984000px;}
.ls3b{letter-spacing:7.245000px;}
.ls29{letter-spacing:11.925000px;}
.ls27{letter-spacing:15.240000px;}
.ls17{letter-spacing:15.984000px;}
.ls3a{letter-spacing:17.355000px;}
.ls26{letter-spacing:19.740000px;}
.ls39{letter-spacing:20.604000px;}
.ls1{letter-spacing:21.318000px;}
.lsb{letter-spacing:24.984000px;}
.lse{letter-spacing:29.484000px;}
.ls2a{letter-spacing:38.745000px;}
.lsd{letter-spacing:47.604000px;}
.lsc{letter-spacing:47.865000px;}
.ls2{letter-spacing:59.718000px;}
.ls3c{letter-spacing:85.680000px;}
.ls1f{letter-spacing:115.839300px;}
.ls36{letter-spacing:178.545000px;}
.ls23{letter-spacing:236.964000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(128,128,128),0 0.015em rgb(128,128,128),0.015em 0 rgb(128,128,128),0 -0.015em  rgb(128,128,128);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(128,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12{word-spacing:-72.000000px;}
.ws0{word-spacing:-40.992000px;}
.ws9{word-spacing:-27.686700px;}
.ws1{word-spacing:-26.352000px;}
.ws27{word-spacing:-26.331120px;}
.ws1c{word-spacing:-25.688700px;}
.ws10{word-spacing:-23.810700px;}
.wsb{word-spacing:-22.032000px;}
.wse{word-spacing:-21.492000px;}
.ws5{word-spacing:-20.484000px;}
.ws26{word-spacing:-20.448000px;}
.ws6{word-spacing:-20.166000px;}
.ws8{word-spacing:-20.016000px;}
.ws3{word-spacing:-19.944000px;}
.ws11{word-spacing:-19.233000px;}
.wsa{word-spacing:-18.540000px;}
.ws4{word-spacing:-18.282000px;}
.ws7{word-spacing:-18.000000px;}
.ws1e{word-spacing:-17.745000px;}
.ws1b{word-spacing:-17.532000px;}
.ws25{word-spacing:-17.481000px;}
.ws24{word-spacing:-16.671000px;}
.wsd{word-spacing:-16.524000px;}
.ws13{word-spacing:-16.272000px;}
.ws1a{word-spacing:-16.263000px;}
.wsf{word-spacing:-15.984000px;}
.ws28{word-spacing:-15.279000px;}
.ws21{word-spacing:-15.255000px;}
.ws15{word-spacing:-15.237000px;}
.ws1d{word-spacing:-14.781000px;}
.ws17{word-spacing:-14.523000px;}
.ws22{word-spacing:-14.241000px;}
.ws23{word-spacing:-13.905000px;}
.ws14{word-spacing:-13.761000px;}
.wsc{word-spacing:-13.476000px;}
.ws18{word-spacing:-13.239000px;}
.ws19{word-spacing:-12.531000px;}
.ws1f{word-spacing:-12.021000px;}
.ws16{word-spacing:-11.259000px;}
.ws20{word-spacing:-11.187000px;}
.ws2{word-spacing:0.000000px;}
._4{margin-left:-16.296000px;}
._5{margin-left:-13.104000px;}
._1{margin-left:-11.256000px;}
._9{margin-left:-9.816000px;}
._2{margin-left:-8.736000px;}
._a{margin-left:-7.668000px;}
._3{margin-left:-6.216000px;}
._1c{margin-left:-5.103750px;}
._8{margin-left:-3.888000px;}
._0{margin-left:-2.352000px;}
._6{margin-left:-1.176000px;}
._7{width:1.296000px;}
._b{width:2.616000px;}
._c{width:4.620000px;}
._d{width:5.874000px;}
._f{width:7.218000px;}
._11{width:9.006000px;}
._e{width:10.434000px;}
._10{width:12.012000px;}
._14{width:13.368000px;}
._2b{width:15.182250px;}
._21{width:16.389750px;}
._33{width:17.472000px;}
._3a{width:18.808500px;}
._17{width:20.130000px;}
._18{width:21.156000px;}
._30{width:22.267500px;}
._12{width:23.352000px;}
._15{width:24.564000px;}
._13{width:26.412000px;}
._31{width:27.663750px;}
._19{width:29.502000px;}
._1b{width:30.942000px;}
._28{width:32.935500px;}
._27{width:34.536000px;}
._39{width:35.656500px;}
._3f{width:36.796500px;}
._16{width:37.926000px;}
._29{width:39.383250px;}
._38{width:40.689750px;}
._2a{width:42.031500px;}
._2f{width:43.944000px;}
._32{width:45.456000px;}
._36{width:46.911750px;}
._2e{width:48.024000px;}
._37{width:49.158000px;}
._3c{width:50.269500px;}
._35{width:52.008000px;}
._34{width:53.309100px;}
._40{width:56.616000px;}
._1a{width:59.418000px;}
._43{width:61.392000px;}
._22{width:66.330000px;}
._3b{width:70.398750px;}
._2d{width:74.827500px;}
._2c{width:79.716000px;}
._42{width:102.291750px;}
._26{width:103.801200px;}
._3e{width:106.215750px;}
._3d{width:110.472000px;}
._24{width:129.645750px;}
._25{width:151.950000px;}
._1d{width:156.597750px;}
._23{width:164.718000px;}
._41{width:174.120000px;}
._20{width:182.694000px;}
._1e{width:191.784000px;}
._1f{width:196.164000px;}
.fc2{color:rgb(79,129,189);}
.fc3{color:rgb(19,19,19);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:31.500000px;}
.fsb{font-size:40.500000px;}
.fs9{font-size:49.500000px;}
.fs6{font-size:58.500000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:67.500000px;}
.fs3{font-size:72.000000px;}
.fsa{font-size:76.500000px;}
.fs8{font-size:85.650000px;}
.fs7{font-size:94.650000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:120.000000px;}
.fsd{font-size:121.650000px;}
.fs0{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y183{bottom:3.390000px;}
.y1fb{bottom:4.500000px;}
.y160{bottom:5.550000px;}
.y15c{bottom:5.595000px;}
.y158{bottom:5.625000px;}
.y15e{bottom:6.675000px;}
.y153{bottom:6.705000px;}
.y15a{bottom:6.720000px;}
.y155{bottom:6.750000px;}
.y1e0{bottom:9.000000px;}
.y1df{bottom:9.045000px;}
.y1e6{bottom:10.050000px;}
.y202{bottom:10.065000px;}
.y1de{bottom:10.080000px;}
.y1e3{bottom:10.095000px;}
.y1ff{bottom:10.110000px;}
.y17f{bottom:10.125000px;}
.y204{bottom:10.140000px;}
.y1ba{bottom:12.315000px;}
.y1d0{bottom:12.330000px;}
.y1b6{bottom:12.360000px;}
.y1b0{bottom:12.375000px;}
.y1bc{bottom:12.390000px;}
.y1c2{bottom:12.405000px;}
.y1c9{bottom:12.420000px;}
.y1c0{bottom:13.455000px;}
.y1b8{bottom:13.485000px;}
.y1b4{bottom:13.500000px;}
.y1c5{bottom:13.515000px;}
.y1cd{bottom:13.530000px;}
.y1b2{bottom:13.545000px;}
.y198{bottom:14.580000px;}
.y185{bottom:14.625000px;}
.y19d{bottom:14.640000px;}
.y18d{bottom:14.670000px;}
.y18b{bottom:15.690000px;}
.y189{bottom:15.735000px;}
.y18e{bottom:15.750000px;}
.y195{bottom:15.765000px;}
.y191{bottom:15.780000px;}
.y19a{bottom:15.795000px;}
.y187{bottom:16.920000px;}
.yfd{bottom:21.375000px;}
.y10b{bottom:21.405000px;}
.yf1{bottom:21.420000px;}
.yee{bottom:22.500000px;}
.yf9{bottom:22.530000px;}
.yf0{bottom:22.545000px;}
.yff{bottom:23.625000px;}
.yf8{bottom:23.655000px;}
.yf3{bottom:23.670000px;}
.yc2{bottom:24.735000px;}
.ybb{bottom:24.750000px;}
.yc0{bottom:24.765000px;}
.ybc{bottom:24.780000px;}
.yb9{bottom:24.795000px;}
.ybe{bottom:25.920000px;}
.y102{bottom:29.265000px;}
.y107{bottom:29.280000px;}
.y104{bottom:29.295000px;}
.y2e{bottom:30.375000px;}
.y109{bottom:30.420000px;}
.yb8{bottom:33.795000px;}
.y1fa{bottom:39.390000px;}
.y1f9{bottom:42.765000px;}
.y2b{bottom:49.500000px;}
.yb7{bottom:66.450000px;}
.y2d{bottom:68.662500px;}
.y181{bottom:68.715000px;}
.y4e{bottom:92.325000px;}
.yb0{bottom:97.950000px;}
.y228{bottom:99.075000px;}
.y1a7{bottom:104.700000px;}
.y98{bottom:106.950000px;}
.y11e{bottom:108.075000px;}
.yec{bottom:110.325000px;}
.ye6{bottom:111.450000px;}
.y91{bottom:114.825000px;}
.y213{bottom:115.950000px;}
.yd1{bottom:118.200000px;}
.y17e{bottom:121.612500px;}
.y12e{bottom:122.737500px;}
.y165{bottom:128.362500px;}
.y13b{bottom:129.487500px;}
.y227{bottom:130.612500px;}
.y4d{bottom:131.737500px;}
.y6f{bottom:137.362500px;}
.y2a{bottom:138.150000px;}
.y1d3{bottom:138.487500px;}
.yeb{bottom:140.737500px;}
.y1f6{bottom:142.987500px;}
.y90{bottom:145.237500px;}
.y21d{bottom:146.362500px;}
.y212{bottom:147.487500px;}
.yaf{bottom:149.737500px;}
.y1a6{bottom:150.870000px;}
.y11d{bottom:154.245000px;}
.y17d{bottom:155.370000px;}
.ye5{bottom:158.745000px;}
.y13a{bottom:159.870000px;}
.y226{bottom:162.150000px;}
.y164{bottom:163.275000px;}
.yd0{bottom:164.400000px;}
.y29{bottom:166.500000px;}
.y6e{bottom:167.775000px;}
.y97{bottom:168.900000px;}
.y4c{bottom:170.025000px;}
.yea{bottom:172.275000px;}
.y8f{bottom:176.775000px;}
.y211{bottom:177.900000px;}
.y1e9{bottom:180.150000px;}
.y1f5{bottom:183.525000px;}
.y12d{bottom:184.650000px;}
.ye4{bottom:190.275000px;}
.y139{bottom:191.400000px;}
.y225{bottom:192.525000px;}
.y28{bottom:195.000000px;}
.ycf{bottom:195.900000px;}
.y1a5{bottom:197.025000px;}
.y163{bottom:198.150000px;}
.y6d{bottom:199.275000px;}
.y96{bottom:200.400000px;}
.y4b{bottom:201.525000px;}
.ye9{bottom:202.695000px;}
.y1ae{bottom:203.820000px;}
.y149{bottom:206.070000px;}
.y8e{bottom:208.320000px;}
.y210{bottom:209.445000px;}
.y1f4{bottom:210.570000px;}
.y231{bottom:213.945000px;}
.y1e8{bottom:215.070000px;}
.y12c{bottom:216.195000px;}
.ye3{bottom:220.695000px;}
.y138{bottom:221.820000px;}
.y224{bottom:224.070000px;}
.y17c{bottom:225.195000px;}
.yce{bottom:226.320000px;}
.y6c{bottom:230.820000px;}
.y4a{bottom:231.945000px;}
.y162{bottom:233.070000px;}
.y1f3{bottom:236.445000px;}
.y148{bottom:237.570000px;}
.y8d{bottom:238.695000px;}
.y20f{bottom:239.820000px;}
.y1a4{bottom:243.195000px;}
.y1ad{bottom:244.350000px;}
.y12b{bottom:247.725000px;}
.yae{bottom:248.850000px;}
.y1e7{bottom:249.975000px;}
.ye2{bottom:252.225000px;}
.y137{bottom:253.350000px;}
.y223{bottom:254.475000px;}
.ycd{bottom:257.850000px;}
.y17b{bottom:260.100000px;}
.y6b{bottom:261.225000px;}
.y95{bottom:262.350000px;}
.y49{bottom:263.475000px;}
.y10a{bottom:267.975000px;}
.y27{bottom:269.400000px;}
.y8c{bottom:270.225000px;}
.y161{bottom:271.350000px;}
.y230{bottom:275.850000px;}
.yad{bottom:280.350000px;}
.ye1{bottom:283.725000px;}
.ye{bottom:284.400000px;}
.y136{bottom:284.850000px;}
.y222{bottom:286.005000px;}
.y1f2{bottom:288.255000px;}
.ycc{bottom:289.380000px;}
.y6a{bottom:292.755000px;}
.y15f{bottom:292.830000px;}
.y11c{bottom:293.880000px;}
.y48{bottom:295.005000px;}
.y12a{bottom:296.130000px;}
.y1ac{bottom:297.255000px;}
.y26{bottom:297.900000px;}
.y147{bottom:299.505000px;}
.y1e5{bottom:299.580000px;}
.y8b{bottom:300.630000px;}
.y17a{bottom:301.755000px;}
.y20e{bottom:302.880000px;}
.y108{bottom:306.255000px;}
.y22f{bottom:307.380000px;}
.yd{bottom:312.900000px;}
.y15d{bottom:313.080000px;}
.ye0{bottom:314.130000px;}
.y135{bottom:315.255000px;}
.y221{bottom:317.505000px;}
.ycb{bottom:319.755000px;}
.y69{bottom:323.130000px;}
.y94{bottom:324.255000px;}
.y1e4{bottom:324.330000px;}
.y47{bottom:325.380000px;}
.y25{bottom:326.250000px;}
.yac{bottom:326.505000px;}
.y179{bottom:328.800000px;}
.y146{bottom:329.925000px;}
.y8a{bottom:332.175000px;}
.y20d{bottom:333.300000px;}
.y15b{bottom:334.455000px;}
.y1a3{bottom:335.550000px;}
.y1f1{bottom:340.050000px;}
.y1d2{bottom:342.300000px;}
.y134{bottom:346.800000px;}
.y220{bottom:347.925000px;}
.y129{bottom:349.050000px;}
.y1e2{bottom:349.080000px;}
.yca{bottom:351.300000px;}
.y106{bottom:352.425000px;}
.y68{bottom:354.675000px;}
.y159{bottom:354.705000px;}
.y24{bottom:354.750000px;}
.y11b{bottom:355.800000px;}
.y46{bottom:356.925000px;}
.yab{bottom:358.050000px;}
.y22e{bottom:359.175000px;}
.ydf{bottom:361.425000px;}
.y89{bottom:363.675000px;}
.y20c{bottom:364.800000px;}
.y1e1{bottom:373.830000px;}
.y1ab{bottom:374.955000px;}
.y157{bottom:376.080000px;}
.y21f{bottom:379.455000px;}
.y178{bottom:380.580000px;}
.yc9{bottom:381.705000px;}
.y23{bottom:383.100000px;}
.y67{bottom:386.205000px;}
.y45{bottom:387.330000px;}
.yaa{bottom:388.455000px;}
.y1a2{bottom:391.830000px;}
.y145{bottom:392.955000px;}
.y88{bottom:394.080000px;}
.y133{bottom:395.205000px;}
.y156{bottom:396.330000px;}
.y105{bottom:398.580000px;}
.yde{bottom:400.830000px;}
.y11a{bottom:405.330000px;}
.y177{bottom:406.455000px;}
.y1f0{bottom:407.580000px;}
.y21e{bottom:409.830000px;}
.y22d{bottom:411.000000px;}
.y22{bottom:411.600000px;}
.yc8{bottom:413.250000px;}
.y66{bottom:416.625000px;}
.y93{bottom:417.750000px;}
.y44{bottom:418.875000px;}
.y1a1{bottom:422.250000px;}
.y144{bottom:423.375000px;}
.y87{bottom:425.625000px;}
.y20b{bottom:426.750000px;}
.y176{bottom:432.375000px;}
.y1ef{bottom:433.500000px;}
.ya9{bottom:434.625000px;}
.ydd{bottom:435.750000px;}
.y154{bottom:439.125000px;}
.y21{bottom:439.950000px;}
.y1aa{bottom:441.375000px;}
.y22c{bottom:442.500000px;}
.yc7{bottom:444.750000px;}
.y132{bottom:447.000000px;}
.y65{bottom:448.125000px;}
.y1d1{bottom:449.250000px;}
.y43{bottom:450.375000px;}
.y92{bottom:451.500000px;}
.y1a0{bottom:452.715000px;}
.y119{bottom:453.795000px;}
.y143{bottom:454.920000px;}
.y86{bottom:456.045000px;}
.y175{bottom:458.295000px;}
.y1ee{bottom:459.420000px;}
.y152{bottom:461.715000px;}
.ya8{bottom:466.170000px;}
.y7{bottom:466.650000px;}
.y20{bottom:468.450000px;}
.y23a{bottom:469.545000px;}
.y21c{bottom:472.920000px;}
.y1dd{bottom:472.965000px;}
.y1cf{bottom:477.465000px;}
.y64{bottom:478.545000px;}
.y42{bottom:480.795000px;}
.y19f{bottom:481.965000px;}
.y142{bottom:485.295000px;}
.y85{bottom:487.545000px;}
.y20a{bottom:488.670000px;}
.y103{bottom:490.905000px;}
.yc6{bottom:490.920000px;}
.y131{bottom:493.170000px;}
.y6{bottom:495.300000px;}
.ydc{bottom:495.450000px;}
.ya7{bottom:496.575000px;}
.y1f{bottom:496.800000px;}
.y174{bottom:497.700000px;}
.y118{bottom:499.950000px;}
.y21b{bottom:503.325000px;}
.y22b{bottom:504.450000px;}
.y1ce{bottom:504.465000px;}
.y151{bottom:505.575000px;}
.yc5{bottom:508.965000px;}
.y63{bottom:510.075000px;}
.y1ed{bottom:511.200000px;}
.y41{bottom:512.325000px;}
.y19e{bottom:512.340000px;}
.y141{bottom:516.825000px;}
.y84{bottom:519.075000px;}
.y130{bottom:520.200000px;}
.y5{bottom:523.950000px;}
.y1e{bottom:525.300000px;}
.y117{bottom:530.325000px;}
.y1cc{bottom:531.465000px;}
.y21a{bottom:534.870000px;}
.y22a{bottom:535.995000px;}
.y101{bottom:537.105000px;}
.y1ec{bottom:537.120000px;}
.y173{bottom:538.245000px;}
.y150{bottom:540.495000px;}
.y62{bottom:541.620000px;}
.y19c{bottom:542.730000px;}
.y40{bottom:542.745000px;}
.ya6{bottom:546.120000px;}
.y140{bottom:548.370000px;}
.y83{bottom:549.495000px;}
.yc4{bottom:550.605000px;}
.y128{bottom:550.620000px;}
.y1dc{bottom:555.120000px;}
.y182{bottom:558.480000px;}
.y1cb{bottom:559.605000px;}
.y116{bottom:561.870000px;}
.y1d{bottom:562.650000px;}
.y180{bottom:565.230000px;}
.y219{bottom:565.245000px;}
.y239{bottom:566.370000px;}
.y19b{bottom:571.980000px;}
.y61{bottom:571.995000px;}
.y3f{bottom:574.245000px;}
.y1eb{bottom:576.525000px;}
.y172{bottom:579.900000px;}
.y82{bottom:581.025000px;}
.y100{bottom:583.275000px;}
.y12f{bottom:584.400000px;}
.y1ca{bottom:586.650000px;}
.yc3{bottom:592.275000px;}
.ya5{bottom:594.525000px;}
.y1db{bottom:595.650000px;}
.y13f{bottom:596.775000px;}
.y238{bottom:597.900000px;}
.y209{bottom:601.275000px;}
.y199{bottom:602.400000px;}
.y60{bottom:603.525000px;}
.y3e{bottom:605.775000px;}
.y1c{bottom:607.500000px;}
.y14f{bottom:608.025000px;}
.y81{bottom:611.400000px;}
.y127{bottom:612.525000px;}
.y1c8{bottom:614.775000px;}
.y1ea{bottom:617.025000px;}
.y171{bottom:620.445000px;}
.yfe{bottom:621.570000px;}
.y115{bottom:623.820000px;}
.ya4{bottom:624.945000px;}
.y218{bottom:628.320000px;}
.y237{bottom:629.445000px;}
.y13e{bottom:630.570000px;}
.y197{bottom:632.865000px;}
.y5f{bottom:633.945000px;}
.yc1{bottom:635.115000px;}
.y1b{bottom:635.850000px;}
.y3d{bottom:636.195000px;}
.y1da{bottom:637.320000px;}
.y1c7{bottom:641.865000px;}
.y80{bottom:642.945000px;}
.y229{bottom:644.070000px;}
.y208{bottom:653.070000px;}
.y114{bottom:655.320000px;}
.ya3{bottom:656.445000px;}
.y217{bottom:658.695000px;}
.y14e{bottom:659.850000px;}
.yfc{bottom:660.975000px;}
.y196{bottom:662.115000px;}
.y1d9{bottom:664.350000px;}
.y5e{bottom:665.475000px;}
.y3c{bottom:667.725000px;}
.y1c6{bottom:669.990000px;}
.y7f{bottom:674.475000px;}
.ybf{bottom:676.740000px;}
.y1f8{bottom:681.240000px;}
.y113{bottom:685.725000px;}
.ya2{bottom:687.975000px;}
.y1d8{bottom:690.225000px;}
.y236{bottom:691.350000px;}
.y194{bottom:692.490000px;}
.y5d{bottom:696.975000px;}
.y1c4{bottom:696.990000px;}
.y3b{bottom:698.100000px;}
.yfb{bottom:699.225000px;}
.y13d{bottom:701.505000px;}
.y170{bottom:702.630000px;}
.y7e{bottom:704.880000px;}
.y126{bottom:706.005000px;}
.y1a{bottom:707.700000px;}
.y14d{bottom:711.630000px;}
.yc{bottom:713.700000px;}
.y1d7{bottom:716.130000px;}
.y112{bottom:717.255000px;}
.ybd{bottom:718.380000px;}
.y216{bottom:720.630000px;}
.y235{bottom:721.755000px;}
.y193{bottom:722.880000px;}
.y1c3{bottom:725.130000px;}
.y5c{bottom:727.380000px;}
.y3a{bottom:729.630000px;}
.y9{bottom:730.500000px;}
.y207{bottom:730.755000px;}
.ya1{bottom:733.005000px;}
.y19{bottom:736.200000px;}
.y7d{bottom:736.380000px;}
.y14c{bottom:737.505000px;}
.yfa{bottom:738.630000px;}
.y13c{bottom:739.755000px;}
.y1d6{bottom:742.005000px;}
.y16f{bottom:743.175000px;}
.y111{bottom:747.675000px;}
.y192{bottom:752.175000px;}
.y234{bottom:753.300000px;}
.y5b{bottom:758.925000px;}
.y8{bottom:759.150000px;}
.y39{bottom:761.175000px;}
.y206{bottom:762.300000px;}
.y18{bottom:764.550000px;}
.y7c{bottom:766.800000px;}
.y125{bottom:767.925000px;}
.yf7{bottom:776.925000px;}
.y14b{bottom:778.050000px;}
.y110{bottom:779.175000px;}
.y1c1{bottom:780.300000px;}
.y190{bottom:782.550000px;}
.y16e{bottom:783.675000px;}
.y233{bottom:784.830000px;}
.y5a{bottom:789.330000px;}
.y38{bottom:791.580000px;}
.y17{bottom:793.050000px;}
.y1d5{bottom:793.830000px;}
.ya0{bottom:796.080000px;}
.y7b{bottom:798.330000px;}
.yb{bottom:799.500000px;}
.yba{bottom:802.875000px;}
.y1bf{bottom:807.375000px;}
.y10f{bottom:810.705000px;}
.y18f{bottom:813.000000px;}
.y205{bottom:814.080000px;}
.yf6{bottom:816.330000px;}
.y14a{bottom:817.455000px;}
.y59{bottom:820.830000px;}
.y16{bottom:821.400000px;}
.y37{bottom:823.080000px;}
.y16d{bottom:825.330000px;}
.y7a{bottom:829.875000px;}
.y1d4{bottom:832.125000px;}
.y1be{bottom:835.500000px;}
.y10e{bottom:841.125000px;}
.y9f{bottom:842.250000px;}
.ydb{bottom:843.375000px;}
.y215{bottom:845.625000px;}
.yb6{bottom:846.750000px;}
.y15{bottom:849.900000px;}
.y58{bottom:852.375000px;}
.y36{bottom:853.500000px;}
.yf5{bottom:854.625000px;}
.y1f7{bottom:856.875000px;}
.y79{bottom:860.250000px;}
.y1bd{bottom:862.500000px;}
.y124{bottom:863.625000px;}
.y16c{bottom:865.875000px;}
.y1a9{bottom:870.420000px;}
.y9e{bottom:872.670000px;}
.yda{bottom:873.795000px;}
.y214{bottom:876.045000px;}
.y14{bottom:878.250000px;}
.y57{bottom:882.795000px;}
.y35{bottom:885.045000px;}
.ya{bottom:885.300000px;}
.y1bb{bottom:890.655000px;}
.y78{bottom:891.795000px;}
.yf4{bottom:894.030000px;}
.y203{bottom:897.405000px;}
.y18c{bottom:903.030000px;}
.y10d{bottom:903.045000px;}
.yd9{bottom:905.295000px;}
.y16b{bottom:906.420000px;}
.y13{bottom:906.750000px;}
.y123{bottom:907.545000px;}
.y232{bottom:908.670000px;}
.y56{bottom:914.325000px;}
.y34{bottom:916.575000px;}
.y1b9{bottom:917.760000px;}
.y77{bottom:922.200000px;}
.y201{bottom:922.260000px;}
.yf2{bottom:932.325000px;}
.y18a{bottom:932.385000px;}
.yd8{bottom:935.700000px;}
.y122{bottom:939.075000px;}
.y12{bottom:944.100000px;}
.y55{bottom:944.700000px;}
.y1b7{bottom:944.760000px;}
.y33{bottom:946.950000px;}
.y200{bottom:947.010000px;}
.y16a{bottom:949.200000px;}
.y10c{bottom:952.620000px;}
.y76{bottom:953.745000px;}
.yb5{bottom:961.620000px;}
.y188{bottom:962.760000px;}
.y1a8{bottom:964.995000px;}
.yd7{bottom:967.245000px;}
.y121{bottom:969.495000px;}
.y9d{bottom:970.620000px;}
.yef{bottom:971.730000px;}
.y1fe{bottom:971.760000px;}
.y1b5{bottom:972.885000px;}
.y54{bottom:976.245000px;}
.y75{bottom:985.245000px;}
.y11{bottom:990.150000px;}
.y32{bottom:993.150000px;}
.y169{bottom:995.400000px;}
.y1fd{bottom:996.525000px;}
.yd6{bottom:998.775000px;}
.y1b3{bottom:999.900000px;}
.y9c{bottom:1001.025000px;}
.y4{bottom:1004.100000px;}
.yb4{bottom:1006.650000px;}
.y53{bottom:1007.775000px;}
.yed{bottom:1011.150000px;}
.y74{bottom:1015.650000px;}
.y1fc{bottom:1020.150000px;}
.y186{bottom:1022.400000px;}
.y168{bottom:1026.900000px;}
.y1b1{bottom:1028.025000px;}
.yd5{bottom:1029.150000px;}
.y120{bottom:1031.400000px;}
.y9b{bottom:1032.525000px;}
.y52{bottom:1038.195000px;}
.yb3{bottom:1040.445000px;}
.y31{bottom:1042.695000px;}
.y73{bottom:1047.195000px;}
.y3{bottom:1048.350000px;}
.y184{bottom:1056.195000px;}
.y167{bottom:1057.320000px;}
.y1af{bottom:1058.445000px;}
.yd4{bottom:1060.695000px;}
.y11f{bottom:1062.945000px;}
.y51{bottom:1069.695000px;}
.y10{bottom:1076.700000px;}
.y72{bottom:1077.600000px;}
.y9a{bottom:1080.975000px;}
.yb2{bottom:1087.725000px;}
.y166{bottom:1088.850000px;}
.yd3{bottom:1091.100000px;}
.y2{bottom:1092.750000px;}
.ye8{bottom:1095.600000px;}
.y30{bottom:1100.100000px;}
.y50{bottom:1107.975000px;}
.y71{bottom:1109.100000px;}
.yf{bottom:1128.450000px;}
.y99{bottom:1135.005000px;}
.y4f{bottom:1136.130000px;}
.yb1{bottom:1138.380000px;}
.yd2{bottom:1139.505000px;}
.y70{bottom:1140.630000px;}
.ye7{bottom:1141.755000px;}
.y2f{bottom:1144.005000px;}
.y2c{bottom:1195.800000px;}
.h30{height:14.610000px;}
.h2b{height:20.175000px;}
.h29{height:20.220000px;}
.h28{height:20.250000px;}
.h24{height:21.315000px;}
.h26{height:21.330000px;}
.h2a{height:21.337500px;}
.h27{height:21.375000px;}
.h25{height:21.412500px;}
.h4a{height:23.580000px;}
.h51{height:23.610000px;}
.h49{height:23.662500px;}
.h4d{height:24.675000px;}
.h52{height:24.690000px;}
.h54{height:24.705000px;}
.h4c{height:24.712500px;}
.h48{height:24.727500px;}
.h50{height:24.735000px;}
.h4b{height:24.750000px;}
.h53{height:24.787500px;}
.h41{height:26.940000px;}
.h46{height:26.977500px;}
.h45{height:26.985000px;}
.h3f{height:27.000000px;}
.h3d{height:27.037500px;}
.h44{height:28.065000px;}
.h40{height:28.102500px;}
.h3e{height:28.110000px;}
.h43{height:28.117500px;}
.h42{height:28.125000px;}
.h47{height:28.162500px;}
.h3c{height:29.190000px;}
.h34{height:29.235000px;}
.h38{height:29.242500px;}
.h32{height:29.287500px;}
.h3a{height:30.315000px;}
.h37{height:30.330000px;}
.h36{height:30.352500px;}
.h3b{height:30.360000px;}
.h35{height:30.375000px;}
.h39{height:30.412500px;}
.h33{height:31.485000px;}
.h2c{height:32.625000px;}
.h31{height:34.417969px;}
.h20{height:38.250000px;}
.h1f{height:38.287500px;}
.h1e{height:39.412500px;}
.h19{height:41.610000px;}
.h14{height:41.617500px;}
.h17{height:41.625000px;}
.h15{height:41.662500px;}
.h57{height:41.989746px;}
.h16{height:42.735000px;}
.h18{height:42.787500px;}
.h8{height:45.729492px;}
.h21{height:46.162500px;}
.h22{height:46.200000px;}
.he{height:46.933594px;}
.hb{height:48.449707px;}
.h13{height:51.679688px;}
.h6{height:52.417969px;}
.h7{height:58.974609px;}
.h2f{height:59.553516px;}
.hc{height:61.013672px;}
.h5{height:64.335938px;}
.h1a{height:64.546875px;}
.h2d{height:65.811328px;}
.h4f{height:70.400391px;}
.h55{height:70.664062px;}
.h1d{height:73.740234px;}
.hf{height:75.093750px;}
.h3{height:76.570312px;}
.h11{height:79.787109px;}
.h1c{height:83.126953px;}
.h23{height:83.246953px;}
.h1b{height:83.306953px;}
.h12{height:83.325000px;}
.h4{height:87.363281px;}
.h10{height:89.330273px;}
.hd{height:98.716992px;}
.h2{height:119.109375px;}
.h56{height:126.877148px;}
.h4e{height:200.385000px;}
.h2e{height:271.395000px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.h9{height:1263.375000px;}
.ha{height:1263.750000px;}
.we{width:20.220000px;}
.w27{width:20.287500px;}
.w29{width:21.375000px;}
.w8{width:78.750000px;}
.wb{width:78.831000px;}
.w9{width:78.846000px;}
.w7{width:78.847500px;}
.w1b{width:79.972500px;}
.wc{width:79.986000px;}
.wa{width:79.987500px;}
.w1c{width:86.625000px;}
.w1d{width:86.691000px;}
.w18{width:86.706000px;}
.w19{width:86.721000px;}
.w15{width:87.750000px;}
.w11{width:87.831000px;}
.w12{width:87.846000px;}
.w14{width:87.847500px;}
.w10{width:88.875000px;}
.w16{width:88.941000px;}
.w2b{width:88.956000px;}
.w13{width:88.987500px;}
.w1f{width:90.000000px;}
.w24{width:90.066000px;}
.w20{width:90.081000px;}
.w1e{width:90.093000px;}
.w21{width:90.096000px;}
.w23{width:90.097500px;}
.w25{width:90.111000px;}
.w22{width:90.112500px;}
.w2a{width:91.218000px;}
.wf{width:93.501000px;}
.w1a{width:99.112500px;}
.w17{width:101.250000px;}
.w4{width:216.225000px;}
.w2{width:216.229500px;}
.w3{width:216.240000px;}
.w5{width:216.270000px;}
.w6{width:216.300000px;}
.w28{width:303.000000px;}
.w26{width:304.110000px;}
.wd{width:387.420000px;}
.w0{width:892.500000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x74{left:7.855500px;}
.x51{left:11.280000px;}
.x64{left:13.515000px;}
.x4f{left:14.595000px;}
.x50{left:15.795000px;}
.x67{left:18.030000px;}
.x4e{left:19.095000px;}
.x1e{left:20.250000px;}
.x47{left:21.345000px;}
.x4a{left:22.470000px;}
.x25{left:23.655000px;}
.x45{left:24.780000px;}
.x26{left:25.905000px;}
.x20{left:27.037500px;}
.x75{left:28.143000px;}
.x7a{left:29.268000px;}
.x19{left:30.412500px;}
.x2c{left:31.530000px;}
.x5d{left:32.670000px;}
.x7d{left:33.795000px;}
.x4d{left:34.905000px;}
.x5f{left:35.991000px;}
.x36{left:37.155000px;}
.x69{left:38.295000px;}
.x5c{left:39.420000px;}
.x18{left:40.530000px;}
.x35{left:41.700000px;}
.x1b{left:42.825000px;}
.x21{left:43.950000px;}
.x7b{left:45.018000px;}
.x68{left:47.241000px;}
.x23{left:48.405000px;}
.x27{left:49.530000px;}
.x6a{left:50.700000px;}
.x37{left:52.950000px;}
.x79{left:54.094500px;}
.x22{left:57.450000px;}
.x2b{left:58.575000px;}
.x34{left:64.200000px;}
.x33{left:67.560000px;}
.x32{left:74.370000px;}
.x1c{left:76.605000px;}
.x31{left:78.870000px;}
.x3c{left:79.995000px;}
.x38{left:81.120000px;}
.x1f{left:82.230000px;}
.x2d{left:83.355000px;}
.x2e{left:84.495000px;}
.x3d{left:85.605000px;}
.x2f{left:90.105000px;}
.x53{left:91.200000px;}
.x39{left:92.400000px;}
.x3a{left:96.855000px;}
.x3b{left:98.025000px;}
.xc{left:102.750000px;}
.x77{left:105.870000px;}
.x24{left:108.150000px;}
.x30{left:109.230000px;}
.x17{left:119.400000px;}
.x28{left:126.150000px;}
.xf{left:127.800000px;}
.x6d{left:137.484000px;}
.x5e{left:138.609000px;}
.x56{left:143.109000px;}
.x12{left:154.305000px;}
.x9{left:156.300000px;}
.x15{left:158.805000px;}
.x2{left:171.450000px;}
.x3f{left:174.600000px;}
.x44{left:175.740000px;}
.x10{left:180.900000px;}
.xb{left:194.250000px;}
.xd{left:195.300000px;}
.x54{left:197.145000px;}
.x1{left:198.900000px;}
.x14{left:206.145000px;}
.x13{left:207.270000px;}
.x6e{left:227.550000px;}
.x7c{left:228.675000px;}
.x57{left:232.050000px;}
.x6b{left:234.300000px;}
.x60{left:239.925000px;}
.xe{left:243.750000px;}
.x46{left:254.625000px;}
.x52{left:271.500000px;}
.x16{left:277.095000px;}
.xa{left:300.600000px;}
.x6f{left:317.670000px;}
.x58{left:319.920000px;}
.x61{left:326.670000px;}
.x48{left:333.420000px;}
.x1a{left:335.670000px;}
.x8{left:337.350000px;}
.x3{left:360.750000px;}
.x7{left:368.100000px;}
.x59{left:407.775000px;}
.x42{left:412.275000px;}
.x62{left:413.400000px;}
.x55{left:422.400000px;}
.x41{left:439.320000px;}
.x3e{left:443.820000px;}
.x78{left:444.945000px;}
.x11{left:447.900000px;}
.x2a{left:451.695000px;}
.x7e{left:461.850000px;}
.x49{left:492.285000px;}
.x5a{left:496.785000px;}
.x70{left:497.910000px;}
.x40{left:499.005000px;}
.x76{left:504.660000px;}
.x63{left:512.535000px;}
.x4{left:527.100000px;}
.x1d{left:551.970000px;}
.x4b{left:571.095000px;}
.x6{left:584.250000px;}
.x71{left:588.045000px;}
.x65{left:592.545000px;}
.x4c{left:649.950000px;}
.x5{left:661.200000px;}
.x5b{left:672.495000px;}
.x72{left:678.120000px;}
.x66{left:679.245000px;}
.x29{left:689.370000px;}
.x6c{left:720.900000px;}
.x43{left:738.945000px;}
.x73{left:768.225000px;}
@media print{
.v5{vertical-align:-76.000000pt;}
.v6{vertical-align:-72.000000pt;}
.v4{vertical-align:-28.000000pt;}
.v1{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.000000pt;}
.v3{vertical-align:28.160000pt;}
.lsa{letter-spacing:-5.813333pt;}
.ls30{letter-spacing:-3.770667pt;}
.ls12{letter-spacing:-3.584000pt;}
.ls10{letter-spacing:-3.104000pt;}
.ls32{letter-spacing:-2.453333pt;}
.ls1d{letter-spacing:-2.421333pt;}
.ls21{letter-spacing:-2.208000pt;}
.ls15{letter-spacing:-1.808000pt;}
.ls5{letter-spacing:-1.792000pt;}
.ls1a{letter-spacing:-1.546667pt;}
.ls13{letter-spacing:-1.376000pt;}
.ls31{letter-spacing:-1.354667pt;}
.ls2f{letter-spacing:-1.317333pt;}
.ls8{letter-spacing:-1.312000pt;}
.ls37{letter-spacing:-1.200000pt;}
.ls14{letter-spacing:-1.162667pt;}
.ls16{letter-spacing:-1.152000pt;}
.ls19{letter-spacing:-0.912000pt;}
.ls33{letter-spacing:-0.901333pt;}
.ls1c{letter-spacing:-0.464000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.016373pt;}
.ls4{letter-spacing:0.133333pt;}
.ls6{letter-spacing:0.384000pt;}
.ls3{letter-spacing:0.416000pt;}
.ls3d{letter-spacing:0.522667pt;}
.ls28{letter-spacing:0.576000pt;}
.ls34{letter-spacing:0.682667pt;}
.lsf{letter-spacing:0.912000pt;}
.ls7{letter-spacing:1.221333pt;}
.ls38{letter-spacing:1.258667pt;}
.ls11{letter-spacing:1.312000pt;}
.ls2d{letter-spacing:1.317333pt;}
.ls3f{letter-spacing:1.349333pt;}
.ls2e{letter-spacing:1.541333pt;}
.ls24{letter-spacing:1.544000pt;}
.ls22{letter-spacing:1.669333pt;}
.ls9{letter-spacing:1.792000pt;}
.ls25{letter-spacing:1.803200pt;}
.ls20{letter-spacing:1.925333pt;}
.ls35{letter-spacing:1.978667pt;}
.ls1e{letter-spacing:4.248000pt;}
.ls18{letter-spacing:5.544000pt;}
.ls2b{letter-spacing:5.546667pt;}
.ls2c{letter-spacing:5.704000pt;}
.ls1b{letter-spacing:6.208000pt;}
.ls3b{letter-spacing:6.440000pt;}
.ls29{letter-spacing:10.600000pt;}
.ls27{letter-spacing:13.546667pt;}
.ls17{letter-spacing:14.208000pt;}
.ls3a{letter-spacing:15.426667pt;}
.ls26{letter-spacing:17.546667pt;}
.ls39{letter-spacing:18.314667pt;}
.ls1{letter-spacing:18.949333pt;}
.lsb{letter-spacing:22.208000pt;}
.lse{letter-spacing:26.208000pt;}
.ls2a{letter-spacing:34.440000pt;}
.lsd{letter-spacing:42.314667pt;}
.lsc{letter-spacing:42.546667pt;}
.ls2{letter-spacing:53.082667pt;}
.ls3c{letter-spacing:76.160000pt;}
.ls1f{letter-spacing:102.968267pt;}
.ls36{letter-spacing:158.706667pt;}
.ls23{letter-spacing:210.634667pt;}
.ws12{word-spacing:-64.000000pt;}
.ws0{word-spacing:-36.437333pt;}
.ws9{word-spacing:-24.610400pt;}
.ws1{word-spacing:-23.424000pt;}
.ws27{word-spacing:-23.405440pt;}
.ws1c{word-spacing:-22.834400pt;}
.ws10{word-spacing:-21.165067pt;}
.wsb{word-spacing:-19.584000pt;}
.wse{word-spacing:-19.104000pt;}
.ws5{word-spacing:-18.208000pt;}
.ws26{word-spacing:-18.176000pt;}
.ws6{word-spacing:-17.925333pt;}
.ws8{word-spacing:-17.792000pt;}
.ws3{word-spacing:-17.728000pt;}
.ws11{word-spacing:-17.096000pt;}
.wsa{word-spacing:-16.480000pt;}
.ws4{word-spacing:-16.250667pt;}
.ws7{word-spacing:-16.000000pt;}
.ws1e{word-spacing:-15.773333pt;}
.ws1b{word-spacing:-15.584000pt;}
.ws25{word-spacing:-15.538667pt;}
.ws24{word-spacing:-14.818667pt;}
.wsd{word-spacing:-14.688000pt;}
.ws13{word-spacing:-14.464000pt;}
.ws1a{word-spacing:-14.456000pt;}
.wsf{word-spacing:-14.208000pt;}
.ws28{word-spacing:-13.581333pt;}
.ws21{word-spacing:-13.560000pt;}
.ws15{word-spacing:-13.544000pt;}
.ws1d{word-spacing:-13.138667pt;}
.ws17{word-spacing:-12.909333pt;}
.ws22{word-spacing:-12.658667pt;}
.ws23{word-spacing:-12.360000pt;}
.ws14{word-spacing:-12.232000pt;}
.wsc{word-spacing:-11.978667pt;}
.ws18{word-spacing:-11.768000pt;}
.ws19{word-spacing:-11.138667pt;}
.ws1f{word-spacing:-10.685333pt;}
.ws16{word-spacing:-10.008000pt;}
.ws20{word-spacing:-9.944000pt;}
.ws2{word-spacing:0.000000pt;}
._4{margin-left:-14.485333pt;}
._5{margin-left:-11.648000pt;}
._1{margin-left:-10.005333pt;}
._9{margin-left:-8.725333pt;}
._2{margin-left:-7.765333pt;}
._a{margin-left:-6.816000pt;}
._3{margin-left:-5.525333pt;}
._1c{margin-left:-4.536667pt;}
._8{margin-left:-3.456000pt;}
._0{margin-left:-2.090667pt;}
._6{margin-left:-1.045333pt;}
._7{width:1.152000pt;}
._b{width:2.325333pt;}
._c{width:4.106667pt;}
._d{width:5.221333pt;}
._f{width:6.416000pt;}
._11{width:8.005333pt;}
._e{width:9.274667pt;}
._10{width:10.677333pt;}
._14{width:11.882667pt;}
._2b{width:13.495333pt;}
._21{width:14.568667pt;}
._33{width:15.530667pt;}
._3a{width:16.718667pt;}
._17{width:17.893333pt;}
._18{width:18.805333pt;}
._30{width:19.793333pt;}
._12{width:20.757333pt;}
._15{width:21.834667pt;}
._13{width:23.477333pt;}
._31{width:24.590000pt;}
._19{width:26.224000pt;}
._1b{width:27.504000pt;}
._28{width:29.276000pt;}
._27{width:30.698667pt;}
._39{width:31.694667pt;}
._3f{width:32.708000pt;}
._16{width:33.712000pt;}
._29{width:35.007333pt;}
._38{width:36.168667pt;}
._2a{width:37.361333pt;}
._2f{width:39.061333pt;}
._32{width:40.405333pt;}
._36{width:41.699333pt;}
._2e{width:42.688000pt;}
._37{width:43.696000pt;}
._3c{width:44.684000pt;}
._35{width:46.229333pt;}
._34{width:47.385867pt;}
._40{width:50.325333pt;}
._1a{width:52.816000pt;}
._43{width:54.570667pt;}
._22{width:58.960000pt;}
._3b{width:62.576667pt;}
._2d{width:66.513333pt;}
._2c{width:70.858667pt;}
._42{width:90.926000pt;}
._26{width:92.267733pt;}
._3e{width:94.414000pt;}
._3d{width:98.197333pt;}
._24{width:115.240667pt;}
._25{width:135.066667pt;}
._1d{width:139.198000pt;}
._23{width:146.416000pt;}
._41{width:154.773333pt;}
._20{width:162.394667pt;}
._1e{width:170.474667pt;}
._1f{width:174.368000pt;}
.fsc{font-size:28.000000pt;}
.fsb{font-size:36.000000pt;}
.fs9{font-size:44.000000pt;}
.fs6{font-size:52.000000pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:60.000000pt;}
.fs3{font-size:64.000000pt;}
.fsa{font-size:68.000000pt;}
.fs8{font-size:76.133333pt;}
.fs7{font-size:84.133333pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.666667pt;}
.fsd{font-size:108.133333pt;}
.fs0{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y183{bottom:3.013333pt;}
.y1fb{bottom:4.000000pt;}
.y160{bottom:4.933333pt;}
.y15c{bottom:4.973333pt;}
.y158{bottom:5.000000pt;}
.y15e{bottom:5.933333pt;}
.y153{bottom:5.960000pt;}
.y15a{bottom:5.973333pt;}
.y155{bottom:6.000000pt;}
.y1e0{bottom:8.000000pt;}
.y1df{bottom:8.040000pt;}
.y1e6{bottom:8.933333pt;}
.y202{bottom:8.946667pt;}
.y1de{bottom:8.960000pt;}
.y1e3{bottom:8.973333pt;}
.y1ff{bottom:8.986667pt;}
.y17f{bottom:9.000000pt;}
.y204{bottom:9.013333pt;}
.y1ba{bottom:10.946667pt;}
.y1d0{bottom:10.960000pt;}
.y1b6{bottom:10.986667pt;}
.y1b0{bottom:11.000000pt;}
.y1bc{bottom:11.013333pt;}
.y1c2{bottom:11.026667pt;}
.y1c9{bottom:11.040000pt;}
.y1c0{bottom:11.960000pt;}
.y1b8{bottom:11.986667pt;}
.y1b4{bottom:12.000000pt;}
.y1c5{bottom:12.013333pt;}
.y1cd{bottom:12.026667pt;}
.y1b2{bottom:12.040000pt;}
.y198{bottom:12.960000pt;}
.y185{bottom:13.000000pt;}
.y19d{bottom:13.013333pt;}
.y18d{bottom:13.040000pt;}
.y18b{bottom:13.946667pt;}
.y189{bottom:13.986667pt;}
.y18e{bottom:14.000000pt;}
.y195{bottom:14.013333pt;}
.y191{bottom:14.026667pt;}
.y19a{bottom:14.040000pt;}
.y187{bottom:15.040000pt;}
.yfd{bottom:19.000000pt;}
.y10b{bottom:19.026667pt;}
.yf1{bottom:19.040000pt;}
.yee{bottom:20.000000pt;}
.yf9{bottom:20.026667pt;}
.yf0{bottom:20.040000pt;}
.yff{bottom:21.000000pt;}
.yf8{bottom:21.026667pt;}
.yf3{bottom:21.040000pt;}
.yc2{bottom:21.986667pt;}
.ybb{bottom:22.000000pt;}
.yc0{bottom:22.013333pt;}
.ybc{bottom:22.026667pt;}
.yb9{bottom:22.040000pt;}
.ybe{bottom:23.040000pt;}
.y102{bottom:26.013333pt;}
.y107{bottom:26.026667pt;}
.y104{bottom:26.040000pt;}
.y2e{bottom:27.000000pt;}
.y109{bottom:27.040000pt;}
.yb8{bottom:30.040000pt;}
.y1fa{bottom:35.013333pt;}
.y1f9{bottom:38.013333pt;}
.y2b{bottom:44.000000pt;}
.yb7{bottom:59.066667pt;}
.y2d{bottom:61.033333pt;}
.y181{bottom:61.080000pt;}
.y4e{bottom:82.066667pt;}
.yb0{bottom:87.066667pt;}
.y228{bottom:88.066667pt;}
.y1a7{bottom:93.066667pt;}
.y98{bottom:95.066667pt;}
.y11e{bottom:96.066667pt;}
.yec{bottom:98.066667pt;}
.ye6{bottom:99.066667pt;}
.y91{bottom:102.066667pt;}
.y213{bottom:103.066667pt;}
.yd1{bottom:105.066667pt;}
.y17e{bottom:108.100000pt;}
.y12e{bottom:109.100000pt;}
.y165{bottom:114.100000pt;}
.y13b{bottom:115.100000pt;}
.y227{bottom:116.100000pt;}
.y4d{bottom:117.100000pt;}
.y6f{bottom:122.100000pt;}
.y2a{bottom:122.800000pt;}
.y1d3{bottom:123.100000pt;}
.yeb{bottom:125.100000pt;}
.y1f6{bottom:127.100000pt;}
.y90{bottom:129.100000pt;}
.y21d{bottom:130.100000pt;}
.y212{bottom:131.100000pt;}
.yaf{bottom:133.100000pt;}
.y1a6{bottom:134.106667pt;}
.y11d{bottom:137.106667pt;}
.y17d{bottom:138.106667pt;}
.ye5{bottom:141.106667pt;}
.y13a{bottom:142.106667pt;}
.y226{bottom:144.133333pt;}
.y164{bottom:145.133333pt;}
.yd0{bottom:146.133333pt;}
.y29{bottom:148.000000pt;}
.y6e{bottom:149.133333pt;}
.y97{bottom:150.133333pt;}
.y4c{bottom:151.133333pt;}
.yea{bottom:153.133333pt;}
.y8f{bottom:157.133333pt;}
.y211{bottom:158.133333pt;}
.y1e9{bottom:160.133333pt;}
.y1f5{bottom:163.133333pt;}
.y12d{bottom:164.133333pt;}
.ye4{bottom:169.133333pt;}
.y139{bottom:170.133333pt;}
.y225{bottom:171.133333pt;}
.y28{bottom:173.333333pt;}
.ycf{bottom:174.133333pt;}
.y1a5{bottom:175.133333pt;}
.y163{bottom:176.133333pt;}
.y6d{bottom:177.133333pt;}
.y96{bottom:178.133333pt;}
.y4b{bottom:179.133333pt;}
.ye9{bottom:180.173333pt;}
.y1ae{bottom:181.173333pt;}
.y149{bottom:183.173333pt;}
.y8e{bottom:185.173333pt;}
.y210{bottom:186.173333pt;}
.y1f4{bottom:187.173333pt;}
.y231{bottom:190.173333pt;}
.y1e8{bottom:191.173333pt;}
.y12c{bottom:192.173333pt;}
.ye3{bottom:196.173333pt;}
.y138{bottom:197.173333pt;}
.y224{bottom:199.173333pt;}
.y17c{bottom:200.173333pt;}
.yce{bottom:201.173333pt;}
.y6c{bottom:205.173333pt;}
.y4a{bottom:206.173333pt;}
.y162{bottom:207.173333pt;}
.y1f3{bottom:210.173333pt;}
.y148{bottom:211.173333pt;}
.y8d{bottom:212.173333pt;}
.y20f{bottom:213.173333pt;}
.y1a4{bottom:216.173333pt;}
.y1ad{bottom:217.200000pt;}
.y12b{bottom:220.200000pt;}
.yae{bottom:221.200000pt;}
.y1e7{bottom:222.200000pt;}
.ye2{bottom:224.200000pt;}
.y137{bottom:225.200000pt;}
.y223{bottom:226.200000pt;}
.ycd{bottom:229.200000pt;}
.y17b{bottom:231.200000pt;}
.y6b{bottom:232.200000pt;}
.y95{bottom:233.200000pt;}
.y49{bottom:234.200000pt;}
.y10a{bottom:238.200000pt;}
.y27{bottom:239.466667pt;}
.y8c{bottom:240.200000pt;}
.y161{bottom:241.200000pt;}
.y230{bottom:245.200000pt;}
.yad{bottom:249.200000pt;}
.ye1{bottom:252.200000pt;}
.ye{bottom:252.800000pt;}
.y136{bottom:253.200000pt;}
.y222{bottom:254.226667pt;}
.y1f2{bottom:256.226667pt;}
.ycc{bottom:257.226667pt;}
.y6a{bottom:260.226667pt;}
.y15f{bottom:260.293333pt;}
.y11c{bottom:261.226667pt;}
.y48{bottom:262.226667pt;}
.y12a{bottom:263.226667pt;}
.y1ac{bottom:264.226667pt;}
.y26{bottom:264.800000pt;}
.y147{bottom:266.226667pt;}
.y1e5{bottom:266.293333pt;}
.y8b{bottom:267.226667pt;}
.y17a{bottom:268.226667pt;}
.y20e{bottom:269.226667pt;}
.y108{bottom:272.226667pt;}
.y22f{bottom:273.226667pt;}
.yd{bottom:278.133333pt;}
.y15d{bottom:278.293333pt;}
.ye0{bottom:279.226667pt;}
.y135{bottom:280.226667pt;}
.y221{bottom:282.226667pt;}
.ycb{bottom:284.226667pt;}
.y69{bottom:287.226667pt;}
.y94{bottom:288.226667pt;}
.y1e4{bottom:288.293333pt;}
.y47{bottom:289.226667pt;}
.y25{bottom:290.000000pt;}
.yac{bottom:290.226667pt;}
.y179{bottom:292.266667pt;}
.y146{bottom:293.266667pt;}
.y8a{bottom:295.266667pt;}
.y20d{bottom:296.266667pt;}
.y15b{bottom:297.293333pt;}
.y1a3{bottom:298.266667pt;}
.y1f1{bottom:302.266667pt;}
.y1d2{bottom:304.266667pt;}
.y134{bottom:308.266667pt;}
.y220{bottom:309.266667pt;}
.y129{bottom:310.266667pt;}
.y1e2{bottom:310.293333pt;}
.yca{bottom:312.266667pt;}
.y106{bottom:313.266667pt;}
.y68{bottom:315.266667pt;}
.y159{bottom:315.293333pt;}
.y24{bottom:315.333333pt;}
.y11b{bottom:316.266667pt;}
.y46{bottom:317.266667pt;}
.yab{bottom:318.266667pt;}
.y22e{bottom:319.266667pt;}
.ydf{bottom:321.266667pt;}
.y89{bottom:323.266667pt;}
.y20c{bottom:324.266667pt;}
.y1e1{bottom:332.293333pt;}
.y1ab{bottom:333.293333pt;}
.y157{bottom:334.293333pt;}
.y21f{bottom:337.293333pt;}
.y178{bottom:338.293333pt;}
.yc9{bottom:339.293333pt;}
.y23{bottom:340.533333pt;}
.y67{bottom:343.293333pt;}
.y45{bottom:344.293333pt;}
.yaa{bottom:345.293333pt;}
.y1a2{bottom:348.293333pt;}
.y145{bottom:349.293333pt;}
.y88{bottom:350.293333pt;}
.y133{bottom:351.293333pt;}
.y156{bottom:352.293333pt;}
.y105{bottom:354.293333pt;}
.yde{bottom:356.293333pt;}
.y11a{bottom:360.293333pt;}
.y177{bottom:361.293333pt;}
.y1f0{bottom:362.293333pt;}
.y21e{bottom:364.293333pt;}
.y22d{bottom:365.333333pt;}
.y22{bottom:365.866667pt;}
.yc8{bottom:367.333333pt;}
.y66{bottom:370.333333pt;}
.y93{bottom:371.333333pt;}
.y44{bottom:372.333333pt;}
.y1a1{bottom:375.333333pt;}
.y144{bottom:376.333333pt;}
.y87{bottom:378.333333pt;}
.y20b{bottom:379.333333pt;}
.y176{bottom:384.333333pt;}
.y1ef{bottom:385.333333pt;}
.ya9{bottom:386.333333pt;}
.ydd{bottom:387.333333pt;}
.y154{bottom:390.333333pt;}
.y21{bottom:391.066667pt;}
.y1aa{bottom:392.333333pt;}
.y22c{bottom:393.333333pt;}
.yc7{bottom:395.333333pt;}
.y132{bottom:397.333333pt;}
.y65{bottom:398.333333pt;}
.y1d1{bottom:399.333333pt;}
.y43{bottom:400.333333pt;}
.y92{bottom:401.333333pt;}
.y1a0{bottom:402.413333pt;}
.y119{bottom:403.373333pt;}
.y143{bottom:404.373333pt;}
.y86{bottom:405.373333pt;}
.y175{bottom:407.373333pt;}
.y1ee{bottom:408.373333pt;}
.y152{bottom:410.413333pt;}
.ya8{bottom:414.373333pt;}
.y7{bottom:414.800000pt;}
.y20{bottom:416.400000pt;}
.y23a{bottom:417.373333pt;}
.y21c{bottom:420.373333pt;}
.y1dd{bottom:420.413333pt;}
.y1cf{bottom:424.413333pt;}
.y64{bottom:425.373333pt;}
.y42{bottom:427.373333pt;}
.y19f{bottom:428.413333pt;}
.y142{bottom:431.373333pt;}
.y85{bottom:433.373333pt;}
.y20a{bottom:434.373333pt;}
.y103{bottom:436.360000pt;}
.yc6{bottom:436.373333pt;}
.y131{bottom:438.373333pt;}
.y6{bottom:440.266667pt;}
.ydc{bottom:440.400000pt;}
.ya7{bottom:441.400000pt;}
.y1f{bottom:441.600000pt;}
.y174{bottom:442.400000pt;}
.y118{bottom:444.400000pt;}
.y21b{bottom:447.400000pt;}
.y22b{bottom:448.400000pt;}
.y1ce{bottom:448.413333pt;}
.y151{bottom:449.400000pt;}
.yc5{bottom:452.413333pt;}
.y63{bottom:453.400000pt;}
.y1ed{bottom:454.400000pt;}
.y41{bottom:455.400000pt;}
.y19e{bottom:455.413333pt;}
.y141{bottom:459.400000pt;}
.y84{bottom:461.400000pt;}
.y130{bottom:462.400000pt;}
.y5{bottom:465.733333pt;}
.y1e{bottom:466.933333pt;}
.y117{bottom:471.400000pt;}
.y1cc{bottom:472.413333pt;}
.y21a{bottom:475.440000pt;}
.y22a{bottom:476.440000pt;}
.y101{bottom:477.426667pt;}
.y1ec{bottom:477.440000pt;}
.y173{bottom:478.440000pt;}
.y150{bottom:480.440000pt;}
.y62{bottom:481.440000pt;}
.y19c{bottom:482.426667pt;}
.y40{bottom:482.440000pt;}
.ya6{bottom:485.440000pt;}
.y140{bottom:487.440000pt;}
.y83{bottom:488.440000pt;}
.yc4{bottom:489.426667pt;}
.y128{bottom:489.440000pt;}
.y1dc{bottom:493.440000pt;}
.y182{bottom:496.426667pt;}
.y1cb{bottom:497.426667pt;}
.y116{bottom:499.440000pt;}
.y1d{bottom:500.133333pt;}
.y180{bottom:502.426667pt;}
.y219{bottom:502.440000pt;}
.y239{bottom:503.440000pt;}
.y19b{bottom:508.426667pt;}
.y61{bottom:508.440000pt;}
.y3f{bottom:510.440000pt;}
.y1eb{bottom:512.466667pt;}
.y172{bottom:515.466667pt;}
.y82{bottom:516.466667pt;}
.y100{bottom:518.466667pt;}
.y12f{bottom:519.466667pt;}
.y1ca{bottom:521.466667pt;}
.yc3{bottom:526.466667pt;}
.ya5{bottom:528.466667pt;}
.y1db{bottom:529.466667pt;}
.y13f{bottom:530.466667pt;}
.y238{bottom:531.466667pt;}
.y209{bottom:534.466667pt;}
.y199{bottom:535.466667pt;}
.y60{bottom:536.466667pt;}
.y3e{bottom:538.466667pt;}
.y1c{bottom:540.000000pt;}
.y14f{bottom:540.466667pt;}
.y81{bottom:543.466667pt;}
.y127{bottom:544.466667pt;}
.y1c8{bottom:546.466667pt;}
.y1ea{bottom:548.466667pt;}
.y171{bottom:551.506667pt;}
.yfe{bottom:552.506667pt;}
.y115{bottom:554.506667pt;}
.ya4{bottom:555.506667pt;}
.y218{bottom:558.506667pt;}
.y237{bottom:559.506667pt;}
.y13e{bottom:560.506667pt;}
.y197{bottom:562.546667pt;}
.y5f{bottom:563.506667pt;}
.yc1{bottom:564.546667pt;}
.y1b{bottom:565.200000pt;}
.y3d{bottom:565.506667pt;}
.y1da{bottom:566.506667pt;}
.y1c7{bottom:570.546667pt;}
.y80{bottom:571.506667pt;}
.y229{bottom:572.506667pt;}
.y208{bottom:580.506667pt;}
.y114{bottom:582.506667pt;}
.ya3{bottom:583.506667pt;}
.y217{bottom:585.506667pt;}
.y14e{bottom:586.533333pt;}
.yfc{bottom:587.533333pt;}
.y196{bottom:588.546667pt;}
.y1d9{bottom:590.533333pt;}
.y5e{bottom:591.533333pt;}
.y3c{bottom:593.533333pt;}
.y1c6{bottom:595.546667pt;}
.y7f{bottom:599.533333pt;}
.ybf{bottom:601.546667pt;}
.y1f8{bottom:605.546667pt;}
.y113{bottom:609.533333pt;}
.ya2{bottom:611.533333pt;}
.y1d8{bottom:613.533333pt;}
.y236{bottom:614.533333pt;}
.y194{bottom:615.546667pt;}
.y5d{bottom:619.533333pt;}
.y1c4{bottom:619.546667pt;}
.y3b{bottom:620.533333pt;}
.yfb{bottom:621.533333pt;}
.y13d{bottom:623.560000pt;}
.y170{bottom:624.560000pt;}
.y7e{bottom:626.560000pt;}
.y126{bottom:627.560000pt;}
.y1a{bottom:629.066667pt;}
.y14d{bottom:632.560000pt;}
.yc{bottom:634.400000pt;}
.y1d7{bottom:636.560000pt;}
.y112{bottom:637.560000pt;}
.ybd{bottom:638.560000pt;}
.y216{bottom:640.560000pt;}
.y235{bottom:641.560000pt;}
.y193{bottom:642.560000pt;}
.y1c3{bottom:644.560000pt;}
.y5c{bottom:646.560000pt;}
.y3a{bottom:648.560000pt;}
.y9{bottom:649.333333pt;}
.y207{bottom:649.560000pt;}
.ya1{bottom:651.560000pt;}
.y19{bottom:654.400000pt;}
.y7d{bottom:654.560000pt;}
.y14c{bottom:655.560000pt;}
.yfa{bottom:656.560000pt;}
.y13c{bottom:657.560000pt;}
.y1d6{bottom:659.560000pt;}
.y16f{bottom:660.600000pt;}
.y111{bottom:664.600000pt;}
.y192{bottom:668.600000pt;}
.y234{bottom:669.600000pt;}
.y5b{bottom:674.600000pt;}
.y8{bottom:674.800000pt;}
.y39{bottom:676.600000pt;}
.y206{bottom:677.600000pt;}
.y18{bottom:679.600000pt;}
.y7c{bottom:681.600000pt;}
.y125{bottom:682.600000pt;}
.yf7{bottom:690.600000pt;}
.y14b{bottom:691.600000pt;}
.y110{bottom:692.600000pt;}
.y1c1{bottom:693.600000pt;}
.y190{bottom:695.600000pt;}
.y16e{bottom:696.600000pt;}
.y233{bottom:697.626667pt;}
.y5a{bottom:701.626667pt;}
.y38{bottom:703.626667pt;}
.y17{bottom:704.933333pt;}
.y1d5{bottom:705.626667pt;}
.ya0{bottom:707.626667pt;}
.y7b{bottom:709.626667pt;}
.yb{bottom:710.666667pt;}
.yba{bottom:713.666667pt;}
.y1bf{bottom:717.666667pt;}
.y10f{bottom:720.626667pt;}
.y18f{bottom:722.666667pt;}
.y205{bottom:723.626667pt;}
.yf6{bottom:725.626667pt;}
.y14a{bottom:726.626667pt;}
.y59{bottom:729.626667pt;}
.y16{bottom:730.133333pt;}
.y37{bottom:731.626667pt;}
.y16d{bottom:733.626667pt;}
.y7a{bottom:737.666667pt;}
.y1d4{bottom:739.666667pt;}
.y1be{bottom:742.666667pt;}
.y10e{bottom:747.666667pt;}
.y9f{bottom:748.666667pt;}
.ydb{bottom:749.666667pt;}
.y215{bottom:751.666667pt;}
.yb6{bottom:752.666667pt;}
.y15{bottom:755.466667pt;}
.y58{bottom:757.666667pt;}
.y36{bottom:758.666667pt;}
.yf5{bottom:759.666667pt;}
.y1f7{bottom:761.666667pt;}
.y79{bottom:764.666667pt;}
.y1bd{bottom:766.666667pt;}
.y124{bottom:767.666667pt;}
.y16c{bottom:769.666667pt;}
.y1a9{bottom:773.706667pt;}
.y9e{bottom:775.706667pt;}
.yda{bottom:776.706667pt;}
.y214{bottom:778.706667pt;}
.y14{bottom:780.666667pt;}
.y57{bottom:784.706667pt;}
.y35{bottom:786.706667pt;}
.ya{bottom:786.933333pt;}
.y1bb{bottom:791.693333pt;}
.y78{bottom:792.706667pt;}
.yf4{bottom:794.693333pt;}
.y203{bottom:797.693333pt;}
.y18c{bottom:802.693333pt;}
.y10d{bottom:802.706667pt;}
.yd9{bottom:804.706667pt;}
.y16b{bottom:805.706667pt;}
.y13{bottom:806.000000pt;}
.y123{bottom:806.706667pt;}
.y232{bottom:807.706667pt;}
.y56{bottom:812.733333pt;}
.y34{bottom:814.733333pt;}
.y1b9{bottom:815.786667pt;}
.y77{bottom:819.733333pt;}
.y201{bottom:819.786667pt;}
.yf2{bottom:828.733333pt;}
.y18a{bottom:828.786667pt;}
.yd8{bottom:831.733333pt;}
.y122{bottom:834.733333pt;}
.y12{bottom:839.200000pt;}
.y55{bottom:839.733333pt;}
.y1b7{bottom:839.786667pt;}
.y33{bottom:841.733333pt;}
.y200{bottom:841.786667pt;}
.y16a{bottom:843.733333pt;}
.y10c{bottom:846.773333pt;}
.y76{bottom:847.773333pt;}
.yb5{bottom:854.773333pt;}
.y188{bottom:855.786667pt;}
.y1a8{bottom:857.773333pt;}
.yd7{bottom:859.773333pt;}
.y121{bottom:861.773333pt;}
.y9d{bottom:862.773333pt;}
.yef{bottom:863.760000pt;}
.y1fe{bottom:863.786667pt;}
.y1b5{bottom:864.786667pt;}
.y54{bottom:867.773333pt;}
.y75{bottom:875.773333pt;}
.y11{bottom:880.133333pt;}
.y32{bottom:882.800000pt;}
.y169{bottom:884.800000pt;}
.y1fd{bottom:885.800000pt;}
.yd6{bottom:887.800000pt;}
.y1b3{bottom:888.800000pt;}
.y9c{bottom:889.800000pt;}
.y4{bottom:892.533333pt;}
.yb4{bottom:894.800000pt;}
.y53{bottom:895.800000pt;}
.yed{bottom:898.800000pt;}
.y74{bottom:902.800000pt;}
.y1fc{bottom:906.800000pt;}
.y186{bottom:908.800000pt;}
.y168{bottom:912.800000pt;}
.y1b1{bottom:913.800000pt;}
.yd5{bottom:914.800000pt;}
.y120{bottom:916.800000pt;}
.y9b{bottom:917.800000pt;}
.y52{bottom:922.840000pt;}
.yb3{bottom:924.840000pt;}
.y31{bottom:926.840000pt;}
.y73{bottom:930.840000pt;}
.y3{bottom:931.866667pt;}
.y184{bottom:938.840000pt;}
.y167{bottom:939.840000pt;}
.y1af{bottom:940.840000pt;}
.yd4{bottom:942.840000pt;}
.y11f{bottom:944.840000pt;}
.y51{bottom:950.840000pt;}
.y10{bottom:957.066667pt;}
.y72{bottom:957.866667pt;}
.y9a{bottom:960.866667pt;}
.yb2{bottom:966.866667pt;}
.y166{bottom:967.866667pt;}
.yd3{bottom:969.866667pt;}
.y2{bottom:971.333333pt;}
.ye8{bottom:973.866667pt;}
.y30{bottom:977.866667pt;}
.y50{bottom:984.866667pt;}
.y71{bottom:985.866667pt;}
.yf{bottom:1003.066667pt;}
.y99{bottom:1008.893333pt;}
.y4f{bottom:1009.893333pt;}
.yb1{bottom:1011.893333pt;}
.yd2{bottom:1012.893333pt;}
.y70{bottom:1013.893333pt;}
.ye7{bottom:1014.893333pt;}
.y2f{bottom:1016.893333pt;}
.y2c{bottom:1062.933333pt;}
.h30{height:12.986667pt;}
.h2b{height:17.933333pt;}
.h29{height:17.973333pt;}
.h28{height:18.000000pt;}
.h24{height:18.946667pt;}
.h26{height:18.960000pt;}
.h2a{height:18.966667pt;}
.h27{height:19.000000pt;}
.h25{height:19.033333pt;}
.h4a{height:20.960000pt;}
.h51{height:20.986667pt;}
.h49{height:21.033333pt;}
.h4d{height:21.933333pt;}
.h52{height:21.946667pt;}
.h54{height:21.960000pt;}
.h4c{height:21.966667pt;}
.h48{height:21.980000pt;}
.h50{height:21.986667pt;}
.h4b{height:22.000000pt;}
.h53{height:22.033333pt;}
.h41{height:23.946667pt;}
.h46{height:23.980000pt;}
.h45{height:23.986667pt;}
.h3f{height:24.000000pt;}
.h3d{height:24.033333pt;}
.h44{height:24.946667pt;}
.h40{height:24.980000pt;}
.h3e{height:24.986667pt;}
.h43{height:24.993333pt;}
.h42{height:25.000000pt;}
.h47{height:25.033333pt;}
.h3c{height:25.946667pt;}
.h34{height:25.986667pt;}
.h38{height:25.993333pt;}
.h32{height:26.033333pt;}
.h3a{height:26.946667pt;}
.h37{height:26.960000pt;}
.h36{height:26.980000pt;}
.h3b{height:26.986667pt;}
.h35{height:27.000000pt;}
.h39{height:27.033333pt;}
.h33{height:27.986667pt;}
.h2c{height:29.000000pt;}
.h31{height:30.593750pt;}
.h20{height:34.000000pt;}
.h1f{height:34.033333pt;}
.h1e{height:35.033333pt;}
.h19{height:36.986667pt;}
.h14{height:36.993333pt;}
.h17{height:37.000000pt;}
.h15{height:37.033333pt;}
.h57{height:37.324219pt;}
.h16{height:37.986667pt;}
.h18{height:38.033333pt;}
.h8{height:40.648438pt;}
.h21{height:41.033333pt;}
.h22{height:41.066667pt;}
.he{height:41.718750pt;}
.hb{height:43.066406pt;}
.h13{height:45.937500pt;}
.h6{height:46.593750pt;}
.h7{height:52.421875pt;}
.h2f{height:52.936458pt;}
.hc{height:54.234375pt;}
.h5{height:57.187500pt;}
.h1a{height:57.375000pt;}
.h2d{height:58.498958pt;}
.h4f{height:62.578125pt;}
.h55{height:62.812500pt;}
.h1d{height:65.546875pt;}
.hf{height:66.750000pt;}
.h3{height:68.062500pt;}
.h11{height:70.921875pt;}
.h1c{height:73.890625pt;}
.h23{height:73.997292pt;}
.h1b{height:74.050625pt;}
.h12{height:74.066667pt;}
.h4{height:77.656250pt;}
.h10{height:79.404688pt;}
.hd{height:87.748438pt;}
.h2{height:105.875000pt;}
.h56{height:112.779687pt;}
.h4e{height:178.120000pt;}
.h2e{height:241.240000pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.h9{height:1123.000000pt;}
.ha{height:1123.333333pt;}
.we{width:17.973333pt;}
.w27{width:18.033333pt;}
.w29{width:19.000000pt;}
.w8{width:70.000000pt;}
.wb{width:70.072000pt;}
.w9{width:70.085333pt;}
.w7{width:70.086667pt;}
.w1b{width:71.086667pt;}
.wc{width:71.098667pt;}
.wa{width:71.100000pt;}
.w1c{width:77.000000pt;}
.w1d{width:77.058667pt;}
.w18{width:77.072000pt;}
.w19{width:77.085333pt;}
.w15{width:78.000000pt;}
.w11{width:78.072000pt;}
.w12{width:78.085333pt;}
.w14{width:78.086667pt;}
.w10{width:79.000000pt;}
.w16{width:79.058667pt;}
.w2b{width:79.072000pt;}
.w13{width:79.100000pt;}
.w1f{width:80.000000pt;}
.w24{width:80.058667pt;}
.w20{width:80.072000pt;}
.w1e{width:80.082667pt;}
.w21{width:80.085333pt;}
.w23{width:80.086667pt;}
.w25{width:80.098667pt;}
.w22{width:80.100000pt;}
.w2a{width:81.082667pt;}
.wf{width:83.112000pt;}
.w1a{width:88.100000pt;}
.w17{width:90.000000pt;}
.w4{width:192.200000pt;}
.w2{width:192.204000pt;}
.w3{width:192.213333pt;}
.w5{width:192.240000pt;}
.w6{width:192.266667pt;}
.w28{width:269.333333pt;}
.w26{width:270.320000pt;}
.wd{width:344.373333pt;}
.w0{width:793.333333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x74{left:6.982667pt;}
.x51{left:10.026667pt;}
.x64{left:12.013333pt;}
.x4f{left:12.973333pt;}
.x50{left:14.040000pt;}
.x67{left:16.026667pt;}
.x4e{left:16.973333pt;}
.x1e{left:18.000000pt;}
.x47{left:18.973333pt;}
.x4a{left:19.973333pt;}
.x25{left:21.026667pt;}
.x45{left:22.026667pt;}
.x26{left:23.026667pt;}
.x20{left:24.033333pt;}
.x75{left:25.016000pt;}
.x7a{left:26.016000pt;}
.x19{left:27.033333pt;}
.x2c{left:28.026667pt;}
.x5d{left:29.040000pt;}
.x7d{left:30.040000pt;}
.x4d{left:31.026667pt;}
.x5f{left:31.992000pt;}
.x36{left:33.026667pt;}
.x69{left:34.040000pt;}
.x5c{left:35.040000pt;}
.x18{left:36.026667pt;}
.x35{left:37.066667pt;}
.x1b{left:38.066667pt;}
.x21{left:39.066667pt;}
.x7b{left:40.016000pt;}
.x68{left:41.992000pt;}
.x23{left:43.026667pt;}
.x27{left:44.026667pt;}
.x6a{left:45.066667pt;}
.x37{left:47.066667pt;}
.x79{left:48.084000pt;}
.x22{left:51.066667pt;}
.x2b{left:52.066667pt;}
.x34{left:57.066667pt;}
.x33{left:60.053333pt;}
.x32{left:66.106667pt;}
.x1c{left:68.093333pt;}
.x31{left:70.106667pt;}
.x3c{left:71.106667pt;}
.x38{left:72.106667pt;}
.x1f{left:73.093333pt;}
.x2d{left:74.093333pt;}
.x2e{left:75.106667pt;}
.x3d{left:76.093333pt;}
.x2f{left:80.093333pt;}
.x53{left:81.066667pt;}
.x39{left:82.133333pt;}
.x3a{left:86.093333pt;}
.x3b{left:87.133333pt;}
.xc{left:91.333333pt;}
.x77{left:94.106667pt;}
.x24{left:96.133333pt;}
.x30{left:97.093333pt;}
.x17{left:106.133333pt;}
.x28{left:112.133333pt;}
.xf{left:113.600000pt;}
.x6d{left:122.208000pt;}
.x5e{left:123.208000pt;}
.x56{left:127.208000pt;}
.x12{left:137.160000pt;}
.x9{left:138.933333pt;}
.x15{left:141.160000pt;}
.x2{left:152.400000pt;}
.x3f{left:155.200000pt;}
.x44{left:156.213333pt;}
.x10{left:160.800000pt;}
.xb{left:172.666667pt;}
.xd{left:173.600000pt;}
.x54{left:175.240000pt;}
.x1{left:176.800000pt;}
.x14{left:183.240000pt;}
.x13{left:184.240000pt;}
.x6e{left:202.266667pt;}
.x7c{left:203.266667pt;}
.x57{left:206.266667pt;}
.x6b{left:208.266667pt;}
.x60{left:213.266667pt;}
.xe{left:216.666667pt;}
.x46{left:226.333333pt;}
.x52{left:241.333333pt;}
.x16{left:246.306667pt;}
.xa{left:267.200000pt;}
.x6f{left:282.373333pt;}
.x58{left:284.373333pt;}
.x61{left:290.373333pt;}
.x48{left:296.373333pt;}
.x1a{left:298.373333pt;}
.x8{left:299.866667pt;}
.x3{left:320.666667pt;}
.x7{left:327.200000pt;}
.x59{left:362.466667pt;}
.x42{left:366.466667pt;}
.x62{left:367.466667pt;}
.x55{left:375.466667pt;}
.x41{left:390.506667pt;}
.x3e{left:394.506667pt;}
.x78{left:395.506667pt;}
.x11{left:398.133333pt;}
.x2a{left:401.506667pt;}
.x7e{left:410.533333pt;}
.x49{left:437.586667pt;}
.x5a{left:441.586667pt;}
.x70{left:442.586667pt;}
.x40{left:443.560000pt;}
.x76{left:448.586667pt;}
.x63{left:455.586667pt;}
.x4{left:468.533333pt;}
.x1d{left:490.640000pt;}
.x4b{left:507.640000pt;}
.x6{left:519.333333pt;}
.x71{left:522.706667pt;}
.x65{left:526.706667pt;}
.x4c{left:577.733333pt;}
.x5{left:587.733333pt;}
.x5b{left:597.773333pt;}
.x72{left:602.773333pt;}
.x66{left:603.773333pt;}
.x29{left:612.773333pt;}
.x6c{left:640.800000pt;}
.x43{left:656.840000pt;}
.x73{left:682.866667pt;}
}




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