
    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_d58dec304757306ea299ec4e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_72224e73cd8a7b5786ee89fb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_3549ea4cdc3120ba9d53bcc5.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_87576a630bf64368ef93e790.woff')format("woff");}.ff4{font-family:ff4;line-height:3.667480;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_c1cc3597301e09b2507b370c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.897461;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_996efa7218c501a424c40121.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_d53a01738ce822980c56ef55.woff')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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_70b584c5f13af0a94e75e72a.woff')format("woff");}.ffa{font-family:ffa;line-height:3.667480;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_b66ff622dad159bbb083d701.woff')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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1a{vertical-align:-52.560000px;}
.v12{vertical-align:-23.760000px;}
.vf{vertical-align:-20.880000px;}
.v2{vertical-align:-18.000000px;}
.ve{vertical-align:-15.120000px;}
.v5{vertical-align:-12.240000px;}
.v13{vertical-align:-10.800000px;}
.v1b{vertical-align:-7.200000px;}
.v4{vertical-align:-5.760000px;}
.vd{vertical-align:-4.320000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:2.160000px;}
.v14{vertical-align:10.800000px;}
.v6{vertical-align:12.240000px;}
.v1c{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.v11{vertical-align:22.320000px;}
.v1d{vertical-align:23.760000px;}
.vb{vertical-align:25.200000px;}
.v18{vertical-align:33.840000px;}
.v10{vertical-align:36.000000px;}
.v7{vertical-align:40.320000px;}
.vc{vertical-align:43.200000px;}
.v8{vertical-align:46.080000px;}
.v17{vertical-align:48.240000px;}
.v15{vertical-align:52.560000px;}
.v9{vertical-align:86.400000px;}
.va{vertical-align:108.720000px;}
.v19{vertical-align:139.680000px;}
.ls64{letter-spacing:-5.754000px;}
.ls6d{letter-spacing:-0.828000px;}
.ls3a{letter-spacing:-0.618000px;}
.ls3c{letter-spacing:-0.612000px;}
.ls4d{letter-spacing:-0.540000px;}
.ls4f{letter-spacing:-0.460200px;}
.ls43{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.337200px;}
.ls5e{letter-spacing:-0.222000px;}
.ls54{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.206400px;}
.ls69{letter-spacing:-0.112200px;}
.ls6c{letter-spacing:-0.108000px;}
.ls39{letter-spacing:-0.106800px;}
.ls45{letter-spacing:-0.053280px;}
.ls46{letter-spacing:-0.017280px;}
.ls11{letter-spacing:-0.008640px;}
.lsb{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.002880px;}
.ls44{letter-spacing:0.004320px;}
.ls10{letter-spacing:0.008640px;}
.ls12{letter-spacing:0.012960px;}
.lsc{letter-spacing:0.018000px;}
.ls60{letter-spacing:0.053280px;}
.ls5f{letter-spacing:0.093000px;}
.ls51{letter-spacing:0.106560px;}
.ls55{letter-spacing:0.106800px;}
.ls9{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.115200px;}
.ls52{letter-spacing:0.132480px;}
.ls4b{letter-spacing:0.144000px;}
.ls3b{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.180000px;}
.ls3d{letter-spacing:0.189360px;}
.ls1{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.228000px;}
.ls65{letter-spacing:0.234000px;}
.ls42{letter-spacing:0.234720px;}
.ls34{letter-spacing:0.257760px;}
.lsd{letter-spacing:0.259800px;}
.ls35{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.279600px;}
.ls4a{letter-spacing:0.298800px;}
.ls1a{letter-spacing:0.306720px;}
.ls47{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.365760px;}
.ls48{letter-spacing:0.373200px;}
.ls19{letter-spacing:0.383040px;}
.ls5a{letter-spacing:0.399600px;}
.ls66{letter-spacing:0.532800px;}
.ls4c{letter-spacing:0.828000px;}
.ls2d{letter-spacing:0.855360px;}
.ls20{letter-spacing:0.977760px;}
.ls32{letter-spacing:1.094400px;}
.ls18{letter-spacing:1.162800px;}
.ls63{letter-spacing:1.434547px;}
.ls16{letter-spacing:1.444320px;}
.ls33{letter-spacing:1.555920px;}
.ls5{letter-spacing:1.594800px;}
.ls1e{letter-spacing:1.624320px;}
.ls36{letter-spacing:1.697760px;}
.ls2f{letter-spacing:1.828800px;}
.ls17{letter-spacing:1.837440px;}
.ls38{letter-spacing:1.917360px;}
.ls2e{letter-spacing:1.982160px;}
.ls31{letter-spacing:2.047680px;}
.ls37{letter-spacing:2.050560px;}
.ls1b{letter-spacing:2.250000px;}
.ls3f{letter-spacing:2.460960px;}
.ls29{letter-spacing:2.773440px;}
.ls5d{letter-spacing:2.846880px;}
.ls41{letter-spacing:3.180960px;}
.ls49{letter-spacing:3.219840px;}
.ls4{letter-spacing:3.251520px;}
.ls68{letter-spacing:3.399840px;}
.ls6{letter-spacing:3.523680px;}
.ls4e{letter-spacing:3.857760px;}
.ls13{letter-spacing:3.879360px;}
.ls67{letter-spacing:3.918240px;}
.ls14{letter-spacing:3.971520px;}
.ls21{letter-spacing:3.983040px;}
.ls30{letter-spacing:4.062240px;}
.ls1f{letter-spacing:4.163040px;}
.ls53{letter-spacing:5.708160px;}
.ls61{letter-spacing:8.177760px;}
.ls2c{letter-spacing:8.596080px;}
.ls50{letter-spacing:8.897760px;}
.ls62{letter-spacing:8.919360px;}
.ls59{letter-spacing:9.759600px;}
.ls28{letter-spacing:10.935360px;}
.ls40{letter-spacing:13.319280px;}
.ls58{letter-spacing:13.359600px;}
.ls3e{letter-spacing:13.439280px;}
.ls27{letter-spacing:13.679280px;}
.ls5c{letter-spacing:16.140960px;}
.ls57{letter-spacing:17.279280px;}
.ls25{letter-spacing:18.135360px;}
.ls23{letter-spacing:18.856080px;}
.ls56{letter-spacing:19.971360px;}
.ls5b{letter-spacing:20.658240px;}
.ls26{letter-spacing:20.836080px;}
.ls2b{letter-spacing:22.276080px;}
.ls6b{letter-spacing:23.868000px;}
.ls2a{letter-spacing:24.436080px;}
.ls24{letter-spacing:25.156080px;}
.ls22{letter-spacing:25.876080px;}
.ls6a{letter-spacing:58.962720px;}
.ls2{letter-spacing:73.584000px;}
.ls15{letter-spacing:81.306720px;}
.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;}
}
.ws29{word-spacing:-59.760000px;}
.ws6{word-spacing:-18.000000px;}
.wse{word-spacing:-15.300000px;}
.ws1b{word-spacing:-15.238800px;}
.ws24{word-spacing:-15.199800px;}
.ws1e{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.733600px;}
.ws14{word-spacing:-14.580000px;}
.ws1c{word-spacing:-14.479800px;}
.ws16{word-spacing:-13.860000px;}
.ws26{word-spacing:-13.734000px;}
.ws2a{word-spacing:-13.608000px;}
.ws2{word-spacing:-13.500000px;}
.ws2b{word-spacing:-13.392000px;}
.ws1d{word-spacing:-13.284000px;}
.ws22{word-spacing:-13.240200px;}
.ws1f{word-spacing:-13.160160px;}
.ws9{word-spacing:-13.147200px;}
.ws2d{word-spacing:-13.140000px;}
.ws12{word-spacing:-13.040400px;}
.ws23{word-spacing:-12.960000px;}
.ws2c{word-spacing:-12.672000px;}
.ws3{word-spacing:-11.880000px;}
.wsd{word-spacing:-9.732960px;}
.wsb{word-spacing:-9.728640px;}
.ws15{word-spacing:-9.724320px;}
.ws0{word-spacing:-9.720000px;}
.wsc{word-spacing:-9.711360px;}
.ws18{word-spacing:-9.702720px;}
.ws1a{word-spacing:-9.560400px;}
.wsa{word-spacing:-9.466800px;}
.ws19{word-spacing:-9.324000px;}
.ws11{word-spacing:-9.302400px;}
.ws13{word-spacing:-9.187200px;}
.ws1{word-spacing:-9.000000px;}
.ws20{word-spacing:-8.965200px;}
.ws10{word-spacing:-8.850000px;}
.ws28{word-spacing:-8.441400px;}
.ws4{word-spacing:-8.100000px;}
.ws25{word-spacing:-3.966000px;}
.ws5{word-spacing:-0.054000px;}
.wsf{word-spacing:0.000000px;}
.ws27{word-spacing:13.960080px;}
.ws21{word-spacing:74.028240px;}
._13{margin-left:-13.027920px;}
._16{margin-left:-11.454000px;}
._14{margin-left:-7.218000px;}
._b{margin-left:-5.380320px;}
._1{margin-left:-3.959280px;}
._7{margin-left:-2.376000px;}
._0{margin-left:-1.010880px;}
._2{width:1.043280px;}
._6{width:2.078160px;}
._4{width:3.456000px;}
._3{width:5.178000px;}
._5{width:6.204000px;}
._9{width:7.263360px;}
._a{width:8.346480px;}
._f{width:9.364800px;}
._8{width:10.430640px;}
._e{width:11.765280px;}
._12{width:13.679280px;}
._10{width:16.559280px;}
._18{width:18.444960px;}
._d{width:19.822320px;}
._c{width:21.113280px;}
._15{width:22.428960px;}
._17{width:26.832240px;}
._11{width:29.781840px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs9{font-size:40.982709px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs8{font-size:62.991941px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y169{bottom:0.540000px;}
.y11d{bottom:0.900000px;}
.yc5{bottom:1.080000px;}
.yed{bottom:1.620000px;}
.y12e{bottom:1.800000px;}
.y16d{bottom:1.980000px;}
.y16c{bottom:2.160000px;}
.y58{bottom:2.520000px;}
.y17c{bottom:2.700000px;}
.y78{bottom:3.060000px;}
.y56{bottom:3.240000px;}
.y10f{bottom:3.285000px;}
.y5e{bottom:3.420000px;}
.ycb{bottom:3.600000px;}
.y6d{bottom:3.780000px;}
.y67{bottom:3.960000px;}
.y1c5{bottom:4.140000px;}
.y1c8{bottom:4.500000px;}
.y7d{bottom:5.040000px;}
.yd9{bottom:5.400000px;}
.y135{bottom:5.445000px;}
.y182{bottom:5.580000px;}
.y1b5{bottom:5.760000px;}
.y134{bottom:6.480000px;}
.yaf{bottom:6.840000px;}
.ya4{bottom:7.020000px;}
.ya6{bottom:7.200000px;}
.ya8{bottom:7.380000px;}
.yac{bottom:7.560000px;}
.yb0{bottom:7.740000px;}
.y1b4{bottom:7.920000px;}
.ydb{bottom:8.100000px;}
.ydd{bottom:8.280000px;}
.yfd{bottom:8.640000px;}
.yb5{bottom:9.900000px;}
.yb7{bottom:10.080000px;}
.ye1{bottom:10.260000px;}
.ye4{bottom:10.440000px;}
.yb1{bottom:10.620000px;}
.ybd{bottom:11.700000px;}
.yc0{bottom:11.880000px;}
.y144{bottom:12.960000px;}
.y76{bottom:13.140000px;}
.y148{bottom:13.320000px;}
.y147{bottom:13.680000px;}
.y7b{bottom:15.120000px;}
.yc9{bottom:15.480000px;}
.ya2{bottom:15.660000px;}
.y7e{bottom:16.200000px;}
.y120{bottom:17.130000px;}
.yc7{bottom:17.280000px;}
.y36{bottom:20.160000px;}
.y14b{bottom:23.220000px;}
.ya3{bottom:24.300000px;}
.y77{bottom:24.660000px;}
.y1c1{bottom:24.840000px;}
.y14d{bottom:25.020000px;}
.y7c{bottom:26.640000px;}
.ya5{bottom:28.080000px;}
.y168{bottom:28.440000px;}
.yaa{bottom:33.840000px;}
.y14c{bottom:36.360000px;}
.yff{bottom:37.440000px;}
.y35{bottom:37.470000px;}
.y34{bottom:54.750000px;}
.yb3{bottom:88.920000px;}
.y2{bottom:106.920000px;}
.y1{bottom:122.580000px;}
.y32{bottom:138.096000px;}
.y64{bottom:138.456000px;}
.y94{bottom:140.976000px;}
.y31{bottom:142.596000px;}
.y177{bottom:144.756000px;}
.y19b{bottom:145.116000px;}
.y142{bottom:147.816000px;}
.y30{bottom:153.930000px;}
.y63{bottom:156.810000px;}
.y1d5{bottom:158.970000px;}
.yea{bottom:160.230000px;}
.y176{bottom:162.030000px;}
.y19a{bottom:162.390000px;}
.y93{bottom:162.570000px;}
.y141{bottom:167.250000px;}
.y21f{bottom:169.590000px;}
.y11a{bottom:173.550000px;}
.y1c0{bottom:174.450000px;}
.y62{bottom:175.170000px;}
.y1d7{bottom:176.250000px;}
.ye9{bottom:177.510000px;}
.y175{bottom:179.310000px;}
.y92{bottom:179.670000px;}
.y199{bottom:179.850000px;}
.y2f{bottom:182.730000px;}
.y140{bottom:184.890000px;}
.y21e{bottom:185.070000px;}
.y126{bottom:190.290000px;}
.y119{bottom:190.830000px;}
.y1bf{bottom:191.730000px;}
.y61{bottom:193.530000px;}
.ye8{bottom:194.610000px;}
.y174{bottom:196.590000px;}
.y1f5{bottom:196.950000px;}
.y198{bottom:197.310000px;}
.y2e{bottom:200.190000px;}
.y21d{bottom:200.550000px;}
.y13f{bottom:202.350000px;}
.y118{bottom:208.110000px;}
.y1be{bottom:209.010000px;}
.y60{bottom:211.890000px;}
.y173{bottom:213.690000px;}
.y1f4{bottom:214.230000px;}
.y197{bottom:214.770000px;}
.y21c{bottom:216.030000px;}
.y2d{bottom:217.650000px;}
.y13e{bottom:219.810000px;}
.y1bd{bottom:223.770000px;}
.y117{bottom:225.390000px;}
.ye7{bottom:229.170000px;}
.y5f{bottom:230.250000px;}
.y172{bottom:230.970000px;}
.y1f3{bottom:231.510000px;}
.y196{bottom:232.050000px;}
.y2c{bottom:234.930000px;}
.y13d{bottom:237.270000px;}
.y116{bottom:242.850000px;}
.ye6{bottom:246.450000px;}
.y21b{bottom:247.170000px;}
.yc3{bottom:247.890000px;}
.y171{bottom:248.250000px;}
.y5d{bottom:248.430000px;}
.y1f2{bottom:248.610000px;}
.y195{bottom:249.330000px;}
.y2b{bottom:252.210000px;}
.y13c{bottom:254.910000px;}
.y1d6{bottom:255.285000px;}
.y115{bottom:260.130000px;}
.ye5{bottom:261.210000px;}
.ybb{bottom:262.650000px;}
.y170{bottom:265.530000px;}
.y1f1{bottom:265.890000px;}
.y194{bottom:266.430000px;}
.y5c{bottom:266.790000px;}
.y1bc{bottom:269.130000px;}
.y2a{bottom:269.310000px;}
.y164{bottom:271.290000px;}
.y13b{bottom:274.530000px;}
.y114{bottom:277.410000px;}
.y21a{bottom:278.130000px;}
.y16f{bottom:282.810000px;}
.y193{bottom:283.710000px;}
.y29{bottom:286.590000px;}
.y163{bottom:288.390000px;}
.ye3{bottom:288.930000px;}
.y13a{bottom:291.990000px;}
.y219{bottom:293.610000px;}
.yc2{bottom:294.150000px;}
.y113{bottom:294.690000px;}
.y1f0{bottom:298.830000px;}
.y16e{bottom:300.090000px;}
.y192{bottom:300.990000px;}
.y28{bottom:304.050000px;}
.y162{bottom:305.670000px;}
.y5b{bottom:305.850000px;}
.y12c{bottom:308.190000px;}
.y139{bottom:309.270000px;}
.y107{bottom:309.450000px;}
.y112{bottom:311.970000px;}
.y1bb{bottom:314.670000px;}
.ye2{bottom:316.830000px;}
.y191{bottom:318.270000px;}
.y27{bottom:321.510000px;}
.y161{bottom:322.950000px;}
.y218{bottom:324.750000px;}
.yc1{bottom:325.830000px;}
.y138{bottom:326.370000px;}
.y106{bottom:326.730000px;}
.y111{bottom:329.250000px;}
.y1ba{bottom:332.670000px;}
.y26{bottom:338.790000px;}
.y5a{bottom:339.330000px;}
.y160{bottom:340.230000px;}
.y137{bottom:341.130000px;}
.y105{bottom:344.010000px;}
.ye0{bottom:344.730000px;}
.y1ef{bottom:346.350000px;}
.y190{bottom:347.430000px;}
.y125{bottom:355.170000px;}
.y217{bottom:355.710000px;}
.y25{bottom:356.070000px;}
.ybf{bottom:357.330000px;}
.y15f{bottom:357.510000px;}
.y59{bottom:360.930000px;}
.y104{bottom:361.290000px;}
.y136{bottom:363.450000px;}
.y110{bottom:364.170000px;}
.y1ee{bottom:369.210000px;}
.y216{bottom:371.370000px;}
.ydf{bottom:372.450000px;}
.y1b9{bottom:373.170000px;}
.y24{bottom:373.530000px;}
.y15e{bottom:374.790000px;}
.y57{bottom:378.210000px;}
.y103{bottom:378.390000px;}
.y91{bottom:381.450000px;}
.y18f{bottom:382.710000px;}
.y1c3{bottom:382.905000px;}
.y10e{bottom:385.770000px;}
.y215{bottom:386.850000px;}
.ybe{bottom:389.055000px;}
.y23{bottom:390.855000px;}
.y15d{bottom:391.935000px;}
.y102{bottom:395.715000px;}
.y18e{bottom:397.515000px;}
.y16a{bottom:398.595000px;}
.y90{bottom:398.775000px;}
.yde{bottom:400.395000px;}
.y214{bottom:402.375000px;}
.y10d{bottom:403.095000px;}
.y22{bottom:408.135000px;}
.y101{bottom:412.995000px;}
.y1ed{bottom:414.615000px;}
.y18d{bottom:415.515000px;}
.y8f{bottom:416.055000px;}
.ybc{bottom:420.555000px;}
.y21{bottom:425.415000px;}
.y15c{bottom:427.035000px;}
.yfe{bottom:427.755000px;}
.ydc{bottom:428.115000px;}
.y133{bottom:430.275000px;}
.y1d4{bottom:431.535000px;}
.y8e{bottom:433.155000px;}
.y18c{bottom:433.515000px;}
.y213{bottom:433.875000px;}
.y1ec{bottom:437.475000px;}
.y20{bottom:442.515000px;}
.y1b8{bottom:446.835000px;}
.y15b{bottom:448.815000px;}
.y8d{bottom:450.435000px;}
.y18b{bottom:451.515000px;}
.yb2{bottom:452.235000px;}
.yda{bottom:456.015000px;}
.y1eb{bottom:456.375000px;}
.y100{bottom:456.555000px;}
.y1f{bottom:459.795000px;}
.y1b7{bottom:461.595000px;}
.y15a{bottom:466.095000px;}
.y8c{bottom:467.715000px;}
.y18a{bottom:469.515000px;}
.y132{bottom:475.455000px;}
.y1e{bottom:477.075000px;}
.y1ea{bottom:478.875000px;}
.y1d3{bottom:483.375000px;}
.yba{bottom:483.735000px;}
.yd8{bottom:483.915000px;}
.y1b6{bottom:484.275000px;}
.y8b{bottom:484.995000px;}
.yfc{bottom:485.355000px;}
.y189{bottom:487.515000px;}
.y55{bottom:493.635000px;}
.y1d{bottom:494.355000px;}
.y1e9{bottom:497.955000px;}
.y124{bottom:500.655000px;}
.y212{bottom:501.195000px;}
.y8a{bottom:502.275000px;}
.y1d2{bottom:502.635000px;}
.y1b3{bottom:506.955000px;}
.y131{bottom:509.295000px;}
.y54{bottom:510.915000px;}
.y1c{bottom:511.635000px;}
.yfb{bottom:514.155000px;}
.yb9{bottom:515.235000px;}
.y211{bottom:518.475000px;}
.y89{bottom:519.555000px;}
.y1d1{bottom:520.095000px;}
.yd7{bottom:527.475000px;}
.y1b{bottom:528.735000px;}
.y1b2{bottom:529.815000px;}
.y12b{bottom:530.895000px;}
.y210{bottom:535.755000px;}
.y88{bottom:536.655000px;}
.y1d0{bottom:537.555000px;}
.y1e8{bottom:537.735000px;}
.y10c{bottom:538.815000px;}
.y1a{bottom:546.015000px;}
.yb8{bottom:546.915000px;}
.y130{bottom:548.175000px;}
.y1b1{bottom:552.495000px;}
.y20f{bottom:552.855000px;}
.y1cf{bottom:557.175000px;}
.y10b{bottom:560.415000px;}
.yd6{bottom:561.315000px;}
.y19{bottom:563.295000px;}
.y188{bottom:564.735000px;}
.y87{bottom:565.995000px;}
.y1b0{bottom:570.495000px;}
.y1e7{bottom:571.575000px;}
.y53{bottom:572.655000px;}
.y123{bottom:574.275000px;}
.y1ce{bottom:574.815000px;}
.yfa{bottom:577.875000px;}
.yb6{bottom:578.415000px;}
.yd5{bottom:578.595000px;}
.y187{bottom:579.495000px;}
.y20e{bottom:582.195000px;}
.y1e6{bottom:588.855000px;}
.y122{bottom:589.755000px;}
.y52{bottom:589.935000px;}
.y10a{bottom:592.095000px;}
.y1cd{bottom:592.455000px;}
.y1af{bottom:592.995000px;}
.y18{bottom:596.235000px;}
.y186{bottom:597.495000px;}
.y86{bottom:601.275000px;}
.y1e5{bottom:606.135000px;}
.y16b{bottom:607.035000px;}
.y51{bottom:607.215000px;}
.y1cc{bottom:609.915000px;}
.yb4{bottom:610.095000px;}
.y1ae{bottom:610.995000px;}
.y121{bottom:611.355000px;}
.yf9{bottom:611.715000px;}
.yd4{bottom:613.875000px;}
.y185{bottom:615.495000px;}
.y20d{bottom:617.475000px;}
.y85{bottom:618.555000px;}
.y1e4{bottom:623.415000px;}
.y50{bottom:624.495000px;}
.y1cb{bottom:627.555000px;}
.yf8{bottom:628.995000px;}
.y11f{bottom:629.355000px;}
.yd3{bottom:631.335000px;}
.y184{bottom:633.495000px;}
.y20c{bottom:634.755000px;}
.y84{bottom:635.655000px;}
.y1e3{bottom:640.545000px;}
.y4f{bottom:641.625000px;}
.y17{bottom:645.945000px;}
.yf7{bottom:646.125000px;}
.yd2{bottom:648.465000px;}
.y1ad{bottom:650.625000px;}
.y183{bottom:651.525000px;}
.y20b{bottom:651.885000px;}
.y83{bottom:652.965000px;}
.y1e2{bottom:658.005000px;}
.y1ca{bottom:662.685000px;}
.yf6{bottom:663.405000px;}
.yd1{bottom:665.745000px;}
.y20a{bottom:669.165000px;}
.y181{bottom:669.525000px;}
.y82{bottom:670.245000px;}
.y4e{bottom:670.785000px;}
.y1e1{bottom:675.645000px;}
.y1c9{bottom:678.165000px;}
.y16{bottom:679.425000px;}
.yf5{bottom:680.685000px;}
.yd0{bottom:683.025000px;}
.y1ac{bottom:684.465000px;}
.y209{bottom:686.445000px;}
.y81{bottom:687.525000px;}
.yae{bottom:688.065000px;}
.y1e0{bottom:693.285000px;}
.y15{bottom:695.085000px;}
.yf4{bottom:697.965000px;}
.y1c2{bottom:699.765000px;}
.ycf{bottom:700.305000px;}
.y1ab{bottom:701.925000px;}
.y208{bottom:703.725000px;}
.y80{bottom:704.985000px;}
.y4d{bottom:706.785000px;}
.y14{bottom:710.565000px;}
.y1df{bottom:710.745000px;}
.y180{bottom:713.085000px;}
.yf3{bottom:715.245000px;}
.y1c7{bottom:717.045000px;}
.yce{bottom:717.585000px;}
.y1aa{bottom:719.385000px;}
.y207{bottom:721.005000px;}
.yad{bottom:721.905000px;}
.y7f{bottom:722.265000px;}
.y13{bottom:726.225000px;}
.y1de{bottom:728.205000px;}
.yf2{bottom:732.525000px;}
.y7a{bottom:736.305000px;}
.ya9{bottom:736.665000px;}
.y1a9{bottom:736.845000px;}
.y206{bottom:738.285000px;}
.y12{bottom:742.065000px;}
.y1dd{bottom:745.665000px;}
.y17f{bottom:746.565000px;}
.ycd{bottom:752.505000px;}
.y1a8{bottom:754.305000px;}
.y205{bottom:755.565000px;}
.y4c{bottom:756.825000px;}
.y159{bottom:757.365000px;}
.y11{bottom:757.725000px;}
.yf1{bottom:761.685000px;}
.y17e{bottom:762.045000px;}
.yab{bottom:763.125000px;}
.ycc{bottom:767.985000px;}
.y1a7{bottom:771.585000px;}
.y10{bottom:773.205000px;}
.y4b{bottom:774.105000px;}
.y158{bottom:774.645000px;}
.y1dc{bottom:780.225000px;}
.y79{bottom:780.405000px;}
.y12f{bottom:782.205000px;}
.y17d{bottom:783.645000px;}
.yf{bottom:788.685000px;}
.y1a6{bottom:789.045000px;}
.ya7{bottom:789.405000px;}
.yca{bottom:789.585000px;}
.y204{bottom:790.665000px;}
.y4a{bottom:791.385000px;}
.y157{bottom:794.085000px;}
.y75{bottom:794.445000px;}
.yf0{bottom:797.685000px;}
.y167{bottom:798.405000px;}
.y12d{bottom:799.485000px;}
.y17b{bottom:800.925000px;}
.ye{bottom:804.345000px;}
.y1a5{bottom:806.505000px;}
.yc6{bottom:807.585000px;}
.y203{bottom:807.945000px;}
.y49{bottom:808.665000px;}
.y156{bottom:811.545000px;}
.y1db{bottom:815.145000px;}
.ya1{bottom:815.685000px;}
.yd{bottom:819.825000px;}
.y1a4{bottom:824.145000px;}
.y202{bottom:825.045000px;}
.y48{bottom:825.945000px;}
.y155{bottom:828.825000px;}
.y1da{bottom:830.805000px;}
.y74{bottom:834.945000px;}
.yc{bottom:835.305000px;}
.y1a3{bottom:841.605000px;}
.y47{bottom:843.225000px;}
.y201{bottom:844.485000px;}
.y154{bottom:845.925000px;}
.yef{bottom:847.365000px;}
.yb{bottom:850.785000px;}
.y73{bottom:852.225000px;}
.y1d9{bottom:852.585000px;}
.y1a2{bottom:859.065000px;}
.y46{bottom:860.325000px;}
.y166{bottom:861.765000px;}
.y200{bottom:862.125000px;}
.y153{bottom:863.385000px;}
.ya{bottom:866.445000px;}
.yee{bottom:868.965000px;}
.y72{bottom:869.325000px;}
.y1d8{bottom:869.865000px;}
.y1a1{bottom:876.345000px;}
.y45{bottom:877.605000px;}
.y109{bottom:877.965000px;}
.ya0{bottom:879.405000px;}
.y1ff{bottom:879.765000px;}
.y152{bottom:881.025000px;}
.y9{bottom:881.925000px;}
.y165{bottom:883.365000px;}
.yec{bottom:886.245000px;}
.y71{bottom:886.605000px;}
.y22e{bottom:890.025000px;}
.y1a0{bottom:893.670000px;}
.y44{bottom:894.930000px;}
.y1c6{bottom:897.090000px;}
.y1fe{bottom:897.270000px;}
.y151{bottom:898.530000px;}
.y11e{bottom:901.590000px;}
.y70{bottom:903.930000px;}
.y22d{bottom:905.550000px;}
.y108{bottom:909.690000px;}
.y19f{bottom:910.770000px;}
.y43{bottom:912.210000px;}
.y9f{bottom:913.290000px;}
.y1c4{bottom:914.370000px;}
.y1fd{bottom:914.550000px;}
.y150{bottom:917.790000px;}
.y11c{bottom:919.410000px;}
.y22c{bottom:921.030000px;}
.y42{bottom:929.490000px;}
.y9e{bottom:930.570000px;}
.y1fc{bottom:931.650000px;}
.y6f{bottom:933.090000px;}
.y22b{bottom:936.510000px;}
.y14f{bottom:937.590000px;}
.y19e{bottom:945.870000px;}
.y41{bottom:946.770000px;}
.y8{bottom:947.670000px;}
.y1fb{bottom:948.930000px;}
.y22a{bottom:952.170000px;}
.y14e{bottom:955.050000px;}
.y40{bottom:963.870000px;}
.y9d{bottom:964.950000px;}
.y7{bottom:965.670000px;}
.y6e{bottom:966.030000px;}
.y1fa{bottom:966.210000px;}
.y19d{bottom:967.470000px;}
.y229{bottom:967.650000px;}
.y14a{bottom:968.910000px;}
.y3f{bottom:981.150000px;}
.y9c{bottom:982.230000px;}
.yc8{bottom:982.590000px;}
.y228{bottom:983.130000px;}
.y1f9{bottom:983.490000px;}
.y19c{bottom:984.570000px;}
.y6c{bottom:985.470000px;}
.y5{bottom:994.470000px;}
.y3e{bottom:998.430000px;}
.y227{bottom:998.610000px;}
.y9b{bottom:999.510000px;}
.y1f8{bottom:1000.770000px;}
.y6{bottom:1001.310000px;}
.y6b{bottom:1004.730000px;}
.yc4{bottom:1007.070000px;}
.y226{bottom:1014.270000px;}
.y3d{bottom:1015.710000px;}
.y9a{bottom:1016.790000px;}
.y1f7{bottom:1017.870000px;}
.y6a{bottom:1024.170000px;}
.y149{bottom:1029.390000px;}
.y225{bottom:1029.750000px;}
.y3c{bottom:1032.990000px;}
.y99{bottom:1034.070000px;}
.y4{bottom:1034.430000px;}
.y12a{bottom:1034.610000px;}
.y1f6{bottom:1035.150000px;}
.y146{bottom:1043.430000px;}
.y69{bottom:1043.610000px;}
.y224{bottom:1045.230000px;}
.y98{bottom:1051.170000px;}
.y3b{bottom:1051.710000px;}
.y17a{bottom:1052.430000px;}
.y3{bottom:1060.530000px;}
.y223{bottom:1060.710000px;}
.y68{bottom:1063.050000px;}
.y97{bottom:1068.450000px;}
.y129{bottom:1069.170000px;}
.y3a{bottom:1069.350000px;}
.y179{bottom:1069.710000px;}
.y222{bottom:1076.370000px;}
.y66{bottom:1082.490000px;}
.y145{bottom:1084.830000px;}
.y96{bottom:1085.730000px;}
.y39{bottom:1086.630000px;}
.y128{bottom:1086.810000px;}
.y178{bottom:1086.990000px;}
.y11b{bottom:1090.410000px;}
.y221{bottom:1091.850000px;}
.yeb{bottom:1096.530000px;}
.y143{bottom:1098.870000px;}
.y38{bottom:1104.090000px;}
.y127{bottom:1104.270000px;}
.y220{bottom:1107.330000px;}
.y95{bottom:1118.670000px;}
.y37{bottom:1121.370000px;}
.y33{bottom:1122.630000px;}
.y65{bottom:1122.810000px;}
.h1d{height:17.100000px;}
.h10{height:17.280000px;}
.h3b{height:17.316000px;}
.h14{height:17.460000px;}
.h13{height:17.640000px;}
.h3e{height:17.820000px;}
.h2d{height:18.000000px;}
.h5c{height:18.036000px;}
.h63{height:18.180000px;}
.h16{height:18.540000px;}
.h15{height:18.720000px;}
.h47{height:21.420000px;}
.h46{height:21.600000px;}
.h48{height:21.636000px;}
.h2e{height:21.780000px;}
.h5a{height:21.960000px;}
.h64{height:21.996000px;}
.h5b{height:22.140000px;}
.h2a{height:24.480000px;}
.h22{height:24.840000px;}
.h20{height:25.560000px;}
.h6{height:26.033203px;}
.h2f{height:27.000000px;}
.h30{height:27.180000px;}
.h31{height:27.216000px;}
.h34{height:28.080000px;}
.h25{height:30.780000px;}
.h24{height:30.816000px;}
.h26{height:30.960000px;}
.h27{height:30.996000px;}
.h39{height:31.680000px;}
.h37{height:31.716000px;}
.h5{height:34.884492px;}
.h4a{height:36.540000px;}
.h17{height:37.260000px;}
.h4b{height:38.160000px;}
.h32{height:38.880000px;}
.h2{height:39.049805px;}
.h12{height:39.313477px;}
.h19{height:40.860000px;}
.h1e{height:41.940000px;}
.h2c{height:42.164648px;}
.h52{height:42.480000px;}
.ha{height:43.215117px;}
.he{height:43.506914px;}
.h58{height:44.033203px;}
.h65{height:44.265586px;}
.h8{height:44.507812px;}
.h3c{height:45.000000px;}
.h4{height:48.995859px;}
.hd{height:49.115859px;}
.h49{height:49.255313px;}
.h66{height:50.800781px;}
.h9{height:52.417969px;}
.h40{height:52.740000px;}
.h4d{height:57.240000px;}
.hf{height:58.500000px;}
.h3{height:59.436914px;}
.h1f{height:64.115859px;}
.hc{height:68.796000px;}
.h21{height:78.300000px;}
.h35{height:85.680000px;}
.h4f{height:89.935312px;}
.h7{height:114.433594px;}
.h3a{height:114.840000px;}
.h11{height:115.416000px;}
.h50{height:119.439844px;}
.h42{height:126.000000px;}
.hb{height:126.639844px;}
.h41{height:128.196000px;}
.h28{height:128.340000px;}
.h59{height:133.488781px;}
.h57{height:133.560000px;}
.h18{height:166.959844px;}
.h3d{height:171.000000px;}
.h1a{height:172.719844px;}
.h4c{height:174.879844px;}
.h2b{height:174.990000px;}
.h5f{height:180.030000px;}
.h5e{height:182.160000px;}
.h55{height:186.660000px;}
.h23{height:188.670000px;}
.h54{height:191.370000px;}
.h1c{height:198.540000px;}
.h33{height:210.270000px;}
.h1b{height:213.039844px;}
.h36{height:225.720000px;}
.h4e{height:228.175312px;}
.h44{height:231.870000px;}
.h45{height:234.030000px;}
.h56{height:248.250000px;}
.h61{height:252.030000px;}
.h62{height:265.530000px;}
.h60{height:269.310000px;}
.h3f{height:272.235000px;}
.h38{height:285.870000px;}
.h51{height:288.030000px;}
.h29{height:327.810000px;}
.h5d{height:396.750000px;}
.h53{height:412.635000px;}
.h43{height:500.475000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w42{width:16.560000px;}
.w17{width:17.820000px;}
.w31{width:18.000000px;}
.w1b{width:18.540000px;}
.w64{width:23.580000px;}
.w55{width:24.120000px;}
.w5a{width:24.300000px;}
.w10{width:34.920000px;}
.w4f{width:52.200000px;}
.w4b{width:52.560000px;}
.w12{width:55.080000px;}
.w18{width:55.260000px;}
.w3f{width:63.900000px;}
.w3a{width:64.980000px;}
.w30{width:72.216000px;}
.w16{width:72.396000px;}
.w1d{width:74.736000px;}
.w34{width:74.916000px;}
.w1c{width:80.820000px;}
.w19{width:81.720000px;}
.w32{width:81.900000px;}
.w1e{width:82.980000px;}
.w1a{width:89.316000px;}
.w33{width:89.496000px;}
.w15{width:95.580000px;}
.w2f{width:95.760000px;}
.w24{width:110.736000px;}
.wc{width:115.200000px;}
.w21{width:121.356000px;}
.w1f{width:136.260000px;}
.w22{width:136.476000px;}
.w2d{width:138.060000px;}
.we{width:140.616000px;}
.w2a{width:145.836000px;}
.w4c{width:148.860000px;}
.w4d{width:148.896000px;}
.w4e{width:149.076000px;}
.w48{width:149.760000px;}
.w49{width:149.796000px;}
.w4a{width:149.976000px;}
.w28{width:151.020000px;}
.w20{width:151.230000px;}
.w7{width:152.100000px;}
.w8{width:152.130000px;}
.w9{width:156.990000px;}
.w23{width:161.850000px;}
.wd{width:180.750000px;}
.w27{width:188.850000px;}
.w29{width:192.450000px;}
.w6{width:195.510000px;}
.w61{width:199.830000px;}
.w2b{width:201.810000px;}
.w53{width:203.430000px;}
.w52{width:203.610000px;}
.w57{width:205.590000px;}
.w58{width:205.770000px;}
.wb{width:214.410000px;}
.w63{width:221.070000px;}
.w62{width:225.390000px;}
.w25{width:234.210000px;}
.w54{width:251.310000px;}
.w59{width:254.190000px;}
.w3e{width:258.375000px;}
.w3c{width:261.570000px;}
.w3b{width:267.015000px;}
.w51{width:268.815000px;}
.w50{width:278.670000px;}
.wa{width:309.135000px;}
.w38{width:312.555000px;}
.w5f{width:315.570000px;}
.w60{width:318.135000px;}
.w5e{width:318.675000px;}
.w5d{width:320.610000px;}
.wf{width:321.375000px;}
.w44{width:324.210000px;}
.w37{width:327.450000px;}
.w47{width:329.115000px;}
.w2c{width:330.510000px;}
.w46{width:333.390000px;}
.w41{width:337.575000px;}
.w45{width:339.555000px;}
.w13{width:339.690000px;}
.w14{width:339.915000px;}
.w40{width:340.230000px;}
.w3d{width:342.210000px;}
.w26{width:446.115000px;}
.w56{width:454.755000px;}
.w11{width:455.295000px;}
.w5b{width:459.975000px;}
.w39{width:540.645000px;}
.w5c{width:639.285000px;}
.w36{width:640.005000px;}
.w35{width:642.525000px;}
.w43{width:663.765000px;}
.w2e{width:679.605000px;}
.w4{width:681.045000px;}
.w5{width:697.245000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x58{left:8.820000px;}
.x10{left:10.800000px;}
.x5a{left:11.880000px;}
.x55{left:12.960000px;}
.x57{left:15.300000px;}
.x64{left:16.560000px;}
.x53{left:19.980000px;}
.x5f{left:22.140000px;}
.x63{left:23.940000px;}
.x62{left:27.720000px;}
.x39{left:29.340000px;}
.x7e{left:30.960000px;}
.xf{left:32.040000px;}
.x32{left:33.165000px;}
.x6c{left:34.920000px;}
.x61{left:37.620000px;}
.x69{left:39.780000px;}
.x93{left:42.480000px;}
.x2e{left:44.280000px;}
.x66{left:46.434000px;}
.x37{left:48.420000px;}
.x1d{left:51.885000px;}
.xa4{left:53.325000px;}
.x33{left:55.080000px;}
.x1b{left:57.090000px;}
.x27{left:58.854000px;}
.x30{left:60.690000px;}
.x35{left:62.865000px;}
.x77{left:65.010000px;}
.x29{left:66.090000px;}
.x1e{left:68.574000px;}
.x25{left:69.690000px;}
.x24{left:70.914000px;}
.x22{left:71.994000px;}
.x19{left:73.260000px;}
.xb1{left:74.520000px;}
.x17{left:76.314000px;}
.x28{left:78.300000px;}
.x26{left:79.374000px;}
.x21{left:81.585000px;}
.x20{left:82.830000px;}
.x1f{left:84.060000px;}
.x23{left:85.185000px;}
.x34{left:86.610000px;}
.x3e{left:88.734000px;}
.x79{left:89.850000px;}
.xbf{left:91.074000px;}
.x3f{left:92.154000px;}
.x73{left:94.314000px;}
.xc0{left:95.580000px;}
.x78{left:96.654000px;}
.x11{left:97.956000px;}
.x36{left:100.434000px;}
.xaf{left:101.694000px;}
.x95{left:103.494000px;}
.xe{left:105.336000px;}
.xa{left:106.415987px;}
.x72{left:107.496000px;}
.x70{left:108.714000px;}
.x52{left:111.996000px;}
.x8f{left:114.336000px;}
.xa1{left:115.416000px;}
.x7a{left:117.174000px;}
.x16{left:118.296000px;}
.xb3{left:119.340000px;}
.x2c{left:121.176000px;}
.x9c{left:122.976000px;}
.x7f{left:125.316000px;}
.x84{left:126.576000px;}
.xb{left:127.655987px;}
.x40{left:130.494000px;}
.x1{left:131.975987px;}
.xb6{left:135.216000px;}
.xd{left:136.475987px;}
.x38{left:138.090000px;}
.x90{left:139.494000px;}
.x3a{left:141.336000px;}
.xc2{left:142.415987px;}
.x42{left:144.039000px;}
.x87{left:147.450000px;}
.x9{left:148.895987px;}
.xb8{left:150.510000px;}
.x2a{left:151.950000px;}
.x9f{left:153.174000px;}
.x41{left:154.659000px;}
.x89{left:156.270000px;}
.x94{left:157.854000px;}
.x9a{left:160.050000px;}
.x50{left:161.130000px;}
.x2{left:162.389987px;}
.xaa{left:172.830000px;}
.x3{left:174.089987px;}
.x8a{left:176.250000px;}
.x96{left:182.199000px;}
.x7{left:186.329987px;}
.xc1{left:187.769987px;}
.x51{left:192.989987px;}
.x43{left:198.579000px;}
.x3b{left:202.899000px;}
.x8{left:204.509987px;}
.x54{left:207.570000px;}
.x44{left:209.739000px;}
.x45{left:211.539000px;}
.x3c{left:214.059000px;}
.x4{left:220.349987px;}
.x71{left:225.039000px;}
.x6d{left:226.479000px;}
.x6f{left:233.670000px;}
.x46{left:239.619000px;}
.x67{left:242.130000px;}
.xb4{left:246.089987px;}
.xac{left:250.275000px;}
.x47{left:252.579000px;}
.x48{left:254.559000px;}
.x8d{left:258.915000px;}
.x8b{left:261.945000px;}
.x4f{left:263.235000px;}
.xab{left:266.445000px;}
.xa3{left:270.390000px;}
.xa8{left:271.470000px;}
.x65{left:275.249987px;}
.x56{left:279.975000px;}
.x97{left:281.019000px;}
.xb9{left:284.655000px;}
.x4a{left:286.779000px;}
.x4d{left:289.119000px;}
.x74{left:296.355000px;}
.x49{left:297.399000px;}
.xba{left:298.839000px;}
.xbb{left:300.135000px;}
.x88{left:304.275000px;}
.x2b{left:306.614987px;}
.x76{left:309.315000px;}
.x7c{left:310.359000px;}
.xbc{left:311.475000px;}
.x82{left:312.519000px;}
.x18{left:313.815000px;}
.x9e{left:316.659000px;}
.x7d{left:317.775000px;}
.x15{left:319.754987px;}
.xa0{left:320.799000px;}
.x83{left:323.139000px;}
.xa2{left:325.299000px;}
.x98{left:332.139000px;}
.x2d{left:335.595000px;}
.x4b{left:336.849000px;}
.x13{left:340.239000px;}
.xc{left:343.694987px;}
.x4c{left:349.809000px;}
.x59{left:353.055000px;}
.x68{left:393.375000px;}
.x14{left:404.709000px;}
.xa5{left:420.195000px;}
.x5{left:425.774973px;}
.x6{left:431.714987px;}
.x5b{left:434.775000px;}
.x6e{left:438.915000px;}
.x4e{left:446.475000px;}
.x99{left:447.915000px;}
.x2f{left:450.795000px;}
.x9d{left:452.229000px;}
.x86{left:454.035000px;}
.x91{left:456.555000px;}
.xb7{left:460.329000px;}
.x1a{left:465.915000px;}
.x7b{left:480.489000px;}
.x8e{left:481.785000px;}
.x85{left:488.769000px;}
.xb0{left:512.385000px;}
.x6a{left:514.725000px;}
.x5c{left:524.085000px;}
.x80{left:525.129000px;}
.x8c{left:527.880000px;}
.x81{left:533.094000px;}
.xbd{left:536.865000px;}
.x5d{left:542.625000px;}
.x12{left:551.049000px;}
.xa6{left:569.985000px;}
.xad{left:589.964987px;}
.x3d{left:596.625000px;}
.xae{left:609.584987px;}
.x1c{left:618.045000px;}
.x5e{left:623.445000px;}
.x31{left:631.545000px;}
.x9b{left:635.324987px;}
.x75{left:639.825000px;}
.x6b{left:650.985000px;}
.x60{left:698.190000px;}
.x92{left:714.930000px;}
.xa9{left:718.350000px;}
.xa7{left:719.970000px;}
.xbe{left:757.950000px;}
.xb2{left:763.710000px;}
.xb5{left:767.310000px;}
@media print{
.v1a{vertical-align:-46.720000pt;}
.v12{vertical-align:-21.120000pt;}
.vf{vertical-align:-18.560000pt;}
.v2{vertical-align:-16.000000pt;}
.ve{vertical-align:-13.440000pt;}
.v5{vertical-align:-10.880000pt;}
.v13{vertical-align:-9.600000pt;}
.v1b{vertical-align:-6.400000pt;}
.v4{vertical-align:-5.120000pt;}
.vd{vertical-align:-3.840000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:1.920000pt;}
.v14{vertical-align:9.600000pt;}
.v6{vertical-align:10.880000pt;}
.v1c{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.v11{vertical-align:19.840000pt;}
.v1d{vertical-align:21.120000pt;}
.vb{vertical-align:22.400000pt;}
.v18{vertical-align:30.080000pt;}
.v10{vertical-align:32.000000pt;}
.v7{vertical-align:35.840000pt;}
.vc{vertical-align:38.400000pt;}
.v8{vertical-align:40.960000pt;}
.v17{vertical-align:42.880000pt;}
.v15{vertical-align:46.720000pt;}
.v9{vertical-align:76.800000pt;}
.va{vertical-align:96.640000pt;}
.v19{vertical-align:124.160000pt;}
.ls64{letter-spacing:-5.114667pt;}
.ls6d{letter-spacing:-0.736000pt;}
.ls3a{letter-spacing:-0.549333pt;}
.ls3c{letter-spacing:-0.544000pt;}
.ls4d{letter-spacing:-0.480000pt;}
.ls4f{letter-spacing:-0.409067pt;}
.ls43{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.299733pt;}
.ls5e{letter-spacing:-0.197333pt;}
.ls54{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.183467pt;}
.ls69{letter-spacing:-0.099733pt;}
.ls6c{letter-spacing:-0.096000pt;}
.ls39{letter-spacing:-0.094933pt;}
.ls45{letter-spacing:-0.047360pt;}
.ls46{letter-spacing:-0.015360pt;}
.ls11{letter-spacing:-0.007680pt;}
.lsb{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.002560pt;}
.ls44{letter-spacing:0.003840pt;}
.ls10{letter-spacing:0.007680pt;}
.ls12{letter-spacing:0.011520pt;}
.lsc{letter-spacing:0.016000pt;}
.ls60{letter-spacing:0.047360pt;}
.ls5f{letter-spacing:0.082667pt;}
.ls51{letter-spacing:0.094720pt;}
.ls55{letter-spacing:0.094933pt;}
.ls9{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.102400pt;}
.ls52{letter-spacing:0.117760pt;}
.ls4b{letter-spacing:0.128000pt;}
.ls3b{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3d{letter-spacing:0.168320pt;}
.ls1{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.202667pt;}
.ls65{letter-spacing:0.208000pt;}
.ls42{letter-spacing:0.208640pt;}
.ls34{letter-spacing:0.229120pt;}
.lsd{letter-spacing:0.230933pt;}
.ls35{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.248533pt;}
.ls4a{letter-spacing:0.265600pt;}
.ls1a{letter-spacing:0.272640pt;}
.ls47{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.325120pt;}
.ls48{letter-spacing:0.331733pt;}
.ls19{letter-spacing:0.340480pt;}
.ls5a{letter-spacing:0.355200pt;}
.ls66{letter-spacing:0.473600pt;}
.ls4c{letter-spacing:0.736000pt;}
.ls2d{letter-spacing:0.760320pt;}
.ls20{letter-spacing:0.869120pt;}
.ls32{letter-spacing:0.972800pt;}
.ls18{letter-spacing:1.033600pt;}
.ls63{letter-spacing:1.275153pt;}
.ls16{letter-spacing:1.283840pt;}
.ls33{letter-spacing:1.383040pt;}
.ls5{letter-spacing:1.417600pt;}
.ls1e{letter-spacing:1.443840pt;}
.ls36{letter-spacing:1.509120pt;}
.ls2f{letter-spacing:1.625600pt;}
.ls17{letter-spacing:1.633280pt;}
.ls38{letter-spacing:1.704320pt;}
.ls2e{letter-spacing:1.761920pt;}
.ls31{letter-spacing:1.820160pt;}
.ls37{letter-spacing:1.822720pt;}
.ls1b{letter-spacing:2.000000pt;}
.ls3f{letter-spacing:2.187520pt;}
.ls29{letter-spacing:2.465280pt;}
.ls5d{letter-spacing:2.530560pt;}
.ls41{letter-spacing:2.827520pt;}
.ls49{letter-spacing:2.862080pt;}
.ls4{letter-spacing:2.890240pt;}
.ls68{letter-spacing:3.022080pt;}
.ls6{letter-spacing:3.132160pt;}
.ls4e{letter-spacing:3.429120pt;}
.ls13{letter-spacing:3.448320pt;}
.ls67{letter-spacing:3.482880pt;}
.ls14{letter-spacing:3.530240pt;}
.ls21{letter-spacing:3.540480pt;}
.ls30{letter-spacing:3.610880pt;}
.ls1f{letter-spacing:3.700480pt;}
.ls53{letter-spacing:5.073920pt;}
.ls61{letter-spacing:7.269120pt;}
.ls2c{letter-spacing:7.640960pt;}
.ls50{letter-spacing:7.909120pt;}
.ls62{letter-spacing:7.928320pt;}
.ls59{letter-spacing:8.675200pt;}
.ls28{letter-spacing:9.720320pt;}
.ls40{letter-spacing:11.839360pt;}
.ls58{letter-spacing:11.875200pt;}
.ls3e{letter-spacing:11.946027pt;}
.ls27{letter-spacing:12.159360pt;}
.ls5c{letter-spacing:14.347520pt;}
.ls57{letter-spacing:15.359360pt;}
.ls25{letter-spacing:16.120320pt;}
.ls23{letter-spacing:16.760960pt;}
.ls56{letter-spacing:17.752320pt;}
.ls5b{letter-spacing:18.362880pt;}
.ls26{letter-spacing:18.520960pt;}
.ls2b{letter-spacing:19.800960pt;}
.ls6b{letter-spacing:21.216000pt;}
.ls2a{letter-spacing:21.720960pt;}
.ls24{letter-spacing:22.360960pt;}
.ls22{letter-spacing:23.000960pt;}
.ls6a{letter-spacing:52.411307pt;}
.ls2{letter-spacing:65.408000pt;}
.ls15{letter-spacing:72.272640pt;}
.ws29{word-spacing:-53.120000pt;}
.ws6{word-spacing:-16.000000pt;}
.wse{word-spacing:-13.600000pt;}
.ws1b{word-spacing:-13.545600pt;}
.ws24{word-spacing:-13.510933pt;}
.ws1e{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws17{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.096533pt;}
.ws14{word-spacing:-12.960000pt;}
.ws1c{word-spacing:-12.870933pt;}
.ws16{word-spacing:-12.320000pt;}
.ws26{word-spacing:-12.208000pt;}
.ws2a{word-spacing:-12.096000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws2b{word-spacing:-11.904000pt;}
.ws1d{word-spacing:-11.808000pt;}
.ws22{word-spacing:-11.769067pt;}
.ws1f{word-spacing:-11.697920pt;}
.ws9{word-spacing:-11.686400pt;}
.ws2d{word-spacing:-11.680000pt;}
.ws12{word-spacing:-11.591467pt;}
.ws23{word-spacing:-11.520000pt;}
.ws2c{word-spacing:-11.264000pt;}
.ws3{word-spacing:-10.560000pt;}
.wsd{word-spacing:-8.651520pt;}
.wsb{word-spacing:-8.647680pt;}
.ws15{word-spacing:-8.643840pt;}
.ws0{word-spacing:-8.640000pt;}
.wsc{word-spacing:-8.632320pt;}
.ws18{word-spacing:-8.624640pt;}
.ws1a{word-spacing:-8.498133pt;}
.wsa{word-spacing:-8.414933pt;}
.ws19{word-spacing:-8.288000pt;}
.ws11{word-spacing:-8.268800pt;}
.ws13{word-spacing:-8.166400pt;}
.ws1{word-spacing:-8.000000pt;}
.ws20{word-spacing:-7.969067pt;}
.ws10{word-spacing:-7.866667pt;}
.ws28{word-spacing:-7.503467pt;}
.ws4{word-spacing:-7.200000pt;}
.ws25{word-spacing:-3.525333pt;}
.ws5{word-spacing:-0.048000pt;}
.wsf{word-spacing:0.000000pt;}
.ws27{word-spacing:12.408960pt;}
.ws21{word-spacing:65.802880pt;}
._13{margin-left:-11.580373pt;}
._16{margin-left:-10.181333pt;}
._14{margin-left:-6.416000pt;}
._b{margin-left:-4.782507pt;}
._1{margin-left:-3.519360pt;}
._7{margin-left:-2.112000pt;}
._0{margin-left:-0.898560pt;}
._2{width:0.927360pt;}
._6{width:1.847253pt;}
._4{width:3.072000pt;}
._3{width:4.602667pt;}
._5{width:5.514667pt;}
._9{width:6.456320pt;}
._a{width:7.419093pt;}
._f{width:8.324267pt;}
._8{width:9.271680pt;}
._e{width:10.458027pt;}
._12{width:12.159360pt;}
._10{width:14.719360pt;}
._18{width:16.395520pt;}
._d{width:17.619840pt;}
._c{width:18.767360pt;}
._15{width:19.936853pt;}
._17{width:23.850880pt;}
._11{width:26.472747pt;}
.fs5{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs9{font-size:36.429074pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs8{font-size:55.992837pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y169{bottom:0.480000pt;}
.y11d{bottom:0.800000pt;}
.yc5{bottom:0.960000pt;}
.yed{bottom:1.440000pt;}
.y12e{bottom:1.600000pt;}
.y16d{bottom:1.760000pt;}
.y16c{bottom:1.920000pt;}
.y58{bottom:2.240000pt;}
.y17c{bottom:2.400000pt;}
.y78{bottom:2.720000pt;}
.y56{bottom:2.880000pt;}
.y10f{bottom:2.920000pt;}
.y5e{bottom:3.040000pt;}
.ycb{bottom:3.200000pt;}
.y6d{bottom:3.360000pt;}
.y67{bottom:3.520000pt;}
.y1c5{bottom:3.680000pt;}
.y1c8{bottom:4.000000pt;}
.y7d{bottom:4.480000pt;}
.yd9{bottom:4.800000pt;}
.y135{bottom:4.840000pt;}
.y182{bottom:4.960000pt;}
.y1b5{bottom:5.120000pt;}
.y134{bottom:5.760000pt;}
.yaf{bottom:6.080000pt;}
.ya4{bottom:6.240000pt;}
.ya6{bottom:6.400000pt;}
.ya8{bottom:6.560000pt;}
.yac{bottom:6.720000pt;}
.yb0{bottom:6.880000pt;}
.y1b4{bottom:7.040000pt;}
.ydb{bottom:7.200000pt;}
.ydd{bottom:7.360000pt;}
.yfd{bottom:7.680000pt;}
.yb5{bottom:8.800000pt;}
.yb7{bottom:8.960000pt;}
.ye1{bottom:9.120000pt;}
.ye4{bottom:9.280000pt;}
.yb1{bottom:9.440000pt;}
.ybd{bottom:10.400000pt;}
.yc0{bottom:10.560000pt;}
.y144{bottom:11.520000pt;}
.y76{bottom:11.680000pt;}
.y148{bottom:11.840000pt;}
.y147{bottom:12.160000pt;}
.y7b{bottom:13.440000pt;}
.yc9{bottom:13.760000pt;}
.ya2{bottom:13.920000pt;}
.y7e{bottom:14.400000pt;}
.y120{bottom:15.226667pt;}
.yc7{bottom:15.360000pt;}
.y36{bottom:17.920000pt;}
.y14b{bottom:20.640000pt;}
.ya3{bottom:21.600000pt;}
.y77{bottom:21.920000pt;}
.y1c1{bottom:22.080000pt;}
.y14d{bottom:22.240000pt;}
.y7c{bottom:23.680000pt;}
.ya5{bottom:24.960000pt;}
.y168{bottom:25.280000pt;}
.yaa{bottom:30.080000pt;}
.y14c{bottom:32.320000pt;}
.yff{bottom:33.280000pt;}
.y35{bottom:33.306667pt;}
.y34{bottom:48.666667pt;}
.yb3{bottom:79.040000pt;}
.y2{bottom:95.040000pt;}
.y1{bottom:108.960000pt;}
.y32{bottom:122.752000pt;}
.y64{bottom:123.072000pt;}
.y94{bottom:125.312000pt;}
.y31{bottom:126.752000pt;}
.y177{bottom:128.672000pt;}
.y19b{bottom:128.992000pt;}
.y142{bottom:131.392000pt;}
.y30{bottom:136.826667pt;}
.y63{bottom:139.386667pt;}
.y1d5{bottom:141.306667pt;}
.yea{bottom:142.426667pt;}
.y176{bottom:144.026667pt;}
.y19a{bottom:144.346667pt;}
.y93{bottom:144.506667pt;}
.y141{bottom:148.666667pt;}
.y21f{bottom:150.746667pt;}
.y11a{bottom:154.266667pt;}
.y1c0{bottom:155.066667pt;}
.y62{bottom:155.706667pt;}
.y1d7{bottom:156.666667pt;}
.ye9{bottom:157.786667pt;}
.y175{bottom:159.386667pt;}
.y92{bottom:159.706667pt;}
.y199{bottom:159.866667pt;}
.y2f{bottom:162.426667pt;}
.y140{bottom:164.346667pt;}
.y21e{bottom:164.506667pt;}
.y126{bottom:169.146667pt;}
.y119{bottom:169.626667pt;}
.y1bf{bottom:170.426667pt;}
.y61{bottom:172.026667pt;}
.ye8{bottom:172.986667pt;}
.y174{bottom:174.746667pt;}
.y1f5{bottom:175.066667pt;}
.y198{bottom:175.386667pt;}
.y2e{bottom:177.946667pt;}
.y21d{bottom:178.266667pt;}
.y13f{bottom:179.866667pt;}
.y118{bottom:184.986667pt;}
.y1be{bottom:185.786667pt;}
.y60{bottom:188.346667pt;}
.y173{bottom:189.946667pt;}
.y1f4{bottom:190.426667pt;}
.y197{bottom:190.906667pt;}
.y21c{bottom:192.026667pt;}
.y2d{bottom:193.466667pt;}
.y13e{bottom:195.386667pt;}
.y1bd{bottom:198.906667pt;}
.y117{bottom:200.346667pt;}
.ye7{bottom:203.706667pt;}
.y5f{bottom:204.666667pt;}
.y172{bottom:205.306667pt;}
.y1f3{bottom:205.786667pt;}
.y196{bottom:206.266667pt;}
.y2c{bottom:208.826667pt;}
.y13d{bottom:210.906667pt;}
.y116{bottom:215.866667pt;}
.ye6{bottom:219.066667pt;}
.y21b{bottom:219.706667pt;}
.yc3{bottom:220.346667pt;}
.y171{bottom:220.666667pt;}
.y5d{bottom:220.826667pt;}
.y1f2{bottom:220.986667pt;}
.y195{bottom:221.626667pt;}
.y2b{bottom:224.186667pt;}
.y13c{bottom:226.586667pt;}
.y1d6{bottom:226.920000pt;}
.y115{bottom:231.226667pt;}
.ye5{bottom:232.186667pt;}
.ybb{bottom:233.466667pt;}
.y170{bottom:236.026667pt;}
.y1f1{bottom:236.346667pt;}
.y194{bottom:236.826667pt;}
.y5c{bottom:237.146667pt;}
.y1bc{bottom:239.226667pt;}
.y2a{bottom:239.386667pt;}
.y164{bottom:241.146667pt;}
.y13b{bottom:244.026667pt;}
.y114{bottom:246.586667pt;}
.y21a{bottom:247.226667pt;}
.y16f{bottom:251.386667pt;}
.y193{bottom:252.186667pt;}
.y29{bottom:254.746667pt;}
.y163{bottom:256.346667pt;}
.ye3{bottom:256.826667pt;}
.y13a{bottom:259.546667pt;}
.y219{bottom:260.986667pt;}
.yc2{bottom:261.466667pt;}
.y113{bottom:261.946667pt;}
.y1f0{bottom:265.626667pt;}
.y16e{bottom:266.746667pt;}
.y192{bottom:267.546667pt;}
.y28{bottom:270.266667pt;}
.y162{bottom:271.706667pt;}
.y5b{bottom:271.866667pt;}
.y12c{bottom:273.946667pt;}
.y139{bottom:274.906667pt;}
.y107{bottom:275.066667pt;}
.y112{bottom:277.306667pt;}
.y1bb{bottom:279.706667pt;}
.ye2{bottom:281.626667pt;}
.y191{bottom:282.906667pt;}
.y27{bottom:285.786667pt;}
.y161{bottom:287.066667pt;}
.y218{bottom:288.666667pt;}
.yc1{bottom:289.626667pt;}
.y138{bottom:290.106667pt;}
.y106{bottom:290.426667pt;}
.y111{bottom:292.666667pt;}
.y1ba{bottom:295.706667pt;}
.y26{bottom:301.146667pt;}
.y5a{bottom:301.626667pt;}
.y160{bottom:302.426667pt;}
.y137{bottom:303.226667pt;}
.y105{bottom:305.786667pt;}
.ye0{bottom:306.426667pt;}
.y1ef{bottom:307.866667pt;}
.y190{bottom:308.826667pt;}
.y125{bottom:315.706667pt;}
.y217{bottom:316.186667pt;}
.y25{bottom:316.506667pt;}
.ybf{bottom:317.626667pt;}
.y15f{bottom:317.786667pt;}
.y59{bottom:320.826667pt;}
.y104{bottom:321.146667pt;}
.y136{bottom:323.066667pt;}
.y110{bottom:323.706667pt;}
.y1ee{bottom:328.186667pt;}
.y216{bottom:330.106667pt;}
.ydf{bottom:331.066667pt;}
.y1b9{bottom:331.706667pt;}
.y24{bottom:332.026667pt;}
.y15e{bottom:333.146667pt;}
.y57{bottom:336.186667pt;}
.y103{bottom:336.346667pt;}
.y91{bottom:339.066667pt;}
.y18f{bottom:340.186667pt;}
.y1c3{bottom:340.360000pt;}
.y10e{bottom:342.906667pt;}
.y215{bottom:343.866667pt;}
.ybe{bottom:345.826667pt;}
.y23{bottom:347.426667pt;}
.y15d{bottom:348.386667pt;}
.y102{bottom:351.746667pt;}
.y18e{bottom:353.346667pt;}
.y16a{bottom:354.306667pt;}
.y90{bottom:354.466667pt;}
.yde{bottom:355.906667pt;}
.y214{bottom:357.666667pt;}
.y10d{bottom:358.306667pt;}
.y22{bottom:362.786667pt;}
.y101{bottom:367.106667pt;}
.y1ed{bottom:368.546667pt;}
.y18d{bottom:369.346667pt;}
.y8f{bottom:369.826667pt;}
.ybc{bottom:373.826667pt;}
.y21{bottom:378.146667pt;}
.y15c{bottom:379.586667pt;}
.yfe{bottom:380.226667pt;}
.ydc{bottom:380.546667pt;}
.y133{bottom:382.466667pt;}
.y1d4{bottom:383.586667pt;}
.y8e{bottom:385.026667pt;}
.y18c{bottom:385.346667pt;}
.y213{bottom:385.666667pt;}
.y1ec{bottom:388.866667pt;}
.y20{bottom:393.346667pt;}
.y1b8{bottom:397.186667pt;}
.y15b{bottom:398.946667pt;}
.y8d{bottom:400.386667pt;}
.y18b{bottom:401.346667pt;}
.yb2{bottom:401.986667pt;}
.yda{bottom:405.346667pt;}
.y1eb{bottom:405.666667pt;}
.y100{bottom:405.826667pt;}
.y1f{bottom:408.706667pt;}
.y1b7{bottom:410.306667pt;}
.y15a{bottom:414.306667pt;}
.y8c{bottom:415.746667pt;}
.y18a{bottom:417.346667pt;}
.y132{bottom:422.626667pt;}
.y1e{bottom:424.066667pt;}
.y1ea{bottom:425.666667pt;}
.y1d3{bottom:429.666667pt;}
.yba{bottom:429.986667pt;}
.yd8{bottom:430.146667pt;}
.y1b6{bottom:430.466667pt;}
.y8b{bottom:431.106667pt;}
.yfc{bottom:431.426667pt;}
.y189{bottom:433.346667pt;}
.y55{bottom:438.786667pt;}
.y1d{bottom:439.426667pt;}
.y1e9{bottom:442.626667pt;}
.y124{bottom:445.026667pt;}
.y212{bottom:445.506667pt;}
.y8a{bottom:446.466667pt;}
.y1d2{bottom:446.786667pt;}
.y1b3{bottom:450.626667pt;}
.y131{bottom:452.706667pt;}
.y54{bottom:454.146667pt;}
.y1c{bottom:454.786667pt;}
.yfb{bottom:457.026667pt;}
.yb9{bottom:457.986667pt;}
.y211{bottom:460.866667pt;}
.y89{bottom:461.826667pt;}
.y1d1{bottom:462.306667pt;}
.yd7{bottom:468.866667pt;}
.y1b{bottom:469.986667pt;}
.y1b2{bottom:470.946667pt;}
.y12b{bottom:471.906667pt;}
.y210{bottom:476.226667pt;}
.y88{bottom:477.026667pt;}
.y1d0{bottom:477.826667pt;}
.y1e8{bottom:477.986667pt;}
.y10c{bottom:478.946667pt;}
.y1a{bottom:485.346667pt;}
.yb8{bottom:486.146667pt;}
.y130{bottom:487.266667pt;}
.y1b1{bottom:491.106667pt;}
.y20f{bottom:491.426667pt;}
.y1cf{bottom:495.266667pt;}
.y10b{bottom:498.146667pt;}
.yd6{bottom:498.946667pt;}
.y19{bottom:500.706667pt;}
.y188{bottom:501.986667pt;}
.y87{bottom:503.106667pt;}
.y1b0{bottom:507.106667pt;}
.y1e7{bottom:508.066667pt;}
.y53{bottom:509.026667pt;}
.y123{bottom:510.466667pt;}
.y1ce{bottom:510.946667pt;}
.yfa{bottom:513.666667pt;}
.yb6{bottom:514.146667pt;}
.yd5{bottom:514.306667pt;}
.y187{bottom:515.106667pt;}
.y20e{bottom:517.506667pt;}
.y1e6{bottom:523.426667pt;}
.y122{bottom:524.226667pt;}
.y52{bottom:524.386667pt;}
.y10a{bottom:526.306667pt;}
.y1cd{bottom:526.626667pt;}
.y1af{bottom:527.106667pt;}
.y18{bottom:529.986667pt;}
.y186{bottom:531.106667pt;}
.y86{bottom:534.466667pt;}
.y1e5{bottom:538.786667pt;}
.y16b{bottom:539.586667pt;}
.y51{bottom:539.746667pt;}
.y1cc{bottom:542.146667pt;}
.yb4{bottom:542.306667pt;}
.y1ae{bottom:543.106667pt;}
.y121{bottom:543.426667pt;}
.yf9{bottom:543.746667pt;}
.yd4{bottom:545.666667pt;}
.y185{bottom:547.106667pt;}
.y20d{bottom:548.866667pt;}
.y85{bottom:549.826667pt;}
.y1e4{bottom:554.146667pt;}
.y50{bottom:555.106667pt;}
.y1cb{bottom:557.826667pt;}
.yf8{bottom:559.106667pt;}
.y11f{bottom:559.426667pt;}
.yd3{bottom:561.186667pt;}
.y184{bottom:563.106667pt;}
.y20c{bottom:564.226667pt;}
.y84{bottom:565.026667pt;}
.y1e3{bottom:569.373333pt;}
.y4f{bottom:570.333333pt;}
.y17{bottom:574.173333pt;}
.yf7{bottom:574.333333pt;}
.yd2{bottom:576.413333pt;}
.y1ad{bottom:578.333333pt;}
.y183{bottom:579.133333pt;}
.y20b{bottom:579.453333pt;}
.y83{bottom:580.413333pt;}
.y1e2{bottom:584.893333pt;}
.y1ca{bottom:589.053333pt;}
.yf6{bottom:589.693333pt;}
.yd1{bottom:591.773333pt;}
.y20a{bottom:594.813333pt;}
.y181{bottom:595.133333pt;}
.y82{bottom:595.773333pt;}
.y4e{bottom:596.253333pt;}
.y1e1{bottom:600.573333pt;}
.y1c9{bottom:602.813333pt;}
.y16{bottom:603.933333pt;}
.yf5{bottom:605.053333pt;}
.yd0{bottom:607.133333pt;}
.y1ac{bottom:608.413333pt;}
.y209{bottom:610.173333pt;}
.y81{bottom:611.133333pt;}
.yae{bottom:611.613333pt;}
.y1e0{bottom:616.253333pt;}
.y15{bottom:617.853333pt;}
.yf4{bottom:620.413333pt;}
.y1c2{bottom:622.013333pt;}
.ycf{bottom:622.493333pt;}
.y1ab{bottom:623.933333pt;}
.y208{bottom:625.533333pt;}
.y80{bottom:626.653333pt;}
.y4d{bottom:628.253333pt;}
.y14{bottom:631.613333pt;}
.y1df{bottom:631.773333pt;}
.y180{bottom:633.853333pt;}
.yf3{bottom:635.773333pt;}
.y1c7{bottom:637.373333pt;}
.yce{bottom:637.853333pt;}
.y1aa{bottom:639.453333pt;}
.y207{bottom:640.893333pt;}
.yad{bottom:641.693333pt;}
.y7f{bottom:642.013333pt;}
.y13{bottom:645.533333pt;}
.y1de{bottom:647.293333pt;}
.yf2{bottom:651.133333pt;}
.y7a{bottom:654.493333pt;}
.ya9{bottom:654.813333pt;}
.y1a9{bottom:654.973333pt;}
.y206{bottom:656.253333pt;}
.y12{bottom:659.613333pt;}
.y1dd{bottom:662.813333pt;}
.y17f{bottom:663.613333pt;}
.ycd{bottom:668.893333pt;}
.y1a8{bottom:670.493333pt;}
.y205{bottom:671.613333pt;}
.y4c{bottom:672.733333pt;}
.y159{bottom:673.213333pt;}
.y11{bottom:673.533333pt;}
.yf1{bottom:677.053333pt;}
.y17e{bottom:677.373333pt;}
.yab{bottom:678.333333pt;}
.ycc{bottom:682.653333pt;}
.y1a7{bottom:685.853333pt;}
.y10{bottom:687.293333pt;}
.y4b{bottom:688.093333pt;}
.y158{bottom:688.573333pt;}
.y1dc{bottom:693.533333pt;}
.y79{bottom:693.693333pt;}
.y12f{bottom:695.293333pt;}
.y17d{bottom:696.573333pt;}
.yf{bottom:701.053333pt;}
.y1a6{bottom:701.373333pt;}
.ya7{bottom:701.693333pt;}
.yca{bottom:701.853333pt;}
.y204{bottom:702.813333pt;}
.y4a{bottom:703.453333pt;}
.y157{bottom:705.853333pt;}
.y75{bottom:706.173333pt;}
.yf0{bottom:709.053333pt;}
.y167{bottom:709.693333pt;}
.y12d{bottom:710.653333pt;}
.y17b{bottom:711.933333pt;}
.ye{bottom:714.973333pt;}
.y1a5{bottom:716.893333pt;}
.yc6{bottom:717.853333pt;}
.y203{bottom:718.173333pt;}
.y49{bottom:718.813333pt;}
.y156{bottom:721.373333pt;}
.y1db{bottom:724.573333pt;}
.ya1{bottom:725.053333pt;}
.yd{bottom:728.733333pt;}
.y1a4{bottom:732.573333pt;}
.y202{bottom:733.373333pt;}
.y48{bottom:734.173333pt;}
.y155{bottom:736.733333pt;}
.y1da{bottom:738.493333pt;}
.y74{bottom:742.173333pt;}
.yc{bottom:742.493333pt;}
.y1a3{bottom:748.093333pt;}
.y47{bottom:749.533333pt;}
.y201{bottom:750.653333pt;}
.y154{bottom:751.933333pt;}
.yef{bottom:753.213333pt;}
.yb{bottom:756.253333pt;}
.y73{bottom:757.533333pt;}
.y1d9{bottom:757.853333pt;}
.y1a2{bottom:763.613333pt;}
.y46{bottom:764.733333pt;}
.y166{bottom:766.013333pt;}
.y200{bottom:766.333333pt;}
.y153{bottom:767.453333pt;}
.ya{bottom:770.173333pt;}
.yee{bottom:772.413333pt;}
.y72{bottom:772.733333pt;}
.y1d8{bottom:773.213333pt;}
.y1a1{bottom:778.973333pt;}
.y45{bottom:780.093333pt;}
.y109{bottom:780.413333pt;}
.ya0{bottom:781.693333pt;}
.y1ff{bottom:782.013333pt;}
.y152{bottom:783.133333pt;}
.y9{bottom:783.933333pt;}
.y165{bottom:785.213333pt;}
.yec{bottom:787.773333pt;}
.y71{bottom:788.093333pt;}
.y22e{bottom:791.133333pt;}
.y1a0{bottom:794.373333pt;}
.y44{bottom:795.493333pt;}
.y1c6{bottom:797.413333pt;}
.y1fe{bottom:797.573333pt;}
.y151{bottom:798.693333pt;}
.y11e{bottom:801.413333pt;}
.y70{bottom:803.493333pt;}
.y22d{bottom:804.933333pt;}
.y108{bottom:808.613333pt;}
.y19f{bottom:809.573333pt;}
.y43{bottom:810.853333pt;}
.y9f{bottom:811.813333pt;}
.y1c4{bottom:812.773333pt;}
.y1fd{bottom:812.933333pt;}
.y150{bottom:815.813333pt;}
.y11c{bottom:817.253333pt;}
.y22c{bottom:818.693333pt;}
.y42{bottom:826.213333pt;}
.y9e{bottom:827.173333pt;}
.y1fc{bottom:828.133333pt;}
.y6f{bottom:829.413333pt;}
.y22b{bottom:832.453333pt;}
.y14f{bottom:833.413333pt;}
.y19e{bottom:840.773333pt;}
.y41{bottom:841.573333pt;}
.y8{bottom:842.373333pt;}
.y1fb{bottom:843.493333pt;}
.y22a{bottom:846.373333pt;}
.y14e{bottom:848.933333pt;}
.y40{bottom:856.773333pt;}
.y9d{bottom:857.733333pt;}
.y7{bottom:858.373333pt;}
.y6e{bottom:858.693333pt;}
.y1fa{bottom:858.853333pt;}
.y19d{bottom:859.973333pt;}
.y229{bottom:860.133333pt;}
.y14a{bottom:861.253333pt;}
.y3f{bottom:872.133333pt;}
.y9c{bottom:873.093333pt;}
.yc8{bottom:873.413333pt;}
.y228{bottom:873.893333pt;}
.y1f9{bottom:874.213333pt;}
.y19c{bottom:875.173333pt;}
.y6c{bottom:875.973333pt;}
.y5{bottom:883.973333pt;}
.y3e{bottom:887.493333pt;}
.y227{bottom:887.653333pt;}
.y9b{bottom:888.453333pt;}
.y1f8{bottom:889.573333pt;}
.y6{bottom:890.053333pt;}
.y6b{bottom:893.093333pt;}
.yc4{bottom:895.173333pt;}
.y226{bottom:901.573333pt;}
.y3d{bottom:902.853333pt;}
.y9a{bottom:903.813333pt;}
.y1f7{bottom:904.773333pt;}
.y6a{bottom:910.373333pt;}
.y149{bottom:915.013333pt;}
.y225{bottom:915.333333pt;}
.y3c{bottom:918.213333pt;}
.y99{bottom:919.173333pt;}
.y4{bottom:919.493333pt;}
.y12a{bottom:919.653333pt;}
.y1f6{bottom:920.133333pt;}
.y146{bottom:927.493333pt;}
.y69{bottom:927.653333pt;}
.y224{bottom:929.093333pt;}
.y98{bottom:934.373333pt;}
.y3b{bottom:934.853333pt;}
.y17a{bottom:935.493333pt;}
.y3{bottom:942.693333pt;}
.y223{bottom:942.853333pt;}
.y68{bottom:944.933333pt;}
.y97{bottom:949.733333pt;}
.y129{bottom:950.373333pt;}
.y3a{bottom:950.533333pt;}
.y179{bottom:950.853333pt;}
.y222{bottom:956.773333pt;}
.y66{bottom:962.213333pt;}
.y145{bottom:964.293333pt;}
.y96{bottom:965.093333pt;}
.y39{bottom:965.893333pt;}
.y128{bottom:966.053333pt;}
.y178{bottom:966.213333pt;}
.y11b{bottom:969.253333pt;}
.y221{bottom:970.533333pt;}
.yeb{bottom:974.693333pt;}
.y143{bottom:976.773333pt;}
.y38{bottom:981.413333pt;}
.y127{bottom:981.573333pt;}
.y220{bottom:984.293333pt;}
.y95{bottom:994.373333pt;}
.y37{bottom:996.773333pt;}
.y33{bottom:997.893333pt;}
.y65{bottom:998.053333pt;}
.h1d{height:15.200000pt;}
.h10{height:15.360000pt;}
.h3b{height:15.392000pt;}
.h14{height:15.520000pt;}
.h13{height:15.680000pt;}
.h3e{height:15.840000pt;}
.h2d{height:16.000000pt;}
.h5c{height:16.032000pt;}
.h63{height:16.160000pt;}
.h16{height:16.480000pt;}
.h15{height:16.640000pt;}
.h47{height:19.040000pt;}
.h46{height:19.200000pt;}
.h48{height:19.232000pt;}
.h2e{height:19.360000pt;}
.h5a{height:19.520000pt;}
.h64{height:19.552000pt;}
.h5b{height:19.680000pt;}
.h2a{height:21.760000pt;}
.h22{height:22.080000pt;}
.h20{height:22.720000pt;}
.h6{height:23.140625pt;}
.h2f{height:24.000000pt;}
.h30{height:24.160000pt;}
.h31{height:24.192000pt;}
.h34{height:24.960000pt;}
.h25{height:27.360000pt;}
.h24{height:27.392000pt;}
.h26{height:27.520000pt;}
.h27{height:27.552000pt;}
.h39{height:28.160000pt;}
.h37{height:28.192000pt;}
.h5{height:31.008437pt;}
.h4a{height:32.480000pt;}
.h17{height:33.120000pt;}
.h4b{height:33.920000pt;}
.h32{height:34.560000pt;}
.h2{height:34.710938pt;}
.h12{height:34.945312pt;}
.h19{height:36.320000pt;}
.h1e{height:37.280000pt;}
.h2c{height:37.479688pt;}
.h52{height:37.760000pt;}
.ha{height:38.413438pt;}
.he{height:38.672812pt;}
.h58{height:39.140625pt;}
.h65{height:39.347188pt;}
.h8{height:39.562500pt;}
.h3c{height:40.000000pt;}
.h4{height:43.551875pt;}
.hd{height:43.658542pt;}
.h49{height:43.782500pt;}
.h66{height:45.156250pt;}
.h9{height:46.593750pt;}
.h40{height:46.880000pt;}
.h4d{height:50.880000pt;}
.hf{height:52.000000pt;}
.h3{height:52.832812pt;}
.h1f{height:56.991875pt;}
.hc{height:61.152000pt;}
.h21{height:69.600000pt;}
.h35{height:76.160000pt;}
.h4f{height:79.942500pt;}
.h7{height:101.718750pt;}
.h3a{height:102.080000pt;}
.h11{height:102.592000pt;}
.h50{height:106.168750pt;}
.h42{height:112.000000pt;}
.hb{height:112.568750pt;}
.h41{height:113.952000pt;}
.h28{height:114.080000pt;}
.h59{height:118.656695pt;}
.h57{height:118.720000pt;}
.h18{height:148.408750pt;}
.h3d{height:152.000000pt;}
.h1a{height:153.528750pt;}
.h4c{height:155.448750pt;}
.h2b{height:155.546667pt;}
.h5f{height:160.026667pt;}
.h5e{height:161.920000pt;}
.h55{height:165.920000pt;}
.h23{height:167.706667pt;}
.h54{height:170.106667pt;}
.h1c{height:176.480000pt;}
.h33{height:186.906667pt;}
.h1b{height:189.368750pt;}
.h36{height:200.640000pt;}
.h4e{height:202.822500pt;}
.h44{height:206.106667pt;}
.h45{height:208.026667pt;}
.h56{height:220.666667pt;}
.h61{height:224.026667pt;}
.h62{height:236.026667pt;}
.h60{height:239.386667pt;}
.h3f{height:241.986667pt;}
.h38{height:254.106667pt;}
.h51{height:256.026667pt;}
.h29{height:291.386667pt;}
.h5d{height:352.666667pt;}
.h53{height:366.786667pt;}
.h43{height:444.866667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w42{width:14.720000pt;}
.w17{width:15.840000pt;}
.w31{width:16.000000pt;}
.w1b{width:16.480000pt;}
.w64{width:20.960000pt;}
.w55{width:21.440000pt;}
.w5a{width:21.600000pt;}
.w10{width:31.040000pt;}
.w4f{width:46.400000pt;}
.w4b{width:46.720000pt;}
.w12{width:48.960000pt;}
.w18{width:49.120000pt;}
.w3f{width:56.800000pt;}
.w3a{width:57.760000pt;}
.w30{width:64.192000pt;}
.w16{width:64.352000pt;}
.w1d{width:66.432000pt;}
.w34{width:66.592000pt;}
.w1c{width:71.840000pt;}
.w19{width:72.640000pt;}
.w32{width:72.800000pt;}
.w1e{width:73.760000pt;}
.w1a{width:79.392000pt;}
.w33{width:79.552000pt;}
.w15{width:84.960000pt;}
.w2f{width:85.120000pt;}
.w24{width:98.432000pt;}
.wc{width:102.400000pt;}
.w21{width:107.872000pt;}
.w1f{width:121.120000pt;}
.w22{width:121.312000pt;}
.w2d{width:122.720000pt;}
.we{width:124.992000pt;}
.w2a{width:129.632000pt;}
.w4c{width:132.320000pt;}
.w4d{width:132.352000pt;}
.w4e{width:132.512000pt;}
.w48{width:133.120000pt;}
.w49{width:133.152000pt;}
.w4a{width:133.312000pt;}
.w28{width:134.240000pt;}
.w20{width:134.426667pt;}
.w7{width:135.200000pt;}
.w8{width:135.226667pt;}
.w9{width:139.546667pt;}
.w23{width:143.866667pt;}
.wd{width:160.666667pt;}
.w27{width:167.866667pt;}
.w29{width:171.066667pt;}
.w6{width:173.786667pt;}
.w61{width:177.626667pt;}
.w2b{width:179.386667pt;}
.w53{width:180.826667pt;}
.w52{width:180.986667pt;}
.w57{width:182.746667pt;}
.w58{width:182.906667pt;}
.wb{width:190.586667pt;}
.w63{width:196.506667pt;}
.w62{width:200.346667pt;}
.w25{width:208.186667pt;}
.w54{width:223.386667pt;}
.w59{width:225.946667pt;}
.w3e{width:229.666667pt;}
.w3c{width:232.506667pt;}
.w3b{width:237.346667pt;}
.w51{width:238.946667pt;}
.w50{width:247.706667pt;}
.wa{width:274.786667pt;}
.w38{width:277.826667pt;}
.w5f{width:280.506667pt;}
.w60{width:282.786667pt;}
.w5e{width:283.266667pt;}
.w5d{width:284.986667pt;}
.wf{width:285.666667pt;}
.w44{width:288.186667pt;}
.w37{width:291.066667pt;}
.w47{width:292.546667pt;}
.w2c{width:293.786667pt;}
.w46{width:296.346667pt;}
.w41{width:300.066667pt;}
.w45{width:301.826667pt;}
.w13{width:301.946667pt;}
.w14{width:302.146667pt;}
.w40{width:302.426667pt;}
.w3d{width:304.186667pt;}
.w26{width:396.546667pt;}
.w56{width:404.226667pt;}
.w11{width:404.706667pt;}
.w5b{width:408.866667pt;}
.w39{width:480.573333pt;}
.w5c{width:568.253333pt;}
.w36{width:568.893333pt;}
.w35{width:571.133333pt;}
.w43{width:590.013333pt;}
.w2e{width:604.093333pt;}
.w4{width:605.373333pt;}
.w5{width:619.773333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x58{left:7.840000pt;}
.x10{left:9.600000pt;}
.x5a{left:10.560000pt;}
.x55{left:11.520000pt;}
.x57{left:13.600000pt;}
.x64{left:14.720000pt;}
.x53{left:17.760000pt;}
.x5f{left:19.680000pt;}
.x63{left:21.280000pt;}
.x62{left:24.640000pt;}
.x39{left:26.080000pt;}
.x7e{left:27.520000pt;}
.xf{left:28.480000pt;}
.x32{left:29.480000pt;}
.x6c{left:31.040000pt;}
.x61{left:33.440000pt;}
.x69{left:35.360000pt;}
.x93{left:37.760000pt;}
.x2e{left:39.360000pt;}
.x66{left:41.274667pt;}
.x37{left:43.040000pt;}
.x1d{left:46.120000pt;}
.xa4{left:47.400000pt;}
.x33{left:48.960000pt;}
.x1b{left:50.746667pt;}
.x27{left:52.314667pt;}
.x30{left:53.946667pt;}
.x35{left:55.880000pt;}
.x77{left:57.786667pt;}
.x29{left:58.746667pt;}
.x1e{left:60.954667pt;}
.x25{left:61.946667pt;}
.x24{left:63.034667pt;}
.x22{left:63.994667pt;}
.x19{left:65.120000pt;}
.xb1{left:66.240000pt;}
.x17{left:67.834667pt;}
.x28{left:69.600000pt;}
.x26{left:70.554667pt;}
.x21{left:72.520000pt;}
.x20{left:73.626667pt;}
.x1f{left:74.720000pt;}
.x23{left:75.720000pt;}
.x34{left:76.986667pt;}
.x3e{left:78.874667pt;}
.x79{left:79.866667pt;}
.xbf{left:80.954667pt;}
.x3f{left:81.914667pt;}
.x73{left:83.834667pt;}
.xc0{left:84.960000pt;}
.x78{left:85.914667pt;}
.x11{left:87.072000pt;}
.x36{left:89.274667pt;}
.xaf{left:90.394667pt;}
.x95{left:91.994667pt;}
.xe{left:93.632000pt;}
.xa{left:94.591988pt;}
.x72{left:95.552000pt;}
.x70{left:96.634667pt;}
.x52{left:99.552000pt;}
.x8f{left:101.632000pt;}
.xa1{left:102.592000pt;}
.x7a{left:104.154667pt;}
.x16{left:105.152000pt;}
.xb3{left:106.080000pt;}
.x2c{left:107.712000pt;}
.x9c{left:109.312000pt;}
.x7f{left:111.392000pt;}
.x84{left:112.512000pt;}
.xb{left:113.471988pt;}
.x40{left:115.994667pt;}
.x1{left:117.311988pt;}
.xb6{left:120.192000pt;}
.xd{left:121.311988pt;}
.x38{left:122.746667pt;}
.x90{left:123.994667pt;}
.x3a{left:125.632000pt;}
.xc2{left:126.591988pt;}
.x42{left:128.034667pt;}
.x87{left:131.066667pt;}
.x9{left:132.351988pt;}
.xb8{left:133.786667pt;}
.x2a{left:135.066667pt;}
.x9f{left:136.154667pt;}
.x41{left:137.474667pt;}
.x89{left:138.906667pt;}
.x94{left:140.314667pt;}
.x9a{left:142.266667pt;}
.x50{left:143.226667pt;}
.x2{left:144.346655pt;}
.xaa{left:153.626667pt;}
.x3{left:154.746655pt;}
.x8a{left:156.666667pt;}
.x96{left:161.954667pt;}
.x7{left:165.626655pt;}
.xc1{left:166.906655pt;}
.x51{left:171.546655pt;}
.x43{left:176.514667pt;}
.x3b{left:180.354667pt;}
.x8{left:181.786655pt;}
.x54{left:184.506667pt;}
.x44{left:186.434667pt;}
.x45{left:188.034667pt;}
.x3c{left:190.274667pt;}
.x4{left:195.866655pt;}
.x71{left:200.034667pt;}
.x6d{left:201.314667pt;}
.x6f{left:207.706667pt;}
.x46{left:212.994667pt;}
.x67{left:215.226667pt;}
.xb4{left:218.746655pt;}
.xac{left:222.466667pt;}
.x47{left:224.514667pt;}
.x48{left:226.274667pt;}
.x8d{left:230.146667pt;}
.x8b{left:232.840000pt;}
.x4f{left:233.986667pt;}
.xab{left:236.840000pt;}
.xa3{left:240.346667pt;}
.xa8{left:241.306667pt;}
.x65{left:244.666655pt;}
.x56{left:248.866667pt;}
.x97{left:249.794667pt;}
.xb9{left:253.026667pt;}
.x4a{left:254.914667pt;}
.x4d{left:256.994667pt;}
.x74{left:263.426667pt;}
.x49{left:264.354667pt;}
.xba{left:265.634667pt;}
.xbb{left:266.786667pt;}
.x88{left:270.466667pt;}
.x2b{left:272.546655pt;}
.x76{left:274.946667pt;}
.x7c{left:275.874667pt;}
.xbc{left:276.866667pt;}
.x82{left:277.794667pt;}
.x18{left:278.946667pt;}
.x9e{left:281.474667pt;}
.x7d{left:282.466667pt;}
.x15{left:284.226655pt;}
.xa0{left:285.154667pt;}
.x83{left:287.234667pt;}
.xa2{left:289.154667pt;}
.x98{left:295.234667pt;}
.x2d{left:298.306667pt;}
.x4b{left:299.421333pt;}
.x13{left:302.434667pt;}
.xc{left:305.506655pt;}
.x4c{left:310.941333pt;}
.x59{left:313.826667pt;}
.x68{left:349.666667pt;}
.x14{left:359.741333pt;}
.xa5{left:373.506667pt;}
.x5{left:378.466643pt;}
.x6{left:383.746655pt;}
.x5b{left:386.466667pt;}
.x6e{left:390.146667pt;}
.x4e{left:396.866667pt;}
.x99{left:398.146667pt;}
.x2f{left:400.706667pt;}
.x9d{left:401.981333pt;}
.x86{left:403.586667pt;}
.x91{left:405.826667pt;}
.xb7{left:409.181333pt;}
.x1a{left:414.146667pt;}
.x7b{left:427.101333pt;}
.x8e{left:428.253333pt;}
.x85{left:434.461333pt;}
.xb0{left:455.453333pt;}
.x6a{left:457.533333pt;}
.x5c{left:465.853333pt;}
.x80{left:466.781333pt;}
.x8c{left:469.226667pt;}
.x81{left:473.861333pt;}
.xbd{left:477.213333pt;}
.x5d{left:482.333333pt;}
.x12{left:489.821333pt;}
.xa6{left:506.653333pt;}
.xad{left:524.413322pt;}
.x3d{left:530.333333pt;}
.xae{left:541.853322pt;}
.x1c{left:549.373333pt;}
.x5e{left:554.173333pt;}
.x31{left:561.373333pt;}
.x9b{left:564.733322pt;}
.x75{left:568.733333pt;}
.x6b{left:578.653333pt;}
.x60{left:620.613333pt;}
.x92{left:635.493333pt;}
.xa9{left:638.533333pt;}
.xa7{left:639.973333pt;}
.xbe{left:673.733333pt;}
.xb2{left:678.853333pt;}
.xb5{left:682.053333pt;}
}




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