
    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_6130023dda89e5d2a3a2cd51.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.706543;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_97a8a880211598158a452d41.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.956055;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_76aed3b4f9fac7ac4ef6a2bf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_022be88679bad1ce6f2171ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_fbec2ce33399ef214f9e15d5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e04576d6f7ee3a4be91eac99.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_2087335b07658d2496dd8e50.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107422;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_be784a980cbd1460650a1cd0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_5cb8fceab9c04ccd68217caa.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_327c7a21fa16f7e3b80ba028.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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_8254fec0d4c699256fb959c3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.856934;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_2406e893e4c7be6deded4a50.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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b38aaa7351944d36c3c194ac.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1eb32ff98489924bb02b8739.woff2')format("woff");}.fff{font-family:fff;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-23.758871px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.758871px;}
.ls1b{letter-spacing:-1.295938px;}
.ls4{letter-spacing:-0.719966px;}
.ls1a{letter-spacing:-0.575973px;}
.ls19{letter-spacing:-0.503976px;}
.ls29{letter-spacing:-0.431979px;}
.ls2a{letter-spacing:-0.417292px;}
.ls33{letter-spacing:-0.361783px;}
.ls20{letter-spacing:-0.304690px;}
.ls24{letter-spacing:-0.287986px;}
.ls34{letter-spacing:-0.264947px;}
.ls2d{letter-spacing:-0.215990px;}
.ls22{letter-spacing:-0.152345px;}
.ls13{letter-spacing:-0.143993px;}
.ls1f{letter-spacing:-0.105979px;}
.ls2{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.139097px;}
.ls1{letter-spacing:0.143993px;}
.ls16{letter-spacing:0.178840px;}
.lsc{letter-spacing:0.209208px;}
.ls5{letter-spacing:0.215990px;}
.ls23{letter-spacing:0.262068px;}
.ls21{letter-spacing:0.264947px;}
.ls3{letter-spacing:0.270131px;}
.ls0{letter-spacing:0.287986px;}
.ls1e{letter-spacing:0.304690px;}
.ls2e{letter-spacing:0.305265px;}
.ls1c{letter-spacing:0.382062px;}
.ls32{letter-spacing:0.407981px;}
.ls31{letter-spacing:3.023856px;}
.ls18{letter-spacing:4.103805px;}
.ls25{letter-spacing:4.147003px;}
.ls28{letter-spacing:4.175802px;}
.ls11{letter-spacing:4.391791px;}
.ls2b{letter-spacing:4.463788px;}
.lse{letter-spacing:4.535785px;}
.ls27{letter-spacing:4.607781px;}
.ls2f{letter-spacing:4.727775px;}
.ls15{letter-spacing:4.818011px;}
.ls17{letter-spacing:4.895767px;}
.ls26{letter-spacing:4.967764px;}
.ls2c{letter-spacing:5.435742px;}
.ls12{letter-spacing:5.903720px;}
.ls6{letter-spacing:9.186764px;}
.ls10{letter-spacing:15.983241px;}
.ls14{letter-spacing:40.300806px;}
.ls30{letter-spacing:42.621975px;}
.lsf{letter-spacing:54.861394px;}
.lsd{letter-spacing:57.741257px;}
.ls7{letter-spacing:69.663891px;}
.lsb{letter-spacing:1034.194873px;}
.ls8{letter-spacing:1142.189743px;}
.lsa{letter-spacing:1258.784173px;}
.ls9{letter-spacing:1431.016024px;}
.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;}
}
.ws16{word-spacing:-24.910817px;}
.ws12{word-spacing:-24.622830px;}
.ws6{word-spacing:-24.550834px;}
.ws17{word-spacing:-24.190851px;}
.ws4{word-spacing:-20.303036px;}
.ws5{word-spacing:-20.264287px;}
.ws1{word-spacing:-20.231039px;}
.wsa{word-spacing:-20.159042px;}
.ws2{word-spacing:-20.015049px;}
.ws7{word-spacing:-19.871056px;}
.ws15{word-spacing:-19.799059px;}
.ws13{word-spacing:-19.583070px;}
.ws14{word-spacing:-19.439077px;}
.ws8{word-spacing:-19.295083px;}
.wsc{word-spacing:-18.718535px;}
.wsf{word-spacing:-18.678793px;}
.wsb{word-spacing:-18.413845px;}
.wsd{word-spacing:-18.307866px;}
.ws10{word-spacing:-18.261501px;}
.ws19{word-spacing:-18.148898px;}
.wse{word-spacing:-18.109156px;}
.ws9{word-spacing:-17.751765px;}
.ws11{word-spacing:-15.551261px;}
.ws0{word-spacing:-13.680214px;}
.ws18{word-spacing:-13.048300px;}
.ws3{word-spacing:0.000000px;}
._19{margin-left:-5.399743px;}
._18{margin-left:-4.391791px;}
._1a{margin-left:-3.383839px;}
._17{margin-left:-2.324050px;}
._2{margin-left:-1.059790px;}
._1{width:1.019952px;}
._12{width:2.543879px;}
._1c{width:3.647827px;}
._1b{width:5.135756px;}
._c{width:6.191706px;}
._d{width:7.867306px;}
._f{width:9.371075px;}
._a{width:11.231466px;}
._e{width:12.407411px;}
._b{width:13.827183px;}
._10{width:14.975289px;}
._14{width:16.035078px;}
._13{width:17.135186px;}
._1e{width:18.554959px;}
._11{width:21.214992px;}
._1d{width:22.750919px;}
._16{width:24.602671px;}
._15{width:25.918769px;}
._20{width:27.382699px;}
._1f{width:28.414650px;}
._25{width:30.526550px;}
._24{width:31.534502px;}
._22{width:35.525992px;}
._21{width:36.646259px;}
._23{width:93.091578px;}
._7{width:998.760557px;}
._8{width:1567.729369px;}
._6{width:1830.609042px;}
._5{width:1870.711137px;}
._4{width:2002.968854px;}
._0{width:2050.918577px;}
._9{width:2190.663939px;}
._3{width:2199.015542px;}
.fc7{color:transparent;}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(33,89,104);}
.fc5{color:rgb(75,172,198);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(14,16,26);}
.fc6{color:rgb(90,90,90);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.237709px;}
.fs6{font-size:53.997435px;}
.fs3{font-size:66.236854px;}
.fs5{font-size:66.380847px;}
.fs0{font-size:71.996580px;}
.fs4{font-size:72.140573px;}
.fs7{font-size:77.756306px;}
.fs1{font-size:95.755451px;}
.y0{bottom:0.000000px;}
.y233{bottom:3.419773px;}
.y219{bottom:3.419780px;}
.y2b0{bottom:3.419797px;}
.y244{bottom:3.419800px;}
.y298{bottom:3.419804px;}
.y273{bottom:3.419815px;}
.y25c{bottom:3.419823px;}
.y2bc{bottom:3.419843px;}
.y22e{bottom:3.419881px;}
.y289{bottom:3.419899px;}
.y2b9{bottom:3.599799px;}
.y260{bottom:3.599857px;}
.y255{bottom:3.599884px;}
.y2a4{bottom:3.599905px;}
.yd9{bottom:3.959808px;}
.y1cd{bottom:3.959816px;}
.y223{bottom:6.149660px;}
.y1c6{bottom:8.633591px;}
.ybf{bottom:10.079512px;}
.y9c{bottom:10.079572px;}
.y13e{bottom:11.879394px;}
.y241{bottom:14.039350px;}
.y267{bottom:16.019295px;}
.y23a{bottom:16.199305px;}
.y237{bottom:17.279217px;}
.y197{bottom:19.979026px;}
.yd4{bottom:19.979042px;}
.y20f{bottom:20.339076px;}
.y120{bottom:20.699010px;}
.y2af{bottom:22.318899px;}
.y22d{bottom:22.318983px;}
.y232{bottom:22.498867px;}
.y218{bottom:22.498874px;}
.y243{bottom:22.498894px;}
.y297{bottom:22.498897px;}
.y2b8{bottom:22.498901px;}
.y272{bottom:22.498909px;}
.y25b{bottom:22.498917px;}
.y2bb{bottom:22.498937px;}
.y25f{bottom:22.498959px;}
.y254{bottom:22.498986px;}
.y288{bottom:22.498993px;}
.y2a3{bottom:22.499007px;}
.y179{bottom:22.678904px;}
.yf2{bottom:23.578898px;}
.y222{bottom:25.048763px;}
.y29b{bottom:25.918792px;}
.y21f{bottom:26.278689px;}
.y21e{bottom:26.458762px;}
.y2b4{bottom:27.178637px;}
.y2ca{bottom:27.178660px;}
.y2c5{bottom:27.178737px;}
.y2cb{bottom:27.178779px;}
.y2c8{bottom:27.223698px;}
.y234{bottom:28.078605px;}
.y225{bottom:29.158622px;}
.y9b{bottom:30.778589px;}
.y28a{bottom:32.218431px;}
.y13d{bottom:32.578410px;}
.y285{bottom:32.938397px;}
.y240{bottom:32.938452px;}
.y268{bottom:34.918277px;}
.y27f{bottom:34.918330px;}
.y266{bottom:34.918397px;}
.y280{bottom:35.098358px;}
.y239{bottom:35.098407px;}
.y27d{bottom:35.143291px;}
.y236{bottom:36.223317px;}
.y20e{bottom:39.238178px;}
.y291{bottom:39.418148px;}
.y276{bottom:39.958173px;}
.y275{bottom:40.138047px;}
.y196{bottom:40.678043px;}
.y231{bottom:41.397969px;}
.y217{bottom:41.397976px;}
.y2ae{bottom:41.397993px;}
.y296{bottom:41.398000px;}
.y2b7{bottom:41.398003px;}
.y271{bottom:41.398011px;}
.y25a{bottom:41.398019px;}
.y2ba{bottom:41.398039px;}
.y25e{bottom:41.398061px;}
.y22c{bottom:41.398077px;}
.y253{bottom:41.398088px;}
.y287{bottom:41.398095px;}
.y257{bottom:41.442974px;}
.y2a2{bottom:41.578101px;}
.y2be{bottom:41.938075px;}
.y299{bottom:42.657940px;}
.y189{bottom:42.837960px;}
.y178{bottom:43.422919px;}
.y221{bottom:43.947865px;}
.yf1{bottom:44.277915px;}
.y29a{bottom:44.997886px;}
.y169{bottom:47.151765px;}
.y264{bottom:48.087651px;}
.y21c{bottom:49.857568px;}
.y1cb{bottom:50.757589px;}
.y246{bottom:51.117588px;}
.y9a{bottom:51.477606px;}
.y284{bottom:51.837499px;}
.y23f{bottom:51.837554px;}
.y24b{bottom:52.557514px;}
.y24a{bottom:52.557548px;}
.y13c{bottom:53.322425px;}
.y6{bottom:57.057290px;}
.y20d{bottom:58.137281px;}
.y230{bottom:60.297071px;}
.y2ad{bottom:60.297095px;}
.y216{bottom:60.477070px;}
.y295{bottom:60.477093px;}
.y2b6{bottom:60.477097px;}
.y270{bottom:60.477105px;}
.y259{bottom:60.477113px;}
.y25d{bottom:60.477155px;}
.y2a1{bottom:60.477203px;}
.y195{bottom:61.377060px;}
.y177{bottom:64.121935px;}
.yf0{bottom:64.976931px;}
.y263{bottom:67.166745px;}
.y21b{bottom:68.936662px;}
.y245{bottom:70.196682px;}
.y283{bottom:70.916593px;}
.y23e{bottom:70.916648px;}
.y1ca{bottom:71.276614px;}
.y99{bottom:72.176622px;}
.yd2{bottom:73.790490px;}
.y13b{bottom:74.021442px;}
.y11b{bottom:76.496431px;}
.y113{bottom:76.676337px;}
.yd7{bottom:77.576315px;}
.y1f{bottom:77.936298px;}
.y5{bottom:78.116289px;}
.y215{bottom:79.376172px;}
.y294{bottom:79.376195px;}
.y2a0{bottom:79.376305px;}
.y2b5{bottom:79.406198px;}
.y27b{bottom:80.636195px;}
.y2c6{bottom:81.716189px;}
.y194{bottom:82.076076px;}
.y176{bottom:84.820952px;}
.yef{bottom:85.675948px;}
.y262{bottom:86.065847px;}
.y117{bottom:87.115837px;}
.y1bb{bottom:87.115924px;}
.yc1{bottom:87.151791px;}
.y1bd{bottom:87.295814px;}
.y1b9{bottom:87.331873px;}
.y282{bottom:89.815695px;}
.y23d{bottom:89.815750px;}
.y1c9{bottom:90.175716px;}
.y15e{bottom:92.191653px;}
.ycb{bottom:92.551526px;}
.y1b5{bottom:92.551618px;}
.y15c{bottom:92.875621px;}
.y98{bottom:92.875639px;}
.y13a{bottom:94.720459px;}
.y1b7{bottom:94.855466px;}
.y164{bottom:95.575493px;}
.y158{bottom:95.971426px;}
.yd6{bottom:96.655409px;}
.yc5{bottom:96.655456px;}
.y26e{bottom:97.015463px;}
.yc9{bottom:97.375431px;}
.y111{bottom:97.735343px;}
.y119{bottom:97.951277px;}
.y115{bottom:97.951281px;}
.y214{bottom:98.275274px;}
.y293{bottom:98.275298px;}
.y29f{bottom:98.455399px;}
.y1e{bottom:98.635315px;}
.y4{bottom:98.995297px;}
.y27a{bottom:99.535297px;}
.y2c3{bottom:100.615291px;}
.y15a{bottom:102.055154px;}
.y28f{bottom:102.595150px;}
.y193{bottom:102.820091px;}
.y1cc{bottom:103.495080px;}
.y22a{bottom:105.474928px;}
.y175{bottom:105.519969px;}
.yc3{bottom:106.194942px;}
.ybe{bottom:106.194960px;}
.yee{bottom:106.419963px;}
.y10f{bottom:108.210901px;}
.y11d{bottom:108.534767px;}
.y1c3{bottom:108.570888px;}
.y23c{bottom:108.894844px;}
.y1c8{bottom:109.254810px;}
.yd8{bottom:109.974780px;}
.ycd{bottom:111.054784px;}
.y97{bottom:113.574656px;}
.yd3{bottom:113.610603px;}
.y162{bottom:113.970610px;}
.y160{bottom:114.474602px;}
.y139{bottom:115.419475px;}
.yd5{bottom:115.554511px;}
.y26d{bottom:115.914565px;}
.y213{bottom:117.399366px;}
.y29e{bottom:117.399499px;}
.y279{bottom:118.434400px;}
.y1c1{bottom:118.974385px;}
.y1d{bottom:119.514323px;}
.y2c2{bottom:119.559391px;}
.y3{bottom:119.694314px;}
.y248{bottom:121.314248px;}
.y28e{bottom:121.674243px;}
.y192{bottom:123.519108px;}
.ycf{bottom:124.230170px;}
.y229{bottom:124.374031px;}
.yc7{bottom:125.094019px;}
.y174{bottom:126.218986px;}
.yed{bottom:127.118980px;}
.y1c7{bottom:129.809828px;}
.y166{bottom:131.249703px;}
.y1f4{bottom:133.553656px;}
.y96{bottom:134.273673px;}
.y26c{bottom:134.993659px;}
.y138{bottom:136.118492px;}
.y212{bottom:136.298468px;}
.y29d{bottom:136.478593px;}
.y278{bottom:137.558491px;}
.yd1{bottom:137.693433px;}
.y2c1{bottom:138.638485px;}
.y1c5{bottom:140.393323px;}
.y1bf{bottom:140.429313px;}
.y2{bottom:140.429329px;}
.y28d{bottom:140.573345px;}
.y18b{bottom:140.969304px;}
.y228{bottom:143.273133px;}
.ybb{bottom:143.669175px;}
.y1b3{bottom:144.029158px;}
.y191{bottom:144.218125px;}
.y16a{bottom:146.369038px;}
.y1c4{bottom:146.903025px;}
.y173{bottom:146.918002px;}
.yec{bottom:147.817996px;}
.y84{bottom:152.662748px;}
.y155{bottom:152.842740px;}
.y132{bottom:153.382714px;}
.y26b{bottom:153.892761px;}
.y95{bottom:155.017687px;}
.y211{bottom:155.377562px;}
.y67{bottom:155.542611px;}
.y281{bottom:155.542650px;}
.y49{bottom:155.902594px;}
.ye7{bottom:156.082586px;}
.y137{bottom:156.817509px;}
.y2c0{bottom:157.537587px;}
.y28c{bottom:159.472448px;}
.y168{bottom:159.652408px;}
.y16f{bottom:160.042398px;}
.y205{bottom:161.662321px;}
.y2ab{bottom:162.202301px;}
.y227{bottom:162.352227px;}
.y1f3{bottom:164.722175px;}
.y190{bottom:164.917141px;}
.y172{bottom:167.617019px;}
.yeb{bottom:168.517013px;}
.y90{bottom:170.661893px;}
.y1eb{bottom:172.101825px;}
.y26a{bottom:172.971855px;}
.y83{bottom:173.361765px;}
.yba{bottom:174.621705px;}
.y1b2{bottom:174.981688px;}
.ye6{bottom:175.161679px;}
.y94{bottom:175.716704px;}
.y251{bottom:176.571640px;}
.y48{bottom:176.601611px;}
.y136{bottom:177.516526px;}
.y1c{bottom:178.221534px;}
.y16e{bottom:179.301483px;}
.y2aa{bottom:181.281395px;}
.y204{bottom:182.361337px;}
.y11f{bottom:182.901324px;}
.y154{bottom:183.801269px;}
.y20b{bottom:185.421192px;}
.y18f{bottom:185.616158px;}
.y23b{bottom:185.961150px;}
.y66{bottom:186.501141px;}
.y171{bottom:188.316036px;}
.y131{bottom:188.481047px;}
.yea{bottom:189.216030px;}
.y8f{bottom:189.920978px;}
.yd0{bottom:189.921000px;}
.y250{bottom:195.515740px;}
.y1f2{bottom:195.680705px;}
.y167{bottom:195.860700px;}
.y93{bottom:196.415721px;}
.y47{bottom:197.300628px;}
.y135{bottom:198.215542px;}
.y1b{bottom:198.560568px;}
.y2b2{bottom:199.460495px;}
.y2a9{bottom:200.180497px;}
.y1ea{bottom:203.060354px;}
.y286{bottom:203.960250px;}
.y121{bottom:204.140305px;}
.y82{bottom:204.500286px;}
.y8e{bottom:205.400243px;}
.yb9{bottom:205.760226px;}
.y1b1{bottom:206.120209px;}
.y18e{bottom:206.315175px;}
.y16d{bottom:209.720038px;}
.ye9{bottom:209.915047px;}
.y24f{bottom:214.594834px;}
.y153{bottom:214.939790px;}
.y92{bottom:217.114737px;}
.y1a{bottom:217.639662px;}
.y46{bottom:217.999645px;}
.y134{bottom:218.914559px;}
.y2a8{bottom:219.079599px;}
.y130{bottom:219.259585px;}
.y203{bottom:223.759371px;}
.y1f1{bottom:226.819226px;}
.y18d{bottom:227.014192px;}
.y11e{bottom:233.313900px;}
.y24e{bottom:233.493936px;}
.y1e9{bottom:234.198875px;}
.y18a{bottom:235.098832px;}
.y81{bottom:235.458815px;}
.y19{bottom:236.538764px;}
.yb8{bottom:236.718755px;}
.y1b0{bottom:237.078738px;}
.y2a7{bottom:238.158693px;}
.y45{bottom:238.698661px;}
.y202{bottom:244.458388px;}
.y152{bottom:245.898319px;}
.y20a{bottom:247.518242px;}
.y65{bottom:248.598191px;}
.y24d{bottom:252.393038px;}
.y18{bottom:255.437866px;}
.y2a6{bottom:257.057795px;}
.y10d{bottom:257.417772px;}
.y1f0{bottom:257.777755px;}
.y44{bottom:259.397678px;}
.y277{bottom:261.557550px;}
.y2cc{bottom:261.917558px;}
.y8d{bottom:264.797422px;}
.y1e8{bottom:265.157404px;}
.ye5{bottom:265.337396px;}
.y80{bottom:266.597336px;}
.yb7{bottom:267.857276px;}
.y1af{bottom:268.217259px;}
.y242{bottom:272.357100px;}
.y17{bottom:274.696951px;}
.y151{bottom:277.036840px;}
.y12f{bottom:278.836755px;}
.y2bf{bottom:279.556650px;}
.y64{bottom:279.736712px;}
.y43{bottom:280.096695px;}
.y201{bottom:285.856421px;}
.y10c{bottom:288.556293px;}
.y1ef{bottom:288.916276px;}
.y16{bottom:295.395968px;}
.y1c2{bottom:295.764900px;}
.y1e7{bottom:296.295925px;}
.y7f{bottom:297.555865px;}
.yb6{bottom:298.815806px;}
.y1ae{bottom:299.175788px;}
.y42{bottom:300.795712px;}
.y200{bottom:306.555438px;}
.y150{bottom:307.995370px;}
.y209{bottom:309.615293px;}
.y63{bottom:310.695241px;}
.y238{bottom:311.055150px;}
.y27e{bottom:312.855150px;}
.y15{bottom:316.094985px;}
.y10b{bottom:319.514822px;}
.y1ee{bottom:319.874805px;}
.y41{bottom:321.494728px;}
.y2c9{bottom:323.114700px;}
.y1e6{bottom:327.254455px;}
.y7e{bottom:328.694386px;}
.yb5{bottom:329.954326px;}
.yce{bottom:329.963250px;}
.y1ad{bottom:330.314309px;}
.y14{bottom:336.794002px;}
.y14f{bottom:339.133890px;}
.y62{bottom:341.833762px;}
.y40{bottom:342.193745px;}
.y1ff{bottom:347.953471px;}
.y10a{bottom:350.653343px;}
.y1ed{bottom:351.013326px;}
.y13{bottom:357.493018px;}
.y165{bottom:358.042050px;}
.y1e5{bottom:358.392976px;}
.y7d{bottom:359.652916px;}
.yb4{bottom:360.912856px;}
.y1ac{bottom:361.272839px;}
.y235{bottom:362.352750px;}
.y3f{bottom:362.892762px;}
.y27c{bottom:363.972750px;}
.y2c7{bottom:366.492600px;}
.y1fe{bottom:368.652488px;}
.y14e{bottom:370.092420px;}
.y208{bottom:371.712343px;}
.y61{bottom:372.792292px;}
.y12{bottom:378.192035px;}
.y7c{bottom:380.351932px;}
.y109{bottom:381.611873px;}
.y1ec{bottom:381.971855px;}
.y3e{bottom:383.591779px;}
.y1e4{bottom:389.396503px;}
.yb3{bottom:392.096375px;}
.y1ab{bottom:392.456357px;}
.y11{bottom:398.936050px;}
.y14d{bottom:401.275938px;}
.y60{bottom:403.975810px;}
.y3d{bottom:404.335793px;}
.y2c4{bottom:409.915500px;}
.y1fd{bottom:410.095520px;}
.y1c0{bottom:412.795350px;}
.y108{bottom:412.795391px;}
.y7b{bottom:413.155374px;}
.y226{bottom:414.955350px;}
.y269{bottom:415.315200px;}
.y10{bottom:415.855246px;}
.y1e3{bottom:420.535024px;}
.yb2{bottom:423.054904px;}
.y1aa{bottom:423.414887px;}
.y11c{bottom:424.674900px;}
.y3c{bottom:425.034810px;}
.y1fc{bottom:430.794536px;}
.y14c{bottom:432.234468px;}
.y207{bottom:433.854391px;}
.y5f{bottom:434.934340px;}
.y107{bottom:443.753921px;}
.y7a{bottom:444.113904px;}
.y3b{bottom:445.733827px;}
.y1e2{bottom:451.493553px;}
.y2bd{bottom:453.293400px;}
.yb1{bottom:454.193425px;}
.y1a9{bottom:454.553408px;}
.ycc{bottom:456.533250px;}
.y22f{bottom:459.233250px;}
.y14b{bottom:463.372989px;}
.y5e{bottom:466.072860px;}
.y3a{bottom:466.432843px;}
.y274{bottom:471.472650px;}
.y1fb{bottom:472.192570px;}
.y106{bottom:474.892442px;}
.y79{bottom:475.252424px;}
.y1e1{bottom:482.632074px;}
.yb0{bottom:485.151954px;}
.y1a8{bottom:485.511937px;}
.y39{bottom:487.131860px;}
.y163{bottom:491.811600px;}
.y1fa{bottom:492.891587px;}
.y14a{bottom:494.331518px;}
.y206{bottom:495.951441px;}
.y5d{bottom:497.031390px;}
.y105{bottom:505.850971px;}
.y78{bottom:506.210954px;}
.y38{bottom:507.830877px;}
.y2a5{bottom:511.430700px;}
.y1e0{bottom:513.590603px;}
.yaf{bottom:516.290475px;}
.y1a7{bottom:516.650458px;}
.y5c{bottom:524.750073px;}
.y149{bottom:525.470039px;}
.y188{bottom:526.909971px;}
.y26f{bottom:527.809950px;}
.y37{bottom:528.529894px;}
.y1f9{bottom:534.289620px;}
.y22b{bottom:535.909500px;}
.y104{bottom:536.989492px;}
.y77{bottom:537.349475px;}
.y1be{bottom:540.223350px;}
.y11a{bottom:541.669200px;}
.y1df{bottom:544.729124px;}
.yae{bottom:547.249004px;}
.y1a6{bottom:547.608987px;}
.y36{bottom:549.408902px;}
.y5b{bottom:551.388808px;}
.y1f8{bottom:554.988637px;}
.y148{bottom:556.428568px;}
.y187{bottom:558.048491px;}
.y103{bottom:567.948021px;}
.y76{bottom:568.308004px;}
.y2b1{bottom:569.028000px;}
.yca{bottom:569.922000px;}
.y35{bottom:570.287910px;}
.y1de{bottom:575.687654px;}
.yad{bottom:578.207534px;}
.y1a5{bottom:578.747508px;}
.y5a{bottom:582.527329px;}
.y147{bottom:587.387098px;}
.y186{bottom:589.007021px;}
.y161{bottom:589.900950px;}
.y34{bottom:591.166918px;}
.y224{bottom:593.506800px;}
.y1f7{bottom:596.386670px;}
.y102{bottom:598.906551px;}
.y75{bottom:599.446525px;}
.y261{bottom:604.486350px;}
.y1dd{bottom:606.826174px;}
.yac{bottom:609.346055px;}
.y1a4{bottom:609.706038px;}
.y33{bottom:612.045926px;}
.y59{bottom:613.485858px;}
.y1f6{bottom:617.085687px;}
.y146{bottom:618.525619px;}
.y185{bottom:620.145542px;}
.y118{bottom:626.619300px;}
.y101{bottom:630.045071px;}
.y74{bottom:630.405054px;}
.y1dc{bottom:637.784704px;}
.y220{bottom:638.864700px;}
.yab{bottom:640.334583px;}
.y1a3{bottom:640.874557px;}
.y32{bottom:641.774514px;}
.y58{bottom:644.654377px;}
.y145{bottom:649.514147px;}
.y184{bottom:651.134070px;}
.y265{bottom:655.633800px;}
.y1f5{bottom:658.513719px;}
.y100{bottom:661.033599px;}
.y73{bottom:661.573574px;}
.y2b3{bottom:664.633500px;}
.yc8{bottom:664.993350px;}
.y1db{bottom:668.953223px;}
.y31{bottom:671.473104px;}
.y1a2{bottom:671.833086px;}
.y57{bottom:675.612907px;}
.y144{bottom:680.652667px;}
.y183{bottom:682.272591px;}
.y1bc{bottom:689.112300px;}
.yff{bottom:692.172120px;}
.y72{bottom:692.532103px;}
.y21a{bottom:699.191850px;}
.y1da{bottom:699.911753px;}
.y30{bottom:701.171693px;}
.yaa{bottom:702.431633px;}
.y1a1{bottom:702.971607px;}
.y15f{bottom:706.391400px;}
.y56{bottom:706.571436px;}
.y24c{bottom:706.751400px;}
.y2ac{bottom:708.191400px;}
.y143{bottom:711.611197px;}
.y182{bottom:713.231120px;}
.yfe{bottom:723.130650px;}
.y71{bottom:723.670624px;}
.y2f{bottom:730.870282px;}
.y1d9{bottom:731.050273px;}
.y116{bottom:733.030200px;}
.ya9{bottom:733.570154px;}
.y1a0{bottom:733.930137px;}
.y55{bottom:737.709957px;}
.y21d{bottom:741.669750px;}
.y142{bottom:742.749718px;}
.y181{bottom:744.369641px;}
.yfd{bottom:754.269171px;}
.y70{bottom:754.629153px;}
.y91{bottom:756.789000px;}
.y2e{bottom:760.748863px;}
.y1d8{bottom:762.008803px;}
.ya8{bottom:764.528683px;}
.yc6{bottom:764.888700px;}
.y19f{bottom:765.068658px;}
.y54{bottom:768.668487px;}
.y141{bottom:773.708247px;}
.y180{bottom:775.328170px;}
.y2d{bottom:781.627871px;}
.y258{bottom:783.427800px;}
.y210{bottom:784.327800px;}
.y29c{bottom:784.687650px;}
.y1ba{bottom:784.867650px;}
.yfc{bottom:785.227700px;}
.y6f{bottom:785.767674px;}
.y1d7{bottom:792.967332px;}
.ya7{bottom:795.667204px;}
.y19e{bottom:796.027187px;}
.y53{bottom:799.807007px;}
.ye8{bottom:804.846750px;}
.y140{bottom:804.846768px;}
.y18c{bottom:805.746750px;}
.y17f{bottom:806.466691px;}
.y2c{bottom:811.686443px;}
.ye4{bottom:815.106281px;}
.yfb{bottom:816.366221px;}
.y6e{bottom:816.726204px;}
.y15d{bottom:823.394850px;}
.y1d6{bottom:824.105853px;}
.ya6{bottom:826.625733px;}
.y19d{bottom:827.165708px;}
.y114{bottom:828.614700px;}
.y52{bottom:830.765537px;}
.y2b{bottom:832.565451px;}
.ye3{bottom:835.805297px;}
.y17e{bottom:837.425220px;}
.y133{bottom:840.845100px;}
.yfa{bottom:847.324750px;}
.y6d{bottom:847.864725px;}
.y1d5{bottom:855.064383px;}
.y170{bottom:856.144350px;}
.ye2{bottom:856.504314px;}
.ya5{bottom:857.764254px;}
.y19c{bottom:858.124237px;}
.y256{bottom:860.104200px;}
.y51{bottom:861.904058px;}
.y2a{bottom:862.264041px;}
.y13f{bottom:866.943818px;}
.y17d{bottom:868.563741px;}
.ye1{bottom:877.203331px;}
.yf9{bottom:878.463271px;}
.y6c{bottom:878.823254px;}
.ybc{bottom:879.363224px;}
.y1b8{bottom:880.452150px;}
.y1d4{bottom:886.202903px;}
.y12e{bottom:887.642835px;}
.ya4{bottom:888.722784px;}
.y19b{bottom:889.262758px;}
.y29{bottom:891.962630px;}
.yc4{bottom:892.547550px;}
.y50{bottom:892.907585px;}
.ye0{bottom:897.947345px;}
.y17c{bottom:899.567269px;}
.y8c{bottom:900.287234px;}
.y12d{bottom:908.386850px;}
.yf8{bottom:909.466798px;}
.y6b{bottom:910.006773px;}
.y1d3{bottom:917.206431px;}
.y252{bottom:917.746350px;}
.y15b{bottom:918.106350px;}
.ydf{bottom:918.646362px;}
.ya3{bottom:919.906302px;}
.y19a{bottom:920.266285px;}
.y8b{bottom:921.166243px;}
.yf{bottom:923.686123px;}
.y4f{bottom:924.046106px;}
.y12c{bottom:929.085866px;}
.y28{bottom:930.705789px;}
.y112{bottom:935.025600px;}
.y28b{bottom:937.365450px;}
.yde{bottom:939.345379px;}
.yf7{bottom:940.605319px;}
.y6a{bottom:940.965302px;}
.y8a{bottom:941.865259px;}
.ye{bottom:944.385140px;}
.y4e{bottom:944.745122px;}
.y1d2{bottom:948.344951px;}
.y12b{bottom:949.784883px;}
.ya2{bottom:950.864832px;}
.y27{bottom:951.404806px;}
.y20c{bottom:955.904550px;}
.ydd{bottom:960.044396px;}
.y17b{bottom:961.664319px;}
.y89{bottom:962.564276px;}
.yd{bottom:965.084156px;}
.y12a{bottom:970.483900px;}
.yf6{bottom:971.563849px;}
.y26{bottom:972.103823px;}
.y247{bottom:975.523650px;}
.y1b6{bottom:976.243650px;}
.y4d{bottom:977.503566px;}
.y1d1{bottom:979.303481px;}
.ydc{bottom:980.743412px;}
.ya1{bottom:982.003353px;}
.y199{bottom:982.363336px;}
.y88{bottom:983.263293px;}
.yc{bottom:985.783173px;}
.y129{bottom:991.182917px;}
.yc2{bottom:991.722900px;}
.y25{bottom:992.802840px;}
.y4c{bottom:998.202583px;}
.y292{bottom:998.562600px;}
.ydb{bottom:1001.442429px;}
.yf5{bottom:1002.702369px;}
.y69{bottom:1003.062352px;}
.yb{bottom:1006.482190px;}
.y1d0{bottom:1010.442002px;}
.y128{bottom:1011.881933px;}
.ya0{bottom:1012.961882px;}
.y159{bottom:1013.495850px;}
.y24{bottom:1013.501856px;}
.y87{bottom:1016.021737px;}
.y4b{bottom:1018.901600px;}
.y110{bottom:1020.155550px;}
.yda{bottom:1022.141446px;}
.y17a{bottom:1023.761369px;}
.ya{bottom:1027.181207px;}
.y127{bottom:1032.580950px;}
.yf4{bottom:1033.660899px;}
.y23{bottom:1034.200873px;}
.y86{bottom:1036.720753px;}
.y4a{bottom:1039.600617px;}
.y1cf{bottom:1041.400531px;}
.y16c{bottom:1042.840463px;}
.y9f{bottom:1044.100403px;}
.y249{bottom:1044.280350px;}
.y198{bottom:1044.460386px;}
.y9{bottom:1047.880223px;}
.y126{bottom:1053.279967px;}
.yf3{bottom:1054.719898px;}
.y22{bottom:1054.899890px;}
.y290{bottom:1057.419750px;}
.y85{bottom:1058.859702px;}
.y1ce{bottom:1062.099548px;}
.y68{bottom:1065.159403px;}
.y8{bottom:1068.579240px;}
.y125{bottom:1073.978984px;}
.y9e{bottom:1075.058932px;}
.y21{bottom:1075.598907px;}
.y1b4{bottom:1079.552700px;}
.y156{bottom:1084.238496px;}
.y7{bottom:1090.718188px;}
.y124{bottom:1094.678000px;}
.y9d{bottom:1096.117932px;}
.y20{bottom:1096.297923px;}
.yc0{bottom:1100.251800px;}
.y1{bottom:1113.217120px;}
.y123{bottom:1115.377017px;}
.y157{bottom:1118.070900px;}
.y10e{bottom:1126.350450px;}
.y122{bottom:1132.296213px;}
.ybd{bottom:1156.625053px;}
.y16b{bottom:1188.663531px;}
.h12{height:10.079520px;}
.h20{height:19.979040px;}
.h21{height:21.058995px;}
.h51{height:37.978200px;}
.hd{height:39.786196px;}
.h47{height:41.758020px;}
.h46{height:41.938005px;}
.h6a{height:42.657975px;}
.h6e{height:42.693975px;}
.h4d{height:43.557930px;}
.h49{height:44.637885px;}
.h1f{height:46.281708px;}
.h61{height:47.697735px;}
.h10{height:47.986002px;}
.h24{height:48.222241px;}
.h13{height:48.254583px;}
.h8{height:48.804400px;}
.h1e{height:48.901427px;}
.h7{height:49.063138px;}
.h1{height:50.306204px;}
.h59{height:50.397600px;}
.h5a{height:50.433600px;}
.h4f{height:50.577600px;}
.h5f{height:50.613600px;}
.h4e{height:51.693540px;}
.hb{height:52.415479px;}
.ha{height:52.450633px;}
.h3{height:53.048261px;}
.h2{height:53.153725px;}
.h5{height:53.329498px;}
.h63{height:54.897390px;}
.h5d{height:55.437360px;}
.h5c{height:55.617360px;}
.hf{height:56.608717px;}
.h4b{height:56.877300px;}
.h56{height:56.913300px;}
.h6c{height:57.417270px;}
.h65{height:58.137240px;}
.h6{height:59.301206px;}
.h9{height:59.412647px;}
.h48{height:59.433180px;}
.h66{height:60.477120px;}
.h37{height:62.961853px;}
.hc{height:63.087777px;}
.he{height:64.578964px;}
.h54{height:68.036775px;}
.h4{height:69.712587px;}
.h43{height:73.616505px;}
.h4c{height:75.776400px;}
.h57{height:75.956385px;}
.h26{height:84.235950px;}
.h29{height:84.236100px;}
.h45{height:84.415995px;}
.h52{height:85.675935px;}
.h14{height:88.771650px;}
.h31{height:93.991500px;}
.h19{height:94.171500px;}
.h30{height:94.675500px;}
.h28{height:94.855500px;}
.h6b{height:94.891485px;}
.h3d{height:95.035500px;}
.h3c{height:95.071500px;}
.h33{height:97.375350px;}
.h2e{height:97.591350px;}
.h16{height:98.275350px;}
.h18{height:99.175350px;}
.h3a{height:100.111200px;}
.h58{height:101.551170px;}
.h3b{height:102.595050px;}
.h2f{height:103.855050px;}
.h60{height:105.295005px;}
.h25{height:105.475050px;}
.h27{height:105.690900px;}
.h15{height:107.814900px;}
.h1a{height:112.674750px;}
.h64{height:113.754600px;}
.h1d{height:115.410510px;}
.h32{height:115.770600px;}
.h23{height:115.950600px;}
.h2a{height:116.274450px;}
.h40{height:116.310450px;}
.h50{height:124.374090px;}
.h1b{height:125.850150px;}
.h3f{height:126.714000px;}
.h17{height:126.894000px;}
.h34{height:132.869700px;}
.h53{height:136.793505px;}
.h42{height:137.549464px;}
.h1c{height:139.313400px;}
.h36{height:147.988935px;}
.h41{height:148.133025px;}
.h3e{height:148.168950px;}
.h67{height:151.942800px;}
.h5e{height:153.022800px;}
.h35{height:161.452350px;}
.h44{height:170.841900px;}
.h6d{height:173.001750px;}
.h62{height:174.951750px;}
.h4a{height:177.831600px;}
.h5b{height:188.451000px;}
.h2b{height:190.641000px;}
.h38{height:205.220250px;}
.h2c{height:211.879890px;}
.h69{height:214.939800px;}
.h22{height:226.819200px;}
.h11{height:234.018900px;}
.h2d{height:235.818750px;}
.h39{height:243.918450px;}
.h55{height:267.857250px;}
.h68{height:272.537100px;}
.h0{height:1263.000000px;}
.w8{width:20.015055px;}
.w4{width:21.059010px;}
.w20{width:21.094995px;}
.w14{width:30.598500px;}
.w11{width:30.634650px;}
.w1b{width:31.858500px;}
.w16{width:32.218500px;}
.w18{width:33.658350px;}
.w21{width:35.458350px;}
.wf{width:35.998200px;}
.w10{width:36.178350px;}
.w13{width:36.538200px;}
.w12{width:36.718350px;}
.wc{width:37.798200px;}
.wb{width:37.834200px;}
.w6{width:37.978200px;}
.w7{width:38.014200px;}
.w1a{width:38.518200px;}
.w15{width:41.074050px;}
.w19{width:41.578050px;}
.w1d{width:42.477900px;}
.w1c{width:42.478050px;}
.w17{width:42.837900px;}
.w5{width:75.776400px;}
.wa{width:75.956400px;}
.we{width:75.992400px;}
.w22{width:105.690975px;}
.w23{width:158.782500px;}
.w25{width:211.879950px;}
.w24{width:350.158350px;}
.w2{width:397.856100px;}
.wd{width:410.455500px;}
.w1e{width:410.665500px;}
.w1f{width:432.084450px;}
.w9{width:450.443550px;}
.w1{width:892.397550px;}
.w3{width:892.397653px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x13{left:3.959817px;}
.x57{left:6.659740px;}
.x5d{left:8.459576px;}
.xd{left:10.799484px;}
.x51{left:15.149318px;}
.x59{left:16.739176px;}
.x5f{left:18.179149px;}
.x4e{left:20.518971px;}
.x1d{left:22.498992px;}
.x56{left:25.603840px;}
.x5c{left:27.358679px;}
.x6f{left:37.798204px;}
.x1c{left:41.398094px;}
.x82{left:53.508660px;}
.x11{left:56.877298px;}
.x6e{left:58.317230px;}
.x1b{left:60.297196px;}
.x6b{left:69.347910px;}
.x10{left:77.576315px;}
.x70{left:90.766890px;}
.x5{left:95.791436px;}
.x12{left:109.881975px;}
.xf{left:115.590509px;}
.x8{left:122.790154px;}
.x81{left:138.629415px;}
.x35{left:139.889355px;}
.x44{left:143.669175px;}
.x42{left:146.729030px;}
.x69{left:148.708936px;}
.x9{left:149.788871px;}
.x5b{left:153.073950px;}
.x34{left:158.782457px;}
.x80{left:160.402381px;}
.x43{left:162.742269px;}
.x27{left:165.313350px;}
.x68{left:167.782030px;}
.x7f{left:176.241628px;}
.x41{left:182.052600px;}
.x6c{left:183.981260px;}
.x7e{left:195.500713px;}
.x5a{left:196.631850px;}
.x26{left:204.011550px;}
.x40{left:220.750650px;}
.x7d{left:226.459243px;}
.x58{left:235.330050px;}
.x25{left:242.709600px;}
.x7c{left:246.978268px;}
.x3f{left:259.448850px;}
.x7b{left:265.877370px;}
.x55{left:268.268400px;}
.x24{left:281.407800px;}
.x7a{left:285.001462px;}
.x3e{left:298.192050px;}
.x54{left:310.071450px;}
.x79{left:313.440111px;}
.x23{left:320.151000px;}
.x78{left:329.690550px;}
.x33{left:335.579059px;}
.x53{left:348.769650px;}
.x32{left:356.278076px;}
.x22{left:358.849200px;}
.x77{left:365.868750px;}
.x1{left:373.017268px;}
.x3d{left:374.688450px;}
.x31{left:376.977093px;}
.x52{left:380.088150px;}
.x21{left:397.547250px;}
.x67{left:405.055759px;}
.x3c{left:413.386500px;}
.x30{left:416.395220px;}
.x66{left:424.134853px;}
.x20{left:436.245450px;}
.x76{left:443.265150px;}
.x2{left:448.283692px;}
.x2f{left:452.084700px;}
.x50{left:454.964550px;}
.x3{left:464.302931px;}
.x65{left:468.853950px;}
.x1f{left:474.973650px;}
.x4{left:476.902333px;}
.x75{left:481.993350px;}
.x4f{left:486.313050px;}
.x37{left:489.321743px;}
.x2e{left:490.812900px;}
.x6a{left:494.541495px;}
.x45{left:501.021187px;}
.xa{left:509.840768px;}
.x64{left:512.051850px;}
.x1e{left:513.671850px;}
.x74{left:520.691400px;}
.x4d{left:523.211400px;}
.x2d{left:529.511100px;}
.x1a{left:552.369900px;}
.x63{left:555.249750px;}
.x4c{left:559.929600px;}
.x2c{left:568.209150px;}
.x62{left:587.828250px;}
.x73{left:598.087800px;}
.x2b{left:606.907350px;}
.x61{left:627.066450px;}
.x19{left:632.954933px;}
.x2a{left:645.650550px;}
.x4b{left:654.958888px;}
.x60{left:665.809500px;}
.x18{left:668.458247px;}
.x83{left:670.309350px;}
.x4a{left:674.037982px;}
.x29{left:684.348750px;}
.x17{left:687.537340px;}
.x49{left:693.117075px;}
.x16{left:706.436443px;}
.x5e{left:708.107550px;}
.x72{left:712.196169px;}
.x28{left:723.046800px;}
.x15{left:725.515536px;}
.x48{left:726.955468px;}
.x3b{left:739.914852px;}
.x47{left:742.614724px;}
.x14{left:744.774622px;}
.x71{left:746.034562px;}
.x3a{left:758.993946px;}
.xe{left:761.693818px;}
.x36{left:766.424850px;}
.x39{left:774.473211px;}
.x7{left:776.453103px;}
.xb{left:784.372727px;}
.xc{left:785.842657px;}
.x38{left:846.319785px;}
.x6{left:850.099605px;}
.x6d{left:856.759289px;}
.x46{left:876.918331px;}
@media print{
.v2{vertical-align:-21.118997pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.118997pt;}
.ls1b{letter-spacing:-1.151945pt;}
.ls4{letter-spacing:-0.639970pt;}
.ls1a{letter-spacing:-0.511976pt;}
.ls19{letter-spacing:-0.447979pt;}
.ls29{letter-spacing:-0.383982pt;}
.ls2a{letter-spacing:-0.370926pt;}
.ls33{letter-spacing:-0.321585pt;}
.ls20{letter-spacing:-0.270835pt;}
.ls24{letter-spacing:-0.255988pt;}
.ls34{letter-spacing:-0.235509pt;}
.ls2d{letter-spacing:-0.191991pt;}
.ls22{letter-spacing:-0.135418pt;}
.ls13{letter-spacing:-0.127994pt;}
.ls1f{letter-spacing:-0.094204pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.123642pt;}
.ls1{letter-spacing:0.127994pt;}
.ls16{letter-spacing:0.158968pt;}
.lsc{letter-spacing:0.185962pt;}
.ls5{letter-spacing:0.191991pt;}
.ls23{letter-spacing:0.232949pt;}
.ls21{letter-spacing:0.235509pt;}
.ls3{letter-spacing:0.240117pt;}
.ls0{letter-spacing:0.255988pt;}
.ls1e{letter-spacing:0.270835pt;}
.ls2e{letter-spacing:0.271347pt;}
.ls1c{letter-spacing:0.339611pt;}
.ls32{letter-spacing:0.362649pt;}
.ls31{letter-spacing:2.687872pt;}
.ls18{letter-spacing:3.647827pt;}
.ls25{letter-spacing:3.686225pt;}
.ls28{letter-spacing:3.711824pt;}
.ls11{letter-spacing:3.903815pt;}
.ls2b{letter-spacing:3.967812pt;}
.lse{letter-spacing:4.031808pt;}
.ls27{letter-spacing:4.095805pt;}
.ls2f{letter-spacing:4.202467pt;}
.ls15{letter-spacing:4.282677pt;}
.ls17{letter-spacing:4.351793pt;}
.ls26{letter-spacing:4.415790pt;}
.ls2c{letter-spacing:4.831770pt;}
.ls12{letter-spacing:5.247751pt;}
.ls6{letter-spacing:8.166012pt;}
.ls10{letter-spacing:14.207325pt;}
.ls14{letter-spacing:35.822938pt;}
.ls30{letter-spacing:37.886200pt;}
.lsf{letter-spacing:48.765684pt;}
.lsd{letter-spacing:51.325562pt;}
.ls7{letter-spacing:61.923458pt;}
.lsb{letter-spacing:919.284332pt;}
.ls8{letter-spacing:1015.279772pt;}
.lsa{letter-spacing:1118.919265pt;}
.ls9{letter-spacing:1272.014243pt;}
.ws16{word-spacing:-22.142948pt;}
.ws12{word-spacing:-21.886960pt;}
.ws6{word-spacing:-21.822963pt;}
.ws17{word-spacing:-21.502979pt;}
.ws4{word-spacing:-18.047143pt;}
.ws5{word-spacing:-18.012700pt;}
.ws1{word-spacing:-17.983146pt;}
.wsa{word-spacing:-17.919149pt;}
.ws2{word-spacing:-17.791155pt;}
.ws7{word-spacing:-17.663161pt;}
.ws15{word-spacing:-17.599164pt;}
.ws13{word-spacing:-17.407173pt;}
.ws14{word-spacing:-17.279179pt;}
.ws8{word-spacing:-17.151185pt;}
.wsc{word-spacing:-16.638698pt;}
.wsf{word-spacing:-16.603371pt;}
.wsb{word-spacing:-16.367862pt;}
.wsd{word-spacing:-16.273659pt;}
.ws10{word-spacing:-16.232445pt;}
.ws19{word-spacing:-16.132354pt;}
.wse{word-spacing:-16.097027pt;}
.ws9{word-spacing:-15.779346pt;}
.ws11{word-spacing:-13.823343pt;}
.ws0{word-spacing:-12.160190pt;}
.ws18{word-spacing:-11.598489pt;}
.ws3{word-spacing:0.000000pt;}
._19{margin-left:-4.799772pt;}
._18{margin-left:-3.903815pt;}
._1a{margin-left:-3.007857pt;}
._17{margin-left:-2.065822pt;}
._2{margin-left:-0.942035pt;}
._1{width:0.906624pt;}
._12{width:2.261226pt;}
._1c{width:3.242513pt;}
._1b{width:4.565116pt;}
._c{width:5.503739pt;}
._d{width:6.993161pt;}
._f{width:8.329844pt;}
._a{width:9.983526pt;}
._e{width:11.028809pt;}
._b{width:12.290829pt;}
._10{width:13.311368pt;}
._14{width:14.253403pt;}
._13{width:15.231276pt;}
._1e{width:16.493297pt;}
._11{width:18.857771pt;}
._1d{width:20.223039pt;}
._16{width:21.869041pt;}
._15{width:23.038906pt;}
._20{width:24.340177pt;}
._1f{width:25.257467pt;}
._25{width:27.134711pt;}
._24{width:28.030668pt;}
._22{width:31.578660pt;}
._21{width:32.574453pt;}
._23{width:82.748069pt;}
._7{width:887.787161pt;}
._8{width:1393.537217pt;}
._6{width:1627.208037pt;}
._5{width:1662.854344pt;}
._4{width:1780.416760pt;}
._0{width:1823.038735pt;}
._9{width:1947.256834pt;}
._3{width:1954.680482pt;}
.fs2{font-size:42.877963pt;}
.fs6{font-size:47.997720pt;}
.fs3{font-size:58.877203pt;}
.fs5{font-size:59.005197pt;}
.fs0{font-size:63.996960pt;}
.fs4{font-size:64.124954pt;}
.fs7{font-size:69.116717pt;}
.fs1{font-size:85.115957pt;}
.y0{bottom:0.000000pt;}
.y233{bottom:3.039798pt;}
.y219{bottom:3.039805pt;}
.y2b0{bottom:3.039819pt;}
.y244{bottom:3.039822pt;}
.y298{bottom:3.039825pt;}
.y273{bottom:3.039836pt;}
.y25c{bottom:3.039843pt;}
.y2bc{bottom:3.039861pt;}
.y22e{bottom:3.039894pt;}
.y289{bottom:3.039910pt;}
.y2b9{bottom:3.199821pt;}
.y260{bottom:3.199873pt;}
.y255{bottom:3.199897pt;}
.y2a4{bottom:3.199915pt;}
.yd9{bottom:3.519829pt;}
.y1cd{bottom:3.519836pt;}
.y223{bottom:5.466365pt;}
.y1c6{bottom:7.674303pt;}
.ybf{bottom:8.959566pt;}
.y9c{bottom:8.959620pt;}
.y13e{bottom:10.559461pt;}
.y241{bottom:12.479422pt;}
.y267{bottom:14.239373pt;}
.y23a{bottom:14.399382pt;}
.y237{bottom:15.359304pt;}
.y197{bottom:17.759134pt;}
.yd4{bottom:17.759148pt;}
.y20f{bottom:18.079179pt;}
.y120{bottom:18.399120pt;}
.y2af{bottom:19.839021pt;}
.y22d{bottom:19.839096pt;}
.y232{bottom:19.998993pt;}
.y218{bottom:19.998999pt;}
.y243{bottom:19.999017pt;}
.y297{bottom:19.999020pt;}
.y2b8{bottom:19.999023pt;}
.y272{bottom:19.999030pt;}
.y25b{bottom:19.999037pt;}
.y2bb{bottom:19.999055pt;}
.y25f{bottom:19.999075pt;}
.y254{bottom:19.999099pt;}
.y288{bottom:19.999105pt;}
.y2a3{bottom:19.999117pt;}
.y179{bottom:20.159026pt;}
.yf2{bottom:20.959020pt;}
.y222{bottom:22.265567pt;}
.y29b{bottom:23.038926pt;}
.y21f{bottom:23.358834pt;}
.y21e{bottom:23.518900pt;}
.y2b4{bottom:24.158789pt;}
.y2ca{bottom:24.158809pt;}
.y2c5{bottom:24.158877pt;}
.y2cb{bottom:24.158915pt;}
.y2c8{bottom:24.198842pt;}
.y234{bottom:24.958760pt;}
.y225{bottom:25.918775pt;}
.y9b{bottom:27.358746pt;}
.y28a{bottom:28.638605pt;}
.y13d{bottom:28.958587pt;}
.y285{bottom:29.278575pt;}
.y240{bottom:29.278624pt;}
.y268{bottom:31.038468pt;}
.y27f{bottom:31.038516pt;}
.y266{bottom:31.038575pt;}
.y280{bottom:31.198541pt;}
.y239{bottom:31.198584pt;}
.y27d{bottom:31.238481pt;}
.y236{bottom:32.198504pt;}
.y20e{bottom:34.878381pt;}
.y291{bottom:35.038354pt;}
.y276{bottom:35.518376pt;}
.y275{bottom:35.678264pt;}
.y196{bottom:36.158260pt;}
.y231{bottom:36.798195pt;}
.y217{bottom:36.798201pt;}
.y2ae{bottom:36.798216pt;}
.y296{bottom:36.798222pt;}
.y2b7{bottom:36.798225pt;}
.y271{bottom:36.798232pt;}
.y25a{bottom:36.798239pt;}
.y2ba{bottom:36.798257pt;}
.y25e{bottom:36.798277pt;}
.y22c{bottom:36.798290pt;}
.y253{bottom:36.798301pt;}
.y287{bottom:36.798307pt;}
.y257{bottom:36.838200pt;}
.y2a2{bottom:36.958312pt;}
.y2be{bottom:37.278289pt;}
.y299{bottom:37.918169pt;}
.y189{bottom:38.078187pt;}
.y178{bottom:38.598150pt;}
.y221{bottom:39.064769pt;}
.yf1{bottom:39.358146pt;}
.y29a{bottom:39.998120pt;}
.y169{bottom:41.912680pt;}
.y264{bottom:42.744579pt;}
.y21c{bottom:44.317839pt;}
.y1cb{bottom:45.117857pt;}
.y246{bottom:45.437856pt;}
.y9a{bottom:45.757872pt;}
.y284{bottom:46.077777pt;}
.y23f{bottom:46.077826pt;}
.y24b{bottom:46.717790pt;}
.y24a{bottom:46.717820pt;}
.y13c{bottom:47.397711pt;}
.y6{bottom:50.717591pt;}
.y20d{bottom:51.677583pt;}
.y230{bottom:53.597397pt;}
.y2ad{bottom:53.597418pt;}
.y216{bottom:53.757395pt;}
.y295{bottom:53.757416pt;}
.y2b6{bottom:53.757420pt;}
.y270{bottom:53.757427pt;}
.y259{bottom:53.757433pt;}
.y25d{bottom:53.757471pt;}
.y2a1{bottom:53.757514pt;}
.y195{bottom:54.557386pt;}
.y177{bottom:56.997276pt;}
.yf0{bottom:57.757272pt;}
.y263{bottom:59.703773pt;}
.y21b{bottom:61.277033pt;}
.y245{bottom:62.397051pt;}
.y283{bottom:63.036971pt;}
.y23e{bottom:63.037020pt;}
.y1ca{bottom:63.356990pt;}
.y99{bottom:64.156998pt;}
.yd2{bottom:65.591547pt;}
.y13b{bottom:65.796837pt;}
.y11b{bottom:67.996828pt;}
.y113{bottom:68.156744pt;}
.yd7{bottom:68.956724pt;}
.y1f{bottom:69.276709pt;}
.y5{bottom:69.436702pt;}
.y215{bottom:70.556597pt;}
.y294{bottom:70.556618pt;}
.y2a0{bottom:70.556716pt;}
.y2b5{bottom:70.583287pt;}
.y27b{bottom:71.676618pt;}
.y2c6{bottom:72.636612pt;}
.y194{bottom:72.956512pt;}
.y176{bottom:75.396402pt;}
.yef{bottom:76.156398pt;}
.y262{bottom:76.502975pt;}
.y117{bottom:77.436299pt;}
.y1bb{bottom:77.436377pt;}
.yc1{bottom:77.468259pt;}
.y1bd{bottom:77.596279pt;}
.y1b9{bottom:77.628332pt;}
.y282{bottom:79.836173pt;}
.y23d{bottom:79.836222pt;}
.y1c9{bottom:80.156192pt;}
.y15e{bottom:81.948136pt;}
.ycb{bottom:82.268023pt;}
.y1b5{bottom:82.268105pt;}
.y15c{bottom:82.556108pt;}
.y98{bottom:82.556124pt;}
.y13a{bottom:84.195963pt;}
.y1b7{bottom:84.315970pt;}
.y164{bottom:84.955994pt;}
.y158{bottom:85.307934pt;}
.yd6{bottom:85.915919pt;}
.yc5{bottom:85.915961pt;}
.y26e{bottom:86.235967pt;}
.yc9{bottom:86.555939pt;}
.y111{bottom:86.875860pt;}
.y119{bottom:87.067801pt;}
.y115{bottom:87.067806pt;}
.y214{bottom:87.355799pt;}
.y293{bottom:87.355820pt;}
.y29f{bottom:87.515910pt;}
.y1e{bottom:87.675835pt;}
.y4{bottom:87.995820pt;}
.y27a{bottom:88.475820pt;}
.y2c3{bottom:89.435814pt;}
.y15a{bottom:90.715693pt;}
.y28f{bottom:91.195688pt;}
.y193{bottom:91.395636pt;}
.y1cc{bottom:91.995627pt;}
.y22a{bottom:93.755492pt;}
.y175{bottom:93.795528pt;}
.yc3{bottom:94.395504pt;}
.ybe{bottom:94.395520pt;}
.yee{bottom:94.595522pt;}
.y10f{bottom:96.187467pt;}
.y11d{bottom:96.475348pt;}
.y1c3{bottom:96.507456pt;}
.y23c{bottom:96.795417pt;}
.y1c8{bottom:97.115387pt;}
.yd8{bottom:97.755360pt;}
.ycd{bottom:98.715363pt;}
.y97{bottom:100.955250pt;}
.yd3{bottom:100.987203pt;}
.y162{bottom:101.307209pt;}
.y160{bottom:101.755202pt;}
.y139{bottom:102.595089pt;}
.yd5{bottom:102.715121pt;}
.y26d{bottom:103.035169pt;}
.y213{bottom:104.354992pt;}
.y29e{bottom:104.355110pt;}
.y279{bottom:105.275022pt;}
.y1c1{bottom:105.755009pt;}
.y1d{bottom:106.234954pt;}
.y2c2{bottom:106.275014pt;}
.y3{bottom:106.394946pt;}
.y248{bottom:107.834887pt;}
.y28e{bottom:108.154883pt;}
.y192{bottom:109.794762pt;}
.ycf{bottom:110.426818pt;}
.y229{bottom:110.554694pt;}
.yc7{bottom:111.194684pt;}
.y174{bottom:112.194654pt;}
.yed{bottom:112.994648pt;}
.y1c7{bottom:115.386514pt;}
.y166{bottom:116.666403pt;}
.y1f4{bottom:118.714361pt;}
.y96{bottom:119.354376pt;}
.y26c{bottom:119.994364pt;}
.y138{bottom:120.994215pt;}
.y212{bottom:121.154194pt;}
.y29d{bottom:121.314304pt;}
.y278{bottom:122.274214pt;}
.yd1{bottom:122.394163pt;}
.y2c1{bottom:123.234209pt;}
.y1c5{bottom:124.794065pt;}
.y1bf{bottom:124.826056pt;}
.y2{bottom:124.826070pt;}
.y28d{bottom:124.954085pt;}
.y18b{bottom:125.306048pt;}
.y228{bottom:127.353896pt;}
.ybb{bottom:127.705934pt;}
.y1b3{bottom:128.025918pt;}
.y191{bottom:128.193888pt;}
.y16a{bottom:130.105811pt;}
.y1c4{bottom:130.580467pt;}
.y173{bottom:130.593780pt;}
.yec{bottom:131.393774pt;}
.y84{bottom:135.700221pt;}
.y155{bottom:135.860213pt;}
.y132{bottom:136.340190pt;}
.y26b{bottom:136.793566pt;}
.y95{bottom:137.793500pt;}
.y211{bottom:138.113388pt;}
.y67{bottom:138.260099pt;}
.y281{bottom:138.260133pt;}
.y49{bottom:138.580084pt;}
.ye7{bottom:138.740076pt;}
.y137{bottom:139.393341pt;}
.y2c0{bottom:140.033411pt;}
.y28c{bottom:141.753287pt;}
.y168{bottom:141.913251pt;}
.y16f{bottom:142.259909pt;}
.y205{bottom:143.699841pt;}
.y2ab{bottom:144.179823pt;}
.y227{bottom:144.313090pt;}
.y1f3{bottom:146.419711pt;}
.y190{bottom:146.593014pt;}
.y172{bottom:148.992906pt;}
.yeb{bottom:149.792900pt;}
.y90{bottom:151.699461pt;}
.y1eb{bottom:152.979400pt;}
.y26a{bottom:153.752760pt;}
.y83{bottom:154.099347pt;}
.yba{bottom:155.219293pt;}
.y1b2{bottom:155.539278pt;}
.ye6{bottom:155.699271pt;}
.y94{bottom:156.192626pt;}
.y251{bottom:156.952569pt;}
.y48{bottom:156.979210pt;}
.y136{bottom:157.792467pt;}
.y1c{bottom:158.419141pt;}
.y16e{bottom:159.379096pt;}
.y2aa{bottom:161.139017pt;}
.y204{bottom:162.098967pt;}
.y11f{bottom:162.578955pt;}
.y154{bottom:163.378906pt;}
.y20b{bottom:164.818837pt;}
.y18f{bottom:164.992140pt;}
.y23b{bottom:165.298800pt;}
.y66{bottom:165.778792pt;}
.y171{bottom:167.392032pt;}
.y131{bottom:167.538708pt;}
.yea{bottom:168.192026pt;}
.y8f{bottom:168.818647pt;}
.yd0{bottom:168.818667pt;}
.y250{bottom:173.791769pt;}
.y1f2{bottom:173.938404pt;}
.y167{bottom:174.098400pt;}
.y93{bottom:174.591752pt;}
.y47{bottom:175.378336pt;}
.y135{bottom:176.191593pt;}
.y1b{bottom:176.498283pt;}
.y2b2{bottom:177.298218pt;}
.y2a9{bottom:177.938219pt;}
.y1ea{bottom:180.498093pt;}
.y286{bottom:181.298000pt;}
.y121{bottom:181.458049pt;}
.y82{bottom:181.778032pt;}
.y8e{bottom:182.577994pt;}
.yb9{bottom:182.897979pt;}
.y1b1{bottom:183.217963pt;}
.y18e{bottom:183.391266pt;}
.y16d{bottom:186.417811pt;}
.ye9{bottom:186.591152pt;}
.y24f{bottom:190.750964pt;}
.y153{bottom:191.057591pt;}
.y92{bottom:192.990878pt;}
.y1a{bottom:193.457477pt;}
.y46{bottom:193.777462pt;}
.y134{bottom:194.590719pt;}
.y2a8{bottom:194.737421pt;}
.y130{bottom:194.897409pt;}
.y203{bottom:198.897219pt;}
.y1f1{bottom:201.617089pt;}
.y18d{bottom:201.790392pt;}
.y11e{bottom:207.390133pt;}
.y24e{bottom:207.550166pt;}
.y1e9{bottom:208.176778pt;}
.y18a{bottom:208.976740pt;}
.y81{bottom:209.296725pt;}
.y19{bottom:210.256679pt;}
.yb8{bottom:210.416671pt;}
.y1b0{bottom:210.736656pt;}
.y2a7{bottom:211.696616pt;}
.y45{bottom:212.176588pt;}
.y202{bottom:217.296345pt;}
.y152{bottom:218.576284pt;}
.y20a{bottom:220.016215pt;}
.y65{bottom:220.976170pt;}
.y24d{bottom:224.349368pt;}
.y18{bottom:227.055881pt;}
.y2a6{bottom:228.495818pt;}
.y10d{bottom:228.815797pt;}
.y1f0{bottom:229.135782pt;}
.y44{bottom:230.575714pt;}
.y277{bottom:232.495600pt;}
.y2cc{bottom:232.815607pt;}
.y8d{bottom:235.375486pt;}
.y1e8{bottom:235.695471pt;}
.ye5{bottom:235.855463pt;}
.y80{bottom:236.975410pt;}
.yb7{bottom:238.095357pt;}
.y1af{bottom:238.415341pt;}
.y242{bottom:242.095200pt;}
.y17{bottom:244.175068pt;}
.y151{bottom:246.254969pt;}
.y12f{bottom:247.854893pt;}
.y2bf{bottom:248.494800pt;}
.y64{bottom:248.654855pt;}
.y43{bottom:248.974840pt;}
.y201{bottom:254.094597pt;}
.y10c{bottom:256.494483pt;}
.y1ef{bottom:256.814467pt;}
.y16{bottom:262.574194pt;}
.y1c2{bottom:262.902133pt;}
.y1e7{bottom:263.374156pt;}
.y7f{bottom:264.494103pt;}
.yb6{bottom:265.614049pt;}
.y1ae{bottom:265.934034pt;}
.y42{bottom:267.373966pt;}
.y200{bottom:272.493723pt;}
.y150{bottom:273.773662pt;}
.y209{bottom:275.213593pt;}
.y63{bottom:276.173548pt;}
.y238{bottom:276.493467pt;}
.y27e{bottom:278.093467pt;}
.y15{bottom:280.973320pt;}
.y10b{bottom:284.013175pt;}
.y1ee{bottom:284.333160pt;}
.y41{bottom:285.773092pt;}
.y2c9{bottom:287.213067pt;}
.y1e6{bottom:290.892849pt;}
.y7e{bottom:292.172788pt;}
.yb5{bottom:293.292735pt;}
.yce{bottom:293.300667pt;}
.y1ad{bottom:293.612719pt;}
.y14{bottom:299.372446pt;}
.y14f{bottom:301.452347pt;}
.y62{bottom:303.852233pt;}
.y40{bottom:304.172218pt;}
.y1ff{bottom:309.291975pt;}
.y10a{bottom:311.691861pt;}
.y1ed{bottom:312.011845pt;}
.y13{bottom:317.771572pt;}
.y165{bottom:318.259600pt;}
.y1e5{bottom:318.571534pt;}
.y7d{bottom:319.691481pt;}
.yb4{bottom:320.811427pt;}
.y1ac{bottom:321.131412pt;}
.y235{bottom:322.091333pt;}
.y3f{bottom:322.571344pt;}
.y27c{bottom:323.531333pt;}
.y2c7{bottom:325.771200pt;}
.y1fe{bottom:327.691101pt;}
.y14e{bottom:328.971040pt;}
.y208{bottom:330.410971pt;}
.y61{bottom:331.370926pt;}
.y12{bottom:336.170698pt;}
.y7c{bottom:338.090607pt;}
.y109{bottom:339.210553pt;}
.y1ec{bottom:339.530538pt;}
.y3e{bottom:340.970470pt;}
.y1e4{bottom:346.130225pt;}
.yb3{bottom:348.530111pt;}
.y1ab{bottom:348.850096pt;}
.y11{bottom:354.609822pt;}
.y14d{bottom:356.689723pt;}
.y60{bottom:359.089609pt;}
.y3d{bottom:359.409594pt;}
.y2c4{bottom:364.369333pt;}
.y1fd{bottom:364.529351pt;}
.y1c0{bottom:366.929200pt;}
.y108{bottom:366.929237pt;}
.y7b{bottom:367.249221pt;}
.y226{bottom:368.849200pt;}
.y269{bottom:369.169067pt;}
.y10{bottom:369.649107pt;}
.y1e3{bottom:373.808910pt;}
.yb2{bottom:376.048803pt;}
.y1aa{bottom:376.368788pt;}
.y11c{bottom:377.488800pt;}
.y3c{bottom:377.808720pt;}
.y1fc{bottom:382.928477pt;}
.y14c{bottom:384.208416pt;}
.y207{bottom:385.648347pt;}
.y5f{bottom:386.608302pt;}
.y107{bottom:394.447929pt;}
.y7a{bottom:394.767914pt;}
.y3b{bottom:396.207846pt;}
.y1e2{bottom:401.327603pt;}
.y2bd{bottom:402.927467pt;}
.yb1{bottom:403.727489pt;}
.y1a9{bottom:404.047473pt;}
.ycc{bottom:405.807333pt;}
.y22f{bottom:408.207333pt;}
.y14b{bottom:411.887101pt;}
.y5e{bottom:414.286987pt;}
.y3a{bottom:414.606972pt;}
.y274{bottom:419.086800pt;}
.y1fb{bottom:419.726729pt;}
.y106{bottom:422.126615pt;}
.y79{bottom:422.446599pt;}
.y1e1{bottom:429.006288pt;}
.yb0{bottom:431.246181pt;}
.y1a8{bottom:431.566166pt;}
.y39{bottom:433.006098pt;}
.y163{bottom:437.165867pt;}
.y1fa{bottom:438.125855pt;}
.y14a{bottom:439.405794pt;}
.y206{bottom:440.845725pt;}
.y5d{bottom:441.805680pt;}
.y105{bottom:449.645307pt;}
.y78{bottom:449.965292pt;}
.y38{bottom:451.405224pt;}
.y2a5{bottom:454.605067pt;}
.y1e0{bottom:456.524981pt;}
.yaf{bottom:458.924867pt;}
.y1a7{bottom:459.244851pt;}
.y5c{bottom:466.444509pt;}
.y149{bottom:467.084479pt;}
.y188{bottom:468.364418pt;}
.y26f{bottom:469.164400pt;}
.y37{bottom:469.804350pt;}
.y1f9{bottom:474.924107pt;}
.y22b{bottom:476.364000pt;}
.y104{bottom:477.323993pt;}
.y77{bottom:477.643977pt;}
.y1be{bottom:480.198533pt;}
.y11a{bottom:481.483733pt;}
.y1df{bottom:484.203666pt;}
.yae{bottom:486.443559pt;}
.y1a6{bottom:486.763544pt;}
.y36{bottom:488.363468pt;}
.y5b{bottom:490.123385pt;}
.y1f8{bottom:493.323233pt;}
.y148{bottom:494.603172pt;}
.y187{bottom:496.043103pt;}
.y103{bottom:504.842685pt;}
.y76{bottom:505.162670pt;}
.y2b1{bottom:505.802667pt;}
.yca{bottom:506.597333pt;}
.y35{bottom:506.922587pt;}
.y1de{bottom:511.722359pt;}
.yad{bottom:513.962252pt;}
.y1a5{bottom:514.442229pt;}
.y5a{bottom:517.802070pt;}
.y147{bottom:522.121865pt;}
.y186{bottom:523.561796pt;}
.y161{bottom:524.356400pt;}
.y34{bottom:525.481705pt;}
.y224{bottom:527.561600pt;}
.y1f7{bottom:530.121485pt;}
.y102{bottom:532.361378pt;}
.y75{bottom:532.841355pt;}
.y261{bottom:537.321200pt;}
.y1dd{bottom:539.401044pt;}
.yac{bottom:541.640937pt;}
.y1a4{bottom:541.960922pt;}
.y33{bottom:544.040823pt;}
.y59{bottom:545.320763pt;}
.y1f6{bottom:548.520611pt;}
.y146{bottom:549.800550pt;}
.y185{bottom:551.240481pt;}
.y118{bottom:556.994933pt;}
.y101{bottom:560.040063pt;}
.y74{bottom:560.360048pt;}
.y1dc{bottom:566.919737pt;}
.y220{bottom:567.879733pt;}
.yab{bottom:569.186296pt;}
.y1a3{bottom:569.666273pt;}
.y32{bottom:570.466235pt;}
.y58{bottom:573.026113pt;}
.y145{bottom:577.345908pt;}
.y184{bottom:578.785840pt;}
.y265{bottom:582.785600pt;}
.y1f5{bottom:585.345528pt;}
.y100{bottom:587.585422pt;}
.y73{bottom:588.065399pt;}
.y2b3{bottom:590.785333pt;}
.yc8{bottom:591.105200pt;}
.y1db{bottom:594.625087pt;}
.y31{bottom:596.864981pt;}
.y1a2{bottom:597.184966pt;}
.y57{bottom:600.544806pt;}
.y144{bottom:605.024593pt;}
.y183{bottom:606.464525pt;}
.y1bc{bottom:612.544267pt;}
.yff{bottom:615.264107pt;}
.y72{bottom:615.584092pt;}
.y21a{bottom:621.503867pt;}
.y1da{bottom:622.143780pt;}
.y30{bottom:623.263727pt;}
.yaa{bottom:624.383674pt;}
.y1a1{bottom:624.863651pt;}
.y15f{bottom:627.903467pt;}
.y56{bottom:628.063499pt;}
.y24c{bottom:628.223467pt;}
.y2ac{bottom:629.503467pt;}
.y143{bottom:632.543286pt;}
.y182{bottom:633.983218pt;}
.yfe{bottom:642.782800pt;}
.y71{bottom:643.262777pt;}
.y2f{bottom:649.662473pt;}
.y1d9{bottom:649.822465pt;}
.y116{bottom:651.582400pt;}
.ya9{bottom:652.062359pt;}
.y1a0{bottom:652.382344pt;}
.y55{bottom:655.742184pt;}
.y21d{bottom:659.262000pt;}
.y142{bottom:660.221971pt;}
.y181{bottom:661.661903pt;}
.yfd{bottom:670.461485pt;}
.y70{bottom:670.781470pt;}
.y91{bottom:672.701333pt;}
.y2e{bottom:676.221211pt;}
.y1d8{bottom:677.341158pt;}
.ya8{bottom:679.581052pt;}
.yc6{bottom:679.901067pt;}
.y19f{bottom:680.061029pt;}
.y54{bottom:683.260877pt;}
.y141{bottom:687.740664pt;}
.y180{bottom:689.180596pt;}
.y2d{bottom:694.780330pt;}
.y258{bottom:696.380267pt;}
.y210{bottom:697.180267pt;}
.y29c{bottom:697.500133pt;}
.y1ba{bottom:697.660133pt;}
.yfc{bottom:697.980178pt;}
.y6f{bottom:698.460155pt;}
.y1d7{bottom:704.859851pt;}
.ya7{bottom:707.259737pt;}
.y19e{bottom:707.579722pt;}
.y53{bottom:710.939562pt;}
.ye8{bottom:715.419333pt;}
.y140{bottom:715.419349pt;}
.y18c{bottom:716.219333pt;}
.y17f{bottom:716.859281pt;}
.y2c{bottom:721.499060pt;}
.ye4{bottom:724.538916pt;}
.yfb{bottom:725.658863pt;}
.y6e{bottom:725.978848pt;}
.y15d{bottom:731.906533pt;}
.y1d6{bottom:732.538536pt;}
.ya6{bottom:734.778430pt;}
.y19d{bottom:735.258407pt;}
.y114{bottom:736.546400pt;}
.y52{bottom:738.458255pt;}
.y2b{bottom:740.058179pt;}
.ye3{bottom:742.938042pt;}
.y17e{bottom:744.377974pt;}
.y133{bottom:747.417867pt;}
.yfa{bottom:753.177556pt;}
.y6d{bottom:753.657533pt;}
.y1d5{bottom:760.057229pt;}
.y170{bottom:761.017200pt;}
.ye2{bottom:761.337168pt;}
.ya5{bottom:762.457115pt;}
.y19c{bottom:762.777100pt;}
.y256{bottom:764.537067pt;}
.y51{bottom:766.136940pt;}
.y2a{bottom:766.456925pt;}
.y13f{bottom:770.616727pt;}
.y17d{bottom:772.056659pt;}
.ye1{bottom:779.736294pt;}
.yf9{bottom:780.856241pt;}
.y6c{bottom:781.176226pt;}
.ybc{bottom:781.656199pt;}
.y1b8{bottom:782.624133pt;}
.y1d4{bottom:787.735914pt;}
.y12e{bottom:789.015853pt;}
.ya4{bottom:789.975808pt;}
.y19b{bottom:790.455785pt;}
.y29{bottom:792.855671pt;}
.yc4{bottom:793.375600pt;}
.y50{bottom:793.695631pt;}
.ye0{bottom:798.175418pt;}
.y17c{bottom:799.615350pt;}
.y8c{bottom:800.255319pt;}
.y12d{bottom:807.454977pt;}
.yf8{bottom:808.414932pt;}
.y6b{bottom:808.894909pt;}
.y1d3{bottom:815.294605pt;}
.y252{bottom:815.774533pt;}
.y15b{bottom:816.094533pt;}
.ydf{bottom:816.574544pt;}
.ya3{bottom:817.694491pt;}
.y19a{bottom:818.014476pt;}
.y8b{bottom:818.814438pt;}
.yf{bottom:821.054331pt;}
.y4f{bottom:821.374316pt;}
.y12c{bottom:825.854103pt;}
.y28{bottom:827.294035pt;}
.y112{bottom:831.133867pt;}
.y28b{bottom:833.213733pt;}
.yde{bottom:834.973670pt;}
.yf7{bottom:836.093617pt;}
.y6a{bottom:836.413602pt;}
.y8a{bottom:837.213564pt;}
.ye{bottom:839.453457pt;}
.y4e{bottom:839.773442pt;}
.y1d2{bottom:842.973290pt;}
.y12b{bottom:844.253229pt;}
.ya2{bottom:845.213184pt;}
.y27{bottom:845.693161pt;}
.y20c{bottom:849.692933pt;}
.ydd{bottom:853.372796pt;}
.y17b{bottom:854.812728pt;}
.y89{bottom:855.612690pt;}
.yd{bottom:857.852583pt;}
.y12a{bottom:862.652355pt;}
.yf6{bottom:863.612310pt;}
.y26{bottom:864.092287pt;}
.y247{bottom:867.132133pt;}
.y1b6{bottom:867.772133pt;}
.y4d{bottom:868.892059pt;}
.y1d1{bottom:870.491983pt;}
.ydc{bottom:871.771922pt;}
.ya1{bottom:872.891869pt;}
.y199{bottom:873.211854pt;}
.y88{bottom:874.011816pt;}
.yc{bottom:876.251709pt;}
.y129{bottom:881.051481pt;}
.yc2{bottom:881.531467pt;}
.y25{bottom:882.491413pt;}
.y4c{bottom:887.291185pt;}
.y292{bottom:887.611200pt;}
.ydb{bottom:890.171048pt;}
.yf5{bottom:891.290995pt;}
.y69{bottom:891.610980pt;}
.yb{bottom:894.650835pt;}
.y1d0{bottom:898.170668pt;}
.y128{bottom:899.450607pt;}
.ya0{bottom:900.410562pt;}
.y159{bottom:900.885200pt;}
.y24{bottom:900.890539pt;}
.y87{bottom:903.130433pt;}
.y4b{bottom:905.690311pt;}
.y110{bottom:906.804933pt;}
.yda{bottom:908.570174pt;}
.y17a{bottom:910.010106pt;}
.ya{bottom:913.049961pt;}
.y127{bottom:917.849733pt;}
.yf4{bottom:918.809688pt;}
.y23{bottom:919.289665pt;}
.y86{bottom:921.529559pt;}
.y4a{bottom:924.089437pt;}
.y1cf{bottom:925.689361pt;}
.y16c{bottom:926.969300pt;}
.y9f{bottom:928.089247pt;}
.y249{bottom:928.249200pt;}
.y198{bottom:928.409232pt;}
.y9{bottom:931.449087pt;}
.y126{bottom:936.248859pt;}
.yf3{bottom:937.528799pt;}
.y22{bottom:937.688791pt;}
.y290{bottom:939.928667pt;}
.y85{bottom:941.208624pt;}
.y1ce{bottom:944.088487pt;}
.y68{bottom:946.808358pt;}
.y8{bottom:949.848213pt;}
.y125{bottom:954.647985pt;}
.y9e{bottom:955.607940pt;}
.y21{bottom:956.087917pt;}
.y1b4{bottom:959.602400pt;}
.y156{bottom:963.767552pt;}
.y7{bottom:969.527279pt;}
.y124{bottom:973.047111pt;}
.y9d{bottom:974.327051pt;}
.y20{bottom:974.487043pt;}
.yc0{bottom:978.001600pt;}
.y1{bottom:989.526329pt;}
.y123{bottom:991.446237pt;}
.y157{bottom:993.840800pt;}
.y10e{bottom:1001.200400pt;}
.y122{bottom:1006.485523pt;}
.ybd{bottom:1028.111158pt;}
.y16b{bottom:1056.589805pt;}
.h12{height:8.959573pt;}
.h20{height:17.759147pt;}
.h21{height:18.719107pt;}
.h51{height:33.758400pt;}
.hd{height:35.365508pt;}
.h47{height:37.118240pt;}
.h46{height:37.278227pt;}
.h6a{height:37.918200pt;}
.h6e{height:37.950200pt;}
.h4d{height:38.718160pt;}
.h49{height:39.678120pt;}
.h1f{height:41.139296pt;}
.h61{height:42.397987pt;}
.h10{height:42.654224pt;}
.h24{height:42.864214pt;}
.h13{height:42.892962pt;}
.h8{height:43.381689pt;}
.h1e{height:43.467935pt;}
.h7{height:43.611678pt;}
.h1{height:44.716626pt;}
.h59{height:44.797867pt;}
.h5a{height:44.829867pt;}
.h4f{height:44.957867pt;}
.h5f{height:44.989867pt;}
.h4e{height:45.949813pt;}
.hb{height:46.591537pt;}
.ha{height:46.622785pt;}
.h3{height:47.154010pt;}
.h2{height:47.247756pt;}
.h5{height:47.403998pt;}
.h63{height:48.797680pt;}
.h5d{height:49.277653pt;}
.h5c{height:49.437653pt;}
.hf{height:50.318860pt;}
.h4b{height:50.557600pt;}
.h56{height:50.589600pt;}
.h6c{height:51.037573pt;}
.h65{height:51.677547pt;}
.h6{height:52.712184pt;}
.h9{height:52.811241pt;}
.h48{height:52.829493pt;}
.h66{height:53.757440pt;}
.h37{height:55.966091pt;}
.hc{height:56.078024pt;}
.he{height:57.403523pt;}
.h54{height:60.477133pt;}
.h4{height:61.966744pt;}
.h43{height:65.436893pt;}
.h4c{height:67.356800pt;}
.h57{height:67.516787pt;}
.h26{height:74.876400pt;}
.h29{height:74.876533pt;}
.h45{height:75.036440pt;}
.h52{height:76.156387pt;}
.h14{height:78.908133pt;}
.h31{height:83.548000pt;}
.h19{height:83.708000pt;}
.h30{height:84.156000pt;}
.h28{height:84.316000pt;}
.h6b{height:84.347987pt;}
.h3d{height:84.476000pt;}
.h3c{height:84.508000pt;}
.h33{height:86.555867pt;}
.h2e{height:86.747867pt;}
.h16{height:87.355867pt;}
.h18{height:88.155867pt;}
.h3a{height:88.987733pt;}
.h58{height:90.267707pt;}
.h3b{height:91.195600pt;}
.h2f{height:92.315600pt;}
.h60{height:93.595560pt;}
.h25{height:93.755600pt;}
.h27{height:93.947467pt;}
.h15{height:95.835467pt;}
.h1a{height:100.155333pt;}
.h64{height:101.115200pt;}
.h1d{height:102.587120pt;}
.h32{height:102.907200pt;}
.h23{height:103.067200pt;}
.h2a{height:103.355067pt;}
.h40{height:103.387067pt;}
.h50{height:110.554747pt;}
.h1b{height:111.866800pt;}
.h3f{height:112.634667pt;}
.h17{height:112.794667pt;}
.h34{height:118.106400pt;}
.h53{height:121.594227pt;}
.h42{height:122.266191pt;}
.h1c{height:123.834133pt;}
.h36{height:131.545720pt;}
.h41{height:131.673800pt;}
.h3e{height:131.705733pt;}
.h67{height:135.060267pt;}
.h5e{height:136.020267pt;}
.h35{height:143.513200pt;}
.h44{height:151.859467pt;}
.h6d{height:153.779333pt;}
.h62{height:155.512667pt;}
.h4a{height:158.072533pt;}
.h5b{height:167.512000pt;}
.h2b{height:169.458667pt;}
.h38{height:182.418000pt;}
.h2c{height:188.337680pt;}
.h69{height:191.057600pt;}
.h22{height:201.617067pt;}
.h11{height:208.016800pt;}
.h2d{height:209.616667pt;}
.h39{height:216.816400pt;}
.h55{height:238.095333pt;}
.h68{height:242.255200pt;}
.h0{height:1122.666667pt;}
.w8{width:17.791160pt;}
.w4{width:18.719120pt;}
.w20{width:18.751107pt;}
.w14{width:27.198667pt;}
.w11{width:27.230800pt;}
.w1b{width:28.318667pt;}
.w16{width:28.638667pt;}
.w18{width:29.918533pt;}
.w21{width:31.518533pt;}
.wf{width:31.998400pt;}
.w10{width:32.158533pt;}
.w13{width:32.478400pt;}
.w12{width:32.638533pt;}
.wc{width:33.598400pt;}
.wb{width:33.630400pt;}
.w6{width:33.758400pt;}
.w7{width:33.790400pt;}
.w1a{width:34.238400pt;}
.w15{width:36.510267pt;}
.w19{width:36.958267pt;}
.w1d{width:37.758133pt;}
.w1c{width:37.758267pt;}
.w17{width:38.078133pt;}
.w5{width:67.356800pt;}
.wa{width:67.516800pt;}
.we{width:67.548800pt;}
.w22{width:93.947533pt;}
.w23{width:141.140000pt;}
.w25{width:188.337733pt;}
.w24{width:311.251867pt;}
.w2{width:353.649867pt;}
.wd{width:364.849333pt;}
.w1e{width:365.036000pt;}
.w1f{width:384.075067pt;}
.w9{width:400.394267pt;}
.w1{width:793.242267pt;}
.w3{width:793.242358pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x13{left:3.519837pt;}
.x57{left:5.919769pt;}
.x5d{left:7.519623pt;}
.xd{left:9.599541pt;}
.x51{left:13.466060pt;}
.x59{left:14.879267pt;}
.x5f{left:16.159244pt;}
.x4e{left:18.239085pt;}
.x1d{left:19.999104pt;}
.x56{left:22.758969pt;}
.x5c{left:24.318825pt;}
.x6f{left:33.598404pt;}
.x1c{left:36.798306pt;}
.x82{left:47.563253pt;}
.x11{left:50.557598pt;}
.x6e{left:51.837538pt;}
.x1b{left:53.597508pt;}
.x6b{left:61.642587pt;}
.x10{left:68.956724pt;}
.x70{left:80.681680pt;}
.x5{left:85.147943pt;}
.x12{left:97.672867pt;}
.xf{left:102.747119pt;}
.x8{left:109.146803pt;}
.x81{left:123.226146pt;}
.x35{left:124.346093pt;}
.x44{left:127.705934pt;}
.x42{left:130.425804pt;}
.x69{left:132.185721pt;}
.x9{left:133.145663pt;}
.x5b{left:136.065733pt;}
.x34{left:141.139962pt;}
.x80{left:142.579894pt;}
.x43{left:144.659795pt;}
.x27{left:146.945200pt;}
.x68{left:149.139582pt;}
.x7f{left:156.659225pt;}
.x41{left:161.824533pt;}
.x6c{left:163.538898pt;}
.x7e{left:173.778412pt;}
.x5a{left:174.783867pt;}
.x26{left:181.343600pt;}
.x40{left:196.222800pt;}
.x7d{left:201.297105pt;}
.x58{left:209.182267pt;}
.x25{left:215.741867pt;}
.x7c{left:219.536238pt;}
.x3f{left:230.621200pt;}
.x7b{left:236.335440pt;}
.x55{left:238.460800pt;}
.x24{left:250.140267pt;}
.x7a{left:253.334633pt;}
.x3e{left:265.059600pt;}
.x54{left:275.619067pt;}
.x79{left:278.613432pt;}
.x23{left:284.578667pt;}
.x78{left:293.058267pt;}
.x33{left:298.292497pt;}
.x53{left:310.017467pt;}
.x32{left:316.691623pt;}
.x22{left:318.977067pt;}
.x77{left:325.216667pt;}
.x1{left:331.570904pt;}
.x3d{left:333.056400pt;}
.x31{left:335.090749pt;}
.x52{left:337.856133pt;}
.x21{left:353.375333pt;}
.x67{left:360.049563pt;}
.x3c{left:367.454667pt;}
.x30{left:370.129085pt;}
.x66{left:377.008758pt;}
.x20{left:387.773733pt;}
.x76{left:394.013467pt;}
.x2{left:398.474393pt;}
.x2f{left:401.853067pt;}
.x50{left:404.412933pt;}
.x3{left:412.713717pt;}
.x65{left:416.759067pt;}
.x1f{left:422.198800pt;}
.x4{left:423.913185pt;}
.x75{left:428.438533pt;}
.x4f{left:432.278267pt;}
.x37{left:434.952660pt;}
.x2e{left:436.278133pt;}
.x6a{left:439.592440pt;}
.x45{left:445.352166pt;}
.xa{left:453.191794pt;}
.x64{left:455.157200pt;}
.x1e{left:456.597200pt;}
.x74{left:462.836800pt;}
.x4d{left:465.076800pt;}
.x2d{left:470.676533pt;}
.x1a{left:490.995467pt;}
.x63{left:493.555333pt;}
.x4c{left:497.715200pt;}
.x2c{left:505.074800pt;}
.x62{left:522.514000pt;}
.x73{left:531.633600pt;}
.x2b{left:539.473200pt;}
.x61{left:557.392400pt;}
.x19{left:562.626607pt;}
.x2a{left:573.911600pt;}
.x4b{left:582.185678pt;}
.x60{left:591.830667pt;}
.x18{left:594.185108pt;}
.x83{left:595.830533pt;}
.x4a{left:599.144873pt;}
.x29{left:608.310000pt;}
.x17{left:611.144303pt;}
.x49{left:616.104067pt;}
.x16{left:627.943505pt;}
.x5e{left:629.428933pt;}
.x72{left:633.063261pt;}
.x28{left:642.708267pt;}
.x15{left:644.902699pt;}
.x48{left:646.182638pt;}
.x3b{left:657.702091pt;}
.x47{left:660.101977pt;}
.x14{left:662.021886pt;}
.x71{left:663.141833pt;}
.x3a{left:674.661285pt;}
.xe{left:677.061171pt;}
.x36{left:681.266533pt;}
.x39{left:688.420632pt;}
.x7{left:690.180536pt;}
.xb{left:697.220202pt;}
.xc{left:698.526807pt;}
.x38{left:752.284253pt;}
.x6{left:755.644093pt;}
.x6d{left:761.563812pt;}
.x46{left:779.482961pt;}
}




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