
    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_ff32d769339eabda2411f41e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5c1e12b895d5d9c1a6aed49c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_ca6e7c0f5e1e431419b4dc44.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_b8bc3bcda8e06ac5ed4c4775.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_e40517ceeed686e3d985cc16.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.889000;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_15774aa949b593bd400d6849.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_4c3ece5204b567f8aa109621.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5c7805ec89b9cc5080f6954f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.000000;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_89fdae6fdca1362579f4e27e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_7273512e99e2feb081c4a038.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_c654b9e612357b297993b961.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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_57fb5dc912ec33a8b7157f46.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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e1a0d6adf2ab81066c40c27d.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.v3{vertical-align:-27.360960px;}
.v5{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.400000px;}
.v1{vertical-align:24.478140px;}
.v2{vertical-align:27.360960px;}
.ls22{letter-spacing:-1.704000px;}
.ls21{letter-spacing:-1.296000px;}
.ls28{letter-spacing:-0.942000px;}
.ls31{letter-spacing:-0.936000px;}
.ls40{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.630000px;}
.lsa{letter-spacing:-0.579000px;}
.ls45{letter-spacing:-0.570000px;}
.ls6{letter-spacing:-0.504000px;}
.ls25{letter-spacing:-0.498000px;}
.ls9{letter-spacing:-0.488400px;}
.ls7{letter-spacing:-0.463800px;}
.ls8{letter-spacing:-0.406200px;}
.ls34{letter-spacing:-0.382800px;}
.ls30{letter-spacing:-0.334200px;}
.ls2f{letter-spacing:-0.303600px;}
.lsd{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.250800px;}
.ls3a{letter-spacing:-0.238800px;}
.ls20{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.044640px;}
.lsc{letter-spacing:0.060600px;}
.ls1{letter-spacing:0.121200px;}
.ls2d{letter-spacing:0.142800px;}
.ls19{letter-spacing:0.143520px;}
.lse{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.144840px;}
.ls1c{letter-spacing:0.234600px;}
.ls42{letter-spacing:0.252000px;}
.ls12{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.346800px;}
.ls29{letter-spacing:0.396000px;}
.ls2{letter-spacing:0.504000px;}
.ls32{letter-spacing:0.526800px;}
.ls3e{letter-spacing:0.534900px;}
.ls44{letter-spacing:0.534960px;}
.ls41{letter-spacing:0.536160px;}
.ls39{letter-spacing:0.536280px;}
.ls33{letter-spacing:0.536760px;}
.ls43{letter-spacing:0.537360px;}
.ls5{letter-spacing:0.587400px;}
.ls26{letter-spacing:0.630000px;}
.ls37{letter-spacing:0.633600px;}
.ls1d{letter-spacing:0.648000px;}
.lsb{letter-spacing:0.654000px;}
.ls3f{letter-spacing:0.654420px;}
.ls3d{letter-spacing:0.716760px;}
.ls13{letter-spacing:0.719520px;}
.ls36{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.720480px;}
.ls3c{letter-spacing:0.864600px;}
.ls2e{letter-spacing:0.936000px;}
.ls24{letter-spacing:1.078620px;}
.ls23{letter-spacing:1.080960px;}
.ls11{letter-spacing:1.584000px;}
.ls14{letter-spacing:1.584180px;}
.ls35{letter-spacing:2.160000px;}
.lsf{letter-spacing:9.192600px;}
.ls3b{letter-spacing:9.360000px;}
.ls1e{letter-spacing:23.184000px;}
.ls15{letter-spacing:33.264480px;}
.ls10{letter-spacing:33.276180px;}
.ls38{letter-spacing:53.434800px;}
.ls17{letter-spacing:54.864600px;}
.ls2b{letter-spacing:54.876000px;}
.ls1f{letter-spacing:54.984000px;}
.ls3{letter-spacing:61.361160px;}
.ls4{letter-spacing:80.070960px;}
.ls16{letter-spacing:87.984000px;}
.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;}
}
.wsf{word-spacing:-33.120000px;}
.wsc{word-spacing:-21.849120px;}
.ws1a{word-spacing:-18.936000px;}
.ws22{word-spacing:-18.648000px;}
.ws1c{word-spacing:-18.504000px;}
.wse{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.144000px;}
.wsd{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.712000px;}
.ws19{word-spacing:-17.573760px;}
.ws10{word-spacing:-17.496000px;}
.ws20{word-spacing:-17.064000px;}
.ws1{word-spacing:-16.272000px;}
.ws2{word-spacing:-15.768000px;}
.ws8{word-spacing:-15.624240px;}
.ws5{word-spacing:-15.557640px;}
.ws9{word-spacing:-15.030840px;}
.ws23{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.564040px;}
.ws3{word-spacing:-14.506440px;}
.ws7{word-spacing:-14.391240px;}
.ws15{word-spacing:-14.310000px;}
.ws14{word-spacing:-13.182000px;}
.ws16{word-spacing:-13.050000px;}
.ws1d{word-spacing:-12.893520px;}
.ws17{word-spacing:-12.738000px;}
.ws1f{word-spacing:-12.366720px;}
.ws21{word-spacing:-12.127920px;}
.ws12{word-spacing:-12.114600px;}
.ws1b{word-spacing:-12.032520px;}
.ws1e{word-spacing:-11.983920px;}
.ws11{word-spacing:-11.629200px;}
.ws6{word-spacing:-8.949360px;}
.ws18{word-spacing:-8.532000px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-13.282370px;}
._c{margin-left:-11.972835px;}
._d{margin-left:-9.844246px;}
._10{margin-left:-8.633781px;}
._b{margin-left:-7.278147px;}
._f{margin-left:-5.551708px;}
._11{margin-left:-4.481591px;}
._8{margin-left:-3.480612px;}
._3{margin-left:-2.291789px;}
._1{margin-left:-1.085276px;}
._0{width:1.170996px;}
._2{width:2.585518px;}
._12{width:3.775206px;}
._6{width:4.853952px;}
._13{width:6.552756px;}
._14{width:8.269584px;}
._1e{width:9.301452px;}
._9{width:10.439839px;}
._a{width:11.497061px;}
._7{width:13.103328px;}
._4{width:14.542392px;}
._5{width:15.550854px;}
._1f{width:16.763917px;}
._1c{width:19.800556px;}
._20{width:20.842268px;}
._1a{width:21.886644px;}
._1b{width:23.102245px;}
._18{width:24.621453px;}
._19{width:25.784560px;}
._1d{width:27.208177px;}
._16{width:28.743041px;}
._15{width:30.091526px;}
._17{width:31.250132px;}
._21{width:846.453600px;}
.fca{color:rgb(96,94,92);}
.fc5{color:transparent;}
.fc2{color:rgb(112,48,160);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(47,84,150);}
.fc9{color:rgb(127,127,127);}
.fc8{color:rgb(89,89,89);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(147,147,147);}
.fc4{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fsa{font-size:53.280000px;}
.fs8{font-size:54.720000px;}
.fsc{font-size:54.864000px;}
.fs3{font-size:60.480000px;}
.fsd{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs0{font-size:83.520000px;}
.fse{font-size:86.400000px;}
.fs4{font-size:96.480000px;}
.fsf{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.y17a{bottom:-16.560000px;}
.y11e{bottom:-15.803850px;}
.y2ed{bottom:-14.004450px;}
.y300{bottom:-13.574700px;}
.y29d{bottom:-10.409700px;}
.y370{bottom:-9.539700px;}
.y0{bottom:0.000000px;}
.y2ec{bottom:2.555850px;}
.y2ff{bottom:2.985000px;}
.y145{bottom:3.960000px;}
.y32d{bottom:3.990000px;}
.y1b3{bottom:4.320000px;}
.y1c8{bottom:4.350000px;}
.y26e{bottom:4.680000px;}
.y25f{bottom:5.040000px;}
.y1ad{bottom:5.400000px;}
.y312{bottom:5.760000px;}
.y29c{bottom:6.150000px;}
.y39b{bottom:6.195000px;}
.y180{bottom:6.516150px;}
.y147{bottom:6.876000px;}
.y36f{bottom:7.020000px;}
.y213{bottom:7.410000px;}
.y16d{bottom:7.560300px;}
.y21e{bottom:7.596150px;}
.y3a7{bottom:7.955850px;}
.y24c{bottom:8.025000px;}
.y3a6{bottom:9.030000px;}
.y372{bottom:9.035700px;}
.y2c3{bottom:9.396150px;}
.y37e{bottom:10.476000px;}
.y30a{bottom:10.545000px;}
.y2d9{bottom:11.670000px;}
.y367{bottom:11.916300px;}
.y35b{bottom:12.090000px;}
.y220{bottom:12.420000px;}
.y27c{bottom:12.960000px;}
.y215{bottom:13.035000px;}
.y26a{bottom:13.680000px;}
.y17e{bottom:13.860000px;}
.y1ce{bottom:14.040000px;}
.y1bf{bottom:14.400000px;}
.y31b{bottom:14.430000px;}
.y32f{bottom:14.760000px;}
.y15e{bottom:14.910000px;}
.y13d{bottom:16.200000px;}
.y142{bottom:16.230000px;}
.y16f{bottom:16.560000px;}
.y1d9{bottom:17.280000px;}
.y2b7{bottom:17.280600px;}
.y1df{bottom:17.310000px;}
.y209{bottom:17.325000px;}
.y16e{bottom:17.640000px;}
.y1e8{bottom:17.670000px;}
.y1aa{bottom:18.180000px;}
.y178{bottom:18.210000px;}
.y11d{bottom:18.396150px;}
.y25c{bottom:18.825000px;}
.y12f{bottom:20.190000px;}
.y136{bottom:23.790000px;}
.y1b1{bottom:25.560000px;}
.y1b6{bottom:25.590000px;}
.y1bb{bottom:25.605000px;}
.y320{bottom:25.920000px;}
.y317{bottom:25.950000px;}
.y2c5{bottom:26.070000px;}
.y16c{bottom:27.750000px;}
.y2b9{bottom:28.440150px;}
.y138{bottom:28.470000px;}
.y202{bottom:28.829400px;}
.y353{bottom:28.830000px;}
.y13b{bottom:31.680000px;}
.y140{bottom:31.710000px;}
.y2b4{bottom:34.560450px;}
.y203{bottom:34.949850px;}
.y1d8{bottom:35.685000px;}
.y28d{bottom:36.000000px;}
.y135{bottom:39.990000px;}
.y131{bottom:42.870000px;}
.y2b2{bottom:45.720000px;}
.y1fe{bottom:46.110000px;}
.y12e{bottom:48.629700px;}
.y2b6{bottom:51.480600px;}
.y200{bottom:51.869850px;}
.y2b3{bottom:56.880000px;}
.y134{bottom:56.910150px;}
.y12b{bottom:57.270000px;}
.y2b8{bottom:62.670000px;}
.y201{bottom:63.030000px;}
.y139{bottom:65.190000px;}
.y293{bottom:70.920000px;}
.y1db{bottom:70.950000px;}
.y1e5{bottom:71.280000px;}
.y1e0{bottom:71.325000px;}
.y130{bottom:71.670000px;}
.y133{bottom:73.469850px;}
.y2b5{bottom:73.830000px;}
.y1ff{bottom:74.190000px;}
.y12d{bottom:77.429700px;}
.y137{bottom:86.070000px;}
.y2c1{bottom:89.316150px;}
.y132{bottom:90.390000px;}
.y13f{bottom:92.190000px;}
.y12c{bottom:93.990000px;}
.y2c2{bottom:106.559700px;}
.y371{bottom:106.920150px;}
.y21d{bottom:108.000000px;}
.y11c{bottom:108.359700px;}
.y2eb{bottom:109.440300px;}
.y17f{bottom:111.600000px;}
.y146{bottom:111.959700px;}
.y1d6{bottom:111.996000px;}
.y15c{bottom:112.716450px;}
.y310{bottom:114.876000px;}
.y2d7{bottom:115.596000px;}
.ydb{bottom:116.316450px;}
.y32{bottom:117.036150px;}
.y28b{bottom:118.835250px;}
.y9e{bottom:119.196300px;}
.y351{bottom:119.555700px;}
.y2b0{bottom:122.075550px;}
.y1af{bottom:122.085000px;}
.y395{bottom:122.435850px;}
.y366{bottom:122.759700px;}
.y206{bottom:122.790000px;}
.y33d{bottom:122.796450px;}
.y23d{bottom:124.235850px;}
.y5a{bottom:125.316600px;}
.y308{bottom:127.476150px;}
.y283{bottom:127.836000px;}
.y12{bottom:128.556150px;}
.y3a4{bottom:129.600000px;}
.yf9{bottom:130.716000px;}
.y7f{bottom:132.154800px;}
.y19b{bottom:132.156450px;}
.y399{bottom:135.035700px;}
.y24a{bottom:135.755550px;}
.y211{bottom:137.916450px;}
.y172{bottom:138.450000px;}
.y176{bottom:138.960000px;}
.y2fd{bottom:139.355700px;}
.y1a8{bottom:141.157200px;}
.y1ea{bottom:141.479850px;}
.y1d5{bottom:142.955700px;}
.y25a{bottom:142.956450px;}
.y2d6{bottom:146.555700px;}
.y59{bottom:146.916600px;}
.y15b{bottom:147.276150px;}
.yda{bottom:148.716450px;}
.y30f{bottom:149.435700px;}
.y3a5{bottom:150.480000px;}
.y31{bottom:150.870450px;}
.y2af{bottom:153.029400px;}
.y9d{bottom:153.030150px;}
.y28a{bottom:153.389700px;}
.y394{bottom:153.750150px;}
.y350{bottom:154.109550px;}
.y31e{bottom:154.110000px;}
.y314{bottom:154.485000px;}
.y119{bottom:156.269100px;}
.y23c{bottom:156.270150px;}
.y33c{bottom:156.990600px;}
.ybb{bottom:157.710150px;}
.y1fc{bottom:160.950000px;}
.y307{bottom:161.670300px;}
.y11{bottom:161.670450px;}
.y282{bottom:162.390450px;}
.yf8{bottom:162.749850px;}
.y175{bottom:164.265000px;}
.y7e{bottom:165.989100px;}
.y398{bottom:165.990150px;}
.y19a{bottom:166.710300px;}
.y58{bottom:168.870450px;}
.y249{bottom:169.949700px;}
.y2fc{bottom:170.670000px;}
.y29b{bottom:171.000000px;}
.y210{bottom:171.750300px;}
.y1a7{bottom:175.351350px;}
.y259{bottom:177.150600px;}
.y2d5{bottom:177.509550px;}
.yd9{bottom:181.110000px;}
.y15a{bottom:181.470300px;}
.y30e{bottom:183.629850px;}
.y2ae{bottom:184.349550px;}
.y30{bottom:184.350300px;}
.y393{bottom:184.709850px;}
.y9c{bottom:186.870450px;}
.y34f{bottom:188.309550px;}
.y118{bottom:188.669100px;}
.y23b{bottom:188.670150px;}
.yba{bottom:188.670450px;}
.y57{bottom:190.470450px;}
.y33b{bottom:191.190600px;}
.y10{bottom:193.350300px;}
.y1fb{bottom:194.429850px;}
.yf7{bottom:195.149850px;}
.y306{bottom:195.870300px;}
.y281{bottom:196.590450px;}
.y397{bottom:197.309700px;}
.y7d{bottom:199.873800px;}
.y248{bottom:200.954550px;}
.y199{bottom:200.955450px;}
.y2fb{bottom:201.674850px;}
.y173{bottom:203.729850px;}
.y20f{bottom:205.275300px;}
.y170{bottom:206.715000px;}
.y2d4{bottom:208.874850px;}
.y1a6{bottom:209.956200px;}
.y258{bottom:211.755450px;}
.y56{bottom:212.115600px;}
.yd8{bottom:213.555150px;}
.y2ad{bottom:215.354400px;}
.y392{bottom:215.715300px;}
.y159{bottom:215.715450px;}
.y30d{bottom:217.875000px;}
.y2f{bottom:218.235000px;}
.yb9{bottom:220.035150px;}
.y9b{bottom:220.755150px;}
.y117{bottom:221.114250px;}
.y23a{bottom:221.115300px;}
.y214{bottom:221.400000px;}
.y34e{bottom:222.554700px;}
.y33a{bottom:225.795450px;}
.yf6{bottom:227.234550px;}
.y305{bottom:227.235000px;}
.y1fa{bottom:228.315150px;}
.y280{bottom:231.195300px;}
.y396{bottom:231.554850px;}
.y247{bottom:232.274700px;}
.y2fa{bottom:232.634550px;}
.y7c{bottom:233.353650px;}
.y198{bottom:235.155450px;}
.y32e{bottom:235.515000px;}
.y1a5{bottom:240.915900px;}
.y2d3{bottom:241.274850px;}
.yd7{bottom:245.595450px;}
.y55{bottom:245.955300px;}
.y257{bottom:245.955450px;}
.y2ac{bottom:246.674550px;}
.y391{bottom:247.034850px;}
.y39a{bottom:248.760000px;}
.y158{bottom:250.275150px;}
.yb8{bottom:250.995450px;}
.y2e{bottom:252.075300px;}
.y116{bottom:253.514250px;}
.y239{bottom:253.515300px;}
.y9a{bottom:254.235000px;}
.y34d{bottom:257.115000px;}
.y1f9{bottom:258.195000px;}
.y304{bottom:258.195300px;}
.yf5{bottom:258.554700px;}
.y339{bottom:259.995450px;}
.y246{bottom:263.235000px;}
.y2f9{bottom:263.594850px;}
.y27f{bottom:265.395300px;}
.y7b{bottom:267.193350px;}
.y54{bottom:267.555300px;}
.y197{bottom:269.715750px;}
.y1a4{bottom:271.875600px;}
.y2d2{bottom:273.674850px;}
.y31d{bottom:277.995000px;}
.yd6{bottom:277.995450px;}
.y2ab{bottom:278.714850px;}
.y390{bottom:279.434850px;}
.y256{bottom:280.155450px;}
.yb7{bottom:282.315600px;}
.y157{bottom:284.475150px;}
.y238{bottom:285.555000px;}
.y2d{bottom:285.555150px;}
.y115{bottom:285.914250px;}
.y99{bottom:288.075300px;}
.y303{bottom:289.155000px;}
.yf4{bottom:289.515000px;}
.y53{bottom:289.515600px;}
.y34c{bottom:291.315000px;}
.y1f8{bottom:292.754700px;}
.y245{bottom:294.195300px;}
.y338{bottom:294.555150px;}
.y2f8{bottom:294.915000px;}
.y16b{bottom:299.235000px;}
.y27e{bottom:299.595300px;}
.y7a{bottom:301.033050px;}
.y1a3{bottom:302.835300px;}
.y196{bottom:303.915750px;}
.y2d1{bottom:306.074850px;}
.y355{bottom:308.955000px;}
.yd5{bottom:310.395450px;}
.y2aa{bottom:311.114850px;}
.y52{bottom:311.115600px;}
.y38f{bottom:311.834850px;}
.yb6{bottom:314.715600px;}
.y255{bottom:314.715750px;}
.y1f7{bottom:315.074850px;}
.y237{bottom:316.515300px;}
.y114{bottom:318.314250px;}
.y156{bottom:319.034850px;}
.y2c{bottom:319.395450px;}
.y174{bottom:319.530000px;}
.y302{bottom:320.115300px;}
.yf3{bottom:320.475000px;}
.y32c{bottom:320.835000px;}
.y98{bottom:321.915600px;}
.y244{bottom:325.185000px;}
.y2f7{bottom:325.905000px;}
.y337{bottom:328.785000px;}
.y51{bottom:333.105300px;}
.y27d{bottom:334.185000px;}
.y1a2{bottom:334.185300px;}
.y79{bottom:334.543350px;}
.y2d0{bottom:338.145000px;}
.y195{bottom:338.505450px;}
.y329{bottom:342.105000px;}
.yd4{bottom:342.465600px;}
.y2a9{bottom:343.544700px;}
.y2fe{bottom:343.800000px;}
.y38e{bottom:343.905000px;}
.y359{bottom:344.265000px;}
.yb5{bottom:346.785150px;}
.y1f6{bottom:347.504700px;}
.y236{bottom:347.865300px;}
.y254{bottom:348.945600px;}
.y113{bottom:350.383800px;}
.yf2{bottom:351.465600px;}
.y27b{bottom:351.825000px;}
.y155{bottom:353.265300px;}
.y2b{bottom:353.265600px;}
.y301{bottom:354.705000px;}
.y50{bottom:354.705300px;}
.y97{bottom:355.425300px;}
.y243{bottom:356.505150px;}
.y179{bottom:357.945000px;}
.y336{bottom:362.985000px;}
.y32b{bottom:363.705000px;}
.y1a1{bottom:365.145600px;}
.y25b{bottom:365.760000px;}
.y78{bottom:368.383650px;}
.y2cf{bottom:370.545000px;}
.y309{bottom:371.880000px;}
.y194{bottom:372.705450px;}
.yd3{bottom:373.785150px;}
.y2a8{bottom:374.505000px;}
.y38d{bottom:376.305000px;}
.y4f{bottom:376.305300px;}
.y235{bottom:378.825000px;}
.y358{bottom:379.185000px;}
.yb4{bottom:379.185150px;}
.y1f5{bottom:379.904700px;}
.y1cd{bottom:381.345000px;}
.y112{bottom:382.783800px;}
.yf1{bottom:382.785150px;}
.y32a{bottom:384.945000px;}
.y2a{bottom:387.105300px;}
.y154{bottom:387.465300px;}
.y96{bottom:389.265000px;}
.y242{bottom:390.705150px;}
.y26f{bottom:391.065000px;}
.yf{bottom:395.745300px;}
.y1a0{bottom:396.105300px;}
.y335{bottom:397.545300px;}
.y4e{bottom:398.265600px;}
.y16a{bottom:399.704850px;}
.y77{bottom:402.223950px;}
.y2ce{bottom:402.584700px;}
.yd2{bottom:404.745450px;}
.y2a7{bottom:405.825150px;}
.y326{bottom:406.545000px;}
.y193{bottom:406.905450px;}
.y24b{bottom:407.880000px;}
.y38c{bottom:408.705000px;}
.y234{bottom:409.784700px;}
.yb3{bottom:410.145450px;}
.y1f4{bottom:411.945000px;}
.y27a{bottom:412.665000px;}
.yf0{bottom:413.745450px;}
.y357{bottom:414.465000px;}
.y111{bottom:415.183800px;}
.y153{bottom:418.784850px;}
.y4d{bottom:419.865600px;}
.y29{bottom:420.585150px;}
.y1c3{bottom:422.745000px;}
.y95{bottom:423.104700px;}
.y19f{bottom:427.065600px;}
.y328{bottom:428.145000px;}
.y169{bottom:431.025000px;}
.y334{bottom:431.745300px;}
.y2cd{bottom:433.904850px;}
.y279{bottom:433.905000px;}
.y289{bottom:435.704700px;}
.y76{bottom:436.064250px;}
.yd1{bottom:436.065600px;}
.y2a6{bottom:437.865450px;}
.y38b{bottom:440.745300px;}
.y36d{bottom:441.104700px;}
.y233{bottom:441.104850px;}
.yb2{bottom:441.105150px;}
.y4c{bottom:441.465600px;}
.y192{bottom:441.465750px;}
.y1f3{bottom:443.265150px;}
.y1cc{bottom:444.345000px;}
.yef{bottom:444.705150px;}
.y110{bottom:447.583800px;}
.y327{bottom:449.430000px;}
.y152{bottom:449.790300px;}
.ye{bottom:452.670300px;}
.y28{bottom:454.470450px;}
.y276{bottom:455.550000px;}
.y94{bottom:456.990000px;}
.y168{bottom:458.070450px;}
.y19e{bottom:458.430300px;}
.y333{bottom:462.750150px;}
.y4b{bottom:463.470450px;}
.y1cb{bottom:465.630000px;}
.y288{bottom:466.709550px;}
.y2cc{bottom:468.150000px;}
.yd0{bottom:468.150300px;}
.y75{bottom:469.589250px;}
.y2a5{bottom:470.310000px;}
.y323{bottom:471.030000px;}
.yb1{bottom:472.109550px;}
.y38a{bottom:472.110000px;}
.y36c{bottom:472.470000px;}
.y232{bottom:473.550000px;}
.y1f2{bottom:474.270000px;}
.yee{bottom:475.710000px;}
.y191{bottom:475.710300px;}
.y278{bottom:476.790000px;}
.y10f{bottom:480.028950px;}
.y151{bottom:480.750000px;}
.y1d4{bottom:484.709700px;}
.y356{bottom:484.710000px;}
.y4a{bottom:485.070450px;}
.y2d8{bottom:485.640000px;}
.y1c9{bottom:487.230000px;}
.y27{bottom:488.310150px;}
.y167{bottom:489.390600px;}
.y93{bottom:490.469850px;}
.y325{bottom:492.270000px;}
.y332{bottom:494.070300px;}
.y129{bottom:495.510450px;}
.y287{bottom:498.029700px;}
.y277{bottom:498.390000px;}
.ycf{bottom:500.550300px;}
.y2a4{bottom:502.710000px;}
.y2ea{bottom:503.070150px;}
.y389{bottom:503.070300px;}
.y74{bottom:503.429550px;}
.yb0{bottom:503.429700px;}
.y36b{bottom:503.430300px;}
.y231{bottom:505.950000px;}
.y1f1{bottom:506.670000px;}
.y49{bottom:507.030150px;}
.y13e{bottom:508.830000px;}
.yd{bottom:509.190450px;}
.y190{bottom:510.270600px;}
.y10e{bottom:512.069250px;}
.y324{bottom:513.870000px;}
.y150{bottom:514.950000px;}
.y1d3{bottom:515.670000px;}
.y354{bottom:519.630000px;}
.y273{bottom:519.990000px;}
.y166{bottom:520.350300px;}
.y26{bottom:521.790600px;}
.y92{bottom:524.310150px;}
.y331{bottom:525.030000px;}
.y48{bottom:528.630150px;}
.y286{bottom:528.990000px;}
.y1ca{bottom:530.070000px;}
.y15d{bottom:531.720000px;}
.yce{bottom:532.950300px;}
.y2a3{bottom:533.670300px;}
.y388{bottom:534.030150px;}
.yaf{bottom:534.390000px;}
.y2e9{bottom:534.390300px;}
.y36a{bottom:534.390600px;}
.y31f{bottom:535.110000px;}
.y73{bottom:537.269850px;}
.y230{bottom:537.990300px;}
.yed{bottom:537.990450px;}
.y1f0{bottom:538.709700px;}
.y143{bottom:539.790000px;}
.y275{bottom:541.230000px;}
.y10d{bottom:543.028950px;}
.y18f{bottom:544.470600px;}
.y1d2{bottom:546.629700px;}
.y2c4{bottom:546.840000px;}
.y47{bottom:550.230150px;}
.y1c5{bottom:551.670000px;}
.y165{bottom:551.670450px;}
.y21c{bottom:553.470150px;}
.y352{bottom:554.550000px;}
.y19d{bottom:554.910000px;}
.y25{bottom:555.630300px;}
.y322{bottom:556.710000px;}
.y91{bottom:558.150450px;}
.y330{bottom:559.230000px;}
.y274{bottom:562.830000px;}
.y285{bottom:563.190000px;}
.y17c{bottom:563.550150px;}
.y387{bottom:564.990450px;}
.yae{bottom:565.349700px;}
.ycd{bottom:565.350300px;}
.yc{bottom:566.070300px;}
.y2e8{bottom:566.790300px;}
.yec{bottom:569.310000px;}
.y1ef{bottom:570.029850px;}
.y22f{bottom:570.390300px;}
.y72{bottom:570.749700px;}
.y1a9{bottom:572.040000px;}
.y46{bottom:572.190450px;}
.y1c7{bottom:572.910000px;}
.y10c{bottom:573.989250px;}
.y1d1{bottom:577.620000px;}
.y321{bottom:578.340000px;}
.y18e{bottom:578.700450px;}
.y297{bottom:581.580000px;}
.y164{bottom:583.740600px;}
.y270{bottom:584.100000px;}
.y90{bottom:588.420600px;}
.y24{bottom:589.500450px;}
.y21f{bottom:589.680000px;}
.y45{bottom:593.820300px;}
.y1c6{bottom:594.540000px;}
.yad{bottom:596.340000px;}
.y386{bottom:596.340450px;}
.y369{bottom:596.700300px;}
.y2a2{bottom:597.060000px;}
.y17b{bottom:597.780000px;}
.ycc{bottom:597.780150px;}
.y2e7{bottom:598.859850px;}
.y31c{bottom:599.580000px;}
.y141{bottom:600.300000px;}
.yeb{bottom:601.380150px;}
.y1ee{bottom:602.459700px;}
.y22e{bottom:602.820150px;}
.y71{bottom:604.619850px;}
.y10b{bottom:605.339250px;}
.y272{bottom:605.700000px;}
.y1d0{bottom:611.460000px;}
.y18d{bottom:613.260150px;}
.y347{bottom:613.620000px;}
.y17d{bottom:614.520000px;}
.y163{bottom:614.700300px;}
.y44{bottom:615.420300px;}
.y1c4{bottom:615.780000px;}
.y29a{bottom:617.580000px;}
.y8f{bottom:618.300450px;}
.yb{bottom:622.620300px;}
.y23{bottom:623.340750px;}
.y1e4{bottom:625.860000px;}
.y271{bottom:626.940000px;}
.yac{bottom:627.659850px;}
.y368{bottom:627.660000px;}
.y385{bottom:628.740450px;}
.y13a{bottom:629.820000px;}
.ycb{bottom:630.180150px;}
.y2e6{bottom:631.259850px;}
.y2a1{bottom:631.260000px;}
.yea{bottom:632.340450px;}
.y1ed{bottom:633.420000px;}
.y22d{bottom:634.859850px;}
.y10a{bottom:636.299550px;}
.y43{bottom:637.380000px;}
.y70{bottom:638.460150px;}
.y30c{bottom:645.300000px;}
.y162{bottom:646.020450px;}
.y18c{bottom:647.460750px;}
.y26d{bottom:648.540000px;}
.y2bb{bottom:648.900000px;}
.y346{bottom:649.260000px;}
.y8e{bottom:649.260750px;}
.y299{bottom:653.580000px;}
.y22{bottom:656.820600px;}
.yab{bottom:658.620150px;}
.y42{bottom:658.980000px;}
.y13c{bottom:660.780000px;}
.y384{bottom:661.140450px;}
.y1e9{bottom:661.860000px;}
.yca{bottom:662.220450px;}
.y37d{bottom:662.580150px;}
.ye9{bottom:663.300150px;}
.y2e5{bottom:663.659850px;}
.y34b{bottom:665.100000px;}
.y22c{bottom:666.180000px;}
.y109{bottom:667.619700px;}
.y1ec{bottom:667.620000px;}
.y6f{bottom:672.300450px;}
.y30b{bottom:675.540000px;}
.y161{bottom:676.980150px;}
.y20e{bottom:677.340300px;}
.y36e{bottom:678.960000px;}
.ya{bottom:679.140450px;}
.y1c2{bottom:680.220000px;}
.y8d{bottom:680.221050px;}
.y41{bottom:680.940300px;}
.y18b{bottom:681.660150px;}
.y2c0{bottom:684.180000px;}
.y205{bottom:685.260000px;}
.y298{bottom:689.220000px;}
.yaa{bottom:689.579850px;}
.y26c{bottom:689.580000px;}
.y12a{bottom:690.300000px;}
.y21{bottom:690.660300px;}
.y34a{bottom:692.100150px;}
.y31a{bottom:693.180000px;}
.y383{bottom:693.540450px;}
.y2f6{bottom:693.898950px;}
.y37c{bottom:693.900300px;}
.y6e{bottom:693.900450px;}
.ye8{bottom:694.620300px;}
.yc9{bottom:694.620450px;}
.y2e4{bottom:696.059850px;}
.y22b{bottom:697.140300px;}
.y1e7{bottom:697.500000px;}
.y108{bottom:700.019700px;}
.y40{bottom:702.570150px;}
.y160{bottom:709.410000px;}
.y20d{bottom:710.850000px;}
.y8c{bottom:711.571050px;}
.y6d{bottom:715.530300px;}
.y18a{bottom:716.250450px;}
.y2bf{bottom:719.130000px;}
.y26b{bottom:720.210000px;}
.y20c{bottom:720.570000px;}
.ya9{bottom:720.570150px;}
.y20{bottom:720.570600px;}
.y1c1{bottom:720.930000px;}
.y343{bottom:721.290000px;}
.y349{bottom:723.090450px;}
.y3f{bottom:724.170150px;}
.y2f5{bottom:724.889250px;}
.y37b{bottom:724.890600px;}
.y292{bottom:725.250000px;}
.ye7{bottom:725.970300px;}
.y365{bottom:726.330000px;}
.yc8{bottom:727.050300px;}
.y212{bottom:727.200000px;}
.y2e3{bottom:728.130000px;}
.y22a{bottom:728.130750px;}
.y107{bottom:732.089850px;}
.y1e6{bottom:733.530000px;}
.y313{bottom:735.330000px;}
.y9{bottom:736.050150px;}
.y6c{bottom:737.490600px;}
.y269{bottom:737.850000px;}
.y8b{bottom:742.530750px;}
.y15f{bottom:743.610000px;}
.y3e{bottom:746.129850px;}
.y189{bottom:750.450450px;}
.y1c0{bottom:751.530000px;}
.y1f{bottom:751.530300px;}
.ya8{bottom:751.890300px;}
.y2be{bottom:754.410000px;}
.y20b{bottom:755.490000px;}
.y2f4{bottom:755.849550px;}
.y37a{bottom:755.850300px;}
.y319{bottom:756.930000px;}
.y364{bottom:757.290300px;}
.ye6{bottom:758.010000px;}
.y2e2{bottom:759.090300px;}
.y6b{bottom:759.090600px;}
.y229{bottom:759.091050px;}
.yc7{bottom:759.450300px;}
.y177{bottom:760.680000px;}
.y296{bottom:760.890000px;}
.y171{bottom:761.040000px;}
.y106{bottom:763.050150px;}
.y1be{bottom:769.170000px;}
.y8a{bottom:773.490450px;}
.y318{bottom:778.170000px;}
.y260{bottom:778.530000px;}
.y3d{bottom:779.609700px;}
.y6a{bottom:780.690600px;}
.ya7{bottom:782.850000px;}
.y1e{bottom:782.850450px;}
.y188{bottom:785.010750px;}
.y379{bottom:786.810000px;}
.y2f3{bottom:787.169700px;}
.y363{bottom:788.609850px;}
.y348{bottom:788.610000px;}
.y8{bottom:788.970300px;}
.y2bd{bottom:789.330000px;}
.y2e1{bottom:790.409850px;}
.y382{bottom:790.410000px;}
.y228{bottom:790.410600px;}
.y20a{bottom:790.770000px;}
.yc6{bottom:791.850300px;}
.y345{bottom:792.930000px;}
.y105{bottom:794.010450px;}
.y295{bottom:796.890000px;}
.y268{bottom:799.770000px;}
.y69{bottom:802.650300px;}
.y89{bottom:804.450150px;}
.y1e3{bottom:805.170000px;}
.y35a{bottom:806.760000px;}
.y144{bottom:809.130000px;}
.y1ae{bottom:810.930000px;}
.y3c{bottom:813.450000px;}
.ya6{bottom:813.809700px;}
.y1d{bottom:813.810150px;}
.y128{bottom:815.970450px;}
.y378{bottom:818.130150px;}
.y187{bottom:819.210750px;}
.y2f2{bottom:819.569700px;}
.ye5{bottom:819.930000px;}
.y362{bottom:820.650150px;}
.y267{bottom:821.370000px;}
.y2e0{bottom:821.370150px;}
.y381{bottom:821.370300px;}
.y227{bottom:822.810600px;}
.y68{bottom:824.250300px;}
.y2bc{bottom:824.610000px;}
.y104{bottom:825.330000px;}
.y208{bottom:825.690000px;}
.y344{bottom:828.615000px;}
.y7{bottom:828.615450px;}
.y1bd{bottom:832.215000px;}
.y294{bottom:832.575000px;}
.y3b{bottom:835.815300px;}
.y88{bottom:835.815450px;}
.y1e2{bottom:840.855000px;}
.y264{bottom:842.655000px;}
.ya5{bottom:844.815150px;}
.y1c{bottom:844.815600px;}
.y67{bottom:846.255150px;}
.y127{bottom:846.975300px;}
.y377{bottom:850.575300px;}
.ye4{bottom:850.934850px;}
.y2f1{bottom:852.014850px;}
.y2df{bottom:852.375000px;}
.y380{bottom:852.375150px;}
.y361{bottom:853.095300px;}
.y186{bottom:853.455300px;}
.y1bc{bottom:853.815000px;}
.y226{bottom:855.255750px;}
.y103{bottom:856.335450px;}
.yc5{bottom:856.335600px;}
.y2ba{bottom:859.575000px;}
.y2cb{bottom:860.295000px;}
.y207{bottom:861.015000px;}
.y266{bottom:864.255000px;}
.y33f{bottom:864.615000px;}
.y87{bottom:866.775150px;}
.y3a{bottom:867.855000px;}
.y66{bottom:867.855150px;}
.y28e{bottom:868.575000px;}
.y6{bottom:872.175150px;}
.y1b9{bottom:875.415000px;}
.y1b{bottom:875.775300px;}
.ya4{bottom:876.135300px;}
.y1e1{bottom:876.855000px;}
.y126{bottom:877.935000px;}
.ye3{bottom:882.255000px;}
.y376{bottom:882.975300px;}
.y37f{bottom:883.335450px;}
.y2de{bottom:883.695150px;}
.y360{bottom:884.055000px;}
.y2f0{bottom:884.414850px;}
.y265{bottom:885.495000px;}
.y102{bottom:887.295150px;}
.yc4{bottom:887.295300px;}
.y225{bottom:887.655750px;}
.y14f{bottom:888.015000px;}
.y185{bottom:888.015600px;}
.y65{bottom:889.455150px;}
.y2ca{bottom:891.254700px;}
.y2b1{bottom:894.855000px;}
.y204{bottom:895.935000px;}
.y1ba{bottom:896.655000px;}
.y86{bottom:897.734850px;}
.y39{bottom:898.815300px;}
.y342{bottom:900.255000px;}
.y291{bottom:904.215000px;}
.ya3{bottom:907.095000px;}
.y1a{bottom:907.095450px;}
.y125{bottom:909.255150px;}
.y1da{bottom:912.855000px;}
.y3a3{bottom:913.214850px;}
.ye2{bottom:914.655000px;}
.y35f{bottom:915.015300px;}
.y375{bottom:915.375300px;}
.y2dd{bottom:916.095150px;}
.y2ef{bottom:916.454550px;}
.y101{bottom:918.254850px;}
.yc3{bottom:918.255000px;}
.y14e{bottom:918.974700px;}
.y184{bottom:918.975300px;}
.y224{bottom:920.055750px;}
.y253{bottom:921.135600px;}
.y39d{bottom:922.214850px;}
.y2c9{bottom:922.215000px;}
.y64{bottom:923.295450px;}
.y316{bottom:928.335000px;}
.y263{bottom:928.695000px;}
.y85{bottom:928.695150px;}
.y5{bottom:928.695300px;}
.y38{bottom:929.415300px;}
.y1fd{bottom:930.855000px;}
.y341{bottom:936.255000px;}
.ya2{bottom:938.054700px;}
.y19{bottom:938.055150px;}
.y1b5{bottom:939.495000px;}
.y290{bottom:940.215000px;}
.y124{bottom:940.215450px;}
.y3a2{bottom:944.174550px;}
.y63{bottom:944.895450px;}
.ye1{bottom:945.615300px;}
.y35e{bottom:946.335450px;}
.y374{bottom:947.775300px;}
.y1de{bottom:948.495000px;}
.y2dc{bottom:948.495150px;}
.y2ee{bottom:948.854550px;}
.y100{bottom:949.575000px;}
.yc2{bottom:949.575150px;}
.y14d{bottom:949.934400px;}
.y183{bottom:949.935000px;}
.y21b{bottom:950.655150px;}
.y241{bottom:952.095150px;}
.y252{bottom:952.095300px;}
.y223{bottom:952.096050px;}
.y39c{bottom:953.204550px;}
.y2c8{bottom:953.204850px;}
.y84{bottom:959.684850px;}
.y37{bottom:960.765300px;}
.y1b8{bottom:961.125000px;}
.y62{bottom:966.885750px;}
.ya1{bottom:969.045000px;}
.y18{bottom:969.045450px;}
.y123{bottom:971.205150px;}
.y261{bottom:971.565000px;}
.y340{bottom:971.925000px;}
.y3a1{bottom:974.444700px;}
.y28f{bottom:976.245000px;}
.ye0{bottom:978.045150px;}
.y35d{bottom:978.765300px;}
.y373{bottom:979.845450px;}
.yff{bottom:980.565300px;}
.y14c{bottom:980.924700px;}
.y182{bottom:980.925300px;}
.y21a{bottom:981.645450px;}
.yc1{bottom:982.005000px;}
.y1b7{bottom:982.365000px;}
.y240{bottom:983.085450px;}
.y251{bottom:983.085600px;}
.y2c7{bottom:984.524700px;}
.y1dd{bottom:984.525000px;}
.y222{bottom:984.525900px;}
.y4{bottom:985.245300px;}
.y61{bottom:988.485150px;}
.y83{bottom:991.005000px;}
.y262{bottom:992.805000px;}
.y36{bottom:993.525000px;}
.ya0{bottom:1000.004700px;}
.y17{bottom:1000.005150px;}
.y122{bottom:1002.165450px;}
.y1b0{bottom:1003.965000px;}
.y3a0{bottom:1004.684400px;}
.y33e{bottom:1007.925000px;}
.ydf{bottom:1010.445150px;}
.y60{bottom:1010.445450px;}
.y35c{bottom:1010.805000px;}
.yfe{bottom:1011.525000px;}
.y28c{bottom:1011.885000px;}
.y14b{bottom:1012.244850px;}
.y181{bottom:1012.245450px;}
.y219{bottom:1012.605150px;}
.y2a0{bottom:1012.965000px;}
.y2db{bottom:1012.965300px;}
.y23f{bottom:1014.045150px;}
.y250{bottom:1014.045300px;}
.yc0{bottom:1014.405000px;}
.y2c6{bottom:1015.485000px;}
.y221{bottom:1015.485600px;}
.y1dc{bottom:1020.165000px;}
.y1b4{bottom:1025.565000px;}
.y35{bottom:1026.284700px;}
.y82{bottom:1028.804850px;}
.y16{bottom:1031.325300px;}
.y5f{bottom:1032.045450px;}
.y121{bottom:1033.485000px;}
.y9f{bottom:1034.565000px;}
.y39f{bottom:1034.924700px;}
.y315{bottom:1035.645000px;}
.y25e{bottom:1036.005000px;}
.y29f{bottom:1039.965450px;}
.y3{bottom:1042.125150px;}
.yfd{bottom:1042.484700px;}
.yde{bottom:1042.845150px;}
.y14a{bottom:1043.205150px;}
.y218{bottom:1043.925300px;}
.y23e{bottom:1045.004850px;}
.y2da{bottom:1045.365300px;}
.y24f{bottom:1045.365450px;}
.ybf{bottom:1046.445300px;}
.y1b2{bottom:1046.805000px;}
.y1eb{bottom:1050.405000px;}
.y5e{bottom:1053.645450px;}
.y1d7{bottom:1056.165000px;}
.y311{bottom:1057.245000px;}
.y34{bottom:1059.045000px;}
.y81{bottom:1060.125000px;}
.y15{bottom:1062.285000px;}
.y19c{bottom:1063.004700px;}
.y120{bottom:1067.685000px;}
.y1ac{bottom:1068.405000px;}
.y39e{bottom:1068.765000px;}
.y29e{bottom:1070.925150px;}
.yfc{bottom:1073.804850px;}
.y149{bottom:1074.165450px;}
.y217{bottom:1074.885600px;}
.ydd{bottom:1075.245150px;}
.y5d{bottom:1075.605150px;}
.y11b{bottom:1076.325000px;}
.ybe{bottom:1077.405000px;}
.y25d{bottom:1077.765300px;}
.y24e{bottom:1079.610000px;}
.y2{bottom:1083.210450px;}
.y11f{bottom:1093.290000px;}
.y33{bottom:1094.010000px;}
.y5c{bottom:1097.250300px;}
.y14{bottom:1100.130000px;}
.y24d{bottom:1103.370000px;}
.y148{bottom:1105.170300px;}
.y216{bottom:1105.890450px;}
.yfb{bottom:1106.250000px;}
.y80{bottom:1106.970300px;}
.y11a{bottom:1107.329850px;}
.ydc{bottom:1107.690300px;}
.ybd{bottom:1108.770300px;}
.y1ab{bottom:1109.130000px;}
.y1{bottom:1110.930000px;}
.y284{bottom:1112.010150px;}
.y5b{bottom:1118.850300px;}
.yfa{bottom:1138.650000px;}
.ybc{bottom:1139.730000px;}
.y13{bottom:1140.810000px;}
.y1cf{bottom:1143.690000px;}
.h57{height:16.200000px;}
.h58{height:16.559700px;}
.h1d{height:16.920150px;}
.h51{height:19.440300px;}
.h2a{height:19.800000px;}
.h32{height:20.519550px;}
.h1f{height:20.520150px;}
.h36{height:20.555850px;}
.h61{height:20.556450px;}
.h31{height:20.879850px;}
.h60{height:20.880450px;}
.h34{height:20.916150px;}
.h47{height:21.240300px;}
.h4c{height:21.959700px;}
.h49{height:22.320150px;}
.h69{height:22.679850px;}
.h54{height:22.680450px;}
.h38{height:23.435700px;}
.h2e{height:23.436300px;}
.h68{height:23.759700px;}
.h59{height:23.760300px;}
.h5a{height:23.796150px;}
.h56{height:25.200000px;}
.h64{height:25.559700px;}
.h65{height:25.560300px;}
.h46{height:25.920150px;}
.h45{height:26.279850px;}
.h29{height:27.000000px;}
.h21{height:28.079850px;}
.h18{height:28.800000px;}
.h1b{height:28.836300px;}
.h28{height:30.600000px;}
.h2c{height:31.319550px;}
.h27{height:31.320150px;}
.h13{height:32.040300px;}
.h4f{height:34.199400px;}
.h40{height:34.200000px;}
.h3d{height:34.235700px;}
.h53{height:34.236300px;}
.h3f{height:34.559700px;}
.h41{height:34.560300px;}
.h42{height:34.596150px;}
.h15{height:37.647360px;}
.h26{height:38.242969px;}
.h4e{height:38.520150px;}
.h14{height:39.276563px;}
.h2d{height:39.379922px;}
.h4b{height:39.600000px;}
.h1e{height:40.239844px;}
.h3b{height:40.679850px;}
.h37{height:41.039700px;}
.h62{height:41.400000px;}
.h5d{height:41.436300px;}
.h5{height:43.410938px;}
.h23{height:44.280450px;}
.h24{height:46.800000px;}
.h22{height:46.836300px;}
.h6{height:47.545313px;}
.h20{height:47.988281px;}
.h9{height:49.176000px;}
.ha{height:49.218750px;}
.h8{height:49.536000px;}
.h55{height:49.537200px;}
.hd{height:49.537800px;}
.hc{height:49.992188px;}
.he{height:52.031250px;}
.h2b{height:53.156250px;}
.hb{height:54.452359px;}
.h66{height:55.666406px;}
.h4{height:57.093750px;}
.h48{height:57.585938px;}
.h17{height:59.759700px;}
.h1c{height:59.760300px;}
.h1a{height:59.796150px;}
.h2{height:59.948438px;}
.h11{height:60.052380px;}
.hf{height:60.054720px;}
.h10{height:60.232800px;}
.h12{height:60.235140px;}
.h35{height:63.359700px;}
.h5c{height:63.360300px;}
.h4d{height:63.395550px;}
.h3a{height:63.396150px;}
.h30{height:63.719550px;}
.h39{height:63.720150px;}
.h33{height:63.755850px;}
.h5f{height:63.756450px;}
.h7{height:65.953125px;}
.h3c{height:71.315700px;}
.h63{height:71.316150px;}
.h67{height:71.982422px;}
.h52{height:90.755850px;}
.h43{height:91.116150px;}
.h3{height:99.072000px;}
.h16{height:110.555850px;}
.h3e{height:141.876000px;}
.h50{height:142.236300px;}
.h19{height:180.750000px;}
.h44{height:244.875000px;}
.h4a{height:256.395000px;}
.h2f{height:256.755000px;}
.h5e{height:320.865000px;}
.h5b{height:321.195000px;}
.h25{height:350.640000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w29{width:17.639700px;}
.w48{width:17.640300px;}
.w60{width:19.079850px;}
.w3{width:52.235700px;}
.wd{width:52.955850px;}
.w7{width:55.115700px;}
.w8{width:62.676000px;}
.wc{width:63.000000px;}
.wa{width:63.036300px;}
.wb{width:63.396150px;}
.w9{width:64.800000px;}
.w65{width:69.155850px;}
.w5{width:72.359700px;}
.w4{width:72.396150px;}
.w6{width:72.756450px;}
.w61{width:73.835700px;}
.w4e{width:74.916150px;}
.w64{width:78.155850px;}
.w4a{width:83.915700px;}
.w3b{width:84.276000px;}
.we{width:84.995550px;}
.w2e{width:85.355850px;}
.w63{width:85.716150px;}
.w1d{width:87.516150px;}
.w59{width:88.235700px;}
.w31{width:95.796150px;}
.w30{width:97.956450px;}
.w2f{width:97.992150px;}
.w3e{width:99.755850px;}
.w2d{width:102.635700px;}
.w4f{width:103.355850px;}
.w20{width:103.716150px;}
.w62{width:104.076000px;}
.w5b{width:104.435700px;}
.w4d{width:105.516150px;}
.w4c{width:105.876000px;}
.w40{width:107.676000px;}
.w39{width:108.035700px;}
.w22{width:112.032450px;}
.w1b{width:112.392150px;}
.w57{width:112.752000px;}
.w4b{width:116.352000px;}
.w2c{width:118.116150px;}
.w2b{width:121.752000px;}
.w43{width:138.312300px;}
.w3d{width:138.672000px;}
.w41{width:142.271550px;}
.w3a{width:142.272000px;}
.w24{width:143.711700px;}
.w1f{width:144.072000px;}
.w12{width:145.152000px;}
.w5a{width:145.512300px;}
.w1c{width:147.996150px;}
.w58{width:149.076000px;}
.w13{width:162.075000px;}
.w14{width:165.675000px;}
.w47{width:189.075000px;}
.w28{width:193.035000px;}
.w5f{width:208.185000px;}
.w49{width:217.800000px;}
.w42{width:220.035000px;}
.w3c{width:220.395000px;}
.w45{width:222.225000px;}
.w32{width:222.555000px;}
.w66{width:222.585000px;}
.w50{width:222.945000px;}
.w17{width:226.185000px;}
.w26{width:227.265000px;}
.w23{width:228.345000px;}
.w1e{width:229.065000px;}
.w46{width:230.505000px;}
.w27{width:235.155000px;}
.w5d{width:244.905000px;}
.w5e{width:254.265000px;}
.w16{width:255.960000px;}
.w6f{width:266.040000px;}
.w11{width:266.400000px;}
.w71{width:268.200000px;}
.wf{width:283.785000px;}
.w36{width:284.040000px;}
.w70{width:286.560000px;}
.w6e{width:296.640000px;}
.w6d{width:299.880000px;}
.w6a{width:302.760000px;}
.w69{width:306.720000px;}
.w53{width:318.960000px;}
.w68{width:323.280000px;}
.w19{width:333.720000px;}
.w33{width:353.160000px;}
.w34{width:355.680000px;}
.w67{width:361.800000px;}
.w54{width:362.880000px;}
.w51{width:364.320000px;}
.w6b{width:375.840000px;}
.w52{width:380.160000px;}
.w55{width:412.560000px;}
.w10{width:424.440000px;}
.w6c{width:427.680000px;}
.w2{width:437.400000px;}
.w37{width:439.200000px;}
.w1a{width:442.080000px;}
.w2a{width:444.240000px;}
.w35{width:448.560000px;}
.w18{width:452.520000px;}
.w38{width:477.000000px;}
.w56{width:487.800000px;}
.w44{width:556.410000px;}
.w3f{width:557.130000px;}
.w25{width:578.055000px;}
.w21{width:579.135000px;}
.w5c{width:583.095000px;}
.w15{width:653.040000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x50{left:7.200000px;}
.x28{left:8.640150px;}
.x1b{left:9.719622px;}
.x22{left:10.800000px;}
.x23{left:11.879883px;}
.x45{left:13.320000px;}
.x14{left:15.479850px;}
.x2d{left:18.000000px;}
.x2b{left:19.125000px;}
.x1e{left:20.520000px;}
.x13{left:21.600000px;}
.x26{left:22.724592px;}
.x24{left:24.119553px;}
.x20{left:25.560020px;}
.x17{left:27.003000px;}
.x2e{left:28.079850px;}
.x1c{left:29.205012px;}
.x19{left:30.600150px;}
.x41{left:31.679850px;}
.x4d{left:32.759700px;}
.x37{left:34.599000px;}
.x54{left:36.755850px;}
.x6d{left:37.800000px;}
.x48{left:39.960000px;}
.x5c{left:41.435700px;}
.x68{left:42.839700px;}
.x32{left:45.039150px;}
.x5b{left:46.080000px;}
.x63{left:47.910000px;}
.x42{left:50.762850px;}
.x72{left:55.080000px;}
.x5a{left:56.196150px;}
.x4a{left:58.350000px;}
.x38{left:60.165000px;}
.x69{left:61.230000px;}
.x4b{left:63.030000px;}
.x39{left:64.470000px;}
.x36{left:68.085000px;}
.x33{left:70.965000px;}
.x77{left:73.440000px;}
.x15{left:74.555850px;}
.x75{left:78.150000px;}
.x6f{left:83.559000px;}
.x76{left:91.869000px;}
.x5d{left:97.950000px;}
.x74{left:100.149000px;}
.x6a{left:101.190000px;}
.x49{left:105.540000px;}
.x4f{left:108.396150px;}
.x47{left:109.860000px;}
.x80{left:118.079850px;}
.x3a{left:124.920150px;}
.x7{left:127.475700px;}
.x6e{left:129.276000px;}
.x3b{left:133.274850px;}
.x81{left:142.992150px;}
.x9{left:144.074040px;}
.x4e{left:145.511700px;}
.x16{left:147.672000px;}
.xa{left:154.515255px;}
.x8d{left:163.440000px;}
.x61{left:170.280000px;}
.xc{left:181.514760px;}
.x62{left:183.675000px;}
.xb{left:186.915210px;}
.x90{left:196.920000px;}
.x30{left:198.360000px;}
.x6{left:202.754700px;}
.xd{left:208.514730px;}
.x3c{left:211.604850px;}
.x79{left:212.835000px;}
.x11{left:219.344010px;}
.x18{left:221.145000px;}
.x3f{left:228.600000px;}
.x10{left:235.544520px;}
.x8f{left:241.200000px;}
.x7e{left:244.080000px;}
.x12{left:246.960000px;}
.x5e{left:248.040000px;}
.x7f{left:253.080000px;}
.xf{left:257.144670px;}
.x6b{left:259.673850px;}
.xe{left:262.544580px;}
.x5f{left:264.600000px;}
.x4c{left:270.465150px;}
.x31{left:273.960000px;}
.x40{left:277.560000px;}
.x4{left:281.624850px;}
.x2f{left:287.745000px;}
.x43{left:293.505000px;}
.x1a{left:294.585000px;}
.x60{left:307.440000px;}
.x3e{left:311.400000px;}
.x87{left:319.830000px;}
.x93{left:324.000000px;}
.x64{left:326.670000px;}
.x78{left:329.760000px;}
.x8e{left:335.520000px;}
.x51{left:337.110000px;}
.x5{left:348.270000px;}
.x70{left:353.310000px;}
.x92{left:356.400000px;}
.x2{left:358.709700px;}
.x8{left:361.230000px;}
.x1d{left:368.070000px;}
.x94{left:372.600000px;}
.x84{left:375.630000px;}
.x55{left:378.150000px;}
.x1{left:382.470000px;}
.x91{left:394.200000px;}
.x65{left:411.660000px;}
.x1f{left:423.900000px;}
.x88{left:426.060000px;}
.x34{left:436.140000px;}
.x3{left:446.579850px;}
.x56{left:481.500000px;}
.x21{left:487.290000px;}
.x89{left:531.210000px;}
.x7a{left:543.090000px;}
.x25{left:552.810000px;}
.x57{left:567.570000px;}
.x52{left:573.735000px;}
.x71{left:585.255000px;}
.x35{left:598.935000px;}
.x44{left:611.535000px;}
.x82{left:613.335000px;}
.x27{left:616.575000px;}
.x8a{left:617.655000px;}
.x3d{left:622.409850px;}
.x7b{left:628.095000px;}
.x85{left:631.335000px;}
.x66{left:632.775000px;}
.x58{left:666.285000px;}
.x29{left:680.685000px;}
.x8b{left:696.525000px;}
.x7c{left:703.725000px;}
.x2a{left:744.405000px;}
.x46{left:756.330000px;}
.x83{left:759.570000px;}
.x59{left:764.970000px;}
.x8c{left:766.410000px;}
.x53{left:767.490000px;}
.x6c{left:771.090000px;}
.x67{left:772.170000px;}
.x73{left:775.050000px;}
.x7d{left:776.850000px;}
.x2c{left:798.090000px;}
.x86{left:840.240000px;}
@media print{
.v3{vertical-align:-24.320853pt;}
.v5{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.800000pt;}
.v1{vertical-align:21.758347pt;}
.v2{vertical-align:24.320853pt;}
.ls22{letter-spacing:-1.514667pt;}
.ls21{letter-spacing:-1.152000pt;}
.ls28{letter-spacing:-0.837333pt;}
.ls31{letter-spacing:-0.832000pt;}
.ls40{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.560000pt;}
.lsa{letter-spacing:-0.514667pt;}
.ls45{letter-spacing:-0.506667pt;}
.ls6{letter-spacing:-0.448000pt;}
.ls25{letter-spacing:-0.442667pt;}
.ls9{letter-spacing:-0.434133pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls8{letter-spacing:-0.361067pt;}
.ls34{letter-spacing:-0.340267pt;}
.ls30{letter-spacing:-0.297067pt;}
.ls2f{letter-spacing:-0.269867pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.222933pt;}
.ls3a{letter-spacing:-0.212267pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.039680pt;}
.lsc{letter-spacing:0.053867pt;}
.ls1{letter-spacing:0.107733pt;}
.ls2d{letter-spacing:0.126933pt;}
.ls19{letter-spacing:0.127573pt;}
.lse{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.128747pt;}
.ls1c{letter-spacing:0.208533pt;}
.ls42{letter-spacing:0.224000pt;}
.ls12{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.308267pt;}
.ls29{letter-spacing:0.352000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls32{letter-spacing:0.468267pt;}
.ls3e{letter-spacing:0.475467pt;}
.ls44{letter-spacing:0.475520pt;}
.ls41{letter-spacing:0.476587pt;}
.ls39{letter-spacing:0.476693pt;}
.ls33{letter-spacing:0.477120pt;}
.ls43{letter-spacing:0.477653pt;}
.ls5{letter-spacing:0.522133pt;}
.ls26{letter-spacing:0.560000pt;}
.ls37{letter-spacing:0.563200pt;}
.ls1d{letter-spacing:0.576000pt;}
.lsb{letter-spacing:0.581333pt;}
.ls3f{letter-spacing:0.581707pt;}
.ls3d{letter-spacing:0.637120pt;}
.ls13{letter-spacing:0.639573pt;}
.ls36{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.640427pt;}
.ls3c{letter-spacing:0.768533pt;}
.ls2e{letter-spacing:0.832000pt;}
.ls24{letter-spacing:0.958773pt;}
.ls23{letter-spacing:0.960853pt;}
.ls11{letter-spacing:1.408000pt;}
.ls14{letter-spacing:1.408160pt;}
.ls35{letter-spacing:1.920000pt;}
.lsf{letter-spacing:8.171200pt;}
.ls3b{letter-spacing:8.320000pt;}
.ls1e{letter-spacing:20.608000pt;}
.ls15{letter-spacing:29.568427pt;}
.ls10{letter-spacing:29.578827pt;}
.ls38{letter-spacing:47.497600pt;}
.ls17{letter-spacing:48.768533pt;}
.ls2b{letter-spacing:48.778667pt;}
.ls1f{letter-spacing:48.874667pt;}
.ls3{letter-spacing:54.543253pt;}
.ls4{letter-spacing:71.174187pt;}
.ls16{letter-spacing:78.208000pt;}
.wsf{word-spacing:-29.440000pt;}
.wsc{word-spacing:-19.421440pt;}
.ws1a{word-spacing:-16.832000pt;}
.ws22{word-spacing:-16.576000pt;}
.ws1c{word-spacing:-16.448000pt;}
.wse{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.128000pt;}
.wsd{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.744000pt;}
.ws19{word-spacing:-15.621120pt;}
.ws10{word-spacing:-15.552000pt;}
.ws20{word-spacing:-15.168000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws2{word-spacing:-14.016000pt;}
.ws8{word-spacing:-13.888213pt;}
.ws5{word-spacing:-13.829013pt;}
.ws9{word-spacing:-13.360747pt;}
.ws23{word-spacing:-13.306880pt;}
.ws4{word-spacing:-12.945813pt;}
.ws3{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.792213pt;}
.ws15{word-spacing:-12.720000pt;}
.ws14{word-spacing:-11.717333pt;}
.ws16{word-spacing:-11.600000pt;}
.ws1d{word-spacing:-11.460907pt;}
.ws17{word-spacing:-11.322667pt;}
.ws1f{word-spacing:-10.992640pt;}
.ws21{word-spacing:-10.780373pt;}
.ws12{word-spacing:-10.768533pt;}
.ws1b{word-spacing:-10.695573pt;}
.ws1e{word-spacing:-10.652373pt;}
.ws11{word-spacing:-10.337067pt;}
.ws6{word-spacing:-7.954987pt;}
.ws18{word-spacing:-7.584000pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-11.806551pt;}
._c{margin-left:-10.642520pt;}
._d{margin-left:-8.750441pt;}
._10{margin-left:-7.674472pt;}
._b{margin-left:-6.469464pt;}
._f{margin-left:-4.934852pt;}
._11{margin-left:-3.983637pt;}
._8{margin-left:-3.093877pt;}
._3{margin-left:-2.037145pt;}
._1{margin-left:-0.964690pt;}
._0{width:1.040885pt;}
._2{width:2.298238pt;}
._12{width:3.355739pt;}
._6{width:4.314624pt;}
._13{width:5.824672pt;}
._14{width:7.350742pt;}
._1e{width:8.267958pt;}
._9{width:9.279857pt;}
._a{width:10.219610pt;}
._7{width:11.647403pt;}
._4{width:12.926571pt;}
._5{width:13.822981pt;}
._1f{width:14.901259pt;}
._1c{width:17.600494pt;}
._20{width:18.526461pt;}
._1a{width:19.454794pt;}
._1b{width:20.535329pt;}
._18{width:21.885736pt;}
._19{width:22.919609pt;}
._1d{width:24.185047pt;}
._16{width:25.549370pt;}
._15{width:26.748023pt;}
._17{width:27.777895pt;}
._21{width:752.403200pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fsa{font-size:47.360000pt;}
.fs8{font-size:48.640000pt;}
.fsc{font-size:48.768000pt;}
.fs3{font-size:53.760000pt;}
.fsd{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs0{font-size:74.240000pt;}
.fse{font-size:76.800000pt;}
.fs4{font-size:85.760000pt;}
.fsf{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.y17a{bottom:-14.720000pt;}
.y11e{bottom:-14.047867pt;}
.y2ed{bottom:-12.448400pt;}
.y300{bottom:-12.066400pt;}
.y29d{bottom:-9.253067pt;}
.y370{bottom:-8.479733pt;}
.y0{bottom:0.000000pt;}
.y2ec{bottom:2.271867pt;}
.y2ff{bottom:2.653333pt;}
.y145{bottom:3.520000pt;}
.y32d{bottom:3.546667pt;}
.y1b3{bottom:3.840000pt;}
.y1c8{bottom:3.866667pt;}
.y26e{bottom:4.160000pt;}
.y25f{bottom:4.480000pt;}
.y1ad{bottom:4.800000pt;}
.y312{bottom:5.120000pt;}
.y29c{bottom:5.466667pt;}
.y39b{bottom:5.506667pt;}
.y180{bottom:5.792133pt;}
.y147{bottom:6.112000pt;}
.y36f{bottom:6.240000pt;}
.y213{bottom:6.586667pt;}
.y16d{bottom:6.720267pt;}
.y21e{bottom:6.752133pt;}
.y3a7{bottom:7.071867pt;}
.y24c{bottom:7.133333pt;}
.y3a6{bottom:8.026667pt;}
.y372{bottom:8.031733pt;}
.y2c3{bottom:8.352133pt;}
.y37e{bottom:9.312000pt;}
.y30a{bottom:9.373333pt;}
.y2d9{bottom:10.373333pt;}
.y367{bottom:10.592267pt;}
.y35b{bottom:10.746667pt;}
.y220{bottom:11.040000pt;}
.y27c{bottom:11.520000pt;}
.y215{bottom:11.586667pt;}
.y26a{bottom:12.160000pt;}
.y17e{bottom:12.320000pt;}
.y1ce{bottom:12.480000pt;}
.y1bf{bottom:12.800000pt;}
.y31b{bottom:12.826667pt;}
.y32f{bottom:13.120000pt;}
.y15e{bottom:13.253333pt;}
.y13d{bottom:14.400000pt;}
.y142{bottom:14.426667pt;}
.y16f{bottom:14.720000pt;}
.y1d9{bottom:15.360000pt;}
.y2b7{bottom:15.360533pt;}
.y1df{bottom:15.386667pt;}
.y209{bottom:15.400000pt;}
.y16e{bottom:15.680000pt;}
.y1e8{bottom:15.706667pt;}
.y1aa{bottom:16.160000pt;}
.y178{bottom:16.186667pt;}
.y11d{bottom:16.352133pt;}
.y25c{bottom:16.733333pt;}
.y12f{bottom:17.946667pt;}
.y136{bottom:21.146667pt;}
.y1b1{bottom:22.720000pt;}
.y1b6{bottom:22.746667pt;}
.y1bb{bottom:22.760000pt;}
.y320{bottom:23.040000pt;}
.y317{bottom:23.066667pt;}
.y2c5{bottom:23.173333pt;}
.y16c{bottom:24.666667pt;}
.y2b9{bottom:25.280133pt;}
.y138{bottom:25.306667pt;}
.y202{bottom:25.626133pt;}
.y353{bottom:25.626667pt;}
.y13b{bottom:28.160000pt;}
.y140{bottom:28.186667pt;}
.y2b4{bottom:30.720400pt;}
.y203{bottom:31.066533pt;}
.y1d8{bottom:31.720000pt;}
.y28d{bottom:32.000000pt;}
.y135{bottom:35.546667pt;}
.y131{bottom:38.106667pt;}
.y2b2{bottom:40.640000pt;}
.y1fe{bottom:40.986667pt;}
.y12e{bottom:43.226400pt;}
.y2b6{bottom:45.760533pt;}
.y200{bottom:46.106533pt;}
.y2b3{bottom:50.560000pt;}
.y134{bottom:50.586800pt;}
.y12b{bottom:50.906667pt;}
.y2b8{bottom:55.706667pt;}
.y201{bottom:56.026667pt;}
.y139{bottom:57.946667pt;}
.y293{bottom:63.040000pt;}
.y1db{bottom:63.066667pt;}
.y1e5{bottom:63.360000pt;}
.y1e0{bottom:63.400000pt;}
.y130{bottom:63.706667pt;}
.y133{bottom:65.306533pt;}
.y2b5{bottom:65.626667pt;}
.y1ff{bottom:65.946667pt;}
.y12d{bottom:68.826400pt;}
.y137{bottom:76.506667pt;}
.y2c1{bottom:79.392133pt;}
.y132{bottom:80.346667pt;}
.y13f{bottom:81.946667pt;}
.y12c{bottom:83.546667pt;}
.y2c2{bottom:94.719733pt;}
.y371{bottom:95.040133pt;}
.y21d{bottom:96.000000pt;}
.y11c{bottom:96.319733pt;}
.y2eb{bottom:97.280267pt;}
.y17f{bottom:99.200000pt;}
.y146{bottom:99.519733pt;}
.y1d6{bottom:99.552000pt;}
.y15c{bottom:100.192400pt;}
.y310{bottom:102.112000pt;}
.y2d7{bottom:102.752000pt;}
.ydb{bottom:103.392400pt;}
.y32{bottom:104.032133pt;}
.y28b{bottom:105.631333pt;}
.y9e{bottom:105.952267pt;}
.y351{bottom:106.271733pt;}
.y2b0{bottom:108.511600pt;}
.y1af{bottom:108.520000pt;}
.y395{bottom:108.831867pt;}
.y366{bottom:109.119733pt;}
.y206{bottom:109.146667pt;}
.y33d{bottom:109.152400pt;}
.y23d{bottom:110.431867pt;}
.y5a{bottom:111.392533pt;}
.y308{bottom:113.312133pt;}
.y283{bottom:113.632000pt;}
.y12{bottom:114.272133pt;}
.y3a4{bottom:115.200000pt;}
.yf9{bottom:116.192000pt;}
.y7f{bottom:117.470933pt;}
.y19b{bottom:117.472400pt;}
.y399{bottom:120.031733pt;}
.y24a{bottom:120.671600pt;}
.y211{bottom:122.592400pt;}
.y172{bottom:123.066667pt;}
.y176{bottom:123.520000pt;}
.y2fd{bottom:123.871733pt;}
.y1a8{bottom:125.473067pt;}
.y1ea{bottom:125.759867pt;}
.y1d5{bottom:127.071733pt;}
.y25a{bottom:127.072400pt;}
.y2d6{bottom:130.271733pt;}
.y59{bottom:130.592533pt;}
.y15b{bottom:130.912133pt;}
.yda{bottom:132.192400pt;}
.y30f{bottom:132.831733pt;}
.y3a5{bottom:133.760000pt;}
.y31{bottom:134.107067pt;}
.y2af{bottom:136.026133pt;}
.y9d{bottom:136.026800pt;}
.y28a{bottom:136.346400pt;}
.y394{bottom:136.666800pt;}
.y350{bottom:136.986267pt;}
.y31e{bottom:136.986667pt;}
.y314{bottom:137.320000pt;}
.y119{bottom:138.905867pt;}
.y23c{bottom:138.906800pt;}
.y33c{bottom:139.547200pt;}
.ybb{bottom:140.186800pt;}
.y1fc{bottom:143.066667pt;}
.y307{bottom:143.706933pt;}
.y11{bottom:143.707067pt;}
.y282{bottom:144.347067pt;}
.yf8{bottom:144.666533pt;}
.y175{bottom:146.013333pt;}
.y7e{bottom:147.545867pt;}
.y398{bottom:147.546800pt;}
.y19a{bottom:148.186933pt;}
.y58{bottom:150.107067pt;}
.y249{bottom:151.066400pt;}
.y2fc{bottom:151.706667pt;}
.y29b{bottom:152.000000pt;}
.y210{bottom:152.666933pt;}
.y1a7{bottom:155.867867pt;}
.y259{bottom:157.467200pt;}
.y2d5{bottom:157.786267pt;}
.yd9{bottom:160.986667pt;}
.y15a{bottom:161.306933pt;}
.y30e{bottom:163.226533pt;}
.y2ae{bottom:163.866267pt;}
.y30{bottom:163.866933pt;}
.y393{bottom:164.186533pt;}
.y9c{bottom:166.107067pt;}
.y34f{bottom:167.386267pt;}
.y118{bottom:167.705867pt;}
.y23b{bottom:167.706800pt;}
.yba{bottom:167.707067pt;}
.y57{bottom:169.307067pt;}
.y33b{bottom:169.947200pt;}
.y10{bottom:171.866933pt;}
.y1fb{bottom:172.826533pt;}
.yf7{bottom:173.466533pt;}
.y306{bottom:174.106933pt;}
.y281{bottom:174.747067pt;}
.y397{bottom:175.386400pt;}
.y7d{bottom:177.665600pt;}
.y248{bottom:178.626267pt;}
.y199{bottom:178.627067pt;}
.y2fb{bottom:179.266533pt;}
.y173{bottom:181.093200pt;}
.y20f{bottom:182.466933pt;}
.y170{bottom:183.746667pt;}
.y2d4{bottom:185.666533pt;}
.y1a6{bottom:186.627733pt;}
.y258{bottom:188.227067pt;}
.y56{bottom:188.547200pt;}
.yd8{bottom:189.826800pt;}
.y2ad{bottom:191.426133pt;}
.y392{bottom:191.746933pt;}
.y159{bottom:191.747067pt;}
.y30d{bottom:193.666667pt;}
.y2f{bottom:193.986667pt;}
.yb9{bottom:195.586800pt;}
.y9b{bottom:196.226800pt;}
.y117{bottom:196.546000pt;}
.y23a{bottom:196.546933pt;}
.y214{bottom:196.800000pt;}
.y34e{bottom:197.826400pt;}
.y33a{bottom:200.707067pt;}
.yf6{bottom:201.986267pt;}
.y305{bottom:201.986667pt;}
.y1fa{bottom:202.946800pt;}
.y280{bottom:205.506933pt;}
.y396{bottom:205.826533pt;}
.y247{bottom:206.466400pt;}
.y2fa{bottom:206.786267pt;}
.y7c{bottom:207.425467pt;}
.y198{bottom:209.027067pt;}
.y32e{bottom:209.346667pt;}
.y1a5{bottom:214.147467pt;}
.y2d3{bottom:214.466533pt;}
.yd7{bottom:218.307067pt;}
.y55{bottom:218.626933pt;}
.y257{bottom:218.627067pt;}
.y2ac{bottom:219.266267pt;}
.y391{bottom:219.586533pt;}
.y39a{bottom:221.120000pt;}
.y158{bottom:222.466800pt;}
.yb8{bottom:223.107067pt;}
.y2e{bottom:224.066933pt;}
.y116{bottom:225.346000pt;}
.y239{bottom:225.346933pt;}
.y9a{bottom:225.986667pt;}
.y34d{bottom:228.546667pt;}
.y1f9{bottom:229.506667pt;}
.y304{bottom:229.506933pt;}
.yf5{bottom:229.826400pt;}
.y339{bottom:231.107067pt;}
.y246{bottom:233.986667pt;}
.y2f9{bottom:234.306533pt;}
.y27f{bottom:235.906933pt;}
.y7b{bottom:237.505200pt;}
.y54{bottom:237.826933pt;}
.y197{bottom:239.747333pt;}
.y1a4{bottom:241.667200pt;}
.y2d2{bottom:243.266533pt;}
.y31d{bottom:247.106667pt;}
.yd6{bottom:247.107067pt;}
.y2ab{bottom:247.746533pt;}
.y390{bottom:248.386533pt;}
.y256{bottom:249.027067pt;}
.yb7{bottom:250.947200pt;}
.y157{bottom:252.866800pt;}
.y238{bottom:253.826667pt;}
.y2d{bottom:253.826800pt;}
.y115{bottom:254.146000pt;}
.y99{bottom:256.066933pt;}
.y303{bottom:257.026667pt;}
.yf4{bottom:257.346667pt;}
.y53{bottom:257.347200pt;}
.y34c{bottom:258.946667pt;}
.y1f8{bottom:260.226400pt;}
.y245{bottom:261.506933pt;}
.y338{bottom:261.826800pt;}
.y2f8{bottom:262.146667pt;}
.y16b{bottom:265.986667pt;}
.y27e{bottom:266.306933pt;}
.y7a{bottom:267.584933pt;}
.y1a3{bottom:269.186933pt;}
.y196{bottom:270.147333pt;}
.y2d1{bottom:272.066533pt;}
.y355{bottom:274.626667pt;}
.yd5{bottom:275.907067pt;}
.y2aa{bottom:276.546533pt;}
.y52{bottom:276.547200pt;}
.y38f{bottom:277.186533pt;}
.yb6{bottom:279.747200pt;}
.y255{bottom:279.747333pt;}
.y1f7{bottom:280.066533pt;}
.y237{bottom:281.346933pt;}
.y114{bottom:282.946000pt;}
.y156{bottom:283.586533pt;}
.y2c{bottom:283.907067pt;}
.y174{bottom:284.026667pt;}
.y302{bottom:284.546933pt;}
.yf3{bottom:284.866667pt;}
.y32c{bottom:285.186667pt;}
.y98{bottom:286.147200pt;}
.y244{bottom:289.053333pt;}
.y2f7{bottom:289.693333pt;}
.y337{bottom:292.253333pt;}
.y51{bottom:296.093600pt;}
.y27d{bottom:297.053333pt;}
.y1a2{bottom:297.053600pt;}
.y79{bottom:297.371867pt;}
.y2d0{bottom:300.573333pt;}
.y195{bottom:300.893733pt;}
.y329{bottom:304.093333pt;}
.yd4{bottom:304.413867pt;}
.y2a9{bottom:305.373067pt;}
.y2fe{bottom:305.600000pt;}
.y38e{bottom:305.693333pt;}
.y359{bottom:306.013333pt;}
.yb5{bottom:308.253467pt;}
.y1f6{bottom:308.893067pt;}
.y236{bottom:309.213600pt;}
.y254{bottom:310.173867pt;}
.y113{bottom:311.452267pt;}
.yf2{bottom:312.413867pt;}
.y27b{bottom:312.733333pt;}
.y155{bottom:314.013600pt;}
.y2b{bottom:314.013867pt;}
.y301{bottom:315.293333pt;}
.y50{bottom:315.293600pt;}
.y97{bottom:315.933600pt;}
.y243{bottom:316.893467pt;}
.y179{bottom:318.173333pt;}
.y336{bottom:322.653333pt;}
.y32b{bottom:323.293333pt;}
.y1a1{bottom:324.573867pt;}
.y25b{bottom:325.120000pt;}
.y78{bottom:327.452133pt;}
.y2cf{bottom:329.373333pt;}
.y309{bottom:330.560000pt;}
.y194{bottom:331.293733pt;}
.yd3{bottom:332.253467pt;}
.y2a8{bottom:332.893333pt;}
.y38d{bottom:334.493333pt;}
.y4f{bottom:334.493600pt;}
.y235{bottom:336.733333pt;}
.y358{bottom:337.053333pt;}
.yb4{bottom:337.053467pt;}
.y1f5{bottom:337.693067pt;}
.y1cd{bottom:338.973333pt;}
.y112{bottom:340.252267pt;}
.yf1{bottom:340.253467pt;}
.y32a{bottom:342.173333pt;}
.y2a{bottom:344.093600pt;}
.y154{bottom:344.413600pt;}
.y96{bottom:346.013333pt;}
.y242{bottom:347.293467pt;}
.y26f{bottom:347.613333pt;}
.yf{bottom:351.773600pt;}
.y1a0{bottom:352.093600pt;}
.y335{bottom:353.373600pt;}
.y4e{bottom:354.013867pt;}
.y16a{bottom:355.293200pt;}
.y77{bottom:357.532400pt;}
.y2ce{bottom:357.853067pt;}
.yd2{bottom:359.773733pt;}
.y2a7{bottom:360.733467pt;}
.y326{bottom:361.373333pt;}
.y193{bottom:361.693733pt;}
.y24b{bottom:362.560000pt;}
.y38c{bottom:363.293333pt;}
.y234{bottom:364.253067pt;}
.yb3{bottom:364.573733pt;}
.y1f4{bottom:366.173333pt;}
.y27a{bottom:366.813333pt;}
.yf0{bottom:367.773733pt;}
.y357{bottom:368.413333pt;}
.y111{bottom:369.052267pt;}
.y153{bottom:372.253200pt;}
.y4d{bottom:373.213867pt;}
.y29{bottom:373.853467pt;}
.y1c3{bottom:375.773333pt;}
.y95{bottom:376.093067pt;}
.y19f{bottom:379.613867pt;}
.y328{bottom:380.573333pt;}
.y169{bottom:383.133333pt;}
.y334{bottom:383.773600pt;}
.y2cd{bottom:385.693200pt;}
.y279{bottom:385.693333pt;}
.y289{bottom:387.293067pt;}
.y76{bottom:387.612667pt;}
.yd1{bottom:387.613867pt;}
.y2a6{bottom:389.213733pt;}
.y38b{bottom:391.773600pt;}
.y36d{bottom:392.093067pt;}
.y233{bottom:392.093200pt;}
.yb2{bottom:392.093467pt;}
.y4c{bottom:392.413867pt;}
.y192{bottom:392.414000pt;}
.y1f3{bottom:394.013467pt;}
.y1cc{bottom:394.973333pt;}
.yef{bottom:395.293467pt;}
.y110{bottom:397.852267pt;}
.y327{bottom:399.493333pt;}
.y152{bottom:399.813600pt;}
.ye{bottom:402.373600pt;}
.y28{bottom:403.973733pt;}
.y276{bottom:404.933333pt;}
.y94{bottom:406.213333pt;}
.y168{bottom:407.173733pt;}
.y19e{bottom:407.493600pt;}
.y333{bottom:411.333467pt;}
.y4b{bottom:411.973733pt;}
.y1cb{bottom:413.893333pt;}
.y288{bottom:414.852933pt;}
.y2cc{bottom:416.133333pt;}
.yd0{bottom:416.133600pt;}
.y75{bottom:417.412667pt;}
.y2a5{bottom:418.053333pt;}
.y323{bottom:418.693333pt;}
.yb1{bottom:419.652933pt;}
.y38a{bottom:419.653333pt;}
.y36c{bottom:419.973333pt;}
.y232{bottom:420.933333pt;}
.y1f2{bottom:421.573333pt;}
.yee{bottom:422.853333pt;}
.y191{bottom:422.853600pt;}
.y278{bottom:423.813333pt;}
.y10f{bottom:426.692400pt;}
.y151{bottom:427.333333pt;}
.y1d4{bottom:430.853067pt;}
.y356{bottom:430.853333pt;}
.y4a{bottom:431.173733pt;}
.y2d8{bottom:431.680000pt;}
.y1c9{bottom:433.093333pt;}
.y27{bottom:434.053467pt;}
.y167{bottom:435.013867pt;}
.y93{bottom:435.973200pt;}
.y325{bottom:437.573333pt;}
.y332{bottom:439.173600pt;}
.y129{bottom:440.453733pt;}
.y287{bottom:442.693067pt;}
.y277{bottom:443.013333pt;}
.ycf{bottom:444.933600pt;}
.y2a4{bottom:446.853333pt;}
.y2ea{bottom:447.173467pt;}
.y389{bottom:447.173600pt;}
.y74{bottom:447.492933pt;}
.yb0{bottom:447.493067pt;}
.y36b{bottom:447.493600pt;}
.y231{bottom:449.733333pt;}
.y1f1{bottom:450.373333pt;}
.y49{bottom:450.693467pt;}
.y13e{bottom:452.293333pt;}
.yd{bottom:452.613733pt;}
.y190{bottom:453.573867pt;}
.y10e{bottom:455.172667pt;}
.y324{bottom:456.773333pt;}
.y150{bottom:457.733333pt;}
.y1d3{bottom:458.373333pt;}
.y354{bottom:461.893333pt;}
.y273{bottom:462.213333pt;}
.y166{bottom:462.533600pt;}
.y26{bottom:463.813867pt;}
.y92{bottom:466.053467pt;}
.y331{bottom:466.693333pt;}
.y48{bottom:469.893467pt;}
.y286{bottom:470.213333pt;}
.y1ca{bottom:471.173333pt;}
.y15d{bottom:472.640000pt;}
.yce{bottom:473.733600pt;}
.y2a3{bottom:474.373600pt;}
.y388{bottom:474.693467pt;}
.yaf{bottom:475.013333pt;}
.y2e9{bottom:475.013600pt;}
.y36a{bottom:475.013867pt;}
.y31f{bottom:475.653333pt;}
.y73{bottom:477.573200pt;}
.y230{bottom:478.213600pt;}
.yed{bottom:478.213733pt;}
.y1f0{bottom:478.853067pt;}
.y143{bottom:479.813333pt;}
.y275{bottom:481.093333pt;}
.y10d{bottom:482.692400pt;}
.y18f{bottom:483.973867pt;}
.y1d2{bottom:485.893067pt;}
.y2c4{bottom:486.080000pt;}
.y47{bottom:489.093467pt;}
.y1c5{bottom:490.373333pt;}
.y165{bottom:490.373733pt;}
.y21c{bottom:491.973467pt;}
.y352{bottom:492.933333pt;}
.y19d{bottom:493.253333pt;}
.y25{bottom:493.893600pt;}
.y322{bottom:494.853333pt;}
.y91{bottom:496.133733pt;}
.y330{bottom:497.093333pt;}
.y274{bottom:500.293333pt;}
.y285{bottom:500.613333pt;}
.y17c{bottom:500.933467pt;}
.y387{bottom:502.213733pt;}
.yae{bottom:502.533067pt;}
.ycd{bottom:502.533600pt;}
.yc{bottom:503.173600pt;}
.y2e8{bottom:503.813600pt;}
.yec{bottom:506.053333pt;}
.y1ef{bottom:506.693200pt;}
.y22f{bottom:507.013600pt;}
.y72{bottom:507.333067pt;}
.y1a9{bottom:508.480000pt;}
.y46{bottom:508.613733pt;}
.y1c7{bottom:509.253333pt;}
.y10c{bottom:510.212667pt;}
.y1d1{bottom:513.440000pt;}
.y321{bottom:514.080000pt;}
.y18e{bottom:514.400400pt;}
.y297{bottom:516.960000pt;}
.y164{bottom:518.880533pt;}
.y270{bottom:519.200000pt;}
.y90{bottom:523.040533pt;}
.y24{bottom:524.000400pt;}
.y21f{bottom:524.160000pt;}
.y45{bottom:527.840267pt;}
.y1c6{bottom:528.480000pt;}
.yad{bottom:530.080000pt;}
.y386{bottom:530.080400pt;}
.y369{bottom:530.400267pt;}
.y2a2{bottom:530.720000pt;}
.y17b{bottom:531.360000pt;}
.ycc{bottom:531.360133pt;}
.y2e7{bottom:532.319867pt;}
.y31c{bottom:532.960000pt;}
.y141{bottom:533.600000pt;}
.yeb{bottom:534.560133pt;}
.y1ee{bottom:535.519733pt;}
.y22e{bottom:535.840133pt;}
.y71{bottom:537.439867pt;}
.y10b{bottom:538.079333pt;}
.y272{bottom:538.400000pt;}
.y1d0{bottom:543.520000pt;}
.y18d{bottom:545.120133pt;}
.y347{bottom:545.440000pt;}
.y17d{bottom:546.240000pt;}
.y163{bottom:546.400267pt;}
.y44{bottom:547.040267pt;}
.y1c4{bottom:547.360000pt;}
.y29a{bottom:548.960000pt;}
.y8f{bottom:549.600400pt;}
.yb{bottom:553.440267pt;}
.y23{bottom:554.080667pt;}
.y1e4{bottom:556.320000pt;}
.y271{bottom:557.280000pt;}
.yac{bottom:557.919867pt;}
.y368{bottom:557.920000pt;}
.y385{bottom:558.880400pt;}
.y13a{bottom:559.840000pt;}
.ycb{bottom:560.160133pt;}
.y2e6{bottom:561.119867pt;}
.y2a1{bottom:561.120000pt;}
.yea{bottom:562.080400pt;}
.y1ed{bottom:563.040000pt;}
.y22d{bottom:564.319867pt;}
.y10a{bottom:565.599600pt;}
.y43{bottom:566.560000pt;}
.y70{bottom:567.520133pt;}
.y30c{bottom:573.600000pt;}
.y162{bottom:574.240400pt;}
.y18c{bottom:575.520667pt;}
.y26d{bottom:576.480000pt;}
.y2bb{bottom:576.800000pt;}
.y346{bottom:577.120000pt;}
.y8e{bottom:577.120667pt;}
.y299{bottom:580.960000pt;}
.y22{bottom:583.840533pt;}
.yab{bottom:585.440133pt;}
.y42{bottom:585.760000pt;}
.y13c{bottom:587.360000pt;}
.y384{bottom:587.680400pt;}
.y1e9{bottom:588.320000pt;}
.yca{bottom:588.640400pt;}
.y37d{bottom:588.960133pt;}
.ye9{bottom:589.600133pt;}
.y2e5{bottom:589.919867pt;}
.y34b{bottom:591.200000pt;}
.y22c{bottom:592.160000pt;}
.y109{bottom:593.439733pt;}
.y1ec{bottom:593.440000pt;}
.y6f{bottom:597.600400pt;}
.y30b{bottom:600.480000pt;}
.y161{bottom:601.760133pt;}
.y20e{bottom:602.080267pt;}
.y36e{bottom:603.520000pt;}
.ya{bottom:603.680400pt;}
.y1c2{bottom:604.640000pt;}
.y8d{bottom:604.640933pt;}
.y41{bottom:605.280267pt;}
.y18b{bottom:605.920133pt;}
.y2c0{bottom:608.160000pt;}
.y205{bottom:609.120000pt;}
.y298{bottom:612.640000pt;}
.yaa{bottom:612.959867pt;}
.y26c{bottom:612.960000pt;}
.y12a{bottom:613.600000pt;}
.y21{bottom:613.920267pt;}
.y34a{bottom:615.200133pt;}
.y31a{bottom:616.160000pt;}
.y383{bottom:616.480400pt;}
.y2f6{bottom:616.799067pt;}
.y37c{bottom:616.800267pt;}
.y6e{bottom:616.800400pt;}
.ye8{bottom:617.440267pt;}
.yc9{bottom:617.440400pt;}
.y2e4{bottom:618.719867pt;}
.y22b{bottom:619.680267pt;}
.y1e7{bottom:620.000000pt;}
.y108{bottom:622.239733pt;}
.y40{bottom:624.506800pt;}
.y160{bottom:630.586667pt;}
.y20d{bottom:631.866667pt;}
.y8c{bottom:632.507600pt;}
.y6d{bottom:636.026933pt;}
.y18a{bottom:636.667067pt;}
.y2bf{bottom:639.226667pt;}
.y26b{bottom:640.186667pt;}
.y20c{bottom:640.506667pt;}
.ya9{bottom:640.506800pt;}
.y20{bottom:640.507200pt;}
.y1c1{bottom:640.826667pt;}
.y343{bottom:641.146667pt;}
.y349{bottom:642.747067pt;}
.y3f{bottom:643.706800pt;}
.y2f5{bottom:644.346000pt;}
.y37b{bottom:644.347200pt;}
.y292{bottom:644.666667pt;}
.ye7{bottom:645.306933pt;}
.y365{bottom:645.626667pt;}
.yc8{bottom:646.266933pt;}
.y212{bottom:646.400000pt;}
.y2e3{bottom:647.226667pt;}
.y22a{bottom:647.227333pt;}
.y107{bottom:650.746533pt;}
.y1e6{bottom:652.026667pt;}
.y313{bottom:653.626667pt;}
.y9{bottom:654.266800pt;}
.y6c{bottom:655.547200pt;}
.y269{bottom:655.866667pt;}
.y8b{bottom:660.027333pt;}
.y15f{bottom:660.986667pt;}
.y3e{bottom:663.226533pt;}
.y189{bottom:667.067067pt;}
.y1c0{bottom:668.026667pt;}
.y1f{bottom:668.026933pt;}
.ya8{bottom:668.346933pt;}
.y2be{bottom:670.586667pt;}
.y20b{bottom:671.546667pt;}
.y2f4{bottom:671.866267pt;}
.y37a{bottom:671.866933pt;}
.y319{bottom:672.826667pt;}
.y364{bottom:673.146933pt;}
.ye6{bottom:673.786667pt;}
.y2e2{bottom:674.746933pt;}
.y6b{bottom:674.747200pt;}
.y229{bottom:674.747600pt;}
.yc7{bottom:675.066933pt;}
.y177{bottom:676.160000pt;}
.y296{bottom:676.346667pt;}
.y171{bottom:676.480000pt;}
.y106{bottom:678.266800pt;}
.y1be{bottom:683.706667pt;}
.y8a{bottom:687.547067pt;}
.y318{bottom:691.706667pt;}
.y260{bottom:692.026667pt;}
.y3d{bottom:692.986400pt;}
.y6a{bottom:693.947200pt;}
.ya7{bottom:695.866667pt;}
.y1e{bottom:695.867067pt;}
.y188{bottom:697.787333pt;}
.y379{bottom:699.386667pt;}
.y2f3{bottom:699.706400pt;}
.y363{bottom:700.986533pt;}
.y348{bottom:700.986667pt;}
.y8{bottom:701.306933pt;}
.y2bd{bottom:701.626667pt;}
.y2e1{bottom:702.586533pt;}
.y382{bottom:702.586667pt;}
.y228{bottom:702.587200pt;}
.y20a{bottom:702.906667pt;}
.yc6{bottom:703.866933pt;}
.y345{bottom:704.826667pt;}
.y105{bottom:705.787067pt;}
.y295{bottom:708.346667pt;}
.y268{bottom:710.906667pt;}
.y69{bottom:713.466933pt;}
.y89{bottom:715.066800pt;}
.y1e3{bottom:715.706667pt;}
.y35a{bottom:717.120000pt;}
.y144{bottom:719.226667pt;}
.y1ae{bottom:720.826667pt;}
.y3c{bottom:723.066667pt;}
.ya6{bottom:723.386400pt;}
.y1d{bottom:723.386800pt;}
.y128{bottom:725.307067pt;}
.y378{bottom:727.226800pt;}
.y187{bottom:728.187333pt;}
.y2f2{bottom:728.506400pt;}
.ye5{bottom:728.826667pt;}
.y362{bottom:729.466800pt;}
.y267{bottom:730.106667pt;}
.y2e0{bottom:730.106800pt;}
.y381{bottom:730.106933pt;}
.y227{bottom:731.387200pt;}
.y68{bottom:732.666933pt;}
.y2bc{bottom:732.986667pt;}
.y104{bottom:733.626667pt;}
.y208{bottom:733.946667pt;}
.y344{bottom:736.546667pt;}
.y7{bottom:736.547067pt;}
.y1bd{bottom:739.746667pt;}
.y294{bottom:740.066667pt;}
.y3b{bottom:742.946933pt;}
.y88{bottom:742.947067pt;}
.y1e2{bottom:747.426667pt;}
.y264{bottom:749.026667pt;}
.ya5{bottom:750.946800pt;}
.y1c{bottom:750.947200pt;}
.y67{bottom:752.226800pt;}
.y127{bottom:752.866933pt;}
.y377{bottom:756.066933pt;}
.ye4{bottom:756.386533pt;}
.y2f1{bottom:757.346533pt;}
.y2df{bottom:757.666667pt;}
.y380{bottom:757.666800pt;}
.y361{bottom:758.306933pt;}
.y186{bottom:758.626933pt;}
.y1bc{bottom:758.946667pt;}
.y226{bottom:760.227333pt;}
.y103{bottom:761.187067pt;}
.yc5{bottom:761.187200pt;}
.y2ba{bottom:764.066667pt;}
.y2cb{bottom:764.706667pt;}
.y207{bottom:765.346667pt;}
.y266{bottom:768.226667pt;}
.y33f{bottom:768.546667pt;}
.y87{bottom:770.466800pt;}
.y3a{bottom:771.426667pt;}
.y66{bottom:771.426800pt;}
.y28e{bottom:772.066667pt;}
.y6{bottom:775.266800pt;}
.y1b9{bottom:778.146667pt;}
.y1b{bottom:778.466933pt;}
.ya4{bottom:778.786933pt;}
.y1e1{bottom:779.426667pt;}
.y126{bottom:780.386667pt;}
.ye3{bottom:784.226667pt;}
.y376{bottom:784.866933pt;}
.y37f{bottom:785.187067pt;}
.y2de{bottom:785.506800pt;}
.y360{bottom:785.826667pt;}
.y2f0{bottom:786.146533pt;}
.y265{bottom:787.106667pt;}
.y102{bottom:788.706800pt;}
.yc4{bottom:788.706933pt;}
.y225{bottom:789.027333pt;}
.y14f{bottom:789.346667pt;}
.y185{bottom:789.347200pt;}
.y65{bottom:790.626800pt;}
.y2ca{bottom:792.226400pt;}
.y2b1{bottom:795.426667pt;}
.y204{bottom:796.386667pt;}
.y1ba{bottom:797.026667pt;}
.y86{bottom:797.986533pt;}
.y39{bottom:798.946933pt;}
.y342{bottom:800.226667pt;}
.y291{bottom:803.746667pt;}
.ya3{bottom:806.306667pt;}
.y1a{bottom:806.307067pt;}
.y125{bottom:808.226800pt;}
.y1da{bottom:811.426667pt;}
.y3a3{bottom:811.746533pt;}
.ye2{bottom:813.026667pt;}
.y35f{bottom:813.346933pt;}
.y375{bottom:813.666933pt;}
.y2dd{bottom:814.306800pt;}
.y2ef{bottom:814.626267pt;}
.y101{bottom:816.226533pt;}
.yc3{bottom:816.226667pt;}
.y14e{bottom:816.866400pt;}
.y184{bottom:816.866933pt;}
.y224{bottom:817.827333pt;}
.y253{bottom:818.787200pt;}
.y39d{bottom:819.746533pt;}
.y2c9{bottom:819.746667pt;}
.y64{bottom:820.707067pt;}
.y316{bottom:825.186667pt;}
.y263{bottom:825.506667pt;}
.y85{bottom:825.506800pt;}
.y5{bottom:825.506933pt;}
.y38{bottom:826.146933pt;}
.y1fd{bottom:827.426667pt;}
.y341{bottom:832.226667pt;}
.ya2{bottom:833.826400pt;}
.y19{bottom:833.826800pt;}
.y1b5{bottom:835.106667pt;}
.y290{bottom:835.746667pt;}
.y124{bottom:835.747067pt;}
.y3a2{bottom:839.266267pt;}
.y63{bottom:839.907067pt;}
.ye1{bottom:840.546933pt;}
.y35e{bottom:841.187067pt;}
.y374{bottom:842.466933pt;}
.y1de{bottom:843.106667pt;}
.y2dc{bottom:843.106800pt;}
.y2ee{bottom:843.426267pt;}
.y100{bottom:844.066667pt;}
.yc2{bottom:844.066800pt;}
.y14d{bottom:844.386133pt;}
.y183{bottom:844.386667pt;}
.y21b{bottom:845.026800pt;}
.y241{bottom:846.306800pt;}
.y252{bottom:846.306933pt;}
.y223{bottom:846.307600pt;}
.y39c{bottom:847.292933pt;}
.y2c8{bottom:847.293200pt;}
.y84{bottom:853.053200pt;}
.y37{bottom:854.013600pt;}
.y1b8{bottom:854.333333pt;}
.y62{bottom:859.454000pt;}
.ya1{bottom:861.373333pt;}
.y18{bottom:861.373733pt;}
.y123{bottom:863.293467pt;}
.y261{bottom:863.613333pt;}
.y340{bottom:863.933333pt;}
.y3a1{bottom:866.173067pt;}
.y28f{bottom:867.773333pt;}
.ye0{bottom:869.373467pt;}
.y35d{bottom:870.013600pt;}
.y373{bottom:870.973733pt;}
.yff{bottom:871.613600pt;}
.y14c{bottom:871.933067pt;}
.y182{bottom:871.933600pt;}
.y21a{bottom:872.573733pt;}
.yc1{bottom:872.893333pt;}
.y1b7{bottom:873.213333pt;}
.y240{bottom:873.853733pt;}
.y251{bottom:873.853867pt;}
.y2c7{bottom:875.133067pt;}
.y1dd{bottom:875.133333pt;}
.y222{bottom:875.134133pt;}
.y4{bottom:875.773600pt;}
.y61{bottom:878.653467pt;}
.y83{bottom:880.893333pt;}
.y262{bottom:882.493333pt;}
.y36{bottom:883.133333pt;}
.ya0{bottom:888.893067pt;}
.y17{bottom:888.893467pt;}
.y122{bottom:890.813733pt;}
.y1b0{bottom:892.413333pt;}
.y3a0{bottom:893.052800pt;}
.y33e{bottom:895.933333pt;}
.ydf{bottom:898.173467pt;}
.y60{bottom:898.173733pt;}
.y35c{bottom:898.493333pt;}
.yfe{bottom:899.133333pt;}
.y28c{bottom:899.453333pt;}
.y14b{bottom:899.773200pt;}
.y181{bottom:899.773733pt;}
.y219{bottom:900.093467pt;}
.y2a0{bottom:900.413333pt;}
.y2db{bottom:900.413600pt;}
.y23f{bottom:901.373467pt;}
.y250{bottom:901.373600pt;}
.yc0{bottom:901.693333pt;}
.y2c6{bottom:902.653333pt;}
.y221{bottom:902.653867pt;}
.y1dc{bottom:906.813333pt;}
.y1b4{bottom:911.613333pt;}
.y35{bottom:912.253067pt;}
.y82{bottom:914.493200pt;}
.y16{bottom:916.733600pt;}
.y5f{bottom:917.373733pt;}
.y121{bottom:918.653333pt;}
.y9f{bottom:919.613333pt;}
.y39f{bottom:919.933067pt;}
.y315{bottom:920.573333pt;}
.y25e{bottom:920.893333pt;}
.y29f{bottom:924.413733pt;}
.y3{bottom:926.333467pt;}
.yfd{bottom:926.653067pt;}
.yde{bottom:926.973467pt;}
.y14a{bottom:927.293467pt;}
.y218{bottom:927.933600pt;}
.y23e{bottom:928.893200pt;}
.y2da{bottom:929.213600pt;}
.y24f{bottom:929.213733pt;}
.ybf{bottom:930.173600pt;}
.y1b2{bottom:930.493333pt;}
.y1eb{bottom:933.693333pt;}
.y5e{bottom:936.573733pt;}
.y1d7{bottom:938.813333pt;}
.y311{bottom:939.773333pt;}
.y34{bottom:941.373333pt;}
.y81{bottom:942.333333pt;}
.y15{bottom:944.253333pt;}
.y19c{bottom:944.893067pt;}
.y120{bottom:949.053333pt;}
.y1ac{bottom:949.693333pt;}
.y39e{bottom:950.013333pt;}
.y29e{bottom:951.933467pt;}
.yfc{bottom:954.493200pt;}
.y149{bottom:954.813733pt;}
.y217{bottom:955.453867pt;}
.ydd{bottom:955.773467pt;}
.y5d{bottom:956.093467pt;}
.y11b{bottom:956.733333pt;}
.ybe{bottom:957.693333pt;}
.y25d{bottom:958.013600pt;}
.y24e{bottom:959.653333pt;}
.y2{bottom:962.853733pt;}
.y11f{bottom:971.813333pt;}
.y33{bottom:972.453333pt;}
.y5c{bottom:975.333600pt;}
.y14{bottom:977.893333pt;}
.y24d{bottom:980.773333pt;}
.y148{bottom:982.373600pt;}
.y216{bottom:983.013733pt;}
.yfb{bottom:983.333333pt;}
.y80{bottom:983.973600pt;}
.y11a{bottom:984.293200pt;}
.ydc{bottom:984.613600pt;}
.ybd{bottom:985.573600pt;}
.y1ab{bottom:985.893333pt;}
.y1{bottom:987.493333pt;}
.y284{bottom:988.453467pt;}
.y5b{bottom:994.533600pt;}
.yfa{bottom:1012.133333pt;}
.ybc{bottom:1013.093333pt;}
.y13{bottom:1014.053333pt;}
.y1cf{bottom:1016.613333pt;}
.h57{height:14.400000pt;}
.h58{height:14.719733pt;}
.h1d{height:15.040133pt;}
.h51{height:17.280267pt;}
.h2a{height:17.600000pt;}
.h32{height:18.239600pt;}
.h1f{height:18.240133pt;}
.h36{height:18.271867pt;}
.h61{height:18.272400pt;}
.h31{height:18.559867pt;}
.h60{height:18.560400pt;}
.h34{height:18.592133pt;}
.h47{height:18.880267pt;}
.h4c{height:19.519733pt;}
.h49{height:19.840133pt;}
.h69{height:20.159867pt;}
.h54{height:20.160400pt;}
.h38{height:20.831733pt;}
.h2e{height:20.832267pt;}
.h68{height:21.119733pt;}
.h59{height:21.120267pt;}
.h5a{height:21.152133pt;}
.h56{height:22.400000pt;}
.h64{height:22.719733pt;}
.h65{height:22.720267pt;}
.h46{height:23.040133pt;}
.h45{height:23.359867pt;}
.h29{height:24.000000pt;}
.h21{height:24.959867pt;}
.h18{height:25.600000pt;}
.h1b{height:25.632267pt;}
.h28{height:27.200000pt;}
.h2c{height:27.839600pt;}
.h27{height:27.840133pt;}
.h13{height:28.480267pt;}
.h4f{height:30.399467pt;}
.h40{height:30.400000pt;}
.h3d{height:30.431733pt;}
.h53{height:30.432267pt;}
.h3f{height:30.719733pt;}
.h41{height:30.720267pt;}
.h42{height:30.752133pt;}
.h15{height:33.464320pt;}
.h26{height:33.993750pt;}
.h4e{height:34.240133pt;}
.h14{height:34.912500pt;}
.h2d{height:35.004375pt;}
.h4b{height:35.200000pt;}
.h1e{height:35.768750pt;}
.h3b{height:36.159867pt;}
.h37{height:36.479733pt;}
.h62{height:36.800000pt;}
.h5d{height:36.832267pt;}
.h5{height:38.587500pt;}
.h23{height:39.360400pt;}
.h24{height:41.600000pt;}
.h22{height:41.632267pt;}
.h6{height:42.262500pt;}
.h20{height:42.656250pt;}
.h9{height:43.712000pt;}
.ha{height:43.750000pt;}
.h8{height:44.032000pt;}
.h55{height:44.033067pt;}
.hd{height:44.033600pt;}
.hc{height:44.437500pt;}
.he{height:46.250000pt;}
.h2b{height:47.250000pt;}
.hb{height:48.402097pt;}
.h66{height:49.481250pt;}
.h4{height:50.750000pt;}
.h48{height:51.187500pt;}
.h17{height:53.119733pt;}
.h1c{height:53.120267pt;}
.h1a{height:53.152133pt;}
.h2{height:53.287500pt;}
.h11{height:53.379893pt;}
.hf{height:53.381973pt;}
.h10{height:53.540267pt;}
.h12{height:53.542347pt;}
.h35{height:56.319733pt;}
.h5c{height:56.320267pt;}
.h4d{height:56.351600pt;}
.h3a{height:56.352133pt;}
.h30{height:56.639600pt;}
.h39{height:56.640133pt;}
.h33{height:56.671867pt;}
.h5f{height:56.672400pt;}
.h7{height:58.625000pt;}
.h3c{height:63.391733pt;}
.h63{height:63.392133pt;}
.h67{height:63.984375pt;}
.h52{height:80.671867pt;}
.h43{height:80.992133pt;}
.h3{height:88.064000pt;}
.h16{height:98.271867pt;}
.h3e{height:126.112000pt;}
.h50{height:126.432267pt;}
.h19{height:160.666667pt;}
.h44{height:217.666667pt;}
.h4a{height:227.906667pt;}
.h2f{height:228.226667pt;}
.h5e{height:285.213333pt;}
.h5b{height:285.506667pt;}
.h25{height:311.680000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w29{width:15.679733pt;}
.w48{width:15.680267pt;}
.w60{width:16.959867pt;}
.w3{width:46.431733pt;}
.wd{width:47.071867pt;}
.w7{width:48.991733pt;}
.w8{width:55.712000pt;}
.wc{width:56.000000pt;}
.wa{width:56.032267pt;}
.wb{width:56.352133pt;}
.w9{width:57.600000pt;}
.w65{width:61.471867pt;}
.w5{width:64.319733pt;}
.w4{width:64.352133pt;}
.w6{width:64.672400pt;}
.w61{width:65.631733pt;}
.w4e{width:66.592133pt;}
.w64{width:69.471867pt;}
.w4a{width:74.591733pt;}
.w3b{width:74.912000pt;}
.we{width:75.551600pt;}
.w2e{width:75.871867pt;}
.w63{width:76.192133pt;}
.w1d{width:77.792133pt;}
.w59{width:78.431733pt;}
.w31{width:85.152133pt;}
.w30{width:87.072400pt;}
.w2f{width:87.104133pt;}
.w3e{width:88.671867pt;}
.w2d{width:91.231733pt;}
.w4f{width:91.871867pt;}
.w20{width:92.192133pt;}
.w62{width:92.512000pt;}
.w5b{width:92.831733pt;}
.w4d{width:93.792133pt;}
.w4c{width:94.112000pt;}
.w40{width:95.712000pt;}
.w39{width:96.031733pt;}
.w22{width:99.584400pt;}
.w1b{width:99.904133pt;}
.w57{width:100.224000pt;}
.w4b{width:103.424000pt;}
.w2c{width:104.992133pt;}
.w2b{width:108.224000pt;}
.w43{width:122.944267pt;}
.w3d{width:123.264000pt;}
.w41{width:126.463600pt;}
.w3a{width:126.464000pt;}
.w24{width:127.743733pt;}
.w1f{width:128.064000pt;}
.w12{width:129.024000pt;}
.w5a{width:129.344267pt;}
.w1c{width:131.552133pt;}
.w58{width:132.512000pt;}
.w13{width:144.066667pt;}
.w14{width:147.266667pt;}
.w47{width:168.066667pt;}
.w28{width:171.586667pt;}
.w5f{width:185.053333pt;}
.w49{width:193.600000pt;}
.w42{width:195.586667pt;}
.w3c{width:195.906667pt;}
.w45{width:197.533333pt;}
.w32{width:197.826667pt;}
.w66{width:197.853333pt;}
.w50{width:198.173333pt;}
.w17{width:201.053333pt;}
.w26{width:202.013333pt;}
.w23{width:202.973333pt;}
.w1e{width:203.613333pt;}
.w46{width:204.893333pt;}
.w27{width:209.026667pt;}
.w5d{width:217.693333pt;}
.w5e{width:226.013333pt;}
.w16{width:227.520000pt;}
.w6f{width:236.480000pt;}
.w11{width:236.800000pt;}
.w71{width:238.400000pt;}
.wf{width:252.253333pt;}
.w36{width:252.480000pt;}
.w70{width:254.720000pt;}
.w6e{width:263.680000pt;}
.w6d{width:266.560000pt;}
.w6a{width:269.120000pt;}
.w69{width:272.640000pt;}
.w53{width:283.520000pt;}
.w68{width:287.360000pt;}
.w19{width:296.640000pt;}
.w33{width:313.920000pt;}
.w34{width:316.160000pt;}
.w67{width:321.600000pt;}
.w54{width:322.560000pt;}
.w51{width:323.840000pt;}
.w6b{width:334.080000pt;}
.w52{width:337.920000pt;}
.w55{width:366.720000pt;}
.w10{width:377.280000pt;}
.w6c{width:380.160000pt;}
.w2{width:388.800000pt;}
.w37{width:390.400000pt;}
.w1a{width:392.960000pt;}
.w2a{width:394.880000pt;}
.w35{width:398.720000pt;}
.w18{width:402.240000pt;}
.w38{width:424.000000pt;}
.w56{width:433.600000pt;}
.w44{width:494.586667pt;}
.w3f{width:495.226667pt;}
.w25{width:513.826667pt;}
.w21{width:514.786667pt;}
.w5c{width:518.306667pt;}
.w15{width:580.480000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x50{left:6.400000pt;}
.x28{left:7.680133pt;}
.x1b{left:8.639664pt;}
.x22{left:9.600000pt;}
.x23{left:10.559896pt;}
.x45{left:11.840000pt;}
.x14{left:13.759867pt;}
.x2d{left:16.000000pt;}
.x2b{left:17.000000pt;}
.x1e{left:18.240000pt;}
.x13{left:19.200000pt;}
.x26{left:20.199637pt;}
.x24{left:21.439603pt;}
.x20{left:22.720017pt;}
.x17{left:24.002667pt;}
.x2e{left:24.959867pt;}
.x1c{left:25.960011pt;}
.x19{left:27.200133pt;}
.x41{left:28.159867pt;}
.x4d{left:29.119733pt;}
.x37{left:30.754667pt;}
.x54{left:32.671867pt;}
.x6d{left:33.600000pt;}
.x48{left:35.520000pt;}
.x5c{left:36.831733pt;}
.x68{left:38.079733pt;}
.x32{left:40.034800pt;}
.x5b{left:40.960000pt;}
.x63{left:42.586667pt;}
.x42{left:45.122533pt;}
.x72{left:48.960000pt;}
.x5a{left:49.952133pt;}
.x4a{left:51.866667pt;}
.x38{left:53.480000pt;}
.x69{left:54.426667pt;}
.x4b{left:56.026667pt;}
.x39{left:57.306667pt;}
.x36{left:60.520000pt;}
.x33{left:63.080000pt;}
.x77{left:65.280000pt;}
.x15{left:66.271867pt;}
.x75{left:69.466667pt;}
.x6f{left:74.274667pt;}
.x76{left:81.661333pt;}
.x5d{left:87.066667pt;}
.x74{left:89.021333pt;}
.x6a{left:89.946667pt;}
.x49{left:93.813333pt;}
.x4f{left:96.352133pt;}
.x47{left:97.653333pt;}
.x80{left:104.959867pt;}
.x3a{left:111.040133pt;}
.x7{left:113.311733pt;}
.x6e{left:114.912000pt;}
.x3b{left:118.466533pt;}
.x81{left:127.104133pt;}
.x9{left:128.065813pt;}
.x4e{left:129.343733pt;}
.x16{left:131.264000pt;}
.xa{left:137.346893pt;}
.x8d{left:145.280000pt;}
.x61{left:151.360000pt;}
.xc{left:161.346453pt;}
.x62{left:163.266667pt;}
.xb{left:166.146853pt;}
.x90{left:175.040000pt;}
.x30{left:176.320000pt;}
.x6{left:180.226400pt;}
.xd{left:185.346427pt;}
.x3c{left:188.093200pt;}
.x79{left:189.186667pt;}
.x11{left:194.972453pt;}
.x18{left:196.573333pt;}
.x3f{left:203.200000pt;}
.x10{left:209.372907pt;}
.x8f{left:214.400000pt;}
.x7e{left:216.960000pt;}
.x12{left:219.520000pt;}
.x5e{left:220.480000pt;}
.x7f{left:224.960000pt;}
.xf{left:228.573040pt;}
.x6b{left:230.821200pt;}
.xe{left:233.372960pt;}
.x5f{left:235.200000pt;}
.x4c{left:240.413467pt;}
.x31{left:243.520000pt;}
.x40{left:246.720000pt;}
.x4{left:250.333200pt;}
.x2f{left:255.773333pt;}
.x43{left:260.893333pt;}
.x1a{left:261.853333pt;}
.x60{left:273.280000pt;}
.x3e{left:276.800000pt;}
.x87{left:284.293333pt;}
.x93{left:288.000000pt;}
.x64{left:290.373333pt;}
.x78{left:293.120000pt;}
.x8e{left:298.240000pt;}
.x51{left:299.653333pt;}
.x5{left:309.573333pt;}
.x70{left:314.053333pt;}
.x92{left:316.800000pt;}
.x2{left:318.853067pt;}
.x8{left:321.093333pt;}
.x1d{left:327.173333pt;}
.x94{left:331.200000pt;}
.x84{left:333.893333pt;}
.x55{left:336.133333pt;}
.x1{left:339.973333pt;}
.x91{left:350.400000pt;}
.x65{left:365.920000pt;}
.x1f{left:376.800000pt;}
.x88{left:378.720000pt;}
.x34{left:387.680000pt;}
.x3{left:396.959867pt;}
.x56{left:428.000000pt;}
.x21{left:433.146667pt;}
.x89{left:472.186667pt;}
.x7a{left:482.746667pt;}
.x25{left:491.386667pt;}
.x57{left:504.506667pt;}
.x52{left:509.986667pt;}
.x71{left:520.226667pt;}
.x35{left:532.386667pt;}
.x44{left:543.586667pt;}
.x82{left:545.186667pt;}
.x27{left:548.066667pt;}
.x8a{left:549.026667pt;}
.x3d{left:553.253200pt;}
.x7b{left:558.306667pt;}
.x85{left:561.186667pt;}
.x66{left:562.466667pt;}
.x58{left:592.253333pt;}
.x29{left:605.053333pt;}
.x8b{left:619.133333pt;}
.x7c{left:625.533333pt;}
.x2a{left:661.693333pt;}
.x46{left:672.293333pt;}
.x83{left:675.173333pt;}
.x59{left:679.973333pt;}
.x8c{left:681.253333pt;}
.x53{left:682.213333pt;}
.x6c{left:685.413333pt;}
.x67{left:686.373333pt;}
.x73{left:688.933333pt;}
.x7d{left:690.533333pt;}
.x2c{left:709.413333pt;}
.x86{left:746.880000pt;}
}




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