
    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_c099d5ca00b61f3dc676afab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107000;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_5d60f1c27df7c3e966542940.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.109000;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_c745867d5619e9a1e871c7de.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113000;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_91917acd87903b2c7aed13f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.102000;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(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.819820px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.990000px;}
.ls1{letter-spacing:1.560000px;}
.ls3{letter-spacing:1.650000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.890000px;}
.ws0{word-spacing:-16.500000px;}
.ws3{word-spacing:-14.916000px;}
.ws2{word-spacing:0.000000px;}
._8{margin-left:-13.398000px;}
._0{margin-left:-9.648000px;}
._7{margin-left:-3.168000px;}
._4{margin-left:-1.584000px;}
._2{width:1.650000px;}
._5{width:2.970000px;}
._1{width:4.026000px;}
._3{width:5.346000px;}
._6{width:7.194000px;}
._9{width:8.382000px;}
._a{width:24.624000px;}
._b{width:57.186000px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.320000px;}
.fs7{font-size:38.280000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:69.000000px;}
.fs8{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:108.000000px;}
.y17{bottom:-4.459710px;}
.y221{bottom:-3.136695px;}
.y234{bottom:-3.134310px;}
.y242{bottom:-3.130740px;}
.y171{bottom:-3.123225px;}
.y11c{bottom:-3.116730px;}
.y169{bottom:-3.113475px;}
.y161{bottom:-3.113445px;}
.y10{bottom:-0.004755px;}
.yab{bottom:-0.003195px;}
.y10a{bottom:-0.003015px;}
.y1f4{bottom:-0.002295px;}
.y201{bottom:-0.001470px;}
.y0{bottom:0.000000px;}
.ya0{bottom:0.001290px;}
.y8e{bottom:0.003045px;}
.y152{bottom:0.003615px;}
.y1d6{bottom:0.005130px;}
.y7a{bottom:0.005955px;}
.y84{bottom:0.006000px;}
.y71{bottom:0.006045px;}
.y108{bottom:0.037455px;}
.yb3{bottom:0.050715px;}
.y2a4{bottom:0.135540px;}
.y2b1{bottom:0.135570px;}
.y288{bottom:0.135585px;}
.y27e{bottom:0.135600px;}
.y82{bottom:0.136515px;}
.ya2{bottom:0.158745px;}
.yf2{bottom:0.163230px;}
.y25b{bottom:0.167085px;}
.yad{bottom:0.167715px;}
.y50{bottom:0.171405px;}
.y211{bottom:0.173205px;}
.y205{bottom:0.174045px;}
.yc8{bottom:0.176745px;}
.y1da{bottom:0.180645px;}
.y10e{bottom:0.185955px;}
.y8c{bottom:0.224940px;}
.y1c2{bottom:0.225675px;}
.y4{bottom:0.234990px;}
.y1c4{bottom:0.235725px;}
.y291{bottom:0.243585px;}
.y2b7{bottom:0.243615px;}
.ye{bottom:0.251775px;}
.y29a{bottom:0.257085px;}
.y2a0{bottom:0.257130px;}
.y78{bottom:0.257985px;}
.y73{bottom:0.258000px;}
.y16{bottom:0.265320px;}
.y18f{bottom:0.307125px;}
.y9e{bottom:0.307245px;}
.y148{bottom:0.308085px;}
.y116{bottom:0.308250px;}
.y1ad{bottom:0.308505px;}
.y179{bottom:0.309495px;}
.y19b{bottom:0.310815px;}
.y195{bottom:0.310860px;}
.y15a{bottom:0.310965px;}
.ydf{bottom:0.311730px;}
.y110{bottom:0.312750px;}
.y181{bottom:0.313200px;}
.y15d{bottom:0.315435px;}
.y165{bottom:0.315540px;}
.ydb{bottom:0.316230px;}
.y187{bottom:0.316950px;}
.y19{bottom:0.317880px;}
.y1a9{bottom:0.318285px;}
.y16d{bottom:0.319290px;}
.y6f{bottom:0.319935px;}
.y225{bottom:0.319965px;}
.y80{bottom:0.325575px;}
.y1c6{bottom:0.327750px;}
.y232{bottom:0.335175px;}
.y246{bottom:0.364230px;}
.yfd{bottom:0.370215px;}
.y90{bottom:0.370245px;}
.y2f{bottom:0.481935px;}
.y296{bottom:0.554115px;}
.y27a{bottom:0.567585px;}
.y16f{bottom:0.670305px;}
.y144{bottom:0.672555px;}
.y1b3{bottom:0.673020px;}
.y17d{bottom:0.674010px;}
.y1a1{bottom:0.675315px;}
.y183{bottom:0.677670px;}
.y189{bottom:0.681435px;}
.y1a5{bottom:0.682800px;}
.ycc{bottom:0.770745px;}
.yea{bottom:0.820215px;}
.yc0{bottom:0.824790px;}
.yf0{bottom:0.829260px;}
.y1f1{bottom:0.840765px;}
.y240{bottom:0.878775px;}
.y104{bottom:0.961530px;}
.y24d{bottom:0.962265px;}
.y21f{bottom:1.007805px;}
.y1ef{bottom:1.025460px;}
.y8{bottom:1.025835px;}
.y102{bottom:1.038240px;}
.y29d{bottom:1.094100px;}
.y282{bottom:1.161585px;}
.y2ac{bottom:1.161615px;}
.y28c{bottom:1.229100px;}
.yca{bottom:1.333230px;}
.y13a{bottom:1.333650px;}
.y1af{bottom:1.334520px;}
.y177{bottom:1.335480px;}
.y199{bottom:1.336800px;}
.y193{bottom:1.336845px;}
.y1d2{bottom:1.337040px;}
.yc4{bottom:1.342200px;}
.y236{bottom:1.369305px;}
.y173{bottom:1.412805px;}
.y18d{bottom:1.414110px;}
.y146{bottom:1.415130px;}
.y1b5{bottom:1.415520px;}
.y17b{bottom:1.416510px;}
.y19d{bottom:1.417800px;}
.y197{bottom:1.417860px;}
.ye3{bottom:1.418700px;}
.y167{bottom:1.422555px;}
.y1a7{bottom:1.425300px;}
.y6{bottom:1.447530px;}
.y18b{bottom:1.495125px;}
.y136{bottom:1.495605px;}
.y142{bottom:1.496070px;}
.y1b1{bottom:1.496520px;}
.y175{bottom:1.497480px;}
.y12a{bottom:1.497990px;}
.y19f{bottom:1.498815px;}
.y191{bottom:1.498860px;}
.y118{bottom:1.500270px;}
.y17f{bottom:1.501200px;}
.y12e{bottom:1.501650px;}
.y163{bottom:1.503525px;}
.y15f{bottom:1.503570px;}
.y122{bottom:1.504035px;}
.y185{bottom:1.504950px;}
.y140{bottom:1.505085px;}
.y132{bottom:1.505400px;}
.y1ab{bottom:1.506300px;}
.y16b{bottom:1.507290px;}
.y126{bottom:1.507785px;}
.y1ff{bottom:1.510530px;}
.y156{bottom:1.539465px;}
.y230{bottom:1.583265px;}
.y255{bottom:1.679070px;}
.y5d{bottom:1.683405px;}
.y56{bottom:1.683420px;}
.y259{bottom:1.683570px;}
.yd9{bottom:1.684245px;}
.y4e{bottom:1.687920px;}
.y63{bottom:1.687935px;}
.yba{bottom:1.688775px;}
.y12{bottom:2.398320px;}
.y14{bottom:2.533260px;}
.y2{bottom:2.584005px;}
.y1c3{bottom:2.584740px;}
.yc{bottom:2.701365px;}
.y29{bottom:2.756745px;}
.y128{bottom:2.898285px;}
.ybc{bottom:2.899290px;}
.y138{bottom:2.899575px;}
.y13c{bottom:2.899650px;}
.y14a{bottom:2.900115px;}
.y12c{bottom:2.901945px;}
.y257{bottom:2.903145px;}
.y76{bottom:2.903955px;}
.y88{bottom:2.904015px;}
.y11f{bottom:2.904225px;}
.y11a{bottom:2.904315px;}
.y130{bottom:2.905710px;}
.y5f{bottom:2.907390px;}
.y124{bottom:2.908080px;}
.y134{bottom:2.909370px;}
.y2af{bottom:2.984040px;}
.y286{bottom:2.984070px;}
.y28f{bottom:2.984115px;}
.y7e{bottom:2.984985px;}
.y2ba{bottom:3.105540px;}
.y293{bottom:3.105555px;}
.y280{bottom:3.105570px;}
.y2a9{bottom:3.105585px;}
.y27c{bottom:3.105600px;}
.y284{bottom:3.105615px;}
.y2a2{bottom:3.105630px;}
.y1a3{bottom:3.544785px;}
.ybe{bottom:3.547305px;}
.y2d{bottom:3.548820px;}
.y13e{bottom:3.552600px;}
.y25{bottom:3.625305px;}
.y27{bottom:3.629790px;}
.y24a{bottom:3.640290px;}
.y4c{bottom:3.640905px;}
.y46{bottom:3.640920px;}
.y65{bottom:3.640935px;}
.y1d0{bottom:3.641055px;}
.y251{bottom:3.641145px;}
.ydd{bottom:3.641685px;}
.y98{bottom:3.641700px;}
.yf6{bottom:3.641715px;}
.yc6{bottom:3.641730px;}
.yd0{bottom:3.641745px;}
.y92{bottom:3.641775px;}
.yb8{bottom:3.641790px;}
.y1b7{bottom:3.642540px;}
.y1bd{bottom:3.642585px;}
.y207{bottom:3.643440px;}
.y20d{bottom:3.643470px;}
.y14e{bottom:3.644115px;}
.y24c{bottom:3.644790px;}
.y213{bottom:3.644805px;}
.y219{bottom:3.644850px;}
.y6b{bottom:3.645390px;}
.y48{bottom:3.645405px;}
.y52{bottom:3.645420px;}
.y158{bottom:3.645450px;}
.y227{bottom:3.645465px;}
.y25d{bottom:3.645540px;}
.y270{bottom:3.645585px;}
.y1cc{bottom:3.645630px;}
.y9a{bottom:3.646185px;}
.yfb{bottom:3.646215px;}
.yc2{bottom:3.646230px;}
.ya8{bottom:3.646260px;}
.y94{bottom:3.646275px;}
.y1b9{bottom:3.647025px;}
.y1bf{bottom:3.647070px;}
.y112{bottom:3.647190px;}
.y20f{bottom:3.647940px;}
.y1f9{bottom:3.648060px;}
.y150{bottom:3.648600px;}
.y248{bottom:3.649305px;}
.y21b{bottom:3.649335px;}
.y5b{bottom:3.649905px;}
.y4a{bottom:3.649920px;}
.y44{bottom:3.649935px;}
.y229{bottom:3.649965px;}
.y24f{bottom:3.650025px;}
.y272{bottom:3.650070px;}
.y25f{bottom:3.650115px;}
.y1ce{bottom:3.650130px;}
.yb1{bottom:3.650670px;}
.yd7{bottom:3.650715px;}
.yf4{bottom:3.650730px;}
.y9c{bottom:3.650745px;}
.ya5{bottom:3.650760px;}
.y23b{bottom:3.650805px;}
.y1c1{bottom:3.651570px;}
.y1bb{bottom:3.651600px;}
.y1dd{bottom:3.651720px;}
.y114{bottom:3.651765px;}
.y1fb{bottom:3.652545px;}
.y14c{bottom:3.653085px;}
.y106{bottom:3.655425px;}
.yff{bottom:3.673170px;}
.y3e{bottom:3.744405px;}
.y3b{bottom:3.748905px;}
.y217{bottom:3.788820px;}
.y61{bottom:3.789435px;}
.y274{bottom:3.789600px;}
.y26e{bottom:3.789630px;}
.y1ca{bottom:3.789645px;}
.yec{bottom:3.790260px;}
.y1e5{bottom:3.791190px;}
.y1df{bottom:3.791205px;}
.y1f7{bottom:3.792030px;}
.y22c{bottom:3.793890px;}
.y276{bottom:3.794085px;}
.y253{bottom:3.794130px;}
.yd2{bottom:3.794715px;}
.yee{bottom:3.794745px;}
.y239{bottom:3.794775px;}
.y1e7{bottom:3.795690px;}
.y1ec{bottom:3.795720px;}
.y1e1{bottom:3.795735px;}
.y209{bottom:3.796410px;}
.y215{bottom:3.797835px;}
.y6d{bottom:3.798390px;}
.y54{bottom:3.798405px;}
.y22e{bottom:3.798465px;}
.y1c8{bottom:3.798525px;}
.y266{bottom:3.798615px;}
.ye5{bottom:3.799200px;}
.y96{bottom:3.799260px;}
.y1e9{bottom:3.800175px;}
.y1e3{bottom:3.800205px;}
.y20b{bottom:3.800895px;}
.y37{bottom:3.807405px;}
.y39{bottom:3.811935px;}
.y35{bottom:3.816420px;}
.y33{bottom:3.838905px;}
.y1f{bottom:3.841275px;}
.y2b{bottom:3.841320px;}
.y40{bottom:3.843420px;}
.y1b{bottom:3.845760px;}
.y21{bottom:3.845850px;}
.y31{bottom:3.847920px;}
.y1d{bottom:3.850245px;}
.y23{bottom:3.850350px;}
.y1f3{bottom:3.953235px;}
.y1fd{bottom:3.954030px;}
.y23e{bottom:3.956775px;}
.y154{bottom:3.959100px;}
.y1d4{bottom:3.960585px;}
.y21d{bottom:3.964320px;}
.y68{bottom:4.000905px;}
.y223{bottom:4.153335px;}
.y10c{bottom:4.154940px;}
.y1f5{bottom:4.155660px;}
.y203{bottom:4.156545px;}
.y244{bottom:4.159245px;}
.y1d8{bottom:4.163100px;}
.y42{bottom:4.347420px;}
.ya{bottom:6.022335px;}
.y22f{bottom:26.392500px;}
.y5{bottom:26.527500px;}
.y101{bottom:26.865000px;}
.y1ee{bottom:26.878515px;}
.y103{bottom:27.013500px;}
.y1f0{bottom:27.135000px;}
.y1c5{bottom:27.648015px;}
.y1{bottom:27.675000px;}
.y8b{bottom:27.769500px;}
.y8d{bottom:27.971985px;}
.y3{bottom:30.024015px;}
.y7{bottom:31.873485px;}
.y6e{bottom:70.685985px;}
.y1c0{bottom:78.286485px;}
.y22d{bottom:81.486015px;}
.y6c{bottom:87.007500px;}
.y1be{bottom:98.091000px;}
.y22b{bottom:101.290515px;}
.y6a{bottom:106.960515px;}
.y24b{bottom:108.094500px;}
.y1bc{bottom:117.895500px;}
.y100{bottom:120.204000px;}
.y22a{bottom:121.095000px;}
.y20e{bottom:126.373515px;}
.y69{bottom:126.764985px;}
.y249{bottom:127.899015px;}
.y1ba{bottom:137.686500px;}
.yfe{bottom:139.981500px;}
.y228{bottom:141.034485px;}
.y20c{bottom:146.178000px;}
.y67{bottom:146.205000px;}
.y247{bottom:147.690015px;}
.y1b8{bottom:157.491000px;}
.y226{bottom:160.839000px;}
.y20a{bottom:165.820500px;}
.yfc{bottom:166.684500px;}
.y245{bottom:170.775015px;}
.y1b6{bottom:177.295515px;}
.y2b9{bottom:180.508500px;}
.y224{bottom:183.964515px;}
.y208{bottom:185.625000px;}
.y2b8{bottom:196.708485px;}
.y2b6{bottom:199.570500px;}
.y206{bottom:205.578000px;}
.y66{bottom:209.560500px;}
.y2b5{bottom:212.908500px;}
.y2b4{bottom:214.785000px;}
.yfa{bottom:226.408500px;}
.y2b3{bottom:229.108500px;}
.y60{bottom:229.216485px;}
.y64{bottom:229.364985px;}
.y62{bottom:236.763000px;}
.y1b0{bottom:244.957485px;}
.y1b4{bottom:245.038485px;}
.y1ae{bottom:245.119485px;}
.y2b2{bottom:245.308500px;}
.y1b2{bottom:245.780985px;}
.y1ac{bottom:246.145500px;}
.yf9{bottom:246.213000px;}
.y2b0{bottom:248.278500px;}
.y5a{bottom:249.155985px;}
.y5e{bottom:249.898500px;}
.y5c{bottom:256.567500px;}
.y2ae{bottom:261.630000px;}
.yf8{bottom:266.004000px;}
.y59{bottom:268.960485px;}
.y1a2{bottom:272.673000px;}
.y1aa{bottom:274.711485px;}
.y1a6{bottom:274.792485px;}
.y1a4{bottom:275.534985px;}
.y1a8{bottom:275.899500px;}
.y2ad{bottom:277.708485px;}
.y2ab{bottom:279.652500px;}
.yf7{bottom:285.808500px;}
.y58{bottom:288.764985px;}
.y2aa{bottom:293.908500px;}
.y19e{bottom:304.951485px;}
.y19c{bottom:305.032500px;}
.y198{bottom:305.113500px;}
.yf5{bottom:305.612985px;}
.y1a0{bottom:305.774985px;}
.y19a{bottom:306.139485px;}
.y53{bottom:308.407500px;}
.y57{bottom:308.555985px;}
.y2a8{bottom:310.108500px;}
.y2a7{bottom:313.078485px;}
.y55{bottom:315.967485px;}
.yf3{bottom:325.403985px;}
.y2a6{bottom:328.252485px;}
.y51{bottom:328.360500px;}
.y190{bottom:334.246485px;}
.y196{bottom:334.327485px;}
.y192{bottom:334.408500px;}
.y194{bottom:335.434485px;}
.y2a5{bottom:342.508485px;}
.yed{bottom:345.059985px;}
.y2a3{bottom:345.478500px;}
.y4b{bottom:348.164985px;}
.yf1{bottom:348.691500px;}
.y4f{bottom:351.634485px;}
.yef{bottom:353.470485px;}
.y4d{bottom:355.562985px;}
.y2a1{bottom:358.708485px;}
.y29f{bottom:361.556985px;}
.y18a{bottom:364.013985px;}
.y18c{bottom:364.095000px;}
.yeb{bottom:364.864500px;}
.y18e{bottom:365.201985px;}
.y49{bottom:367.955985px;}
.y29e{bottom:374.908500px;}
.y29c{bottom:376.920000px;}
.y1ed{bottom:382.873485px;}
.ye8{bottom:384.803970px;}
.y47{bottom:387.760485px;}
.y29b{bottom:391.108470px;}
.ye9{bottom:393.079470px;}
.y184{bottom:393.767985px;}
.y299{bottom:393.957000px;}
.y188{bottom:394.591500px;}
.y186{bottom:394.955985px;}
.y1eb{bottom:402.529500px;}
.ye7{bottom:404.608470px;}
.y298{bottom:407.430000px;}
.y45{bottom:407.564985px;}
.y1ea{bottom:422.334000px;}
.y297{bottom:423.508485px;}
.y17e{bottom:423.535485px;}
.y182{bottom:424.359015px;}
.ye6{bottom:424.412985px;}
.y180{bottom:424.723485px;}
.y295{bottom:426.059970px;}
.y43{bottom:427.355985px;}
.y294{bottom:439.830000px;}
.y1e8{bottom:442.125000px;}
.ye4{bottom:444.055485px;}
.y41{bottom:446.458470px;}
.y174{bottom:453.303000px;}
.y17a{bottom:453.383970px;}
.y176{bottom:453.465000px;}
.y17c{bottom:454.126470px;}
.y178{bottom:454.490985px;}
.y292{bottom:455.908500px;}
.y290{bottom:458.770470px;}
.y1e6{bottom:461.929500px;}
.ye2{bottom:466.236015px;}
.y28e{bottom:472.229970px;}
.y1e4{bottom:481.733970px;}
.y16a{bottom:483.056985px;}
.y172{bottom:483.151470px;}
.ye1{bottom:483.812985px;}
.y16e{bottom:483.893970px;}
.y16c{bottom:484.244985px;}
.y170{bottom:487.687500px;}
.y28d{bottom:488.308500px;}
.y28b{bottom:490.184970px;}
.y1e2{bottom:501.524970px;}
.ye0{bottom:503.603985px;}
.y28a{bottom:504.508485px;}
.y3f{bottom:509.962470px;}
.y162{bottom:512.824500px;}
.y166{bottom:512.905470px;}
.y164{bottom:514.012485px;}
.y168{bottom:517.441500px;}
.y289{bottom:520.708470px;}
.y1e0{bottom:521.329470px;}
.y287{bottom:523.678485px;}
.yde{bottom:526.742985px;}
.y3d{bottom:529.861500px;}
.y285{bottom:537.029985px;}
.y1de{bottom:541.133970px;}
.y15e{bottom:542.119485px;}
.ydc{bottom:543.213000px;}
.y160{bottom:546.736500px;}
.y3c{bottom:549.598485px;}
.y283{bottom:553.108470px;}
.y281{bottom:555.052500px;}
.y1dc{bottom:561.073470px;}
.yd6{bottom:563.004000px;}
.yda{bottom:566.338485px;}
.y27f{bottom:569.308500px;}
.y3a{bottom:569.457000px;}
.y15c{bottom:570.307485px;}
.yd8{bottom:570.415470px;}
.y27d{bottom:572.278470px;}
.y1db{bottom:580.877970px;}
.yd5{bottom:582.808500px;}
.y27b{bottom:585.508485px;}
.y157{bottom:586.777500px;}
.y155{bottom:588.883485px;}
.y38{bottom:589.193985px;}
.y159{bottom:590.111985px;}
.yd4{bottom:602.612955px;}
.y279{bottom:604.246485px;}
.y243{bottom:605.353500px;}
.y23d{bottom:605.555970px;}
.y15b{bottom:606.582000px;}
.y23f{bottom:608.633970px;}
.y36{bottom:608.998485px;}
.y241{bottom:612.643485px;}
.y222{bottom:620.594970px;}
.y21c{bottom:620.783985px;}
.yd3{bottom:622.403955px;}
.y21e{bottom:623.740500px;}
.y202{bottom:627.817470px;}
.y220{bottom:627.885000px;}
.y1fc{bottom:628.019985px;}
.y34{bottom:628.789485px;}
.y1fe{bottom:630.463485px;}
.y204{bottom:631.799970px;}
.y200{bottom:631.975485px;}
.yd1{bottom:642.059970px;}
.y32{bottom:648.566985px;}
.y23c{bottom:650.605500px;}
.y153{bottom:654.129000px;}
.y14f{bottom:654.439500px;}
.y151{bottom:658.084485px;}
.ycf{bottom:662.012970px;}
.y21a{bottom:662.498985px;}
.y278{bottom:664.024470px;}
.y23a{bottom:667.061970px;}
.y30{bottom:668.357985px;}
.y1fa{bottom:669.721485px;}
.yce{bottom:681.803970px;}
.y218{bottom:682.303485px;}
.y277{bottom:683.963970px;}
.y238{bottom:686.717970px;}
.y1f8{bottom:689.525985px;}
.y2e{bottom:691.523985px;}
.y14d{bottom:695.844000px;}
.ycd{bottom:701.608470px;}
.y216{bottom:701.959485px;}
.y275{bottom:703.619985px;}
.y89{bottom:705.428970px;}
.y8a{bottom:705.550455px;}
.y237{bottom:706.670970px;}
.y1f6{bottom:709.181985px;}
.y14b{bottom:715.635000px;}
.y87{bottom:718.982985px;}
.yc5{bottom:721.412985px;}
.y214{bottom:721.750485px;}
.y273{bottom:723.424485px;}
.yc9{bottom:723.721485px;}
.y235{bottom:728.743470px;}
.ycb{bottom:729.728985px;}
.yc7{bottom:730.322985px;}
.y86{bottom:737.828985px;}
.y212{bottom:741.703485px;}
.y271{bottom:743.363985px;}
.yc3{bottom:743.512485px;}
.y2c{bottom:745.064985px;}
.y85{bottom:754.028955px;}
.y83{bottom:758.780955px;}
.yc1{bottom:761.008485px;}
.y26f{bottom:763.168485px;}
.y13f{bottom:763.586970px;}
.y2a{bottom:764.572500px;}
.y149{bottom:772.091955px;}
.y141{bottom:773.496000px;}
.y145{bottom:773.576940px;}
.y143{bottom:774.319515px;}
.y147{bottom:774.683985px;}
.yb7{bottom:780.812985px;}
.ybd{bottom:780.907470px;}
.y13d{bottom:781.339515px;}
.ybb{bottom:781.555485px;}
.y26d{bottom:782.824500px;}
.y28{bottom:785.457000px;}
.yb9{bottom:788.211000px;}
.ybf{bottom:789.074985px;}
.yb6{bottom:800.603940px;}
.y7f{bottom:802.561425px;}
.y26c{bottom:802.615455px;}
.y81{bottom:802.750485px;}
.y26{bottom:804.383970px;}
.y13b{bottom:815.912940px;}
.y7d{bottom:816.101985px;}
.y139{bottom:817.478940px;}
.yb5{bottom:820.408440px;}
.y26b{bottom:822.568455px;}
.y24{bottom:824.188470px;}
.y7c{bottom:835.028955px;}
.yb4{bottom:840.212955px;}
.y26a{bottom:842.372955px;}
.y22{bottom:843.763455px;}
.y137{bottom:845.207970px;}
.y135{bottom:846.611940px;}
.y7b{bottom:851.228940px;}
.y79{bottom:855.980985px;}
.yb0{bottom:860.004000px;}
.y269{bottom:862.015500px;}
.y20{bottom:863.567970px;}
.yb2{bottom:869.048955px;}
.y133{bottom:874.961970px;}
.y131{bottom:876.365940px;}
.yaf{bottom:879.808500px;}
.y268{bottom:881.968500px;}
.y1e{bottom:883.372470px;}
.yae{bottom:899.613000px;}
.y77{bottom:899.828985px;}
.y267{bottom:901.773015px;}
.y1c{bottom:903.163515px;}
.y12f{bottom:904.729425px;}
.y12d{bottom:906.133485px;}
.y75{bottom:913.383000px;}
.ya9{bottom:919.403955px;}
.y265{bottom:921.415470px;}
.yac{bottom:922.887000px;}
.y1a{bottom:922.968015px;}
.yaa{bottom:928.502925px;}
.y74{bottom:932.228940px;}
.y12b{bottom:934.496985px;}
.y129{bottom:935.900940px;}
.ya7{bottom:939.208470px;}
.y264{bottom:941.368470px;}
.y18{bottom:946.295925px;}
.y72{bottom:948.429015px;}
.y70{bottom:953.180970px;}
.ya6{bottom:959.012970px;}
.y263{bottom:961.172970px;}
.y127{bottom:964.264440px;}
.y125{bottom:965.654940px;}
.ya4{bottom:978.803925px;}
.y262{bottom:980.963925px;}
.y123{bottom:994.018440px;}
.y121{bottom:995.422485px;}
.ya3{bottom:998.608425px;}
.y261{bottom:1000.768440px;}
.y1d7{bottom:1018.250970px;}
.y1d3{bottom:1018.453485px;}
.y260{bottom:1020.572940px;}
.y9d{bottom:1021.747470px;}
.ya1{bottom:1021.895970px;}
.y1d9{bottom:1022.233425px;}
.y1d5{bottom:1022.408940px;}
.y11e{bottom:1023.785985px;}
.y11d{bottom:1025.189940px;}
.y9f{bottom:1027.498440px;}
.y120{bottom:1029.806940px;}
.y9b{bottom:1038.203985px;}
.y25e{bottom:1040.363985px;}
.y119{bottom:1053.080940px;}
.y117{bottom:1054.484985px;}
.y99{bottom:1058.008485px;}
.y11b{bottom:1059.101985px;}
.y25c{bottom:1060.168485px;}
.y1d1{bottom:1062.476985px;}
.y97{bottom:1077.812985px;}
.y1cf{bottom:1079.972985px;}
.y13{bottom:1087.546515px;}
.y11{bottom:1087.681455px;}
.y115{bottom:1088.005470px;}
.y15{bottom:1089.814455px;}
.yd{bottom:1089.828000px;}
.yf{bottom:1094.539485px;}
.y111{bottom:1094.566500px;}
.y95{bottom:1097.455440px;}
.y10f{bottom:1097.900940px;}
.y1cd{bottom:1099.763940px;}
.y25a{bottom:1103.246985px;}
.y113{bottom:1104.461970px;}
.y258{bottom:1107.175500px;}
.y93{bottom:1117.408440px;}
.y252{bottom:1119.419955px;}
.y1cb{bottom:1119.568455px;}
.y256{bottom:1120.310940px;}
.yb{bottom:1124.360955px;}
.y254{bottom:1126.980015px;}
.y91{bottom:1137.212955px;}
.y1c9{bottom:1139.224455px;}
.y250{bottom:1139.372955px;}
.y9{bottom:1148.039985px;}
.y10b{bottom:1157.152500px;}
.y1f2{bottom:1157.354925px;}
.y105{bottom:1157.652015px;}
.y1c7{bottom:1159.015500px;}
.y24e{bottom:1159.164000px;}
.y8f{bottom:1160.284425px;}
.y231{bottom:1160.972985px;}
.y10d{bottom:1161.121485px;}
.y210{bottom:1161.134955px;}
.y107{bottom:1161.269985px;}
.y109{bottom:1161.310455px;}
.y233{bottom:1164.442470px;}
.ha3{height:1.012485px;}
.h79{height:1.025940px;}
.h9b{height:1.025985px;}
.h7d{height:1.026030px;}
.h41{height:1.363500px;}
.hd4{height:1.646985px;}
.hd9{height:1.647045px;}
.h4e{height:1.660485px;}
.h50{height:1.673940px;}
.h2e{height:1.674000px;}
.hd2{height:1.903470px;}
.hcc{height:1.903515px;}
.hbf{height:1.903575px;}
.h70{height:1.916940px;}
.h11{height:3.644985px;}
.h6e{height:4.779060px;}
.hbd{height:4.792500px;}
.h95{height:4.792515px;}
.h14{height:4.914000px;}
.hf{height:4.927470px;}
.h4d{height:6.196560px;}
.h4f{height:6.196575px;}
.h51{height:6.250485px;}
.h58{height:6.345015px;}
.h5a{height:7.006485px;}
.h56{height:7.019985px;}
.h62{height:7.020030px;}
.h65{height:7.033515px;}
.h4{height:7.802985px;}
.h5d{height:7.884015px;}
.h52{height:7.924440px;}
.h35{height:7.924500px;}
.h3a{height:8.504970px;}
.h42{height:8.505030px;}
.hdf{height:8.518425px;}
.h2c{height:8.518500px;}
.h54{height:8.545440px;}
.h32{height:8.545485px;}
.h31{height:8.545515px;}
.h5c{height:8.545530px;}
.hc5{height:8.801985px;}
.h9{height:8.802015px;}
.h69{height:8.815500px;}
.he9{height:8.883000px;}
.hf6{height:8.963970px;}
.h3c{height:9.004485px;}
.hf9{height:9.004500px;}
.hf5{height:9.058500px;}
.hd{height:9.139440px;}
.hc4{height:9.341985px;}
.h7{height:9.342030px;}
.h68{height:9.355500px;}
.h43{height:9.611985px;}
.h3d{height:9.612030px;}
.h13{height:9.639030px;}
.h40{height:9.679515px;}
.hed{height:9.773985px;}
.hf0{height:9.855015px;}
.hf7{height:9.881970px;}
.heb{height:9.908985px;}
.hfa{height:9.909000px;}
.h100{height:9.922500px;}
.hf2{height:9.922545px;}
.hff{height:9.976485px;}
.h73{height:10.719000px;}
.h15{height:10.746000px;}
.h90{height:11.002440px;}
.h98{height:11.002485px;}
.h2{height:11.002500px;}
.h72{height:11.002530px;}
.ha2{height:11.015985px;}
.hd6{height:11.056470px;}
.h91{height:11.366910px;}
.ha5{height:11.366955px;}
.ha7{height:11.366970px;}
.ha1{height:11.367000px;}
.hae{height:11.380500px;}
.hc8{height:11.623530px;}
.h94{height:11.637000px;}
.h6d{height:11.650455px;}
.h5e{height:11.744970px;}
.h99{height:11.744985px;}
.hb1{height:11.745000px;}
.h4c{height:11.745030px;}
.h39{height:11.758515px;}
.hef{height:11.853015px;}
.h12{height:11.906970px;}
.h20{height:11.947500px;}
.ha4{height:12.082485px;}
.hac{height:12.082500px;}
.hb3{height:12.082515px;}
.h9f{height:12.095985px;}
.had{height:12.096015px;}
.h8f{height:12.109485px;}
.h9d{height:12.109500px;}
.haf{height:12.123000px;}
.hb2{height:12.136485px;}
.haa{height:12.136500px;}
.hde{height:12.136515px;}
.h9e{height:12.150000px;}
.ha6{height:12.190485px;}
.hab{height:12.190500px;}
.ha0{height:12.203985px;}
.hb0{height:12.204000px;}
.h8d{height:12.230985px;}
.ha8{height:12.231000px;}
.h86{height:12.244530px;}
.h3e{height:12.257985px;}
.h44{height:12.258000px;}
.h45{height:12.271500px;}
.hdb{height:12.285000px;}
.hf4{height:12.338970px;}
.hfd{height:12.339000px;}
.hec{height:12.339015px;}
.h3f{height:12.339030px;}
.h8e{height:12.446970px;}
.hea{height:12.460470px;}
.hfb{height:12.460485px;}
.hee{height:12.460500px;}
.he8{height:12.460515px;}
.hd0{height:12.595470px;}
.hf1{height:12.663015px;}
.hd3{height:12.676470px;}
.hb7{height:12.730500px;}
.h101{height:12.743985px;}
.hf3{height:12.744000px;}
.hfc{height:12.784485px;}
.hf8{height:12.784515px;}
.hd1{height:12.797970px;}
.hda{height:12.838485px;}
.h97{height:12.973485px;}
.hc6{height:13.108485px;}
.hbb{height:13.162455px;}
.h59{height:13.162485px;}
.h8a{height:13.162545px;}
.h57{height:13.175985px;}
.ha9{height:13.189485px;}
.h6a{height:13.229985px;}
.h60{height:13.243455px;}
.hd8{height:13.270485px;}
.hb4{height:13.284015px;}
.h89{height:13.324485px;}
.h75{height:13.324500px;}
.h7e{height:13.337955px;}
.h9c{height:13.337985px;}
.h9a{height:13.338000px;}
.h80{height:13.338045px;}
.h83{height:13.594470px;}
.h7b{height:13.594485px;}
.h77{height:13.594560px;}
.h81{height:13.594575px;}
.h87{height:13.608030px;}
.h8b{height:13.635030px;}
.h7f{height:13.648485px;}
.h7c{height:13.648500px;}
.h66{height:13.688985px;}
.h5{height:13.715985px;}
.hd7{height:13.850985px;}
.h74{height:14.039985px;}
.h1d{height:14.323515px;}
.h53{height:14.336970px;}
.h33{height:14.337000px;}
.he0{height:14.337075px;}
.h30{height:14.485485px;}
.he6{height:14.485530px;}
.h82{height:14.674530px;}
.h71{height:14.687985px;}
.h88{height:14.688000px;}
.h78{height:14.688075px;}
.h85{height:14.688090px;}
.h7a{height:14.728455px;}
.h76{height:14.728545px;}
.h84{height:14.742015px;}
.hfe{height:14.944500px;}
.h55{height:14.984985px;}
.h4b{height:15.079455px;}
.h47{height:15.079470px;}
.h2f{height:15.079485px;}
.h2b{height:15.079500px;}
.h2a{height:15.079515px;}
.he1{height:15.079545px;}
.h48{height:15.079560px;}
.h92{height:15.092970px;}
.hca{height:15.093015px;}
.hb5{height:15.106470px;}
.h1f{height:15.119985px;}
.h67{height:15.147015px;}
.h1b{height:15.187500px;}
.he3{height:15.227955px;}
.h1c{height:15.227970px;}
.h38{height:15.228000px;}
.h34{height:15.228015px;}
.he2{height:15.228045px;}
.h49{height:15.228060px;}
.h24{height:15.308985px;}
.hc7{height:15.322530px;}
.hcb{height:15.336000px;}
.h8c{height:15.376455px;}
.h23{height:15.376515px;}
.h21{height:15.403470px;}
.h25{height:15.403515px;}
.h19{height:15.416925px;}
.h22{height:15.416985px;}
.hcf{height:15.430500px;}
.h17{height:15.443940px;}
.h1e{height:15.443985px;}
.h1a{height:15.444030px;}
.he4{height:15.470955px;}
.h37{height:15.470985px;}
.h61{height:15.471000px;}
.hb6{height:15.471015px;}
.hba{height:15.471030px;}
.h5b{height:15.471045px;}
.h5f{height:15.484500px;}
.hc3{height:15.565470px;}
.hbc{height:15.565530px;}
.he5{height:15.578970px;}
.hc2{height:15.578985px;}
.h64{height:15.579000px;}
.h63{height:15.619485px;}
.hc1{height:15.619500px;}
.hc0{height:15.619530px;}
.hb9{height:15.619545px;}
.hce{height:15.632985px;}
.hcd{height:15.633000px;}
.h6b{height:16.145955px;}
.h93{height:16.145970px;}
.h96{height:16.456470px;}
.h6f{height:16.645470px;}
.hc9{height:17.090970px;}
.hd5{height:17.091015px;}
.hdc{height:17.104470px;}
.hbe{height:17.104530px;}
.hdd{height:17.117970px;}
.h36{height:17.320500px;}
.h46{height:17.536560px;}
.he7{height:17.725485px;}
.h28{height:18.117000px;}
.h4a{height:18.117015px;}
.hb8{height:18.265500px;}
.h26{height:21.100515px;}
.hc{height:22.248060px;}
.h10{height:27.498960px;}
.ha{height:29.214015px;}
.h2d{height:33.571560px;}
.h3{height:41.952000px;}
.h8{height:42.096000px;}
.h3b{height:47.358000px;}
.he{height:47.412000px;}
.h18{height:57.684000px;}
.h29{height:57.882000px;}
.h16{height:58.014000px;}
.h6{height:60.582000px;}
.h6c{height:63.216000px;}
.h27{height:68.562000px;}
.hb{height:94.932000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w11{width:0.310515px;}
.w44{width:0.945000px;}
.w5a{width:1.161030px;}
.w8d{width:1.579470px;}
.w118{width:1.579485px;}
.w12c{width:1.579515px;}
.w108{width:1.593015px;}
.wa{width:1.903485px;}
.w13c{width:2.240940px;}
.w7b{width:2.240985px;}
.w2a{width:2.241000px;}
.w55{width:2.254485px;}
.wb{width:2.349015px;}
.we{width:2.362485px;}
.we4{width:2.942955px;}
.w9e{width:2.943000px;}
.we3{width:2.956455px;}
.we2{width:2.956515px;}
.w3a{width:3.186000px;}
.w69{width:3.334500px;}
.w6b{width:3.347985px;}
.w123{width:3.456000px;}
.w12a{width:3.456015px;}
.w85{width:3.982500px;}
.w6{width:3.982530px;}
.wd{width:4.131000px;}
.wdd{width:6.223470px;}
.w112{width:6.223515px;}
.w116{width:6.304500px;}
.w10{width:6.385515px;}
.w5d{width:6.453000px;}
.w54{width:6.466485px;}
.w59{width:6.466500px;}
.w65{width:6.506970px;}
.w76{width:6.520485px;}
.w7a{width:6.520530px;}
.w3f{width:6.615015px;}
.w129{width:6.898500px;}
.w130{width:6.939015px;}
.w11f{width:6.952500px;}
.w122{width:6.993000px;}
.w152{width:7.560015px;}
.w8b{width:7.654515px;}
.w106{width:7.668000px;}
.w154{width:7.722000px;}
.w157{width:7.749000px;}
.w14b{width:7.762500px;}
.w159{width:7.789515px;}
.w15b{width:7.803000px;}
.w14d{width:7.843515px;}
.w150{width:7.884000px;}
.w6e{width:9.166440px;}
.w2d{width:9.166485px;}
.w31{width:9.166500px;}
.w45{width:10.044030px;}
.w8a{width:10.800015px;}
.w15c{width:12.568485px;}
.w135{width:13.783500px;}
.w88{width:13.810545px;}
.w4{width:13.837560px;}
.w128{width:14.148015px;}
.w4d{width:14.202015px;}
.w11d{width:14.215515px;}
.w103{width:14.229015px;}
.w110{width:14.391000px;}
.wf6{width:14.728500px;}
.wfd{width:14.742015px;}
.w6f{width:14.917515px;}
.wf5{width:15.443985px;}
.wf9{width:15.444030px;}
.wfc{width:15.471015px;}
.wf0{width:15.498000px;}
.wf4{width:15.525015px;}
.wee{width:15.538500px;}
.wf8{width:15.538515px;}
.wfe{width:15.633000px;}
.w138{width:16.186530px;}
.w13b{width:16.308015px;}
.w34{width:18.724500px;}
.we6{width:19.237485px;}
.wf1{width:19.237500px;}
.wf3{width:19.237515px;}
.wf2{width:21.357000px;}
.we7{width:21.370485px;}
.web{width:21.370500px;}
.wef{width:21.370515px;}
.wac{width:21.600000px;}
.wb4{width:21.829470px;}
.wd6{width:21.883485px;}
.wb8{width:21.897000px;}
.wca{width:21.923985px;}
.wc2{width:21.978015px;}
.wd2{width:21.991470px;}
.wc9{width:21.991515px;}
.w9f{width:22.045485px;}
.wf7{width:22.072485px;}
.wcd{width:22.086000px;}
.we9{width:22.113015px;}
.we5{width:22.126485px;}
.we8{width:22.126500px;}
.wec{width:22.126515px;}
.wfa{width:22.220985px;}
.w100{width:22.221000px;}
.wc5{width:22.248000px;}
.wad{width:22.274955px;}
.wed{width:22.274985px;}
.wce{width:22.275000px;}
.wa5{width:22.328970px;}
.wc3{width:22.436955px;}
.wd1{width:22.450470px;}
.wbe{width:22.477470px;}
.w15f{width:25.650015px;}
.w29{width:25.798515px;}
.wda{width:25.865985px;}
.wd7{width:25.866000px;}
.wd9{width:25.879485px;}
.wea{width:25.879515px;}
.wc6{width:27.702000px;}
.wa8{width:27.715485px;}
.wc0{width:27.715500px;}
.w9c{width:27.823470px;}
.wb1{width:27.823500px;}
.wa2{width:27.904500px;}
.wd8{width:27.998970px;}
.wb6{width:28.120485px;}
.w9a{width:28.160985px;}
.w9b{width:28.215000px;}
.wbb{width:28.255485px;}
.wb2{width:28.323015px;}
.waa{width:28.363500px;}
.wa3{width:28.404015px;}
.wcf{width:28.457985px;}
.wa1{width:28.458000px;}
.wab{width:28.498485px;}
.wb5{width:28.512000px;}
.wa4{width:28.552500px;}
.wc7{width:28.660500px;}
.wcb{width:28.673985px;}
.wa7{width:28.674015px;}
.wb0{width:28.849500px;}
.wbc{width:28.876500px;}
.w99{width:28.876515px;}
.wa6{width:28.916970px;}
.wc1{width:28.916985px;}
.wb9{width:28.957485px;}
.wbf{width:28.971015px;}
.wba{width:29.038500px;}
.wa9{width:29.079000px;}
.wc4{width:29.105985px;}
.w9d{width:29.106000px;}
.wd3{width:29.146500px;}
.wdb{width:29.200515px;}
.wa0{width:29.267985px;}
.w8f{width:29.294985px;}
.w95{width:29.295000px;}
.w92{width:30.375000px;}
.w2c{width:30.428985px;}
.we1{width:31.036515px;}
.w91{width:31.428000px;}
.w97{width:33.223530px;}
.w96{width:34.060500px;}
.w93{width:34.127985px;}
.wbd{width:34.344000px;}
.wd0{width:34.533015px;}
.wb3{width:34.749030px;}
.wae{width:34.802985px;}
.wb7{width:34.803000px;}
.wc8{width:34.884030px;}
.w87{width:38.326530px;}
.w4c{width:38.340000px;}
.w3{width:38.340030px;}
.w111{width:39.865500px;}
.w11e{width:39.879000px;}
.w94{width:41.053485px;}
.w3e{width:41.472015px;}
.w90{width:42.957000px;}
.w151{width:44.509485px;}
.we0{width:46.831470px;}
.w89{width:48.006000px;}
.w63{width:49.923015px;}
.w105{width:50.638485px;}
.w12{width:51.205515px;}
.w1c{width:53.419515px;}
.w2{width:53.675985px;}
.w86{width:53.676000px;}
.w4b{width:53.676030px;}
.wcc{width:54.553500px;}
.w98{width:54.729015px;}
.waf{width:54.999000px;}
.w9{width:56.942985px;}
.w6a{width:57.023985px;}
.wc{width:57.172485px;}
.w158{width:63.247500px;}
.w10d{width:65.137500px;}
.w12f{width:66.258000px;}
.w43{width:68.795970px;}
.w4a{width:70.848000px;}
.wd5{width:72.522000px;}
.w12d{width:73.453515px;}
.w125{width:74.871000px;}
.w156{width:78.394500px;}
.wff{width:79.217985px;}
.w39{width:79.677000px;}
.wf{width:83.700015px;}
.w67{width:85.927500px;}
.w5{width:87.885000px;}
.w84{width:87.885030px;}
.w132{width:88.492500px;}
.w104{width:95.850015px;}
.wdf{width:95.917485px;}
.w37{width:97.807515px;}
.w168{width:97.915485px;}
.w40{width:99.441015px;}
.w81{width:100.602000px;}
.w49{width:101.965485px;}
.w46{width:103.193940px;}
.w24{width:105.543000px;}
.w8e{width:106.150470px;}
.wd4{width:107.432985px;}
.w41{width:109.322970px;}
.wfb{width:109.727985px;}
.w66{width:111.307485px;}
.w3b{width:114.007470px;}
.w47{width:114.884985px;}
.w48{width:119.947485px;}
.w144{width:120.001500px;}
.w71{width:121.000515px;}
.w3c{width:121.094970px;}
.w11c{width:122.404500px;}
.w42{width:126.670530px;}
.w3d{width:129.019500px;}
.w153{width:129.478500px;}
.w1b{width:130.288500px;}
.w21{width:136.822485px;}
.w139{width:146.569485px;}
.w14f{width:150.606015px;}
.w53{width:154.980015px;}
.w33{width:160.029015px;}
.w4e{width:173.177985px;}
.w6c{width:176.512530px;}
.wde{width:192.847500px;}
.w64{width:196.681515px;}
.w117{width:205.577970px;}
.w62{width:205.821015px;}
.w141{width:206.509500px;}
.w12b{width:209.357985px;}
.w131{width:212.719485px;}
.w124{width:214.839000px;}
.w109{width:216.350970px;}
.w161{width:222.007515px;}
.w13f{width:222.952515px;}
.w148{width:227.110500px;}
.w77{width:227.637000px;}
.w5e{width:230.850030px;}
.w28{width:232.375485px;}
.w149{width:238.234485px;}
.w32{width:242.297970px;}
.w101{width:259.375485px;}
.w18{width:263.803515px;}
.w162{width:276.426015px;}
.w142{width:279.639015px;}
.w120{width:288.630000px;}
.w134{width:288.832485px;}
.w1f{width:296.581500px;}
.w113{width:297.890985px;}
.w127{width:305.450985px;}
.w165{width:309.069015px;}
.w8c{width:318.140985px;}
.w15a{width:327.631485px;}
.w140{width:343.845000px;}
.w30{width:350.257485px;}
.w68{width:359.869500px;}
.w5c{width:362.906970px;}
.w75{width:367.497000px;}
.w51{width:379.809000px;}
.w107{width:393.632985px;}
.w102{width:401.341470px;}
.w14a{width:404.284470px;}
.w7d{width:409.657500px;}
.w35{width:423.818955px;}
.wdc{width:425.830470px;}
.w137{width:437.386470px;}
.w10f{width:441.031515px;}
.w8{width:455.125455px;}
.w115{width:463.995015px;}
.w79{width:470.758500px;}
.w82{width:473.188470px;}
.w60{width:474.268500px;}
.w166{width:481.059000px;}
.w83{width:497.529015px;}
.w15d{width:508.180470px;}
.w7{width:509.381970px;}
.w80{width:515.362470px;}
.w163{width:523.570470px;}
.w36{width:525.514455px;}
.w15{width:537.596985px;}
.w58{width:549.490470px;}
.w2e{width:560.007000px;}
.w23{width:561.640515px;}
.w14c{width:562.990515px;}
.w147{width:563.719485px;}
.w13a{width:573.547530px;}
.w6d{width:578.232030px;}
.w160{width:586.156470px;}
.w15e{width:586.210485px;}
.w167{width:586.291470px;}
.w164{width:586.507470px;}
.w155{width:586.534470px;}
.w14e{width:587.074485px;}
.w145{width:598.792485px;}
.w126{width:602.221500px;}
.w74{width:602.558970px;}
.w20{width:602.626485px;}
.w5b{width:602.937015px;}
.w7c{width:602.964000px;}
.w11a{width:603.018000px;}
.w52{width:603.018015px;}
.w78{width:603.031500px;}
.w121{width:603.071970px;}
.w56{width:603.072000px;}
.w146{width:603.085515px;}
.w133{width:603.099000px;}
.w13d{width:603.099015px;}
.w10b{width:603.112500px;}
.w136{width:603.193485px;}
.w114{width:603.274455px;}
.w143{width:603.274485px;}
.w7e{width:603.301470px;}
.w26{width:603.355455px;}
.w50{width:603.355485px;}
.w38{width:603.368955px;}
.w57{width:603.368970px;}
.w7f{width:603.369000px;}
.w2f{width:603.409470px;}
.w2b{width:603.422940px;}
.w4f{width:603.422985px;}
.w10e{width:603.436485px;}
.w5f{width:603.449970px;}
.w27{width:603.449985px;}
.w12e{width:603.476970px;}
.w72{width:603.490485px;}
.w25{width:603.503970px;}
.w10c{width:603.517530px;}
.w13e{width:603.544470px;}
.w73{width:603.557970px;}
.w10a{width:603.585030px;}
.w70{width:603.598500px;}
.w1d{width:603.638970px;}
.w11b{width:603.679455px;}
.w1e{width:603.746955px;}
.w22{width:603.962940px;}
.w14{width:603.963000px;}
.w1a{width:604.016970px;}
.w61{width:604.246470px;}
.w19{width:604.246485px;}
.w13{width:604.759455px;}
.w16{width:604.921455px;}
.w119{width:605.042955px;}
.w17{width:605.042970px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xe{left:-83.733735px;}
.x13{left:-1.071765px;}
.x0{left:0.000000px;}
.xf{left:1.136850px;}
.x1f{left:31.495485px;}
.x4{left:54.000000px;}
.x10{left:83.106015px;}
.x7{left:84.334515px;}
.x6{left:85.441500px;}
.x1d{left:94.243485px;}
.x3d{left:95.526015px;}
.x58{left:100.642500px;}
.x71{left:108.985500px;}
.x52{left:111.780000px;}
.x14{left:118.084515px;}
.x46{left:121.500000px;}
.x15{left:128.479500px;}
.x75{left:129.802500px;}
.x39{left:134.055000px;}
.x76{left:137.025015px;}
.x56{left:138.645015px;}
.x7b{left:141.237000px;}
.x8{left:142.654500px;}
.x5{left:144.557985px;}
.x3a{left:145.867500px;}
.x1e{left:150.255000px;}
.x9{left:151.362000px;}
.x57{left:157.234500px;}
.x3b{left:158.301000px;}
.x35{left:175.594500px;}
.x20{left:204.255000px;}
.x31{left:205.321500px;}
.xa{left:209.250000px;}
.xb{left:214.299000px;}
.xc{left:220.103985px;}
.x7f{left:221.399985px;}
.x4f{left:224.950500px;}
.x3e{left:227.178000px;}
.x63{left:228.851985px;}
.x53{left:231.039000px;}
.x68{left:234.103500px;}
.x5a{left:240.488985px;}
.x18{left:246.010485px;}
.x78{left:248.642985px;}
.x72{left:256.081485px;}
.x7a{left:260.293485px;}
.x19{left:265.005000px;}
.x73{left:268.514985px;}
.x3f{left:280.070985px;}
.x47{left:287.793000px;}
.x50{left:290.398500px;}
.x60{left:291.694500px;}
.x6c{left:293.638485px;}
.x5b{left:300.023985px;}
.xd{left:303.493485px;}
.x11{left:318.586485px;}
.x12{left:345.883485px;}
.x4e{left:347.327985px;}
.x51{left:349.852485px;}
.x69{left:351.229500px;}
.x65{left:353.119485px;}
.x77{left:357.520500px;}
.x5c{left:359.545485px;}
.x21{left:360.801000px;}
.x22{left:368.860500px;}
.x40{left:404.972985px;}
.x48{left:406.849500px;}
.x61{left:409.373985px;}
.x27{left:410.926485px;}
.x6f{left:412.735470px;}
.x5d{left:419.080485px;}
.x28{left:430.852485px;}
.x16{left:436.265985px;}
.x17{left:446.525985px;}
.x41{left:463.158000px;}
.x49{left:465.520470px;}
.x6a{left:466.965000px;}
.x64{left:469.664985px;}
.x6d{left:472.270470px;}
.x3c{left:478.926000px;}
.x29{left:481.410000px;}
.x2a{left:490.724985px;}
.x59{left:516.213000px;}
.x42{left:519.263985px;}
.x43{left:524.961000px;}
.x54{left:526.486500px;}
.x4d{left:528.713970px;}
.x70{left:529.807485px;}
.x4a{left:538.137000px;}
.x79{left:559.629000px;}
.x2d{left:565.636500px;}
.x25{left:568.633485px;}
.x32{left:573.250485px;}
.x26{left:576.692970px;}
.x33{left:580.243470px;}
.x44{left:581.660985px;}
.x55{left:586.021500px;}
.x4b{left:588.235470px;}
.x66{left:591.272970px;}
.x5e{left:597.658500px;}
.x2e{left:627.426000px;}
.x2f{left:631.030470px;}
.x45{left:641.614470px;}
.x4c{left:644.057970px;}
.x67{left:645.543000px;}
.x62{left:647.500485px;}
.x6b{left:648.863985px;}
.x6e{left:651.563970px;}
.x5f{left:657.193500px;}
.x7c{left:661.310985px;}
.x74{left:664.631970px;}
.x1{left:677.024970px;}
.x34{left:685.381485px;}
.x2b{left:688.648500px;}
.x36{left:694.196955px;}
.x2c{left:696.572985px;}
.x1a{left:722.479470px;}
.x2{left:733.022970px;}
.x37{left:750.208470px;}
.x23{left:755.311485px;}
.x24{left:763.370955px;}
.x7d{left:778.976985px;}
.x30{left:783.648015px;}
.x1b{left:792.247470px;}
.x7e{left:796.648500px;}
.x3{left:804.802455px;}
.x38{left:821.974455px;}
.x1c{left:825.687015px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.839840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.880000pt;}
.ls1{letter-spacing:1.386667pt;}
.ls3{letter-spacing:1.466667pt;}
.ws1{word-spacing:-17.680000pt;}
.ws0{word-spacing:-14.666667pt;}
.ws3{word-spacing:-13.258667pt;}
.ws2{word-spacing:0.000000pt;}
._8{margin-left:-11.909333pt;}
._0{margin-left:-8.576000pt;}
._7{margin-left:-2.816000pt;}
._4{margin-left:-1.408000pt;}
._2{width:1.466667pt;}
._5{width:2.640000pt;}
._1{width:3.578667pt;}
._3{width:4.752000pt;}
._6{width:6.394667pt;}
._9{width:7.450667pt;}
._a{width:21.888000pt;}
._b{width:50.832000pt;}
.fs4{font-size:27.840000pt;}
.fs7{font-size:34.026667pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:61.333333pt;}
.fs8{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:96.000000pt;}
.y17{bottom:-3.964187pt;}
.y221{bottom:-2.788173pt;}
.y234{bottom:-2.786053pt;}
.y242{bottom:-2.782880pt;}
.y171{bottom:-2.776200pt;}
.y11c{bottom:-2.770427pt;}
.y169{bottom:-2.767533pt;}
.y161{bottom:-2.767507pt;}
.y10{bottom:-0.004227pt;}
.yab{bottom:-0.002840pt;}
.y10a{bottom:-0.002680pt;}
.y1f4{bottom:-0.002040pt;}
.y201{bottom:-0.001307pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:0.001147pt;}
.y8e{bottom:0.002707pt;}
.y152{bottom:0.003213pt;}
.y1d6{bottom:0.004560pt;}
.y7a{bottom:0.005293pt;}
.y84{bottom:0.005333pt;}
.y71{bottom:0.005373pt;}
.y108{bottom:0.033293pt;}
.yb3{bottom:0.045080pt;}
.y2a4{bottom:0.120480pt;}
.y2b1{bottom:0.120507pt;}
.y288{bottom:0.120520pt;}
.y27e{bottom:0.120533pt;}
.y82{bottom:0.121347pt;}
.ya2{bottom:0.141107pt;}
.yf2{bottom:0.145093pt;}
.y25b{bottom:0.148520pt;}
.yad{bottom:0.149080pt;}
.y50{bottom:0.152360pt;}
.y211{bottom:0.153960pt;}
.y205{bottom:0.154707pt;}
.yc8{bottom:0.157107pt;}
.y1da{bottom:0.160573pt;}
.y10e{bottom:0.165293pt;}
.y8c{bottom:0.199947pt;}
.y1c2{bottom:0.200600pt;}
.y4{bottom:0.208880pt;}
.y1c4{bottom:0.209533pt;}
.y291{bottom:0.216520pt;}
.y2b7{bottom:0.216547pt;}
.ye{bottom:0.223800pt;}
.y29a{bottom:0.228520pt;}
.y2a0{bottom:0.228560pt;}
.y78{bottom:0.229320pt;}
.y73{bottom:0.229333pt;}
.y16{bottom:0.235840pt;}
.y18f{bottom:0.273000pt;}
.y9e{bottom:0.273107pt;}
.y148{bottom:0.273853pt;}
.y116{bottom:0.274000pt;}
.y1ad{bottom:0.274227pt;}
.y179{bottom:0.275107pt;}
.y19b{bottom:0.276280pt;}
.y195{bottom:0.276320pt;}
.y15a{bottom:0.276413pt;}
.ydf{bottom:0.277093pt;}
.y110{bottom:0.278000pt;}
.y181{bottom:0.278400pt;}
.y15d{bottom:0.280387pt;}
.y165{bottom:0.280480pt;}
.ydb{bottom:0.281093pt;}
.y187{bottom:0.281733pt;}
.y19{bottom:0.282560pt;}
.y1a9{bottom:0.282920pt;}
.y16d{bottom:0.283813pt;}
.y6f{bottom:0.284387pt;}
.y225{bottom:0.284413pt;}
.y80{bottom:0.289400pt;}
.y1c6{bottom:0.291333pt;}
.y232{bottom:0.297933pt;}
.y246{bottom:0.323760pt;}
.yfd{bottom:0.329080pt;}
.y90{bottom:0.329107pt;}
.y2f{bottom:0.428387pt;}
.y296{bottom:0.492547pt;}
.y27a{bottom:0.504520pt;}
.y16f{bottom:0.595827pt;}
.y144{bottom:0.597827pt;}
.y1b3{bottom:0.598240pt;}
.y17d{bottom:0.599120pt;}
.y1a1{bottom:0.600280pt;}
.y183{bottom:0.602373pt;}
.y189{bottom:0.605720pt;}
.y1a5{bottom:0.606933pt;}
.ycc{bottom:0.685107pt;}
.yea{bottom:0.729080pt;}
.yc0{bottom:0.733147pt;}
.yf0{bottom:0.737120pt;}
.y1f1{bottom:0.747347pt;}
.y240{bottom:0.781133pt;}
.y104{bottom:0.854693pt;}
.y24d{bottom:0.855347pt;}
.y21f{bottom:0.895827pt;}
.y1ef{bottom:0.911520pt;}
.y8{bottom:0.911853pt;}
.y102{bottom:0.922880pt;}
.y29d{bottom:0.972533pt;}
.y282{bottom:1.032520pt;}
.y2ac{bottom:1.032547pt;}
.y28c{bottom:1.092533pt;}
.yca{bottom:1.185093pt;}
.y13a{bottom:1.185467pt;}
.y1af{bottom:1.186240pt;}
.y177{bottom:1.187093pt;}
.y199{bottom:1.188267pt;}
.y193{bottom:1.188307pt;}
.y1d2{bottom:1.188480pt;}
.yc4{bottom:1.193067pt;}
.y236{bottom:1.217160pt;}
.y173{bottom:1.255827pt;}
.y18d{bottom:1.256987pt;}
.y146{bottom:1.257893pt;}
.y1b5{bottom:1.258240pt;}
.y17b{bottom:1.259120pt;}
.y19d{bottom:1.260267pt;}
.y197{bottom:1.260320pt;}
.ye3{bottom:1.261067pt;}
.y167{bottom:1.264493pt;}
.y1a7{bottom:1.266933pt;}
.y6{bottom:1.286693pt;}
.y18b{bottom:1.329000pt;}
.y136{bottom:1.329427pt;}
.y142{bottom:1.329840pt;}
.y1b1{bottom:1.330240pt;}
.y175{bottom:1.331093pt;}
.y12a{bottom:1.331547pt;}
.y19f{bottom:1.332280pt;}
.y191{bottom:1.332320pt;}
.y118{bottom:1.333573pt;}
.y17f{bottom:1.334400pt;}
.y12e{bottom:1.334800pt;}
.y163{bottom:1.336467pt;}
.y15f{bottom:1.336507pt;}
.y122{bottom:1.336920pt;}
.y185{bottom:1.337733pt;}
.y140{bottom:1.337853pt;}
.y132{bottom:1.338133pt;}
.y1ab{bottom:1.338933pt;}
.y16b{bottom:1.339813pt;}
.y126{bottom:1.340253pt;}
.y1ff{bottom:1.342693pt;}
.y156{bottom:1.368413pt;}
.y230{bottom:1.407347pt;}
.y255{bottom:1.492507pt;}
.y5d{bottom:1.496360pt;}
.y56{bottom:1.496373pt;}
.y259{bottom:1.496507pt;}
.yd9{bottom:1.497107pt;}
.y4e{bottom:1.500373pt;}
.y63{bottom:1.500387pt;}
.yba{bottom:1.501133pt;}
.y12{bottom:2.131840pt;}
.y14{bottom:2.251787pt;}
.y2{bottom:2.296893pt;}
.y1c3{bottom:2.297547pt;}
.yc{bottom:2.401213pt;}
.y29{bottom:2.450440pt;}
.y128{bottom:2.576253pt;}
.ybc{bottom:2.577147pt;}
.y138{bottom:2.577400pt;}
.y13c{bottom:2.577467pt;}
.y14a{bottom:2.577880pt;}
.y12c{bottom:2.579507pt;}
.y257{bottom:2.580573pt;}
.y76{bottom:2.581293pt;}
.y88{bottom:2.581347pt;}
.y11f{bottom:2.581533pt;}
.y11a{bottom:2.581613pt;}
.y130{bottom:2.582853pt;}
.y5f{bottom:2.584347pt;}
.y124{bottom:2.584960pt;}
.y134{bottom:2.586107pt;}
.y2af{bottom:2.652480pt;}
.y286{bottom:2.652507pt;}
.y28f{bottom:2.652547pt;}
.y7e{bottom:2.653320pt;}
.y2ba{bottom:2.760480pt;}
.y293{bottom:2.760493pt;}
.y280{bottom:2.760507pt;}
.y2a9{bottom:2.760520pt;}
.y27c{bottom:2.760533pt;}
.y284{bottom:2.760547pt;}
.y2a2{bottom:2.760560pt;}
.y1a3{bottom:3.150920pt;}
.ybe{bottom:3.153160pt;}
.y2d{bottom:3.154507pt;}
.y13e{bottom:3.157867pt;}
.y25{bottom:3.222493pt;}
.y27{bottom:3.226480pt;}
.y24a{bottom:3.235813pt;}
.y4c{bottom:3.236360pt;}
.y46{bottom:3.236373pt;}
.y65{bottom:3.236387pt;}
.y1d0{bottom:3.236493pt;}
.y251{bottom:3.236573pt;}
.ydd{bottom:3.237053pt;}
.y98{bottom:3.237067pt;}
.yf6{bottom:3.237080pt;}
.yc6{bottom:3.237093pt;}
.yd0{bottom:3.237107pt;}
.y92{bottom:3.237133pt;}
.yb8{bottom:3.237147pt;}
.y1b7{bottom:3.237813pt;}
.y1bd{bottom:3.237853pt;}
.y207{bottom:3.238613pt;}
.y20d{bottom:3.238640pt;}
.y14e{bottom:3.239213pt;}
.y24c{bottom:3.239813pt;}
.y213{bottom:3.239827pt;}
.y219{bottom:3.239867pt;}
.y6b{bottom:3.240347pt;}
.y48{bottom:3.240360pt;}
.y52{bottom:3.240373pt;}
.y158{bottom:3.240400pt;}
.y227{bottom:3.240413pt;}
.y25d{bottom:3.240480pt;}
.y270{bottom:3.240520pt;}
.y1cc{bottom:3.240560pt;}
.y9a{bottom:3.241053pt;}
.yfb{bottom:3.241080pt;}
.yc2{bottom:3.241093pt;}
.ya8{bottom:3.241120pt;}
.y94{bottom:3.241133pt;}
.y1b9{bottom:3.241800pt;}
.y1bf{bottom:3.241840pt;}
.y112{bottom:3.241947pt;}
.y20f{bottom:3.242613pt;}
.y1f9{bottom:3.242720pt;}
.y150{bottom:3.243200pt;}
.y248{bottom:3.243827pt;}
.y21b{bottom:3.243853pt;}
.y5b{bottom:3.244360pt;}
.y4a{bottom:3.244373pt;}
.y44{bottom:3.244387pt;}
.y229{bottom:3.244413pt;}
.y24f{bottom:3.244467pt;}
.y272{bottom:3.244507pt;}
.y25f{bottom:3.244547pt;}
.y1ce{bottom:3.244560pt;}
.yb1{bottom:3.245040pt;}
.yd7{bottom:3.245080pt;}
.yf4{bottom:3.245093pt;}
.y9c{bottom:3.245107pt;}
.ya5{bottom:3.245120pt;}
.y23b{bottom:3.245160pt;}
.y1c1{bottom:3.245840pt;}
.y1bb{bottom:3.245867pt;}
.y1dd{bottom:3.245973pt;}
.y114{bottom:3.246013pt;}
.y1fb{bottom:3.246707pt;}
.y14c{bottom:3.247187pt;}
.y106{bottom:3.249267pt;}
.yff{bottom:3.265040pt;}
.y3e{bottom:3.328360pt;}
.y3b{bottom:3.332360pt;}
.y217{bottom:3.367840pt;}
.y61{bottom:3.368387pt;}
.y274{bottom:3.368533pt;}
.y26e{bottom:3.368560pt;}
.y1ca{bottom:3.368573pt;}
.yec{bottom:3.369120pt;}
.y1e5{bottom:3.369947pt;}
.y1df{bottom:3.369960pt;}
.y1f7{bottom:3.370693pt;}
.y22c{bottom:3.372347pt;}
.y276{bottom:3.372520pt;}
.y253{bottom:3.372560pt;}
.yd2{bottom:3.373080pt;}
.yee{bottom:3.373107pt;}
.y239{bottom:3.373133pt;}
.y1e7{bottom:3.373947pt;}
.y1ec{bottom:3.373973pt;}
.y1e1{bottom:3.373987pt;}
.y209{bottom:3.374587pt;}
.y215{bottom:3.375853pt;}
.y6d{bottom:3.376347pt;}
.y54{bottom:3.376360pt;}
.y22e{bottom:3.376413pt;}
.y1c8{bottom:3.376467pt;}
.y266{bottom:3.376547pt;}
.ye5{bottom:3.377067pt;}
.y96{bottom:3.377120pt;}
.y1e9{bottom:3.377933pt;}
.y1e3{bottom:3.377960pt;}
.y20b{bottom:3.378573pt;}
.y37{bottom:3.384360pt;}
.y39{bottom:3.388387pt;}
.y35{bottom:3.392373pt;}
.y33{bottom:3.412360pt;}
.y1f{bottom:3.414467pt;}
.y2b{bottom:3.414507pt;}
.y40{bottom:3.416373pt;}
.y1b{bottom:3.418453pt;}
.y21{bottom:3.418533pt;}
.y31{bottom:3.420373pt;}
.y1d{bottom:3.422440pt;}
.y23{bottom:3.422533pt;}
.y1f3{bottom:3.513987pt;}
.y1fd{bottom:3.514693pt;}
.y23e{bottom:3.517133pt;}
.y154{bottom:3.519200pt;}
.y1d4{bottom:3.520520pt;}
.y21d{bottom:3.523840pt;}
.y68{bottom:3.556360pt;}
.y223{bottom:3.691853pt;}
.y10c{bottom:3.693280pt;}
.y1f5{bottom:3.693920pt;}
.y203{bottom:3.694707pt;}
.y244{bottom:3.697107pt;}
.y1d8{bottom:3.700533pt;}
.y42{bottom:3.864373pt;}
.ya{bottom:5.353187pt;}
.y22f{bottom:23.460000pt;}
.y5{bottom:23.580000pt;}
.y101{bottom:23.880000pt;}
.y1ee{bottom:23.892013pt;}
.y103{bottom:24.012000pt;}
.y1f0{bottom:24.120000pt;}
.y1c5{bottom:24.576013pt;}
.y1{bottom:24.600000pt;}
.y8b{bottom:24.684000pt;}
.y8d{bottom:24.863987pt;}
.y3{bottom:26.688013pt;}
.y7{bottom:28.331987pt;}
.y6e{bottom:62.831987pt;}
.y1c0{bottom:69.587987pt;}
.y22d{bottom:72.432013pt;}
.y6c{bottom:77.340000pt;}
.y1be{bottom:87.192000pt;}
.y22b{bottom:90.036013pt;}
.y6a{bottom:95.076013pt;}
.y24b{bottom:96.084000pt;}
.y1bc{bottom:104.796000pt;}
.y100{bottom:106.848000pt;}
.y22a{bottom:107.640000pt;}
.y20e{bottom:112.332013pt;}
.y69{bottom:112.679987pt;}
.y249{bottom:113.688013pt;}
.y1ba{bottom:122.388000pt;}
.yfe{bottom:124.428000pt;}
.y228{bottom:125.363987pt;}
.y20c{bottom:129.936000pt;}
.y67{bottom:129.960000pt;}
.y247{bottom:131.280013pt;}
.y1b8{bottom:139.992000pt;}
.y226{bottom:142.968000pt;}
.y20a{bottom:147.396000pt;}
.yfc{bottom:148.164000pt;}
.y245{bottom:151.800013pt;}
.y1b6{bottom:157.596013pt;}
.y2b9{bottom:160.452000pt;}
.y224{bottom:163.524013pt;}
.y208{bottom:165.000000pt;}
.y2b8{bottom:174.851987pt;}
.y2b6{bottom:177.396000pt;}
.y206{bottom:182.736000pt;}
.y66{bottom:186.276000pt;}
.y2b5{bottom:189.252000pt;}
.y2b4{bottom:190.920000pt;}
.yfa{bottom:201.252000pt;}
.y2b3{bottom:203.652000pt;}
.y60{bottom:203.747987pt;}
.y64{bottom:203.879987pt;}
.y62{bottom:210.456000pt;}
.y1b0{bottom:217.739987pt;}
.y1b4{bottom:217.811987pt;}
.y1ae{bottom:217.883987pt;}
.y2b2{bottom:218.052000pt;}
.y1b2{bottom:218.471987pt;}
.y1ac{bottom:218.796000pt;}
.yf9{bottom:218.856000pt;}
.y2b0{bottom:220.692000pt;}
.y5a{bottom:221.471987pt;}
.y5e{bottom:222.132000pt;}
.y5c{bottom:228.060000pt;}
.y2ae{bottom:232.560000pt;}
.yf8{bottom:236.448000pt;}
.y59{bottom:239.075987pt;}
.y1a2{bottom:242.376000pt;}
.y1aa{bottom:244.187987pt;}
.y1a6{bottom:244.259987pt;}
.y1a4{bottom:244.919987pt;}
.y1a8{bottom:245.244000pt;}
.y2ad{bottom:246.851987pt;}
.y2ab{bottom:248.580000pt;}
.yf7{bottom:254.052000pt;}
.y58{bottom:256.679987pt;}
.y2aa{bottom:261.252000pt;}
.y19e{bottom:271.067987pt;}
.y19c{bottom:271.140000pt;}
.y198{bottom:271.212000pt;}
.yf5{bottom:271.655987pt;}
.y1a0{bottom:271.799987pt;}
.y19a{bottom:272.123987pt;}
.y53{bottom:274.140000pt;}
.y57{bottom:274.271987pt;}
.y2a8{bottom:275.652000pt;}
.y2a7{bottom:278.291987pt;}
.y55{bottom:280.859987pt;}
.yf3{bottom:289.247987pt;}
.y2a6{bottom:291.779987pt;}
.y51{bottom:291.876000pt;}
.y190{bottom:297.107987pt;}
.y196{bottom:297.179987pt;}
.y192{bottom:297.252000pt;}
.y194{bottom:298.163987pt;}
.y2a5{bottom:304.451987pt;}
.yed{bottom:306.719987pt;}
.y2a3{bottom:307.092000pt;}
.y4b{bottom:309.479987pt;}
.yf1{bottom:309.948000pt;}
.y4f{bottom:312.563987pt;}
.yef{bottom:314.195987pt;}
.y4d{bottom:316.055987pt;}
.y2a1{bottom:318.851987pt;}
.y29f{bottom:321.383987pt;}
.y18a{bottom:323.567987pt;}
.y18c{bottom:323.640000pt;}
.yeb{bottom:324.324000pt;}
.y18e{bottom:324.623987pt;}
.y49{bottom:327.071987pt;}
.y29e{bottom:333.252000pt;}
.y29c{bottom:335.040000pt;}
.y1ed{bottom:340.331987pt;}
.ye8{bottom:342.047973pt;}
.y47{bottom:344.675987pt;}
.y29b{bottom:347.651973pt;}
.ye9{bottom:349.403973pt;}
.y184{bottom:350.015987pt;}
.y299{bottom:350.184000pt;}
.y188{bottom:350.748000pt;}
.y186{bottom:351.071987pt;}
.y1eb{bottom:357.804000pt;}
.ye7{bottom:359.651973pt;}
.y298{bottom:362.160000pt;}
.y45{bottom:362.279987pt;}
.y1ea{bottom:375.408000pt;}
.y297{bottom:376.451987pt;}
.y17e{bottom:376.475987pt;}
.y182{bottom:377.208013pt;}
.ye6{bottom:377.255987pt;}
.y180{bottom:377.531987pt;}
.y295{bottom:378.719973pt;}
.y43{bottom:379.871987pt;}
.y294{bottom:390.960000pt;}
.y1e8{bottom:393.000000pt;}
.ye4{bottom:394.715987pt;}
.y41{bottom:396.851973pt;}
.y174{bottom:402.936000pt;}
.y17a{bottom:403.007973pt;}
.y176{bottom:403.080000pt;}
.y17c{bottom:403.667973pt;}
.y178{bottom:403.991987pt;}
.y292{bottom:405.252000pt;}
.y290{bottom:407.795973pt;}
.y1e6{bottom:410.604000pt;}
.ye2{bottom:414.432013pt;}
.y28e{bottom:419.759973pt;}
.y1e4{bottom:428.207973pt;}
.y16a{bottom:429.383987pt;}
.y172{bottom:429.467973pt;}
.ye1{bottom:430.055987pt;}
.y16e{bottom:430.127973pt;}
.y16c{bottom:430.439987pt;}
.y170{bottom:433.500000pt;}
.y28d{bottom:434.052000pt;}
.y28b{bottom:435.719973pt;}
.y1e2{bottom:445.799973pt;}
.ye0{bottom:447.647987pt;}
.y28a{bottom:448.451987pt;}
.y3f{bottom:453.299973pt;}
.y162{bottom:455.844000pt;}
.y166{bottom:455.915973pt;}
.y164{bottom:456.899987pt;}
.y168{bottom:459.948000pt;}
.y289{bottom:462.851973pt;}
.y1e0{bottom:463.403973pt;}
.y287{bottom:465.491987pt;}
.yde{bottom:468.215987pt;}
.y3d{bottom:470.988000pt;}
.y285{bottom:477.359987pt;}
.y1de{bottom:481.007973pt;}
.y15e{bottom:481.883987pt;}
.ydc{bottom:482.856000pt;}
.y160{bottom:485.988000pt;}
.y3c{bottom:488.531987pt;}
.y283{bottom:491.651973pt;}
.y281{bottom:493.380000pt;}
.y1dc{bottom:498.731973pt;}
.yd6{bottom:500.448000pt;}
.yda{bottom:503.411987pt;}
.y27f{bottom:506.052000pt;}
.y3a{bottom:506.184000pt;}
.y15c{bottom:506.939987pt;}
.yd8{bottom:507.035973pt;}
.y27d{bottom:508.691973pt;}
.y1db{bottom:516.335973pt;}
.yd5{bottom:518.052000pt;}
.y27b{bottom:520.451987pt;}
.y157{bottom:521.580000pt;}
.y155{bottom:523.451987pt;}
.y38{bottom:523.727987pt;}
.y159{bottom:524.543987pt;}
.yd4{bottom:535.655960pt;}
.y279{bottom:537.107987pt;}
.y243{bottom:538.092000pt;}
.y23d{bottom:538.271973pt;}
.y15b{bottom:539.184000pt;}
.y23f{bottom:541.007973pt;}
.y36{bottom:541.331987pt;}
.y241{bottom:544.571987pt;}
.y222{bottom:551.639973pt;}
.y21c{bottom:551.807987pt;}
.yd3{bottom:553.247960pt;}
.y21e{bottom:554.436000pt;}
.y202{bottom:558.059973pt;}
.y220{bottom:558.120000pt;}
.y1fc{bottom:558.239987pt;}
.y34{bottom:558.923987pt;}
.y1fe{bottom:560.411987pt;}
.y204{bottom:561.599973pt;}
.y200{bottom:561.755987pt;}
.yd1{bottom:570.719973pt;}
.y32{bottom:576.503987pt;}
.y23c{bottom:578.316000pt;}
.y153{bottom:581.448000pt;}
.y14f{bottom:581.724000pt;}
.y151{bottom:584.963987pt;}
.ycf{bottom:588.455973pt;}
.y21a{bottom:588.887987pt;}
.y278{bottom:590.243973pt;}
.y23a{bottom:592.943973pt;}
.y30{bottom:594.095987pt;}
.y1fa{bottom:595.307987pt;}
.yce{bottom:606.047973pt;}
.y218{bottom:606.491987pt;}
.y277{bottom:607.967973pt;}
.y238{bottom:610.415973pt;}
.y1f8{bottom:612.911987pt;}
.y2e{bottom:614.687987pt;}
.y14d{bottom:618.528000pt;}
.ycd{bottom:623.651973pt;}
.y216{bottom:623.963987pt;}
.y275{bottom:625.439987pt;}
.y89{bottom:627.047973pt;}
.y8a{bottom:627.155960pt;}
.y237{bottom:628.151973pt;}
.y1f6{bottom:630.383987pt;}
.y14b{bottom:636.120000pt;}
.y87{bottom:639.095987pt;}
.yc5{bottom:641.255987pt;}
.y214{bottom:641.555987pt;}
.y273{bottom:643.043987pt;}
.yc9{bottom:643.307987pt;}
.y235{bottom:647.771973pt;}
.ycb{bottom:648.647987pt;}
.yc7{bottom:649.175987pt;}
.y86{bottom:655.847987pt;}
.y212{bottom:659.291987pt;}
.y271{bottom:660.767987pt;}
.yc3{bottom:660.899987pt;}
.y2c{bottom:662.279987pt;}
.y85{bottom:670.247960pt;}
.y83{bottom:674.471960pt;}
.yc1{bottom:676.451987pt;}
.y26f{bottom:678.371987pt;}
.y13f{bottom:678.743973pt;}
.y2a{bottom:679.620000pt;}
.y149{bottom:686.303960pt;}
.y141{bottom:687.552000pt;}
.y145{bottom:687.623947pt;}
.y143{bottom:688.284013pt;}
.y147{bottom:688.607987pt;}
.yb7{bottom:694.055987pt;}
.ybd{bottom:694.139973pt;}
.y13d{bottom:694.524013pt;}
.ybb{bottom:694.715987pt;}
.y26d{bottom:695.844000pt;}
.y28{bottom:698.184000pt;}
.yb9{bottom:700.632000pt;}
.ybf{bottom:701.399987pt;}
.yb6{bottom:711.647947pt;}
.y7f{bottom:713.387933pt;}
.y26c{bottom:713.435960pt;}
.y81{bottom:713.555987pt;}
.y26{bottom:715.007973pt;}
.y13b{bottom:725.255947pt;}
.y7d{bottom:725.423987pt;}
.y139{bottom:726.647947pt;}
.yb5{bottom:729.251947pt;}
.y26b{bottom:731.171960pt;}
.y24{bottom:732.611973pt;}
.y7c{bottom:742.247960pt;}
.yb4{bottom:746.855960pt;}
.y26a{bottom:748.775960pt;}
.y22{bottom:750.011960pt;}
.y137{bottom:751.295973pt;}
.y135{bottom:752.543947pt;}
.y7b{bottom:756.647947pt;}
.y79{bottom:760.871987pt;}
.yb0{bottom:764.448000pt;}
.y269{bottom:766.236000pt;}
.y20{bottom:767.615973pt;}
.yb2{bottom:772.487960pt;}
.y133{bottom:777.743973pt;}
.y131{bottom:778.991947pt;}
.yaf{bottom:782.052000pt;}
.y268{bottom:783.972000pt;}
.y1e{bottom:785.219973pt;}
.yae{bottom:799.656000pt;}
.y77{bottom:799.847987pt;}
.y267{bottom:801.576013pt;}
.y1c{bottom:802.812013pt;}
.y12f{bottom:804.203933pt;}
.y12d{bottom:805.451987pt;}
.y75{bottom:811.896000pt;}
.ya9{bottom:817.247960pt;}
.y265{bottom:819.035973pt;}
.yac{bottom:820.344000pt;}
.y1a{bottom:820.416013pt;}
.yaa{bottom:825.335933pt;}
.y74{bottom:828.647947pt;}
.y12b{bottom:830.663987pt;}
.y129{bottom:831.911947pt;}
.ya7{bottom:834.851973pt;}
.y264{bottom:836.771973pt;}
.y18{bottom:841.151933pt;}
.y72{bottom:843.048013pt;}
.y70{bottom:847.271973pt;}
.ya6{bottom:852.455973pt;}
.y263{bottom:854.375973pt;}
.y127{bottom:857.123947pt;}
.y125{bottom:858.359947pt;}
.ya4{bottom:870.047933pt;}
.y262{bottom:871.967933pt;}
.y123{bottom:883.571947pt;}
.y121{bottom:884.819987pt;}
.ya3{bottom:887.651933pt;}
.y261{bottom:889.571947pt;}
.y1d7{bottom:905.111973pt;}
.y1d3{bottom:905.291987pt;}
.y260{bottom:907.175947pt;}
.y9d{bottom:908.219973pt;}
.ya1{bottom:908.351973pt;}
.y1d9{bottom:908.651933pt;}
.y1d5{bottom:908.807947pt;}
.y11e{bottom:910.031987pt;}
.y11d{bottom:911.279947pt;}
.y9f{bottom:913.331947pt;}
.y120{bottom:915.383947pt;}
.y9b{bottom:922.847987pt;}
.y25e{bottom:924.767987pt;}
.y119{bottom:936.071947pt;}
.y117{bottom:937.319987pt;}
.y99{bottom:940.451987pt;}
.y11b{bottom:941.423987pt;}
.y25c{bottom:942.371987pt;}
.y1d1{bottom:944.423987pt;}
.y97{bottom:958.055987pt;}
.y1cf{bottom:959.975987pt;}
.y13{bottom:966.708013pt;}
.y11{bottom:966.827960pt;}
.y115{bottom:967.115973pt;}
.y15{bottom:968.723960pt;}
.yd{bottom:968.736000pt;}
.yf{bottom:972.923987pt;}
.y111{bottom:972.948000pt;}
.y95{bottom:975.515947pt;}
.y10f{bottom:975.911947pt;}
.y1cd{bottom:977.567947pt;}
.y25a{bottom:980.663987pt;}
.y113{bottom:981.743973pt;}
.y258{bottom:984.156000pt;}
.y93{bottom:993.251947pt;}
.y252{bottom:995.039960pt;}
.y1cb{bottom:995.171960pt;}
.y256{bottom:995.831947pt;}
.yb{bottom:999.431960pt;}
.y254{bottom:1001.760013pt;}
.y91{bottom:1010.855960pt;}
.y1c9{bottom:1012.643960pt;}
.y250{bottom:1012.775960pt;}
.y9{bottom:1020.479987pt;}
.y10b{bottom:1028.580000pt;}
.y1f2{bottom:1028.759933pt;}
.y105{bottom:1029.024013pt;}
.y1c7{bottom:1030.236000pt;}
.y24e{bottom:1030.368000pt;}
.y8f{bottom:1031.363933pt;}
.y231{bottom:1031.975987pt;}
.y10d{bottom:1032.107987pt;}
.y210{bottom:1032.119960pt;}
.y107{bottom:1032.239987pt;}
.y109{bottom:1032.275960pt;}
.y233{bottom:1035.059973pt;}
.ha3{height:0.899987pt;}
.h79{height:0.911947pt;}
.h9b{height:0.911987pt;}
.h7d{height:0.912027pt;}
.h41{height:1.212000pt;}
.hd4{height:1.463987pt;}
.hd9{height:1.464040pt;}
.h4e{height:1.475987pt;}
.h50{height:1.487947pt;}
.h2e{height:1.488000pt;}
.hd2{height:1.691973pt;}
.hcc{height:1.692013pt;}
.hbf{height:1.692067pt;}
.h70{height:1.703947pt;}
.h11{height:3.239987pt;}
.h6e{height:4.248053pt;}
.hbd{height:4.260000pt;}
.h95{height:4.260013pt;}
.h14{height:4.368000pt;}
.hf{height:4.379973pt;}
.h4d{height:5.508053pt;}
.h4f{height:5.508067pt;}
.h51{height:5.555987pt;}
.h58{height:5.640013pt;}
.h5a{height:6.227987pt;}
.h56{height:6.239987pt;}
.h62{height:6.240027pt;}
.h65{height:6.252013pt;}
.h4{height:6.935987pt;}
.h5d{height:7.008013pt;}
.h52{height:7.043947pt;}
.h35{height:7.044000pt;}
.h3a{height:7.559973pt;}
.h42{height:7.560027pt;}
.hdf{height:7.571933pt;}
.h2c{height:7.572000pt;}
.h54{height:7.595947pt;}
.h32{height:7.595987pt;}
.h31{height:7.596013pt;}
.h5c{height:7.596027pt;}
.hc5{height:7.823987pt;}
.h9{height:7.824013pt;}
.h69{height:7.836000pt;}
.he9{height:7.896000pt;}
.hf6{height:7.967973pt;}
.h3c{height:8.003987pt;}
.hf9{height:8.004000pt;}
.hf5{height:8.052000pt;}
.hd{height:8.123947pt;}
.hc4{height:8.303987pt;}
.h7{height:8.304027pt;}
.h68{height:8.316000pt;}
.h43{height:8.543987pt;}
.h3d{height:8.544027pt;}
.h13{height:8.568027pt;}
.h40{height:8.604013pt;}
.hed{height:8.687987pt;}
.hf0{height:8.760013pt;}
.hf7{height:8.783973pt;}
.heb{height:8.807987pt;}
.hfa{height:8.808000pt;}
.h100{height:8.820000pt;}
.hf2{height:8.820040pt;}
.hff{height:8.867987pt;}
.h73{height:9.528000pt;}
.h15{height:9.552000pt;}
.h90{height:9.779947pt;}
.h98{height:9.779987pt;}
.h2{height:9.780000pt;}
.h72{height:9.780027pt;}
.ha2{height:9.791987pt;}
.hd6{height:9.827973pt;}
.h91{height:10.103920pt;}
.ha5{height:10.103960pt;}
.ha7{height:10.103973pt;}
.ha1{height:10.104000pt;}
.hae{height:10.116000pt;}
.hc8{height:10.332027pt;}
.h94{height:10.344000pt;}
.h6d{height:10.355960pt;}
.h5e{height:10.439973pt;}
.h99{height:10.439987pt;}
.hb1{height:10.440000pt;}
.h4c{height:10.440027pt;}
.h39{height:10.452013pt;}
.hef{height:10.536013pt;}
.h12{height:10.583973pt;}
.h20{height:10.620000pt;}
.ha4{height:10.739987pt;}
.hac{height:10.740000pt;}
.hb3{height:10.740013pt;}
.h9f{height:10.751987pt;}
.had{height:10.752013pt;}
.h8f{height:10.763987pt;}
.h9d{height:10.764000pt;}
.haf{height:10.776000pt;}
.hb2{height:10.787987pt;}
.haa{height:10.788000pt;}
.hde{height:10.788013pt;}
.h9e{height:10.800000pt;}
.ha6{height:10.835987pt;}
.hab{height:10.836000pt;}
.ha0{height:10.847987pt;}
.hb0{height:10.848000pt;}
.h8d{height:10.871987pt;}
.ha8{height:10.872000pt;}
.h86{height:10.884027pt;}
.h3e{height:10.895987pt;}
.h44{height:10.896000pt;}
.h45{height:10.908000pt;}
.hdb{height:10.920000pt;}
.hf4{height:10.967973pt;}
.hfd{height:10.968000pt;}
.hec{height:10.968013pt;}
.h3f{height:10.968027pt;}
.h8e{height:11.063973pt;}
.hea{height:11.075973pt;}
.hfb{height:11.075987pt;}
.hee{height:11.076000pt;}
.he8{height:11.076013pt;}
.hd0{height:11.195973pt;}
.hf1{height:11.256013pt;}
.hd3{height:11.267973pt;}
.hb7{height:11.316000pt;}
.h101{height:11.327987pt;}
.hf3{height:11.328000pt;}
.hfc{height:11.363987pt;}
.hf8{height:11.364013pt;}
.hd1{height:11.375973pt;}
.hda{height:11.411987pt;}
.h97{height:11.531987pt;}
.hc6{height:11.651987pt;}
.hbb{height:11.699960pt;}
.h59{height:11.699987pt;}
.h8a{height:11.700040pt;}
.h57{height:11.711987pt;}
.ha9{height:11.723987pt;}
.h6a{height:11.759987pt;}
.h60{height:11.771960pt;}
.hd8{height:11.795987pt;}
.hb4{height:11.808013pt;}
.h89{height:11.843987pt;}
.h75{height:11.844000pt;}
.h7e{height:11.855960pt;}
.h9c{height:11.855987pt;}
.h9a{height:11.856000pt;}
.h80{height:11.856040pt;}
.h83{height:12.083973pt;}
.h7b{height:12.083987pt;}
.h77{height:12.084053pt;}
.h81{height:12.084067pt;}
.h87{height:12.096027pt;}
.h8b{height:12.120027pt;}
.h7f{height:12.131987pt;}
.h7c{height:12.132000pt;}
.h66{height:12.167987pt;}
.h5{height:12.191987pt;}
.hd7{height:12.311987pt;}
.h74{height:12.479987pt;}
.h1d{height:12.732013pt;}
.h53{height:12.743973pt;}
.h33{height:12.744000pt;}
.he0{height:12.744067pt;}
.h30{height:12.875987pt;}
.he6{height:12.876027pt;}
.h82{height:13.044027pt;}
.h71{height:13.055987pt;}
.h88{height:13.056000pt;}
.h78{height:13.056067pt;}
.h85{height:13.056080pt;}
.h7a{height:13.091960pt;}
.h76{height:13.092040pt;}
.h84{height:13.104013pt;}
.hfe{height:13.284000pt;}
.h55{height:13.319987pt;}
.h4b{height:13.403960pt;}
.h47{height:13.403973pt;}
.h2f{height:13.403987pt;}
.h2b{height:13.404000pt;}
.h2a{height:13.404013pt;}
.he1{height:13.404040pt;}
.h48{height:13.404053pt;}
.h92{height:13.415973pt;}
.hca{height:13.416013pt;}
.hb5{height:13.427973pt;}
.h1f{height:13.439987pt;}
.h67{height:13.464013pt;}
.h1b{height:13.500000pt;}
.he3{height:13.535960pt;}
.h1c{height:13.535973pt;}
.h38{height:13.536000pt;}
.h34{height:13.536013pt;}
.he2{height:13.536040pt;}
.h49{height:13.536053pt;}
.h24{height:13.607987pt;}
.hc7{height:13.620027pt;}
.hcb{height:13.632000pt;}
.h8c{height:13.667960pt;}
.h23{height:13.668013pt;}
.h21{height:13.691973pt;}
.h25{height:13.692013pt;}
.h19{height:13.703933pt;}
.h22{height:13.703987pt;}
.hcf{height:13.716000pt;}
.h17{height:13.727947pt;}
.h1e{height:13.727987pt;}
.h1a{height:13.728027pt;}
.he4{height:13.751960pt;}
.h37{height:13.751987pt;}
.h61{height:13.752000pt;}
.hb6{height:13.752013pt;}
.hba{height:13.752027pt;}
.h5b{height:13.752040pt;}
.h5f{height:13.764000pt;}
.hc3{height:13.835973pt;}
.hbc{height:13.836027pt;}
.he5{height:13.847973pt;}
.hc2{height:13.847987pt;}
.h64{height:13.848000pt;}
.h63{height:13.883987pt;}
.hc1{height:13.884000pt;}
.hc0{height:13.884027pt;}
.hb9{height:13.884040pt;}
.hce{height:13.895987pt;}
.hcd{height:13.896000pt;}
.h6b{height:14.351960pt;}
.h93{height:14.351973pt;}
.h96{height:14.627973pt;}
.h6f{height:14.795973pt;}
.hc9{height:15.191973pt;}
.hd5{height:15.192013pt;}
.hdc{height:15.203973pt;}
.hbe{height:15.204027pt;}
.hdd{height:15.215973pt;}
.h36{height:15.396000pt;}
.h46{height:15.588053pt;}
.he7{height:15.755987pt;}
.h28{height:16.104000pt;}
.h4a{height:16.104013pt;}
.hb8{height:16.236000pt;}
.h26{height:18.756013pt;}
.hc{height:19.776053pt;}
.h10{height:24.443520pt;}
.ha{height:25.968013pt;}
.h2d{height:29.841387pt;}
.h3{height:37.290667pt;}
.h8{height:37.418667pt;}
.h3b{height:42.096000pt;}
.he{height:42.144000pt;}
.h18{height:51.274667pt;}
.h29{height:51.450667pt;}
.h16{height:51.568000pt;}
.h6{height:53.850667pt;}
.h6c{height:56.192000pt;}
.h27{height:60.944000pt;}
.hb{height:84.384000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w11{width:0.276013pt;}
.w44{width:0.840000pt;}
.w5a{width:1.032027pt;}
.w8d{width:1.403973pt;}
.w118{width:1.403987pt;}
.w12c{width:1.404013pt;}
.w108{width:1.416013pt;}
.wa{width:1.691987pt;}
.w13c{width:1.991947pt;}
.w7b{width:1.991987pt;}
.w2a{width:1.992000pt;}
.w55{width:2.003987pt;}
.wb{width:2.088013pt;}
.we{width:2.099987pt;}
.we4{width:2.615960pt;}
.w9e{width:2.616000pt;}
.we3{width:2.627960pt;}
.we2{width:2.628013pt;}
.w3a{width:2.832000pt;}
.w69{width:2.964000pt;}
.w6b{width:2.975987pt;}
.w123{width:3.072000pt;}
.w12a{width:3.072013pt;}
.w85{width:3.540000pt;}
.w6{width:3.540027pt;}
.wd{width:3.672000pt;}
.wdd{width:5.531973pt;}
.w112{width:5.532013pt;}
.w116{width:5.604000pt;}
.w10{width:5.676013pt;}
.w5d{width:5.736000pt;}
.w54{width:5.747987pt;}
.w59{width:5.748000pt;}
.w65{width:5.783973pt;}
.w76{width:5.795987pt;}
.w7a{width:5.796027pt;}
.w3f{width:5.880013pt;}
.w129{width:6.132000pt;}
.w130{width:6.168013pt;}
.w11f{width:6.180000pt;}
.w122{width:6.216000pt;}
.w152{width:6.720013pt;}
.w8b{width:6.804013pt;}
.w106{width:6.816000pt;}
.w154{width:6.864000pt;}
.w157{width:6.888000pt;}
.w14b{width:6.900000pt;}
.w159{width:6.924013pt;}
.w15b{width:6.936000pt;}
.w14d{width:6.972013pt;}
.w150{width:7.008000pt;}
.w6e{width:8.147947pt;}
.w2d{width:8.147987pt;}
.w31{width:8.148000pt;}
.w45{width:8.928027pt;}
.w8a{width:9.600013pt;}
.w15c{width:11.171987pt;}
.w135{width:12.252000pt;}
.w88{width:12.276040pt;}
.w4{width:12.300053pt;}
.w128{width:12.576013pt;}
.w4d{width:12.624013pt;}
.w11d{width:12.636013pt;}
.w103{width:12.648013pt;}
.w110{width:12.792000pt;}
.wf6{width:13.092000pt;}
.wfd{width:13.104013pt;}
.w6f{width:13.260013pt;}
.wf5{width:13.727987pt;}
.wf9{width:13.728027pt;}
.wfc{width:13.752013pt;}
.wf0{width:13.776000pt;}
.wf4{width:13.800013pt;}
.wee{width:13.812000pt;}
.wf8{width:13.812013pt;}
.wfe{width:13.896000pt;}
.w138{width:14.388027pt;}
.w13b{width:14.496013pt;}
.w34{width:16.644000pt;}
.we6{width:17.099987pt;}
.wf1{width:17.100000pt;}
.wf3{width:17.100013pt;}
.wf2{width:18.984000pt;}
.we7{width:18.995987pt;}
.web{width:18.996000pt;}
.wef{width:18.996013pt;}
.wac{width:19.200000pt;}
.wb4{width:19.403973pt;}
.wd6{width:19.451987pt;}
.wb8{width:19.464000pt;}
.wca{width:19.487987pt;}
.wc2{width:19.536013pt;}
.wd2{width:19.547973pt;}
.wc9{width:19.548013pt;}
.w9f{width:19.595987pt;}
.wf7{width:19.619987pt;}
.wcd{width:19.632000pt;}
.we9{width:19.656013pt;}
.we5{width:19.667987pt;}
.we8{width:19.668000pt;}
.wec{width:19.668013pt;}
.wfa{width:19.751987pt;}
.w100{width:19.752000pt;}
.wc5{width:19.776000pt;}
.wad{width:19.799960pt;}
.wed{width:19.799987pt;}
.wce{width:19.800000pt;}
.wa5{width:19.847973pt;}
.wc3{width:19.943960pt;}
.wd1{width:19.955973pt;}
.wbe{width:19.979973pt;}
.w15f{width:22.800013pt;}
.w29{width:22.932013pt;}
.wda{width:22.991987pt;}
.wd7{width:22.992000pt;}
.wd9{width:23.003987pt;}
.wea{width:23.004013pt;}
.wc6{width:24.624000pt;}
.wa8{width:24.635987pt;}
.wc0{width:24.636000pt;}
.w9c{width:24.731973pt;}
.wb1{width:24.732000pt;}
.wa2{width:24.804000pt;}
.wd8{width:24.887973pt;}
.wb6{width:24.995987pt;}
.w9a{width:25.031987pt;}
.w9b{width:25.080000pt;}
.wbb{width:25.115987pt;}
.wb2{width:25.176013pt;}
.waa{width:25.212000pt;}
.wa3{width:25.248013pt;}
.wcf{width:25.295987pt;}
.wa1{width:25.296000pt;}
.wab{width:25.331987pt;}
.wb5{width:25.344000pt;}
.wa4{width:25.380000pt;}
.wc7{width:25.476000pt;}
.wcb{width:25.487987pt;}
.wa7{width:25.488013pt;}
.wb0{width:25.644000pt;}
.wbc{width:25.668000pt;}
.w99{width:25.668013pt;}
.wa6{width:25.703973pt;}
.wc1{width:25.703987pt;}
.wb9{width:25.739987pt;}
.wbf{width:25.752013pt;}
.wba{width:25.812000pt;}
.wa9{width:25.848000pt;}
.wc4{width:25.871987pt;}
.w9d{width:25.872000pt;}
.wd3{width:25.908000pt;}
.wdb{width:25.956013pt;}
.wa0{width:26.015987pt;}
.w8f{width:26.039987pt;}
.w95{width:26.040000pt;}
.w92{width:27.000000pt;}
.w2c{width:27.047987pt;}
.we1{width:27.588013pt;}
.w91{width:27.936000pt;}
.w97{width:29.532027pt;}
.w96{width:30.276000pt;}
.w93{width:30.335987pt;}
.wbd{width:30.528000pt;}
.wd0{width:30.696013pt;}
.wb3{width:30.888027pt;}
.wae{width:30.935987pt;}
.wb7{width:30.936000pt;}
.wc8{width:31.008027pt;}
.w87{width:34.068027pt;}
.w4c{width:34.080000pt;}
.w3{width:34.080027pt;}
.w111{width:35.436000pt;}
.w11e{width:35.448000pt;}
.w94{width:36.491987pt;}
.w3e{width:36.864013pt;}
.w90{width:38.184000pt;}
.w151{width:39.563987pt;}
.we0{width:41.627973pt;}
.w89{width:42.672000pt;}
.w63{width:44.376013pt;}
.w105{width:45.011987pt;}
.w12{width:45.516013pt;}
.w1c{width:47.484013pt;}
.w2{width:47.711987pt;}
.w86{width:47.712000pt;}
.w4b{width:47.712027pt;}
.wcc{width:48.492000pt;}
.w98{width:48.648013pt;}
.waf{width:48.888000pt;}
.w9{width:50.615987pt;}
.w6a{width:50.687987pt;}
.wc{width:50.819987pt;}
.w158{width:56.220000pt;}
.w10d{width:57.900000pt;}
.w12f{width:58.896000pt;}
.w43{width:61.151973pt;}
.w4a{width:62.976000pt;}
.wd5{width:64.464000pt;}
.w12d{width:65.292013pt;}
.w125{width:66.552000pt;}
.w156{width:69.684000pt;}
.wff{width:70.415987pt;}
.w39{width:70.824000pt;}
.wf{width:74.400013pt;}
.w67{width:76.380000pt;}
.w5{width:78.120000pt;}
.w84{width:78.120027pt;}
.w132{width:78.660000pt;}
.w104{width:85.200013pt;}
.wdf{width:85.259987pt;}
.w37{width:86.940013pt;}
.w168{width:87.035987pt;}
.w40{width:88.392013pt;}
.w81{width:89.424000pt;}
.w49{width:90.635987pt;}
.w46{width:91.727947pt;}
.w24{width:93.816000pt;}
.w8e{width:94.355973pt;}
.wd4{width:95.495987pt;}
.w41{width:97.175973pt;}
.wfb{width:97.535987pt;}
.w66{width:98.939987pt;}
.w3b{width:101.339973pt;}
.w47{width:102.119987pt;}
.w48{width:106.619987pt;}
.w144{width:106.668000pt;}
.w71{width:107.556013pt;}
.w3c{width:107.639973pt;}
.w11c{width:108.804000pt;}
.w42{width:112.596027pt;}
.w3d{width:114.684000pt;}
.w153{width:115.092000pt;}
.w1b{width:115.812000pt;}
.w21{width:121.619987pt;}
.w139{width:130.283987pt;}
.w14f{width:133.872013pt;}
.w53{width:137.760013pt;}
.w33{width:142.248013pt;}
.w4e{width:153.935987pt;}
.w6c{width:156.900027pt;}
.wde{width:171.420000pt;}
.w64{width:174.828013pt;}
.w117{width:182.735973pt;}
.w62{width:182.952013pt;}
.w141{width:183.564000pt;}
.w12b{width:186.095987pt;}
.w131{width:189.083987pt;}
.w124{width:190.968000pt;}
.w109{width:192.311973pt;}
.w161{width:197.340013pt;}
.w13f{width:198.180013pt;}
.w148{width:201.876000pt;}
.w77{width:202.344000pt;}
.w5e{width:205.200027pt;}
.w28{width:206.555987pt;}
.w149{width:211.763987pt;}
.w32{width:215.375973pt;}
.w101{width:230.555987pt;}
.w18{width:234.492013pt;}
.w162{width:245.712013pt;}
.w142{width:248.568013pt;}
.w120{width:256.560000pt;}
.w134{width:256.739987pt;}
.w1f{width:263.628000pt;}
.w113{width:264.791987pt;}
.w127{width:271.511987pt;}
.w165{width:274.728013pt;}
.w8c{width:282.791987pt;}
.w15a{width:291.227987pt;}
.w140{width:305.640000pt;}
.w30{width:311.339987pt;}
.w68{width:319.884000pt;}
.w5c{width:322.583973pt;}
.w75{width:326.664000pt;}
.w51{width:337.608000pt;}
.w107{width:349.895987pt;}
.w102{width:356.747973pt;}
.w14a{width:359.363973pt;}
.w7d{width:364.140000pt;}
.w35{width:376.727960pt;}
.wdc{width:378.515973pt;}
.w137{width:388.787973pt;}
.w10f{width:392.028013pt;}
.w8{width:404.555960pt;}
.w115{width:412.440013pt;}
.w79{width:418.452000pt;}
.w82{width:420.611973pt;}
.w60{width:421.572000pt;}
.w166{width:427.608000pt;}
.w83{width:442.248013pt;}
.w15d{width:451.715973pt;}
.w7{width:452.783973pt;}
.w80{width:458.099973pt;}
.w163{width:465.395973pt;}
.w36{width:467.123960pt;}
.w15{width:477.863987pt;}
.w58{width:488.435973pt;}
.w2e{width:497.784000pt;}
.w23{width:499.236013pt;}
.w14c{width:500.436013pt;}
.w147{width:501.083987pt;}
.w13a{width:509.820027pt;}
.w6d{width:513.984027pt;}
.w160{width:521.027973pt;}
.w15e{width:521.075987pt;}
.w167{width:521.147973pt;}
.w164{width:521.339973pt;}
.w155{width:521.363973pt;}
.w14e{width:521.843987pt;}
.w145{width:532.259987pt;}
.w126{width:535.308000pt;}
.w74{width:535.607973pt;}
.w20{width:535.667987pt;}
.w5b{width:535.944013pt;}
.w7c{width:535.968000pt;}
.w11a{width:536.016000pt;}
.w52{width:536.016013pt;}
.w78{width:536.028000pt;}
.w121{width:536.063973pt;}
.w56{width:536.064000pt;}
.w146{width:536.076013pt;}
.w133{width:536.088000pt;}
.w13d{width:536.088013pt;}
.w10b{width:536.100000pt;}
.w136{width:536.171987pt;}
.w114{width:536.243960pt;}
.w143{width:536.243987pt;}
.w7e{width:536.267973pt;}
.w26{width:536.315960pt;}
.w50{width:536.315987pt;}
.w38{width:536.327960pt;}
.w57{width:536.327973pt;}
.w7f{width:536.328000pt;}
.w2f{width:536.363973pt;}
.w2b{width:536.375947pt;}
.w4f{width:536.375987pt;}
.w10e{width:536.387987pt;}
.w5f{width:536.399973pt;}
.w27{width:536.399987pt;}
.w12e{width:536.423973pt;}
.w72{width:536.435987pt;}
.w25{width:536.447973pt;}
.w10c{width:536.460027pt;}
.w13e{width:536.483973pt;}
.w73{width:536.495973pt;}
.w10a{width:536.520027pt;}
.w70{width:536.532000pt;}
.w1d{width:536.567973pt;}
.w11b{width:536.603960pt;}
.w1e{width:536.663960pt;}
.w22{width:536.855947pt;}
.w14{width:536.856000pt;}
.w1a{width:536.903973pt;}
.w61{width:537.107973pt;}
.w19{width:537.107987pt;}
.w13{width:537.563960pt;}
.w16{width:537.707960pt;}
.w119{width:537.815960pt;}
.w17{width:537.815973pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xe{left:-74.429987pt;}
.x13{left:-0.952680pt;}
.x0{left:0.000000pt;}
.xf{left:1.010533pt;}
.x1f{left:27.995987pt;}
.x4{left:48.000000pt;}
.x10{left:73.872013pt;}
.x7{left:74.964013pt;}
.x6{left:75.948000pt;}
.x1d{left:83.771987pt;}
.x3d{left:84.912013pt;}
.x58{left:89.460000pt;}
.x71{left:96.876000pt;}
.x52{left:99.360000pt;}
.x14{left:104.964013pt;}
.x46{left:108.000000pt;}
.x15{left:114.204000pt;}
.x75{left:115.380000pt;}
.x39{left:119.160000pt;}
.x76{left:121.800013pt;}
.x56{left:123.240013pt;}
.x7b{left:125.544000pt;}
.x8{left:126.804000pt;}
.x5{left:128.495987pt;}
.x3a{left:129.660000pt;}
.x1e{left:133.560000pt;}
.x9{left:134.544000pt;}
.x57{left:139.764000pt;}
.x3b{left:140.712000pt;}
.x35{left:156.084000pt;}
.x20{left:181.560000pt;}
.x31{left:182.508000pt;}
.xa{left:186.000000pt;}
.xb{left:190.488000pt;}
.xc{left:195.647987pt;}
.x7f{left:196.799987pt;}
.x4f{left:199.956000pt;}
.x3e{left:201.936000pt;}
.x63{left:203.423987pt;}
.x53{left:205.368000pt;}
.x68{left:208.092000pt;}
.x5a{left:213.767987pt;}
.x18{left:218.675987pt;}
.x78{left:221.015987pt;}
.x72{left:227.627987pt;}
.x7a{left:231.371987pt;}
.x19{left:235.560000pt;}
.x73{left:238.679987pt;}
.x3f{left:248.951987pt;}
.x47{left:255.816000pt;}
.x50{left:258.132000pt;}
.x60{left:259.284000pt;}
.x6c{left:261.011987pt;}
.x5b{left:266.687987pt;}
.xd{left:269.771987pt;}
.x11{left:283.187987pt;}
.x12{left:307.451987pt;}
.x4e{left:308.735987pt;}
.x51{left:310.979987pt;}
.x69{left:312.204000pt;}
.x65{left:313.883987pt;}
.x77{left:317.796000pt;}
.x5c{left:319.595987pt;}
.x21{left:320.712000pt;}
.x22{left:327.876000pt;}
.x40{left:359.975987pt;}
.x48{left:361.644000pt;}
.x61{left:363.887987pt;}
.x27{left:365.267987pt;}
.x6f{left:366.875973pt;}
.x5d{left:372.515987pt;}
.x28{left:382.979987pt;}
.x16{left:387.791987pt;}
.x17{left:396.911987pt;}
.x41{left:411.696000pt;}
.x49{left:413.795973pt;}
.x6a{left:415.080000pt;}
.x64{left:417.479987pt;}
.x6d{left:419.795973pt;}
.x3c{left:425.712000pt;}
.x29{left:427.920000pt;}
.x2a{left:436.199987pt;}
.x59{left:458.856000pt;}
.x42{left:461.567987pt;}
.x43{left:466.632000pt;}
.x54{left:467.988000pt;}
.x4d{left:469.967973pt;}
.x70{left:470.939987pt;}
.x4a{left:478.344000pt;}
.x79{left:497.448000pt;}
.x2d{left:502.788000pt;}
.x25{left:505.451987pt;}
.x32{left:509.555987pt;}
.x26{left:512.615973pt;}
.x33{left:515.771973pt;}
.x44{left:517.031987pt;}
.x55{left:520.908000pt;}
.x4b{left:522.875973pt;}
.x66{left:525.575973pt;}
.x5e{left:531.252000pt;}
.x2e{left:557.712000pt;}
.x2f{left:560.915973pt;}
.x45{left:570.323973pt;}
.x4c{left:572.495973pt;}
.x67{left:573.816000pt;}
.x62{left:575.555987pt;}
.x6b{left:576.767987pt;}
.x6e{left:579.167973pt;}
.x5f{left:584.172000pt;}
.x7c{left:587.831987pt;}
.x74{left:590.783973pt;}
.x1{left:601.799973pt;}
.x34{left:609.227987pt;}
.x2b{left:612.132000pt;}
.x36{left:617.063960pt;}
.x2c{left:619.175987pt;}
.x1a{left:642.203973pt;}
.x2{left:651.575973pt;}
.x37{left:666.851973pt;}
.x23{left:671.387987pt;}
.x24{left:678.551960pt;}
.x7d{left:692.423987pt;}
.x30{left:696.576013pt;}
.x1b{left:704.219973pt;}
.x7e{left:708.132000pt;}
.x3{left:715.379960pt;}
.x38{left:730.643960pt;}
.x1c{left:733.944013pt;}
}




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