
    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_412ce36e114be7b9195181b7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_f37fcd8bd97604f4a2ea07f9.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_ed0d65c158d5e462ab3c6958.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_0ac93fe4c0e3fbb27343af85.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b50fe63ea1e36c8323c30cea.woff')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_971505c628e9a4eca64e6fcd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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_cf3f330c758dbfc211498483.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_20d058c0ae5a38dde1b62182.woff')format("woff");}.ff8{font-family:ff8;line-height:1.130371;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_243a41c1e30c9c8493481006.woff')format("woff");}.ff9{font-family:ff9;line-height:0.940430;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_7e27675718f86b0df3f0e73b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.766602;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);}
.m2{transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250062,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250389,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251071,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252175,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);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-0.852000px;}
.ls19{letter-spacing:-0.541200px;}
.ls5{letter-spacing:-0.504000px;}
.ls11{letter-spacing:-0.310200px;}
.ls25{letter-spacing:-0.212470px;}
.lsc{letter-spacing:-0.193200px;}
.lse{letter-spacing:-0.164400px;}
.ls6{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.132600px;}
.ls22{letter-spacing:-0.126000px;}
.ls24{letter-spacing:-0.125490px;}
.ls26{letter-spacing:-0.109200px;}
.ls1b{letter-spacing:-0.107400px;}
.ls1e{letter-spacing:-0.069600px;}
.ls1c{letter-spacing:-0.058320px;}
.ls2c{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.072720px;}
.lsd{letter-spacing:0.075000px;}
.lsf{letter-spacing:0.086400px;}
.ls28{letter-spacing:0.093000px;}
.ls4{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.174240px;}
.ls1d{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.190080px;}
.ls1a{letter-spacing:0.190200px;}
.ls1{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.229200px;}
.ls29{letter-spacing:0.247800px;}
.lsb{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.256320px;}
.ls2{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.370162px;}
.ls27{letter-spacing:0.592604px;}
.ls16{letter-spacing:2.309760px;}
.ls2e{letter-spacing:10.229760px;}
.ls1f{letter-spacing:19.781280px;}
.ls10{letter-spacing:29.538720px;}
.ls13{letter-spacing:48.521280px;}
.ls14{letter-spacing:52.865280px;}
.ls2d{letter-spacing:53.585280px;}
.ls9{letter-spacing:62.069760px;}
.ls21{letter-spacing:196.030382px;}
.ls20{letter-spacing:849.185760px;}
.lsa{letter-spacing:1699.068000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(47,171,159),0 0.015em rgb(47,171,159),0.015em 0 rgb(47,171,159),0 -0.015em  rgb(47,171,159);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(47,171,159);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws60{word-spacing:-21.870960px;}
.wsc{word-spacing:-21.331560px;}
.ws49{word-spacing:-20.721688px;}
.ws47{word-spacing:-19.638449px;}
.ws4b{word-spacing:-19.131240px;}
.ws14{word-spacing:-19.038240px;}
.ws48{word-spacing:-18.305520px;}
.ws5f{word-spacing:-16.741190px;}
.ws3{word-spacing:-16.632000px;}
.ws2{word-spacing:-16.488000px;}
.ws1{word-spacing:-16.272000px;}
.ws5{word-spacing:-16.128000px;}
.ws4{word-spacing:-15.768000px;}
.ws7{word-spacing:-15.226440px;}
.wsb{word-spacing:-15.056640px;}
.ws9{word-spacing:-15.045240px;}
.ws13{word-spacing:-15.012000px;}
.wsd{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.837640px;}
.wsa{word-spacing:-14.805840px;}
.ws8{word-spacing:-14.777040px;}
.wse{word-spacing:-14.429040px;}
.ws11{word-spacing:-13.505760px;}
.ws10{word-spacing:-13.447440px;}
.ws12{word-spacing:-13.436160px;}
.wsf{word-spacing:-13.398360px;}
.ws4a{word-spacing:-12.859081px;}
.ws61{word-spacing:-12.186000px;}
.ws15{word-spacing:-12.078000px;}
.ws46{word-spacing:-10.219313px;}
.ws51{word-spacing:-9.141154px;}
.ws4f{word-spacing:-8.967892px;}
.ws4d{word-spacing:-4.885409px;}
.ws16{word-spacing:-4.051529px;}
.ws0{word-spacing:0.000000px;}
.ws62{word-spacing:0.077760px;}
.ws43{word-spacing:3.095416px;}
.ws4c{word-spacing:12.202314px;}
.ws4e{word-spacing:14.645018px;}
.ws35{word-spacing:34.918043px;}
.ws2e{word-spacing:36.907953px;}
.ws44{word-spacing:38.192097px;}
.ws36{word-spacing:40.612226px;}
.ws2f{word-spacing:44.556192px;}
.ws42{word-spacing:48.464304px;}
.ws3a{word-spacing:48.482231px;}
.ws34{word-spacing:48.775705px;}
.ws1b{word-spacing:49.641518px;}
.ws2c{word-spacing:50.765615px;}
.ws39{word-spacing:61.324688px;}
.ws33{word-spacing:63.744849px;}
.ws1e{word-spacing:64.347731px;}
.ws2a{word-spacing:64.474217px;}
.ws23{word-spacing:65.584702px;}
.ws29{word-spacing:65.734759px;}
.ws31{word-spacing:67.742596px;}
.ws17{word-spacing:67.825592px;}
.ws37{word-spacing:69.349397px;}
.ws38{word-spacing:70.781575px;}
.ws30{word-spacing:72.699776px;}
.ws3b{word-spacing:73.829185px;}
.ws1f{word-spacing:75.801168px;}
.ws32{word-spacing:84.246832px;}
.ws26{word-spacing:88.083236px;}
.ws28{word-spacing:88.190798px;}
.ws22{word-spacing:96.455200px;}
.ws24{word-spacing:101.616218px;}
.ws25{word-spacing:107.390742px;}
.ws3f{word-spacing:135.289322px;}
.ws40{word-spacing:140.569854px;}
.ws3d{word-spacing:149.282433px;}
.ws1a{word-spacing:157.467823px;}
.ws19{word-spacing:167.386831px;}
.ws41{word-spacing:171.411137px;}
.ws3c{word-spacing:179.378745px;}
.ws2d{word-spacing:179.428543px;}
.ws45{word-spacing:206.299827px;}
.ws3e{word-spacing:209.290474px;}
.ws1c{word-spacing:209.294458px;}
.ws59{word-spacing:221.127040px;}
.ws56{word-spacing:302.912056px;}
.ws53{word-spacing:303.599665px;}
.ws52{word-spacing:305.581597px;}
.ws5c{word-spacing:343.319193px;}
.ws50{word-spacing:359.215094px;}
.ws18{word-spacing:363.652921px;}
.ws55{word-spacing:366.293422px;}
.ws54{word-spacing:368.275353px;}
.ws1d{word-spacing:370.590716px;}
.ws57{word-spacing:372.320112px;}
.ws5a{word-spacing:372.401007px;}
.ws5b{word-spacing:383.604988px;}
.ws5d{word-spacing:387.730642px;}
.ws5e{word-spacing:396.588663px;}
.ws2b{word-spacing:417.173669px;}
.ws58{word-spacing:427.571513px;}
.ws20{word-spacing:468.000369px;}
.ws21{word-spacing:951.040926px;}
.ws27{word-spacing:971.872237px;}
._a1{margin-left:-12.470880px;}
._9f{margin-left:-11.334240px;}
._a0{margin-left:-9.084960px;}
._9d{margin-left:-7.881120px;}
._9e{margin-left:-6.248160px;}
._b{margin-left:-3.390000px;}
._21{margin-left:-2.268960px;}
._1{margin-left:-1.202400px;}
._0{width:1.205280px;}
._2{width:2.318400px;}
._c{width:3.384480px;}
._6{width:5.301120px;}
._7{width:7.272000px;}
._3{width:9.273600px;}
._4{width:10.333440px;}
._2a{width:12.295168px;}
._9c{width:16.135200px;}
._90{width:23.903154px;}
._82{width:25.961108px;}
._5b{width:29.898449px;}
._6b{width:35.692078px;}
._66{width:38.030812px;}
._23{width:39.411110px;}
._91{width:41.080873px;}
._7e{width:47.687657px;}
._22{width:49.854240px;}
._92{width:52.747090px;}
._26{width:54.239376px;}
._80{width:62.055424px;}
._8f{width:65.638041px;}
._69{width:66.667898px;}
._8{width:68.088000px;}
._83{width:71.363473px;}
._32{width:74.743468px;}
._3f{width:76.501608px;}
._8d{width:79.615515px;}
._28{width:81.341311px;}
._12{width:82.453440px;}
._24{width:83.653245px;}
._3e{width:85.977041px;}
._27{width:90.654781px;}
._4b{width:95.450572px;}
._51{width:97.231109px;}
._47{width:99.041748px;}
._3b{width:101.160027px;}
._58{width:103.467180px;}
._2b{width:104.901897px;}
._63{width:106.429317px;}
._2f{width:107.542082px;}
._29{width:109.201381px;}
._86{width:110.498457px;}
._4d{width:112.448666px;}
._97{width:113.908804px;}
._4f{width:116.326903px;}
._71{width:118.646543px;}
._6c{width:119.992147px;}
._60{width:121.041735px;}
._94{width:122.228099px;}
._6f{width:124.493467px;}
._9{width:125.832000px;}
._7a{width:128.255123px;}
._4c{width:131.339999px;}
._93{width:133.629547px;}
._39{width:135.357046px;}
._30{width:139.792967px;}
._37{width:141.739011px;}
._45{width:144.103448px;}
._8c{width:146.035965px;}
._67{width:147.985124px;}
._31{width:149.486092px;}
._70{width:151.667942px;}
._35{width:153.333962px;}
._3d{width:154.442124px;}
._38{width:158.409328px;}
._8b{width:159.422801px;}
._4a{width:161.015795px;}
._42{width:163.134075px;}
._3a{width:164.612730px;}
._54{width:166.231528px;}
._57{width:167.422685px;}
._59{width:168.881951px;}
._55{width:170.935785px;}
._41{width:172.402440px;}
._4e{width:174.813261px;}
._53{width:176.386244px;}
._50{width:178.830218px;}
._5d{width:179.834137px;}
._34{width:182.642809px;}
._5f{width:183.851095px;}
._46{width:184.957354px;}
._43{width:187.544081px;}
._68{width:190.053150px;}
._7f{width:191.208579px;}
._56{width:194.855779px;}
._52{width:196.909614px;}
._88{width:201.882054px;}
._95{width:204.982674px;}
._5a{width:209.824923px;}
._36{width:212.734722px;}
._44{width:213.877734px;}
._33{width:215.651770px;}
._8e{width:217.358714px;}
._73{width:228.464242px;}
._49{width:239.280461px;}
._40{width:241.304942px;}
._5e{width:253.705905px;}
._96{width:263.011058px;}
._6e{width:285.523070px;}
._64{width:288.806328px;}
._48{width:290.765862px;}
._3c{width:292.754489px;}
._5c{width:293.850035px;}
._2d{width:304.102354px;}
._84{width:309.811823px;}
._8a{width:315.138349px;}
._25{width:319.328458px;}
._6d{width:332.913572px;}
._72{width:341.728900px;}
._81{width:343.196180px;}
._77{width:349.989813px;}
._6a{width:351.907263px;}
._85{width:355.099691px;}
._7b{width:359.106637px;}
._2c{width:362.311707px;}
._78{width:376.963973px;}
._79{width:384.351034px;}
._87{width:440.208386px;}
._89{width:463.286240px;}
._9a{width:476.214267px;}
._9b{width:478.007869px;}
._7c{width:562.313520px;}
._65{width:607.713320px;}
._7d{width:643.450178px;}
._99{width:645.681185px;}
._61{width:801.938338px;}
._98{width:839.748000px;}
._75{width:845.768640px;}
._d{width:847.884000px;}
._a{width:849.149760px;}
._76{width:883.730986px;}
._62{width:956.063085px;}
._2e{width:969.955319px;}
._74{width:1031.663520px;}
._5{width:1068.658080px;}
._17{width:1217.428320px;}
._19{width:1242.996960px;}
._16{width:1276.845600px;}
._18{width:1296.982560px;}
._14{width:1348.111200px;}
._15{width:1367.453280px;}
._13{width:1425.138240px;}
._1d{width:1581.842400px;}
._1e{width:1744.368000px;}
._11{width:1760.640000px;}
._1c{width:2062.320000px;}
._1a{width:2098.267680px;}
._20{width:2104.494240px;}
._1b{width:2130.913920px;}
._10{width:2188.392000px;}
._f{width:2271.408000px;}
._e{width:2362.704000px;}
._1f{width:2416.704000px;}
.fc9{color:rgb(5,99,193);}
.fc8{color:rgb(255,0,0);}
.fc7{color:rgb(52,90,138);}
.fc2{color:rgb(47,171,159);}
.fc1{color:transparent;}
.fc6{color:rgb(36,36,36);}
.fc5{color:rgb(68,84,106);}
.fc4{color:rgb(89,191,159);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:17.927118px;}
.fs16{font-size:21.616854px;}
.fsd{font-size:24.649019px;}
.fs14{font-size:30.990050px;}
.fsc{font-size:32.907881px;}
.fs8{font-size:38.880000px;}
.fs17{font-size:39.680939px;}
.fs19{font-size:40.447585px;}
.fs7{font-size:41.760000px;}
.fse{font-size:45.218201px;}
.fsf{font-size:47.437451px;}
.fs12{font-size:49.938725px;}
.fs6{font-size:54.000000px;}
.fs15{font-size:56.898590px;}
.fs9{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1a{font-size:74.076062px;}
.fs11{font-size:81.360000px;}
.fsa{font-size:84.240000px;}
.fs10{font-size:86.895792px;}
.fs13{font-size:91.688883px;}
.fs1{font-size:95.760000px;}
.fs18{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs4{font-size:131.760000px;}
.fs2{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.yca{bottom:1.244939px;}
.y123{bottom:1.244960px;}
.yfb{bottom:1.253238px;}
.y120{bottom:1.255313px;}
.yc7{bottom:1.257388px;}
.y121{bottom:1.493885px;}
.y19d{bottom:1.501170px;}
.y1a0{bottom:1.516182px;}
.y139{bottom:1.714098px;}
.y1ae{bottom:1.801390px;}
.y13b{bottom:2.068257px;}
.y179{bottom:2.147095px;}
.y167{bottom:2.147117px;}
.y170{bottom:2.165009px;}
.y177{bottom:2.573534px;}
.y1be{bottom:2.802373px;}
.y1cf{bottom:3.386174px;}
.y146{bottom:3.934883px;}
.y160{bottom:4.180811px;}
.y31{bottom:4.500000px;}
.y15{bottom:4.860000px;}
.y19{bottom:5.040000px;}
.y125{bottom:6.722669px;}
.y61{bottom:7.200000px;}
.yf2{bottom:7.228944px;}
.yc6{bottom:7.233094px;}
.y69{bottom:7.245000px;}
.y11e{bottom:7.480007px;}
.y1b0{bottom:7.520864px;}
.y13d{bottom:7.536367px;}
.y1d1{bottom:8.407119px;}
.y1ad{bottom:9.019518px;}
.y162{bottom:10.414473px;}
.y17b{bottom:11.200792px;}
.y175{bottom:12.915622px;}
.y11c{bottom:13.455713px;}
.y63{bottom:14.580000px;}
.y1ac{bottom:16.237646px;}
.y1bd{bottom:16.272446px;}
.y148{bottom:16.450084px;}
.y1ce{bottom:16.860637px;}
.y11a{bottom:19.431419px;}
.y145{bottom:19.729696px;}
.y15f{bottom:20.845814px;}
.y11{bottom:22.860000px;}
.y173{bottom:23.257567px;}
.y1ab{bottom:23.443264px;}
.y64{bottom:24.660000px;}
.y118{bottom:25.417500px;}
.y14{bottom:26.820000px;}
.y1c{bottom:26.865000px;}
.y18{bottom:27.000000px;}
.y1bc{bottom:29.751861px;}
.y1cd{bottom:30.335381px;}
.y1aa{bottom:30.661392px;}
.y116{bottom:31.393206px;}
.y171{bottom:33.599512px;}
.y144{bottom:35.523963px;}
.y12{bottom:35.676000px;}
.y20e{bottom:36.756000px;}
.y114{bottom:37.379286px;}
.y15e{bottom:37.511277px;}
.y1a9{bottom:37.867010px;}
.y1bb{bottom:43.221934px;}
.y112{bottom:43.352918px;}
.y1cc{bottom:43.810125px;}
.y16e{bottom:43.941457px;}
.y10{bottom:44.634000px;}
.y1a8{bottom:45.085138px;}
.y110{bottom:49.341073px;}
.y143{bottom:51.345555px;}
.y1a7{bottom:52.288755px;}
.y15d{bottom:54.176741px;}
.y16c{bottom:54.265509px;}
.y10e{bottom:55.316779px;}
.y1cb{bottom:57.284869px;}
.y1a6{bottom:59.509384px;}
.y10c{bottom:61.300785px;}
.y16a{bottom:64.607454px;}
.y1a5{bottom:66.725010px;}
.y142{bottom:67.139821px;}
.y10a{bottom:67.276491px;}
.y1ca{bottom:70.759613px;}
.y15c{bottom:70.842205px;}
.y108{bottom:73.252197px;}
.y1a4{bottom:73.930628px;}
.y168{bottom:74.948684px;}
.y106{bottom:79.240352px;}
.y1a3{bottom:81.151258px;}
.y141{bottom:82.934088px;}
.y1c9{bottom:84.234357px;}
.y104{bottom:85.216059px;}
.y165{bottom:85.290629px;}
.y15b{bottom:87.507668px;}
.y1a2{bottom:88.356876px;}
.yb1{bottom:88.776000px;}
.y102{bottom:91.200064px;}
.yb0{bottom:93.996000px;}
.y1a1{bottom:95.572502px;}
.y164{bottom:95.632574px;}
.y100{bottom:97.175770px;}
.y1c8{bottom:97.707233px;}
.y216{bottom:98.676000px;}
.y140{bottom:98.728355px;}
.y19e{bottom:102.793132px;}
.yfe{bottom:103.163926px;}
.y15a{bottom:104.144299px;}
.yaf{bottom:107.136000px;}
.yc2{bottom:108.396000px;}
.yfc{bottom:109.139632px;}
.y19b{bottom:109.998750px;}
.y1ea{bottom:110.916000px;}
.y1c7{bottom:111.158623px;}
.y155{bottom:111.636000px;}
.ye{bottom:113.076000px;}
.y13f{bottom:114.525900px;}
.yf9{bottom:115.123638px;}
.y19a{bottom:117.214376px;}
.y2d{bottom:118.296000px;}
.y88{bottom:119.916000px;}
.y159{bottom:120.807456px;}
.yf7{bottom:121.099344px;}
.yf{bottom:124.056000px;}
.y199{bottom:124.419994px;}
.y1c6{bottom:124.638038px;}
.yae{bottom:125.496000px;}
.yf5{bottom:127.087499px;}
.yad{bottom:130.716000px;}
.y198{bottom:131.640624px;}
.yf3{bottom:133.063205px;}
.y158{bottom:137.472920px;}
.y1f9{bottom:137.556000px;}
.y1c5{bottom:138.108111px;}
.y197{bottom:138.856250px;}
.yf0{bottom:139.038911px;}
.y87{bottom:141.696000px;}
.yac{bottom:143.856000px;}
.y196{bottom:146.061868px;}
.yd{bottom:146.736000px;}
.yc1{bottom:146.916000px;}
.y154{bottom:149.436000px;}
.yee{bottom:150.998623px;}
.y1c4{bottom:151.587526px;}
.y195{bottom:153.282498px;}
.y157{bottom:154.138384px;}
.y194{bottom:160.488116px;}
.y1e9{bottom:161.130000px;}
.yab{bottom:162.030000px;}
.yec{bottom:162.962485px;}
.y86{bottom:163.290000px;}
.y1c3{bottom:165.057599px;}
.yaa{bottom:167.250000px;}
.y193{bottom:167.703742px;}
.yea{bottom:168.946490px;}
.yc0{bottom:171.750000px;}
.yc3{bottom:173.055000px;}
.y122{bottom:173.303926px;}
.y153{bottom:174.270000px;}
.ye8{bottom:174.922196px;}
.y192{bottom:174.924372px;}
.y163{bottom:175.710000px;}
.y178{bottom:176.136439px;}
.y1c2{bottom:178.537014px;}
.y11f{bottom:179.279694px;}
.yc{bottom:180.570000px;}
.ye6{bottom:180.910352px;}
.y215{bottom:182.010000px;}
.y191{bottom:182.129990px;}
.y85{bottom:185.070000px;}
.y11d{bottom:185.265774px;}
.y176{bottom:186.478505px;}
.ye4{bottom:186.886058px;}
.y1e8{bottom:187.590000px;}
.y190{bottom:189.345616px;}
.y11b{bottom:191.241480px;}
.y1c1{bottom:192.007087px;}
.ye2{bottom:192.861764px;}
.ya9{bottom:194.610000px;}
.y18f{bottom:196.551234px;}
.y174{bottom:196.820450px;}
.y119{bottom:197.227561px;}
.ye0{bottom:198.845770px;}
.y2c{bottom:199.290000px;}
.y4a{bottom:203.070000px;}
.y117{bottom:203.203267px;}
.y18e{bottom:203.771864px;}
.yde{bottom:204.821476px;}
.y1c0{bottom:205.486501px;}
.y84{bottom:206.850000px;}
.y172{bottom:207.144503px;}
.y115{bottom:209.189348px;}
.ydc{bottom:210.809631px;}
.y18d{bottom:210.987490px;}
.yb{bottom:214.230000px;}
.y113{bottom:215.162979px;}
.y214{bottom:215.850000px;}
.yda{bottom:216.785337px;}
.y16f{bottom:217.486448px;}
.y18c{bottom:218.193108px;}
.y1bf{bottom:218.956575px;}
.y111{bottom:221.151134px;}
.yd8{bottom:222.769343px;}
.y18b{bottom:225.413737px;}
.y10f{bottom:227.126840px;}
.y16d{bottom:227.828393px;}
.yd6{bottom:228.745049px;}
.y1b9{bottom:232.435989px;}
.y18a{bottom:232.619356px;}
.y10d{bottom:233.102546px;}
.y2b{bottom:233.130000px;}
.yd4{bottom:234.733204px;}
.y137{bottom:237.990000px;}
.y16b{bottom:238.170338px;}
.y49{bottom:238.350000px;}
.y10b{bottom:239.086552px;}
.y189{bottom:239.834981px;}
.y83{bottom:240.510000px;}
.yd2{bottom:240.708910px;}
.ya8{bottom:241.410000px;}
.y109{bottom:245.062258px;}
.yd1{bottom:246.684617px;}
.y188{bottom:247.055611px;}
.ya{bottom:248.070000px;}
.y169{bottom:248.511567px;}
.y213{bottom:249.510000px;}
.y107{bottom:251.050414px;}
.yd0{bottom:252.668622px;}
.y187{bottom:254.261229px;}
.y105{bottom:257.026120px;}
.ycf{bottom:258.644328px;}
.y166{bottom:258.853512px;}
.y48{bottom:260.175000px;}
.y186{bottom:261.476855px;}
.y82{bottom:262.335000px;}
.y103{bottom:263.010125px;}
.ya7{bottom:263.055000px;}
.yce{bottom:264.632484px;}
.y2a{bottom:266.835000px;}
.y101{bottom:268.985832px;}
.y9{bottom:269.895000px;}
.ycd{bottom:270.608190px;}
.y136{bottom:274.935000px;}
.yff{bottom:274.973987px;}
.ycb{bottom:276.592196px;}
.y17a{bottom:279.523088px;}
.yfd{bottom:280.949693px;}
.y47{bottom:281.775000px;}
.yc8{bottom:282.567902px;}
.y212{bottom:283.215000px;}
.y81{bottom:284.115000px;}
.ya6{bottom:284.835000px;}
.y1b8{bottom:286.334965px;}
.yfa{bottom:286.925399px;}
.yc4{bottom:288.556057px;}
.y8{bottom:291.495000px;}
.y184{bottom:292.395000px;}
.yf8{bottom:292.909405px;}
.yf6{bottom:298.885111px;}
.y29{bottom:301.215000px;}
.y46{bottom:303.555000px;}
.yf4{bottom:304.873266px;}
.y80{bottom:305.715000px;}
.ya5{bottom:306.615000px;}
.y135{bottom:310.575000px;}
.yf1{bottom:310.848972px;}
.y211{bottom:317.055000px;}
.yef{bottom:322.808684px;}
.y7{bottom:325.875000px;}
.y152{bottom:326.775000px;}
.y7f{bottom:327.495000px;}
.y183{bottom:330.195000px;}
.yed{bottom:334.772546px;}
.y134{bottom:335.415000px;}
.y13e{bottom:336.015381px;}
.y1df{bottom:336.135000px;}
.y28{bottom:336.855000px;}
.ya4{bottom:337.395000px;}
.y45{bottom:339.915000px;}
.yeb{bottom:340.756551px;}
.y1b6{bottom:341.535000px;}
.y1db{bottom:344.055000px;}
.ye9{bottom:346.732258px;}
.y7e{bottom:349.275000px;}
.y210{bottom:350.715000px;}
.ye7{bottom:352.707964px;}
.y182{bottom:355.035000px;}
.y185{bottom:356.342016px;}
.y151{bottom:357.555000px;}
.ye5{bottom:358.696119px;}
.ya2{bottom:358.995000px;}
.y5e{bottom:363.135000px;}
.ye3{bottom:364.671825px;}
.ya3{bottom:364.935000px;}
.y6{bottom:366.915000px;}
.ye1{bottom:370.655831px;}
.y27{bottom:374.655000px;}
.ydf{bottom:376.631537px;}
.ya0{bottom:380.775000px;}
.y44{bottom:381.495000px;}
.y1da{bottom:382.395000px;}
.ydd{bottom:382.619692px;}
.y7d{bottom:383.475000px;}
.y1b5{bottom:385.815000px;}
.ya1{bottom:386.715000px;}
.y150{bottom:388.335000px;}
.ydb{bottom:388.595398px;}
.y1de{bottom:390.135000px;}
.y5d{bottom:392.295000px;}
.yd9{bottom:394.579404px;}
.y26{bottom:397.515000px;}
.yd7{bottom:400.555110px;}
.y9f{bottom:402.555000px;}
.yd5{bottom:406.530816px;}
.y1d9{bottom:407.415000px;}
.y7c{bottom:409.935000px;}
.y1b4{bottom:410.835000px;}
.y1b7{bottom:410.906517px;}
.yd3{bottom:412.518972px;}
.y5c{bottom:416.055000px;}
.y43{bottom:417.135000px;}
.y14f{bottom:418.935000px;}
.y1f8{bottom:419.115000px;}
.y25{bottom:419.475000px;}
.y5{bottom:421.275000px;}
.y9e{bottom:433.335000px;}
.y1dd{bottom:440.355000px;}
.y1f7{bottom:440.715000px;}
.y24{bottom:441.435000px;}
.ycc{bottom:448.402257px;}
.y5b{bottom:450.435000px;}
.y14e{bottom:452.775000px;}
.y42{bottom:452.955000px;}
.yc9{bottom:454.377963px;}
.y9d{bottom:454.935000px;}
.y19f{bottom:457.618966px;}
.yc5{bottom:460.353669px;}
.y147{bottom:463.056462px;}
.y19c{bottom:464.839595px;}
.y1dc{bottom:465.195000px;}
.y1f6{bottom:471.495000px;}
.y124{bottom:474.317732px;}
.y9c{bottom:476.715000px;}
.y4{bottom:477.255000px;}
.y5a{bottom:484.635000px;}
.y23{bottom:486.255000px;}
.y14d{bottom:486.435000px;}
.y41{bottom:488.595000px;}
.y1f5{bottom:493.275000px;}
.y9b{bottom:507.495000px;}
.ybf{bottom:508.755000px;}
.y14c{bottom:509.655000px;}
.y59{bottom:518.835000px;}
.y1f4{bottom:524.085000px;}
.y40{bottom:524.265000px;}
.y73{bottom:526.065000px;}
.y9a{bottom:529.305000px;}
.y22{bottom:530.925000px;}
.y3{bottom:537.945000px;}
.ybe{bottom:539.565000px;}
.y3f{bottom:542.265000px;}
.y1f3{bottom:546.225000px;}
.y14b{bottom:547.845000px;}
.y99{bottom:550.905000px;}
.y58{bottom:551.085000px;}
.y133{bottom:556.845000px;}
.y72{bottom:559.905000px;}
.y3e{bottom:563.145000px;}
.ybd{bottom:573.225000px;}
.y21{bottom:575.565000px;}
.y71{bottom:576.285000px;}
.y1f2{bottom:577.005000px;}
.y20d{bottom:577.185000px;}
.y57{bottom:580.425000px;}
.y2{bottom:581.685000px;}
.y14a{bottom:582.045000px;}
.y132{bottom:587.625000px;}
.y1f1{bottom:599.325000px;}
.y70{bottom:602.565000px;}
.y56{bottom:604.005000px;}
.y3d{bottom:605.805000px;}
.ybc{bottom:606.885000px;}
.y156{bottom:607.739272px;}
.y20c{bottom:610.845000px;}
.y98{bottom:612.465000px;}
.y20{bottom:620.385000px;}
.y131{bottom:621.285000px;}
.y1af{bottom:623.523319px;}
.y6f{bottom:628.665000px;}
.y1f0{bottom:629.925000px;}
.ybb{bottom:630.105000px;}
.y20b{bottom:632.625000px;}
.y97{bottom:634.245000px;}
.y55{bottom:636.405000px;}
.y1ba{bottom:640.540133px;}
.y3c{bottom:647.205000px;}
.y1ef{bottom:652.245000px;}
.y1e7{bottom:652.785000px;}
.y20a{bottom:654.405000px;}
.y6e{bottom:654.945000px;}
.y130{bottom:655.125000px;}
.y96{bottom:655.845000px;}
.y181{bottom:660.525000px;}
.y1f{bottom:665.025000px;}
.y3b{bottom:665.205000px;}
.y54{bottom:665.565000px;}
.yba{bottom:668.445000px;}
.y1e6{bottom:674.565000px;}
.y209{bottom:676.185000px;}
.y95{bottom:677.625000px;}
.y12f{bottom:678.165000px;}
.y6d{bottom:681.225000px;}
.y1ee{bottom:683.025000px;}
.y3a{bottom:686.085000px;}
.yb9{bottom:690.045000px;}
.y180{bottom:691.125000px;}
.y53{bottom:694.905000px;}
.y208{bottom:697.785000px;}
.y1ed{bottom:704.805000px;}
.y1e5{bottom:705.165000px;}
.y39{bottom:706.965000px;}
.y6c{bottom:707.505000px;}
.y1d0{bottom:707.909182px;}
.y94{bottom:708.405000px;}
.yb8{bottom:711.825000px;}
.y17f{bottom:712.905000px;}
.y12e{bottom:716.505000px;}
.y207{bottom:719.565000px;}
.y52{bottom:724.065000px;}
.y1ec{bottom:726.405000px;}
.y1fe{bottom:726.585000px;}
.y1e{bottom:726.945000px;}
.y38{bottom:727.845000px;}
.y93{bottom:730.185000px;}
.y1d8{bottom:730.725000px;}
.y6b{bottom:733.785000px;}
.y206{bottom:741.345000px;}
.y17e{bottom:743.685000px;}
.yb7{bottom:745.665000px;}
.y37{bottom:748.725000px;}
.y12d{bottom:750.705000px;}
.y92{bottom:751.785000px;}
.y1b3{bottom:752.685000px;}
.y51{bottom:753.405000px;}
.y7b{bottom:757.005000px;}
.y6a{bottom:760.065000px;}
.y1d{bottom:760.785000px;}
.y1d7{bottom:761.505000px;}
.y205{bottom:763.125000px;}
.yb6{bottom:767.265000px;}
.y1fd{bottom:767.445000px;}
.y1e4{bottom:770.505000px;}
.y91{bottom:773.565000px;}
.y17d{bottom:774.465000px;}
.y161{bottom:775.083162px;}
.y12c{bottom:775.545000px;}
.y13a{bottom:775.657021px;}
.y1b{bottom:776.445000px;}
.y7a{bottom:778.785000px;}
.y1eb{bottom:779.505000px;}
.y50{bottom:782.565000px;}
.y1d6{bottom:783.285000px;}
.y1b2{bottom:783.465000px;}
.y138{bottom:784.227292px;}
.y204{bottom:784.725000px;}
.y68{bottom:786.165000px;}
.y36{bottom:791.430000px;}
.y90{bottom:795.390000px;}
.y17c{bottom:796.110000px;}
.y13c{bottom:797.925914px;}
.y1fc{bottom:798.270000px;}
.y79{bottom:800.430000px;}
.yb5{bottom:800.790000px;}
.y1e3{bottom:801.150000px;}
.y1b1{bottom:805.110000px;}
.y203{bottom:806.550000px;}
.y4f{bottom:811.770000px;}
.y67{bottom:812.490000px;}
.y1d5{bottom:814.110000px;}
.y1a{bottom:821.130000px;}
.y78{bottom:822.210000px;}
.y149{bottom:826.890000px;}
.y202{bottom:828.330000px;}
.y8f{bottom:829.050000px;}
.y1e2{bottom:831.930000px;}
.y35{bottom:833.010000px;}
.y4e{bottom:835.710000px;}
.y12b{bottom:835.890000px;}
.y66{bottom:838.770000px;}
.y77{bottom:843.990000px;}
.y1d4{bottom:847.770000px;}
.y34{bottom:850.110000px;}
.y1fb{bottom:850.650000px;}
.y8e{bottom:850.830000px;}
.y1e1{bottom:853.710000px;}
.yb4{bottom:856.770000px;}
.y12a{bottom:857.670000px;}
.y65{bottom:865.050000px;}
.y17{bottom:865.770000px;}
.y4d{bottom:869.910000px;}
.y33{bottom:870.990000px;}
.y201{bottom:871.710000px;}
.y1e0{bottom:875.490000px;}
.y1d3{bottom:881.430000px;}
.y8d{bottom:884.670000px;}
.yb3{bottom:887.370000px;}
.y129{bottom:888.450000px;}
.y62{bottom:891.330000px;}
.y32{bottom:891.870000px;}
.y200{bottom:893.490000px;}
.y76{bottom:899.430000px;}
.y4c{bottom:904.290000px;}
.y1d2{bottom:904.650000px;}
.y8c{bottom:906.270000px;}
.yb2{bottom:909.150000px;}
.y16{bottom:910.590000px;}
.y1fa{bottom:912.210000px;}
.y30{bottom:912.750000px;}
.y1ff{bottom:915.270000px;}
.y75{bottom:921.210000px;}
.y128{bottom:922.110000px;}
.y8b{bottom:928.050000px;}
.y60{bottom:932.370000px;}
.y2f{bottom:933.630000px;}
.y4b{bottom:938.490000px;}
.y74{bottom:942.990000px;}
.y20f{bottom:949.830000px;}
.y13{bottom:955.230000px;}
.y127{bottom:955.950000px;}
.y8a{bottom:961.710000px;}
.y2e{bottom:976.290000px;}
.y5f{bottom:976.470000px;}
.y126{bottom:978.990000px;}
.y89{bottom:983.490000px;}
.y1{bottom:1118.340000px;}
.h22{height:5.726718px;}
.h24{height:5.737093px;}
.h43{height:6.917894px;}
.h3c{height:9.894629px;}
.h3d{height:9.912522px;}
.h25{height:11.712799px;}
.h28{height:13.358635px;}
.h21{height:13.704701px;}
.h23{height:17.830830px;}
.h20{height:18.356039px;}
.h26{height:19.182431px;}
.h10{height:19.980000px;}
.hf{height:20.160000px;}
.h42{height:21.500748px;}
.h44{height:21.641874px;}
.hd{height:21.960000px;}
.h41{height:22.134054px;}
.h2c{height:22.609101px;}
.h2b{height:24.516627px;}
.h29{height:25.238766px;}
.h12{height:25.380000px;}
.h15{height:25.560000px;}
.h16{height:25.596000px;}
.h4b{height:29.191386px;}
.h3b{height:30.823599px;}
.h3a{height:31.731511px;}
.h3e{height:31.884682px;}
.h27{height:33.695228px;}
.h37{height:36.098894px;}
.h1a{height:38.671172px;}
.h49{height:40.230337px;}
.h14{height:40.320000px;}
.h45{height:40.630336px;}
.h48{height:41.415325px;}
.h19{height:42.759141px;}
.h18{height:43.453125px;}
.h9{height:43.920000px;}
.hc{height:43.956000px;}
.hb{height:44.100000px;}
.h2a{height:44.878215px;}
.h2d{height:46.300082px;}
.h30{height:47.182660px;}
.h31{height:47.382800px;}
.h2f{height:48.572429px;}
.h36{height:49.670500px;}
.h35{height:51.133548px;}
.h4a{height:53.338501px;}
.h3f{height:56.592982px;}
.h1d{height:57.937500px;}
.h1b{height:59.439023px;}
.h7{height:65.160000px;}
.h1{height:65.884219px;}
.h13{height:67.824844px;}
.h8{height:69.086250px;}
.ha{height:71.613281px;}
.h4c{height:73.678192px;}
.h6{height:73.722656px;}
.h1e{height:80.208984px;}
.h4d{height:81.580078px;}
.h33{height:83.306602px;}
.h1c{height:87.859687px;}
.h32{height:88.974841px;}
.h11{height:91.177734px;}
.h38{height:91.196414px;}
.h2{height:95.245664px;}
.he{height:98.051133px;}
.h17{height:99.874688px;}
.h46{height:110.583984px;}
.h4{height:119.594180px;}
.h5{height:131.052305px;}
.h39{height:135.694788px;}
.h3{height:171.773789px;}
.h2e{height:174.425540px;}
.h34{height:203.445522px;}
.h40{height:288.825193px;}
.h1f{height:320.447188px;}
.h47{height:326.196227px;}
.h0{height:1188.000000px;}
.w11{width:22.424794px;}
.w12{width:23.161564px;}
.w13{width:100.657336px;}
.w7{width:104.940000px;}
.wb{width:135.000000px;}
.wd{width:147.816000px;}
.w1e{width:153.580661px;}
.w9{width:178.770000px;}
.wa{width:178.950000px;}
.w3{width:195.870000px;}
.wc{width:212.970000px;}
.w8{width:243.030000px;}
.w21{width:280.660877px;}
.w6{width:352.335000px;}
.w5{width:352.470000px;}
.w2{width:363.315000px;}
.we{width:435.135000px;}
.w4{width:508.935000px;}
.w1a{width:678.989758px;}
.w18{width:679.044643px;}
.w22{width:679.243822px;}
.w1c{width:679.545644px;}
.w19{width:679.683312px;}
.w17{width:679.703270px;}
.w16{width:679.715563px;}
.w20{width:679.804732px;}
.w1f{width:679.810337px;}
.w14{width:679.903988px;}
.w1b{width:679.968568px;}
.w15{width:680.057056px;}
.w1d{width:680.099598px;}
.w10{width:680.150951px;}
.wf{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x40{left:1.028833px;}
.x45{left:2.080663px;}
.x8{left:8.100000px;}
.x16{left:9.720000px;}
.x7{left:10.800000px;}
.x26{left:22.500000px;}
.x28{left:27.360000px;}
.x17{left:30.600000px;}
.x12{left:43.020000px;}
.x1a{left:44.820000px;}
.x25{left:47.160000px;}
.x15{left:52.380000px;}
.x1d{left:55.620000px;}
.x21{left:57.600000px;}
.x29{left:59.580000px;}
.x23{left:61.560000px;}
.x18{left:62.640000px;}
.x1f{left:64.260000px;}
.x1e{left:74.340000px;}
.x1b{left:85.140000px;}
.x1c{left:87.120000px;}
.x19{left:100.080000px;}
.x1{left:106.235986px;}
.x22{left:111.060000px;}
.x37{left:119.049049px;}
.x10{left:122.795986px;}
.x24{left:129.240000px;}
.x3{left:132.335986px;}
.x2a{left:138.780000px;}
.x4f{left:147.815986px;}
.x51{left:154.109986px;}
.x27{left:155.520000px;}
.x2d{left:159.689986px;}
.x11{left:167.250000px;}
.x39{left:168.917539px;}
.x2b{left:169.920000px;}
.x14{left:178.380000px;}
.x2e{left:187.409986px;}
.x20{left:197.310000px;}
.xc{left:211.170000px;}
.x2f{left:214.229986px;}
.x6{left:227.730000px;}
.x5{left:230.249986px;}
.x31{left:235.469973px;}
.xf{left:241.230000px;}
.x4b{left:243.749986px;}
.x44{left:245.729986px;}
.x43{left:247.169986px;}
.x48{left:249.329986px;}
.x3f{left:250.409986px;}
.x54{left:253.829986px;}
.x38{left:264.547672px;}
.x3d{left:269.823924px;}
.x3c{left:287.219440px;}
.x42{left:294.680786px;}
.x4d{left:297.516235px;}
.x9{left:302.115000px;}
.x47{left:306.426342px;}
.x52{left:311.834986px;}
.x13{left:315.795000px;}
.x41{left:319.098221px;}
.x3b{left:320.144291px;}
.x34{left:322.274986px;}
.x36{left:329.114986px;}
.x3e{left:340.454986px;}
.x46{left:348.159620px;}
.x4{left:361.514986px;}
.x30{left:365.834986px;}
.x2{left:378.434986px;}
.x49{left:402.805313px;}
.x4a{left:438.487180px;}
.xd{left:454.215000px;}
.xa{left:458.715000px;}
.x32{left:508.964973px;}
.x33{left:514.184986px;}
.x4c{left:517.934506px;}
.xe{left:632.985000px;}
.x2c{left:686.264986px;}
.x4e{left:709.889986px;}
.x3a{left:728.451394px;}
.x53{left:765.149986px;}
.x50{left:786.749986px;}
.x35{left:799.169986px;}
.x55{left:811.409986px;}
.xb{left:812.849986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-0.757333pt;}
.ls19{letter-spacing:-0.481067pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls11{letter-spacing:-0.275733pt;}
.ls25{letter-spacing:-0.188862pt;}
.lsc{letter-spacing:-0.171733pt;}
.lse{letter-spacing:-0.146133pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.117867pt;}
.ls22{letter-spacing:-0.112000pt;}
.ls24{letter-spacing:-0.111547pt;}
.ls26{letter-spacing:-0.097067pt;}
.ls1b{letter-spacing:-0.095467pt;}
.ls1e{letter-spacing:-0.061867pt;}
.ls1c{letter-spacing:-0.051840pt;}
.ls2c{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.064640pt;}
.lsd{letter-spacing:0.066667pt;}
.lsf{letter-spacing:0.076800pt;}
.ls28{letter-spacing:0.082667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.154880pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.168960pt;}
.ls1a{letter-spacing:0.169067pt;}
.ls1{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.203733pt;}
.ls29{letter-spacing:0.220267pt;}
.lsb{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.227840pt;}
.ls2{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.329033pt;}
.ls27{letter-spacing:0.526759pt;}
.ls16{letter-spacing:2.053120pt;}
.ls2e{letter-spacing:9.093120pt;}
.ls1f{letter-spacing:17.583360pt;}
.ls10{letter-spacing:26.256640pt;}
.ls13{letter-spacing:43.130027pt;}
.ls14{letter-spacing:46.991360pt;}
.ls2d{letter-spacing:47.631360pt;}
.ls9{letter-spacing:55.173120pt;}
.ls21{letter-spacing:174.249228pt;}
.ls20{letter-spacing:754.831787pt;}
.lsa{letter-spacing:1510.282667pt;}
.ws60{word-spacing:-19.440853pt;}
.wsc{word-spacing:-18.961387pt;}
.ws49{word-spacing:-18.419278pt;}
.ws47{word-spacing:-17.456399pt;}
.ws4b{word-spacing:-17.005547pt;}
.ws14{word-spacing:-16.922880pt;}
.ws48{word-spacing:-16.271573pt;}
.ws5f{word-spacing:-14.881058pt;}
.ws3{word-spacing:-14.784000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws5{word-spacing:-14.336000pt;}
.ws4{word-spacing:-14.016000pt;}
.ws7{word-spacing:-13.534613pt;}
.wsb{word-spacing:-13.383680pt;}
.ws9{word-spacing:-13.373547pt;}
.ws13{word-spacing:-13.344000pt;}
.wsd{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.189013pt;}
.wsa{word-spacing:-13.160747pt;}
.ws8{word-spacing:-13.135147pt;}
.wse{word-spacing:-12.825813pt;}
.ws11{word-spacing:-12.005120pt;}
.ws10{word-spacing:-11.953280pt;}
.ws12{word-spacing:-11.943253pt;}
.wsf{word-spacing:-11.909653pt;}
.ws4a{word-spacing:-11.430295pt;}
.ws61{word-spacing:-10.832000pt;}
.ws15{word-spacing:-10.736000pt;}
.ws46{word-spacing:-9.083834pt;}
.ws51{word-spacing:-8.125470pt;}
.ws4f{word-spacing:-7.971460pt;}
.ws4d{word-spacing:-4.342586pt;}
.ws16{word-spacing:-3.601359pt;}
.ws0{word-spacing:0.000000pt;}
.ws62{word-spacing:0.069120pt;}
.ws43{word-spacing:2.751481pt;}
.ws4c{word-spacing:10.846501pt;}
.ws4e{word-spacing:13.017794pt;}
.ws35{word-spacing:31.038260pt;}
.ws2e{word-spacing:32.807069pt;}
.ws44{word-spacing:33.948531pt;}
.ws36{word-spacing:36.099757pt;}
.ws2f{word-spacing:39.605504pt;}
.ws42{word-spacing:43.079382pt;}
.ws3a{word-spacing:43.095317pt;}
.ws34{word-spacing:43.356182pt;}
.ws1b{word-spacing:44.125794pt;}
.ws2c{word-spacing:45.124991pt;}
.ws39{word-spacing:54.510833pt;}
.ws33{word-spacing:56.662088pt;}
.ws1e{word-spacing:57.197983pt;}
.ws2a{word-spacing:57.310415pt;}
.ws23{word-spacing:58.297513pt;}
.ws29{word-spacing:58.430897pt;}
.ws31{word-spacing:60.215641pt;}
.ws17{word-spacing:60.289415pt;}
.ws37{word-spacing:61.643908pt;}
.ws38{word-spacing:62.916955pt;}
.ws30{word-spacing:64.622023pt;}
.ws3b{word-spacing:65.625942pt;}
.ws1f{word-spacing:67.378816pt;}
.ws32{word-spacing:74.886073pt;}
.ws26{word-spacing:78.296209pt;}
.ws28{word-spacing:78.391821pt;}
.ws22{word-spacing:85.737955pt;}
.ws24{word-spacing:90.325527pt;}
.ws25{word-spacing:95.458437pt;}
.ws3f{word-spacing:120.257175pt;}
.ws40{word-spacing:124.950981pt;}
.ws3d{word-spacing:132.695496pt;}
.ws1a{word-spacing:139.971398pt;}
.ws19{word-spacing:148.788294pt;}
.ws41{word-spacing:152.365455pt;}
.ws3c{word-spacing:159.447773pt;}
.ws2d{word-spacing:159.492038pt;}
.ws45{word-spacing:183.377624pt;}
.ws3e{word-spacing:186.035977pt;}
.ws1c{word-spacing:186.039518pt;}
.ws59{word-spacing:196.557369pt;}
.ws56{word-spacing:269.255161pt;}
.ws53{word-spacing:269.866369pt;}
.ws52{word-spacing:271.628086pt;}
.ws5c{word-spacing:305.172616pt;}
.ws50{word-spacing:319.302306pt;}
.ws18{word-spacing:323.247041pt;}
.ws55{word-spacing:325.594153pt;}
.ws54{word-spacing:327.355870pt;}
.ws1d{word-spacing:329.413970pt;}
.ws57{word-spacing:330.951210pt;}
.ws5a{word-spacing:331.023117pt;}
.ws5b{word-spacing:340.982212pt;}
.ws5d{word-spacing:344.649459pt;}
.ws5e{word-spacing:352.523256pt;}
.ws2b{word-spacing:370.821039pt;}
.ws58{word-spacing:380.063567pt;}
.ws20{word-spacing:416.000328pt;}
.ws21{word-spacing:845.369712pt;}
.ws27{word-spacing:863.886433pt;}
._a1{margin-left:-11.085227pt;}
._9f{margin-left:-10.074880pt;}
._a0{margin-left:-8.075520pt;}
._9d{margin-left:-7.005440pt;}
._9e{margin-left:-5.553920pt;}
._b{margin-left:-3.013333pt;}
._21{margin-left:-2.016853pt;}
._1{margin-left:-1.068800pt;}
._0{width:1.071360pt;}
._2{width:2.060800pt;}
._c{width:3.008427pt;}
._6{width:4.712107pt;}
._7{width:6.464000pt;}
._3{width:8.243200pt;}
._4{width:9.185280pt;}
._2a{width:10.929038pt;}
._9c{width:14.342400pt;}
._90{width:21.247248pt;}
._82{width:23.076541pt;}
._5b{width:26.576399pt;}
._6b{width:31.726292pt;}
._66{width:33.805167pt;}
._23{width:35.032097pt;}
._91{width:36.516332pt;}
._7e{width:42.389028pt;}
._22{width:44.314880pt;}
._92{width:46.886302pt;}
._26{width:48.212779pt;}
._80{width:55.160377pt;}
._8f{width:58.344925pt;}
._69{width:59.260354pt;}
._8{width:60.522667pt;}
._83{width:63.434199pt;}
._32{width:66.438638pt;}
._3f{width:68.001430pt;}
._8d{width:70.769347pt;}
._28{width:72.303388pt;}
._12{width:73.291947pt;}
._24{width:74.358440pt;}
._3e{width:76.424037pt;}
._27{width:80.582028pt;}
._4b{width:84.844953pt;}
._51{width:86.427652pt;}
._47{width:88.037109pt;}
._3b{width:89.920024pt;}
._58{width:91.970826pt;}
._2b{width:93.246131pt;}
._63{width:94.603837pt;}
._2f{width:95.592961pt;}
._29{width:97.067894pt;}
._86{width:98.220850pt;}
._4d{width:99.954370pt;}
._97{width:101.252270pt;}
._4f{width:103.401692pt;}
._71{width:105.463594pt;}
._6c{width:106.659686pt;}
._60{width:107.592654pt;}
._94{width:108.647199pt;}
._6f{width:110.660860pt;}
._9{width:111.850667pt;}
._7a{width:114.004554pt;}
._4c{width:116.746666pt;}
._93{width:118.781820pt;}
._39{width:120.317375pt;}
._30{width:124.260415pt;}
._37{width:125.990232pt;}
._45{width:128.091953pt;}
._8c{width:129.809746pt;}
._67{width:131.542332pt;}
._31{width:132.876526pt;}
._70{width:134.815949pt;}
._35{width:136.296855pt;}
._3d{width:137.281888pt;}
._38{width:140.808292pt;}
._8b{width:141.709156pt;}
._4a{width:143.125151pt;}
._42{width:145.008067pt;}
._3a{width:146.322427pt;}
._54{width:147.761358pt;}
._57{width:148.820165pt;}
._59{width:150.117290pt;}
._55{width:151.942920pt;}
._41{width:153.246614pt;}
._4e{width:155.389565pt;}
._53{width:156.787773pt;}
._50{width:158.960194pt;}
._5d{width:159.852566pt;}
._34{width:162.349163pt;}
._5f{width:163.423195pt;}
._46{width:164.406537pt;}
._43{width:166.705850pt;}
._68{width:168.936133pt;}
._7f{width:169.963181pt;}
._56{width:173.205137pt;}
._52{width:175.030768pt;}
._88{width:179.450715pt;}
._95{width:182.206822pt;}
._5a{width:186.511042pt;}
._36{width:189.097531pt;}
._44{width:190.113542pt;}
._33{width:191.690462pt;}
._8e{width:193.207746pt;}
._73{width:203.079327pt;}
._49{width:212.693743pt;}
._40{width:214.493282pt;}
._5e{width:225.516360pt;}
._96{width:233.787608pt;}
._6e{width:253.798284pt;}
._64{width:256.716736pt;}
._48{width:258.458544pt;}
._3c{width:260.226212pt;}
._5c{width:261.200031pt;}
._2d{width:270.313204pt;}
._84{width:275.388287pt;}
._8a{width:280.122977pt;}
._25{width:283.847518pt;}
._6d{width:295.923175pt;}
._72{width:303.759022pt;}
._81{width:305.063271pt;}
._77{width:311.102056pt;}
._6a{width:312.806456pt;}
._85{width:315.644170pt;}
._7b{width:319.205900pt;}
._2c{width:322.054851pt;}
._78{width:335.079087pt;}
._79{width:341.645363pt;}
._87{width:391.296343pt;}
._89{width:411.809991pt;}
._9a{width:423.301571pt;}
._9b{width:424.895883pt;}
._7c{width:499.834240pt;}
._65{width:540.189618pt;}
._7d{width:571.955714pt;}
._99{width:573.938831pt;}
._61{width:712.834078pt;}
._98{width:746.442667pt;}
._75{width:751.794347pt;}
._d{width:753.674667pt;}
._a{width:754.799787pt;}
._76{width:785.538654pt;}
._62{width:849.833854pt;}
._2e{width:862.182506pt;}
._74{width:917.034240pt;}
._5{width:949.918293pt;}
._17{width:1082.158507pt;}
._19{width:1104.886187pt;}
._16{width:1134.973867pt;}
._18{width:1152.873387pt;}
._14{width:1198.321067pt;}
._15{width:1215.514027pt;}
._13{width:1266.789547pt;}
._1d{width:1406.082133pt;}
._1e{width:1550.549333pt;}
._11{width:1565.013333pt;}
._1c{width:1833.173333pt;}
._1a{width:1865.126827pt;}
._20{width:1870.661547pt;}
._1b{width:1894.145707pt;}
._10{width:1945.237333pt;}
._f{width:2019.029333pt;}
._e{width:2100.181333pt;}
._1f{width:2148.181333pt;}
.fsb{font-size:15.935216pt;}
.fs16{font-size:19.214982pt;}
.fsd{font-size:21.910240pt;}
.fs14{font-size:27.546711pt;}
.fsc{font-size:29.251450pt;}
.fs8{font-size:34.560000pt;}
.fs17{font-size:35.271945pt;}
.fs19{font-size:35.953409pt;}
.fs7{font-size:37.120000pt;}
.fse{font-size:40.193957pt;}
.fsf{font-size:42.166623pt;}
.fs12{font-size:44.389978pt;}
.fs6{font-size:48.000000pt;}
.fs15{font-size:50.576525pt;}
.fs9{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1a{font-size:65.845388pt;}
.fs11{font-size:72.320000pt;}
.fsa{font-size:74.880000pt;}
.fs10{font-size:77.240704pt;}
.fs13{font-size:81.501230pt;}
.fs1{font-size:85.120000pt;}
.fs18{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs4{font-size:117.120000pt;}
.fs2{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:1.106612pt;}
.y123{bottom:1.106631pt;}
.yfb{bottom:1.113990pt;}
.y120{bottom:1.115834pt;}
.yc7{bottom:1.117678pt;}
.y121{bottom:1.327898pt;}
.y19d{bottom:1.334374pt;}
.y1a0{bottom:1.347717pt;}
.y139{bottom:1.523643pt;}
.y1ae{bottom:1.601236pt;}
.y13b{bottom:1.838450pt;}
.y179{bottom:1.908529pt;}
.y167{bottom:1.908548pt;}
.y170{bottom:1.924453pt;}
.y177{bottom:2.287586pt;}
.y1be{bottom:2.490998pt;}
.y1cf{bottom:3.009932pt;}
.y146{bottom:3.497674pt;}
.y160{bottom:3.716277pt;}
.y31{bottom:4.000000pt;}
.y15{bottom:4.320000pt;}
.y19{bottom:4.480000pt;}
.y125{bottom:5.975706pt;}
.y61{bottom:6.400000pt;}
.yf2{bottom:6.425728pt;}
.yc6{bottom:6.429417pt;}
.y69{bottom:6.440000pt;}
.y11e{bottom:6.648895pt;}
.y1b0{bottom:6.685212pt;}
.y13d{bottom:6.698993pt;}
.y1d1{bottom:7.472995pt;}
.y1ad{bottom:8.017350pt;}
.y162{bottom:9.257309pt;}
.y17b{bottom:9.956259pt;}
.y175{bottom:11.480553pt;}
.y11c{bottom:11.960634pt;}
.y63{bottom:12.960000pt;}
.y1ac{bottom:14.433463pt;}
.y1bd{bottom:14.464397pt;}
.y148{bottom:14.622297pt;}
.y1ce{bottom:14.987233pt;}
.y11a{bottom:17.272373pt;}
.y145{bottom:17.537508pt;}
.y15f{bottom:18.529612pt;}
.y11{bottom:20.320000pt;}
.y173{bottom:20.673393pt;}
.y1ab{bottom:20.838457pt;}
.y64{bottom:21.920000pt;}
.y118{bottom:22.593333pt;}
.y14{bottom:23.840000pt;}
.y1c{bottom:23.880000pt;}
.y18{bottom:24.000000pt;}
.y1bc{bottom:26.446099pt;}
.y1cd{bottom:26.964783pt;}
.y1aa{bottom:27.254571pt;}
.y116{bottom:27.905072pt;}
.y171{bottom:29.866233pt;}
.y144{bottom:31.576856pt;}
.y12{bottom:31.712000pt;}
.y20e{bottom:32.672000pt;}
.y114{bottom:33.226032pt;}
.y15e{bottom:33.343358pt;}
.y1a9{bottom:33.659565pt;}
.y1bb{bottom:38.419497pt;}
.y112{bottom:38.535927pt;}
.y1cc{bottom:38.942334pt;}
.y16e{bottom:39.059073pt;}
.y10{bottom:39.674667pt;}
.y1a8{bottom:40.075678pt;}
.y110{bottom:43.858732pt;}
.y143{bottom:45.640493pt;}
.y1a7{bottom:46.478893pt;}
.y15d{bottom:48.157103pt;}
.y16c{bottom:48.236008pt;}
.y10e{bottom:49.170470pt;}
.y1cb{bottom:50.919884pt;}
.y1a6{bottom:52.897231pt;}
.y10c{bottom:54.489587pt;}
.y16a{bottom:57.428848pt;}
.y1a5{bottom:59.311120pt;}
.y142{bottom:59.679841pt;}
.y10a{bottom:59.801325pt;}
.y1ca{bottom:62.897434pt;}
.y15c{bottom:62.970849pt;}
.y108{bottom:65.113064pt;}
.y1a4{bottom:65.716114pt;}
.y168{bottom:66.621052pt;}
.y106{bottom:70.435869pt;}
.y1a3{bottom:72.134452pt;}
.y141{bottom:73.719189pt;}
.y1c9{bottom:74.874984pt;}
.y104{bottom:75.747608pt;}
.y165{bottom:75.813892pt;}
.y15b{bottom:77.784594pt;}
.y1a2{bottom:78.539446pt;}
.yb1{bottom:78.912000pt;}
.y102{bottom:81.066724pt;}
.yb0{bottom:83.552000pt;}
.y1a1{bottom:84.953335pt;}
.y164{bottom:85.006732pt;}
.y100{bottom:86.378462pt;}
.y1c8{bottom:86.850873pt;}
.y216{bottom:87.712000pt;}
.y140{bottom:87.758537pt;}
.y19e{bottom:91.371673pt;}
.yfe{bottom:91.701267pt;}
.y15a{bottom:92.572710pt;}
.yaf{bottom:95.232000pt;}
.yc2{bottom:96.352000pt;}
.yfc{bottom:97.013006pt;}
.y19b{bottom:97.776667pt;}
.y1ea{bottom:98.592000pt;}
.y1c7{bottom:98.807665pt;}
.y155{bottom:99.232000pt;}
.ye{bottom:100.512000pt;}
.y13f{bottom:101.800800pt;}
.yf9{bottom:102.332122pt;}
.y19a{bottom:104.190557pt;}
.y2d{bottom:105.152000pt;}
.y88{bottom:106.592000pt;}
.y159{bottom:107.384406pt;}
.yf7{bottom:107.643861pt;}
.yf{bottom:110.272000pt;}
.y199{bottom:110.595550pt;}
.y1c6{bottom:110.789367pt;}
.yae{bottom:111.552000pt;}
.yf5{bottom:112.966666pt;}
.yad{bottom:116.192000pt;}
.y198{bottom:117.013888pt;}
.yf3{bottom:118.278405pt;}
.y158{bottom:122.198151pt;}
.y1f9{bottom:122.272000pt;}
.y1c5{bottom:122.762766pt;}
.y197{bottom:123.427778pt;}
.yf0{bottom:123.590143pt;}
.y87{bottom:125.952000pt;}
.yac{bottom:127.872000pt;}
.y196{bottom:129.832772pt;}
.yd{bottom:130.432000pt;}
.yc1{bottom:130.592000pt;}
.y154{bottom:132.832000pt;}
.yee{bottom:134.220998pt;}
.y1c4{bottom:134.744467pt;}
.y195{bottom:136.251109pt;}
.y157{bottom:137.011897pt;}
.y194{bottom:142.656103pt;}
.y1e9{bottom:143.226667pt;}
.yab{bottom:144.026667pt;}
.yec{bottom:144.855542pt;}
.y86{bottom:145.146667pt;}
.y1c3{bottom:146.717866pt;}
.yaa{bottom:148.666667pt;}
.y193{bottom:149.069993pt;}
.yea{bottom:150.174658pt;}
.yc0{bottom:152.666667pt;}
.yc3{bottom:153.826667pt;}
.y122{bottom:154.047934pt;}
.y153{bottom:154.906667pt;}
.ye8{bottom:155.486397pt;}
.y192{bottom:155.488330pt;}
.y163{bottom:156.186667pt;}
.y178{bottom:156.565723pt;}
.y1c2{bottom:158.699568pt;}
.y11f{bottom:159.359728pt;}
.yc{bottom:160.506667pt;}
.ye6{bottom:160.809202pt;}
.y215{bottom:161.786667pt;}
.y191{bottom:161.893324pt;}
.y85{bottom:164.506667pt;}
.y11d{bottom:164.680688pt;}
.y176{bottom:165.758672pt;}
.ye4{bottom:166.120940pt;}
.y1e8{bottom:166.746667pt;}
.y190{bottom:168.307214pt;}
.y11b{bottom:169.992427pt;}
.y1c1{bottom:170.672966pt;}
.ye2{bottom:171.432679pt;}
.ya9{bottom:172.986667pt;}
.y18f{bottom:174.712208pt;}
.y174{bottom:174.951512pt;}
.y119{bottom:175.313388pt;}
.ye0{bottom:176.751795pt;}
.y2c{bottom:177.146667pt;}
.y4a{bottom:180.506667pt;}
.y117{bottom:180.625126pt;}
.y18e{bottom:181.130545pt;}
.yde{bottom:182.063534pt;}
.y1c0{bottom:182.654668pt;}
.y84{bottom:183.866667pt;}
.y172{bottom:184.128447pt;}
.y115{bottom:185.946087pt;}
.ydc{bottom:187.386339pt;}
.y18d{bottom:187.544435pt;}
.yb{bottom:190.426667pt;}
.y113{bottom:191.255981pt;}
.y214{bottom:191.866667pt;}
.yda{bottom:192.698078pt;}
.y16f{bottom:193.321287pt;}
.y18c{bottom:193.949429pt;}
.y1bf{bottom:194.628066pt;}
.y111{bottom:196.578786pt;}
.yd8{bottom:198.017194pt;}
.y18b{bottom:200.367767pt;}
.y10f{bottom:201.890525pt;}
.y16d{bottom:202.514127pt;}
.yd6{bottom:203.328932pt;}
.y1b9{bottom:206.609768pt;}
.y18a{bottom:206.772761pt;}
.y10d{bottom:207.202264pt;}
.y2b{bottom:207.226667pt;}
.yd4{bottom:208.651737pt;}
.y137{bottom:211.546667pt;}
.y16b{bottom:211.706967pt;}
.y49{bottom:211.866667pt;}
.y10b{bottom:212.521380pt;}
.y189{bottom:213.186650pt;}
.y83{bottom:213.786667pt;}
.yd2{bottom:213.963476pt;}
.ya8{bottom:214.586667pt;}
.y109{bottom:217.833118pt;}
.yd1{bottom:219.275215pt;}
.y188{bottom:219.604988pt;}
.ya{bottom:220.506667pt;}
.y169{bottom:220.899171pt;}
.y213{bottom:221.786667pt;}
.y107{bottom:223.155923pt;}
.yd0{bottom:224.594331pt;}
.y187{bottom:226.009982pt;}
.y105{bottom:228.467662pt;}
.ycf{bottom:229.906070pt;}
.y166{bottom:230.092011pt;}
.y48{bottom:231.266667pt;}
.y186{bottom:232.423871pt;}
.y82{bottom:233.186667pt;}
.y103{bottom:233.786778pt;}
.ya7{bottom:233.826667pt;}
.yce{bottom:235.228874pt;}
.y2a{bottom:237.186667pt;}
.y101{bottom:239.098517pt;}
.y9{bottom:239.906667pt;}
.ycd{bottom:240.540613pt;}
.y136{bottom:244.386667pt;}
.yff{bottom:244.421322pt;}
.ycb{bottom:245.859729pt;}
.y17a{bottom:248.464967pt;}
.yfd{bottom:249.733061pt;}
.y47{bottom:250.466667pt;}
.yc8{bottom:251.171468pt;}
.y212{bottom:251.746667pt;}
.y81{bottom:252.546667pt;}
.ya6{bottom:253.186667pt;}
.y1b8{bottom:254.519969pt;}
.yfa{bottom:255.044799pt;}
.yc4{bottom:256.494273pt;}
.y8{bottom:259.106667pt;}
.y184{bottom:259.906667pt;}
.yf8{bottom:260.363915pt;}
.yf6{bottom:265.675654pt;}
.y29{bottom:267.746667pt;}
.y46{bottom:269.826667pt;}
.yf4{bottom:270.998459pt;}
.y80{bottom:271.746667pt;}
.ya5{bottom:272.546667pt;}
.y135{bottom:276.066667pt;}
.yf1{bottom:276.310198pt;}
.y211{bottom:281.826667pt;}
.yef{bottom:286.941053pt;}
.y7{bottom:289.666667pt;}
.y152{bottom:290.466667pt;}
.y7f{bottom:291.106667pt;}
.y183{bottom:293.506667pt;}
.yed{bottom:297.575596pt;}
.y134{bottom:298.146667pt;}
.y13e{bottom:298.680339pt;}
.y1df{bottom:298.786667pt;}
.y28{bottom:299.426667pt;}
.ya4{bottom:299.906667pt;}
.y45{bottom:302.146667pt;}
.yeb{bottom:302.894712pt;}
.y1b6{bottom:303.586667pt;}
.y1db{bottom:305.826667pt;}
.ye9{bottom:308.206451pt;}
.y7e{bottom:310.466667pt;}
.y210{bottom:311.746667pt;}
.ye7{bottom:313.518190pt;}
.y182{bottom:315.586667pt;}
.y185{bottom:316.748458pt;}
.y151{bottom:317.826667pt;}
.ye5{bottom:318.840995pt;}
.ya2{bottom:319.106667pt;}
.y5e{bottom:322.786667pt;}
.ye3{bottom:324.152733pt;}
.ya3{bottom:324.386667pt;}
.y6{bottom:326.146667pt;}
.ye1{bottom:329.471850pt;}
.y27{bottom:333.026667pt;}
.ydf{bottom:334.783588pt;}
.ya0{bottom:338.466667pt;}
.y44{bottom:339.106667pt;}
.y1da{bottom:339.906667pt;}
.ydd{bottom:340.106393pt;}
.y7d{bottom:340.866667pt;}
.y1b5{bottom:342.946667pt;}
.ya1{bottom:343.746667pt;}
.y150{bottom:345.186667pt;}
.ydb{bottom:345.418132pt;}
.y1de{bottom:346.786667pt;}
.y5d{bottom:348.706667pt;}
.yd9{bottom:350.737248pt;}
.y26{bottom:353.346667pt;}
.yd7{bottom:356.048987pt;}
.y9f{bottom:357.826667pt;}
.yd5{bottom:361.360726pt;}
.y1d9{bottom:362.146667pt;}
.y7c{bottom:364.386667pt;}
.y1b4{bottom:365.186667pt;}
.y1b7{bottom:365.250237pt;}
.yd3{bottom:366.683530pt;}
.y5c{bottom:369.826667pt;}
.y43{bottom:370.786667pt;}
.y14f{bottom:372.386667pt;}
.y1f8{bottom:372.546667pt;}
.y25{bottom:372.866667pt;}
.y5{bottom:374.466667pt;}
.y9e{bottom:385.186667pt;}
.y1dd{bottom:391.426667pt;}
.y1f7{bottom:391.746667pt;}
.y24{bottom:392.386667pt;}
.ycc{bottom:398.579784pt;}
.y5b{bottom:400.386667pt;}
.y14e{bottom:402.466667pt;}
.y42{bottom:402.626667pt;}
.yc9{bottom:403.891523pt;}
.y9d{bottom:404.386667pt;}
.y19f{bottom:406.772414pt;}
.yc5{bottom:409.203261pt;}
.y147{bottom:411.605744pt;}
.y19c{bottom:413.190752pt;}
.y1dc{bottom:413.506667pt;}
.y1f6{bottom:419.106667pt;}
.y124{bottom:421.615762pt;}
.y9c{bottom:423.746667pt;}
.y4{bottom:424.226667pt;}
.y5a{bottom:430.786667pt;}
.y23{bottom:432.226667pt;}
.y14d{bottom:432.386667pt;}
.y41{bottom:434.306667pt;}
.y1f5{bottom:438.466667pt;}
.y9b{bottom:451.106667pt;}
.ybf{bottom:452.226667pt;}
.y14c{bottom:453.026667pt;}
.y59{bottom:461.186667pt;}
.y1f4{bottom:465.853333pt;}
.y40{bottom:466.013333pt;}
.y73{bottom:467.613333pt;}
.y9a{bottom:470.493333pt;}
.y22{bottom:471.933333pt;}
.y3{bottom:478.173333pt;}
.ybe{bottom:479.613333pt;}
.y3f{bottom:482.013333pt;}
.y1f3{bottom:485.533333pt;}
.y14b{bottom:486.973333pt;}
.y99{bottom:489.693333pt;}
.y58{bottom:489.853333pt;}
.y133{bottom:494.973333pt;}
.y72{bottom:497.693333pt;}
.y3e{bottom:500.573333pt;}
.ybd{bottom:509.533333pt;}
.y21{bottom:511.613333pt;}
.y71{bottom:512.253333pt;}
.y1f2{bottom:512.893333pt;}
.y20d{bottom:513.053333pt;}
.y57{bottom:515.933333pt;}
.y2{bottom:517.053333pt;}
.y14a{bottom:517.373333pt;}
.y132{bottom:522.333333pt;}
.y1f1{bottom:532.733333pt;}
.y70{bottom:535.613333pt;}
.y56{bottom:536.893333pt;}
.y3d{bottom:538.493333pt;}
.ybc{bottom:539.453333pt;}
.y156{bottom:540.212687pt;}
.y20c{bottom:542.973333pt;}
.y98{bottom:544.413333pt;}
.y20{bottom:551.453333pt;}
.y131{bottom:552.253333pt;}
.y1af{bottom:554.242950pt;}
.y6f{bottom:558.813333pt;}
.y1f0{bottom:559.933333pt;}
.ybb{bottom:560.093333pt;}
.y20b{bottom:562.333333pt;}
.y97{bottom:563.773333pt;}
.y55{bottom:565.693333pt;}
.y1ba{bottom:569.369007pt;}
.y3c{bottom:575.293333pt;}
.y1ef{bottom:579.773333pt;}
.y1e7{bottom:580.253333pt;}
.y20a{bottom:581.693333pt;}
.y6e{bottom:582.173333pt;}
.y130{bottom:582.333333pt;}
.y96{bottom:582.973333pt;}
.y181{bottom:587.133333pt;}
.y1f{bottom:591.133333pt;}
.y3b{bottom:591.293333pt;}
.y54{bottom:591.613333pt;}
.yba{bottom:594.173333pt;}
.y1e6{bottom:599.613333pt;}
.y209{bottom:601.053333pt;}
.y95{bottom:602.333333pt;}
.y12f{bottom:602.813333pt;}
.y6d{bottom:605.533333pt;}
.y1ee{bottom:607.133333pt;}
.y3a{bottom:609.853333pt;}
.yb9{bottom:613.373333pt;}
.y180{bottom:614.333333pt;}
.y53{bottom:617.693333pt;}
.y208{bottom:620.253333pt;}
.y1ed{bottom:626.493333pt;}
.y1e5{bottom:626.813333pt;}
.y39{bottom:628.413333pt;}
.y6c{bottom:628.893333pt;}
.y1d0{bottom:629.252606pt;}
.y94{bottom:629.693333pt;}
.yb8{bottom:632.733333pt;}
.y17f{bottom:633.693333pt;}
.y12e{bottom:636.893333pt;}
.y207{bottom:639.613333pt;}
.y52{bottom:643.613333pt;}
.y1ec{bottom:645.693333pt;}
.y1fe{bottom:645.853333pt;}
.y1e{bottom:646.173333pt;}
.y38{bottom:646.973333pt;}
.y93{bottom:649.053333pt;}
.y1d8{bottom:649.533333pt;}
.y6b{bottom:652.253333pt;}
.y206{bottom:658.973333pt;}
.y17e{bottom:661.053333pt;}
.yb7{bottom:662.813333pt;}
.y37{bottom:665.533333pt;}
.y12d{bottom:667.293333pt;}
.y92{bottom:668.253333pt;}
.y1b3{bottom:669.053333pt;}
.y51{bottom:669.693333pt;}
.y7b{bottom:672.893333pt;}
.y6a{bottom:675.613333pt;}
.y1d{bottom:676.253333pt;}
.y1d7{bottom:676.893333pt;}
.y205{bottom:678.333333pt;}
.yb6{bottom:682.013333pt;}
.y1fd{bottom:682.173333pt;}
.y1e4{bottom:684.893333pt;}
.y91{bottom:687.613333pt;}
.y17d{bottom:688.413333pt;}
.y161{bottom:688.962810pt;}
.y12c{bottom:689.373333pt;}
.y13a{bottom:689.472907pt;}
.y1b{bottom:690.173333pt;}
.y7a{bottom:692.253333pt;}
.y1eb{bottom:692.893333pt;}
.y50{bottom:695.613333pt;}
.y1d6{bottom:696.253333pt;}
.y1b2{bottom:696.413333pt;}
.y138{bottom:697.090926pt;}
.y204{bottom:697.533333pt;}
.y68{bottom:698.813333pt;}
.y36{bottom:703.493333pt;}
.y90{bottom:707.013333pt;}
.y17c{bottom:707.653333pt;}
.y13c{bottom:709.267479pt;}
.y1fc{bottom:709.573333pt;}
.y79{bottom:711.493333pt;}
.yb5{bottom:711.813333pt;}
.y1e3{bottom:712.133333pt;}
.y1b1{bottom:715.653333pt;}
.y203{bottom:716.933333pt;}
.y4f{bottom:721.573333pt;}
.y67{bottom:722.213333pt;}
.y1d5{bottom:723.653333pt;}
.y1a{bottom:729.893333pt;}
.y78{bottom:730.853333pt;}
.y149{bottom:735.013333pt;}
.y202{bottom:736.293333pt;}
.y8f{bottom:736.933333pt;}
.y1e2{bottom:739.493333pt;}
.y35{bottom:740.453333pt;}
.y4e{bottom:742.853333pt;}
.y12b{bottom:743.013333pt;}
.y66{bottom:745.573333pt;}
.y77{bottom:750.213333pt;}
.y1d4{bottom:753.573333pt;}
.y34{bottom:755.653333pt;}
.y1fb{bottom:756.133333pt;}
.y8e{bottom:756.293333pt;}
.y1e1{bottom:758.853333pt;}
.yb4{bottom:761.573333pt;}
.y12a{bottom:762.373333pt;}
.y65{bottom:768.933333pt;}
.y17{bottom:769.573333pt;}
.y4d{bottom:773.253333pt;}
.y33{bottom:774.213333pt;}
.y201{bottom:774.853333pt;}
.y1e0{bottom:778.213333pt;}
.y1d3{bottom:783.493333pt;}
.y8d{bottom:786.373333pt;}
.yb3{bottom:788.773333pt;}
.y129{bottom:789.733333pt;}
.y62{bottom:792.293333pt;}
.y32{bottom:792.773333pt;}
.y200{bottom:794.213333pt;}
.y76{bottom:799.493333pt;}
.y4c{bottom:803.813333pt;}
.y1d2{bottom:804.133333pt;}
.y8c{bottom:805.573333pt;}
.yb2{bottom:808.133333pt;}
.y16{bottom:809.413333pt;}
.y1fa{bottom:810.853333pt;}
.y30{bottom:811.333333pt;}
.y1ff{bottom:813.573333pt;}
.y75{bottom:818.853333pt;}
.y128{bottom:819.653333pt;}
.y8b{bottom:824.933333pt;}
.y60{bottom:828.773333pt;}
.y2f{bottom:829.893333pt;}
.y4b{bottom:834.213333pt;}
.y74{bottom:838.213333pt;}
.y20f{bottom:844.293333pt;}
.y13{bottom:849.093333pt;}
.y127{bottom:849.733333pt;}
.y8a{bottom:854.853333pt;}
.y2e{bottom:867.813333pt;}
.y5f{bottom:867.973333pt;}
.y126{bottom:870.213333pt;}
.y89{bottom:874.213333pt;}
.y1{bottom:994.080000pt;}
.h22{height:5.090416pt;}
.h24{height:5.099638pt;}
.h43{height:6.149239pt;}
.h3c{height:8.795226pt;}
.h3d{height:8.811130pt;}
.h25{height:10.411377pt;}
.h28{height:11.874342pt;}
.h21{height:12.181956pt;}
.h23{height:15.849627pt;}
.h20{height:16.316479pt;}
.h26{height:17.051050pt;}
.h10{height:17.760000pt;}
.hf{height:17.920000pt;}
.h42{height:19.111776pt;}
.h44{height:19.237221pt;}
.hd{height:19.520000pt;}
.h41{height:19.674715pt;}
.h2c{height:20.096978pt;}
.h2b{height:21.792558pt;}
.h29{height:22.434459pt;}
.h12{height:22.560000pt;}
.h15{height:22.720000pt;}
.h16{height:22.752000pt;}
.h4b{height:25.947899pt;}
.h3b{height:27.398755pt;}
.h3a{height:28.205787pt;}
.h3e{height:28.341939pt;}
.h27{height:29.951314pt;}
.h37{height:32.087906pt;}
.h1a{height:34.374375pt;}
.h49{height:35.760300pt;}
.h14{height:35.840000pt;}
.h45{height:36.115854pt;}
.h48{height:36.813622pt;}
.h19{height:38.008125pt;}
.h18{height:38.625000pt;}
.h9{height:39.040000pt;}
.hc{height:39.072000pt;}
.hb{height:39.200000pt;}
.h2a{height:39.891746pt;}
.h2d{height:41.155628pt;}
.h30{height:41.940142pt;}
.h31{height:42.118044pt;}
.h2f{height:43.175493pt;}
.h36{height:44.151555pt;}
.h35{height:45.452043pt;}
.h4a{height:47.412001pt;}
.h3f{height:50.304873pt;}
.h1d{height:51.500000pt;}
.h1b{height:52.834688pt;}
.h7{height:57.920000pt;}
.h1{height:58.563750pt;}
.h13{height:60.288750pt;}
.h8{height:61.410000pt;}
.ha{height:63.656250pt;}
.h4c{height:65.491727pt;}
.h6{height:65.531250pt;}
.h1e{height:71.296875pt;}
.h4d{height:72.515625pt;}
.h33{height:74.050313pt;}
.h1c{height:78.097500pt;}
.h32{height:79.088748pt;}
.h11{height:81.046875pt;}
.h38{height:81.063479pt;}
.h2{height:84.662813pt;}
.he{height:87.156562pt;}
.h17{height:88.777500pt;}
.h46{height:98.296875pt;}
.h4{height:106.305937pt;}
.h5{height:116.490937pt;}
.h39{height:120.617590pt;}
.h3{height:152.687812pt;}
.h2e{height:155.044925pt;}
.h34{height:180.840464pt;}
.h40{height:256.733504pt;}
.h1f{height:284.841945pt;}
.h47{height:289.952202pt;}
.h0{height:1056.000000pt;}
.w11{width:19.933150pt;}
.w12{width:20.588057pt;}
.w13{width:89.473188pt;}
.w7{width:93.280000pt;}
.wb{width:120.000000pt;}
.wd{width:131.392000pt;}
.w1e{width:136.516143pt;}
.w9{width:158.906667pt;}
.wa{width:159.066667pt;}
.w3{width:174.106667pt;}
.wc{width:189.306667pt;}
.w8{width:216.026667pt;}
.w21{width:249.476335pt;}
.w6{width:313.186667pt;}
.w5{width:313.306667pt;}
.w2{width:322.946667pt;}
.we{width:386.786667pt;}
.w4{width:452.386667pt;}
.w1a{width:603.546451pt;}
.w18{width:603.595238pt;}
.w22{width:603.772286pt;}
.w1c{width:604.040573pt;}
.w19{width:604.162944pt;}
.w17{width:604.180685pt;}
.w16{width:604.191612pt;}
.w20{width:604.270873pt;}
.w1f{width:604.275855pt;}
.w14{width:604.359101pt;}
.w1b{width:604.416505pt;}
.w15{width:604.495161pt;}
.w1d{width:604.532976pt;}
.w10{width:604.578623pt;}
.wf{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x40{left:0.914518pt;}
.x45{left:1.849478pt;}
.x8{left:7.200000pt;}
.x16{left:8.640000pt;}
.x7{left:9.600000pt;}
.x26{left:20.000000pt;}
.x28{left:24.320000pt;}
.x17{left:27.200000pt;}
.x12{left:38.240000pt;}
.x1a{left:39.840000pt;}
.x25{left:41.920000pt;}
.x15{left:46.560000pt;}
.x1d{left:49.440000pt;}
.x21{left:51.200000pt;}
.x29{left:52.960000pt;}
.x23{left:54.720000pt;}
.x18{left:55.680000pt;}
.x1f{left:57.120000pt;}
.x1e{left:66.080000pt;}
.x1b{left:75.680000pt;}
.x1c{left:77.440000pt;}
.x19{left:88.960000pt;}
.x1{left:94.431988pt;}
.x22{left:98.720000pt;}
.x37{left:105.821377pt;}
.x10{left:109.151988pt;}
.x24{left:114.880000pt;}
.x3{left:117.631988pt;}
.x2a{left:123.360000pt;}
.x4f{left:131.391988pt;}
.x51{left:136.986655pt;}
.x27{left:138.240000pt;}
.x2d{left:141.946655pt;}
.x11{left:148.666667pt;}
.x39{left:150.148923pt;}
.x2b{left:151.040000pt;}
.x14{left:158.560000pt;}
.x2e{left:166.586655pt;}
.x20{left:175.386667pt;}
.xc{left:187.706667pt;}
.x2f{left:190.426655pt;}
.x6{left:202.426667pt;}
.x5{left:204.666655pt;}
.x31{left:209.306642pt;}
.xf{left:214.426667pt;}
.x4b{left:216.666655pt;}
.x44{left:218.426655pt;}
.x43{left:219.706655pt;}
.x48{left:221.626655pt;}
.x3f{left:222.586655pt;}
.x54{left:225.626655pt;}
.x38{left:235.153487pt;}
.x3d{left:239.843488pt;}
.x3c{left:255.306169pt;}
.x42{left:261.938477pt;}
.x4d{left:264.458876pt;}
.x9{left:268.546667pt;}
.x47{left:272.378971pt;}
.x52{left:277.186655pt;}
.x13{left:280.706667pt;}
.x41{left:283.642863pt;}
.x3b{left:284.572703pt;}
.x34{left:286.466655pt;}
.x36{left:292.546655pt;}
.x3e{left:302.626655pt;}
.x46{left:309.475218pt;}
.x4{left:321.346655pt;}
.x30{left:325.186655pt;}
.x2{left:336.386655pt;}
.x49{left:358.049167pt;}
.x4a{left:389.766382pt;}
.xd{left:403.746667pt;}
.xa{left:407.746667pt;}
.x32{left:452.413309pt;}
.x33{left:457.053321pt;}
.x4c{left:460.386228pt;}
.xe{left:562.653333pt;}
.x2c{left:610.013321pt;}
.x4e{left:631.013321pt;}
.x3a{left:647.512350pt;}
.x53{left:680.133321pt;}
.x50{left:699.333321pt;}
.x35{left:710.373321pt;}
.x55{left:721.253321pt;}
.xb{left:722.533321pt;}
}




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