
    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_36b0e6c74015ba03d12bcbdb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.171000;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_793fc21fcf3045203a967603.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.166000;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_1d5096238c4d166497eecece.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0a462ec600e61b7572900e33.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d9d09ea88231cd22a1a04379.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.029000;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_f4881884e251e5d5f7dd7e0d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.166000;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_b8660c1009fbfba7edc63995.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7fcbfa40144f5a0f609f5114.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c002341c51107532f845239f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.171000;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_c90404c9d3330ea1db50743b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.860352;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_87c26d205b6ab00611af5386.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a1fc4637fc8885b093c63a4a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.860352;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f5b339654104b1236f1dd907.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971191;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;}
.m6{transform:matrix(0.245095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245095,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246332,0.000000,0.000000,0.250000,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);}
.m2{transform:matrix(0.259178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259178,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.259774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259774,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.268313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268313,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v1{vertical-align:-11.127180px;}
.v2{vertical-align:-7.244554px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-2.160000px;}
.ls4{letter-spacing:-2.142000px;}
.ls1a{letter-spacing:-1.545442px;}
.ls20{letter-spacing:-1.509282px;}
.ls28{letter-spacing:-1.451760px;}
.ls18{letter-spacing:-1.374595px;}
.ls23{letter-spacing:-1.020000px;}
.ls19{letter-spacing:-0.933447px;}
.ls5{letter-spacing:-0.912000px;}
.ls1f{letter-spacing:-0.911606px;}
.ls29{letter-spacing:-0.876863px;}
.ls3{letter-spacing:-0.876000px;}
.ls6{letter-spacing:-0.852000px;}
.ls17{letter-spacing:-0.830256px;}
.lsa{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.593400px;}
.ls2a{letter-spacing:-0.587400px;}
.ls8{letter-spacing:-0.576000px;}
.ls2{letter-spacing:-0.483000px;}
.ls34{letter-spacing:-0.414600px;}
.ls25{letter-spacing:-0.269400px;}
.ls16{letter-spacing:-0.215400px;}
.ls31{letter-spacing:-0.189600px;}
.ls24{letter-spacing:-0.178800px;}
.ls22{letter-spacing:-0.104400px;}
.ls35{letter-spacing:-0.072600px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.017280px;}
.ls1b{letter-spacing:0.115200px;}
.lsb{letter-spacing:0.126600px;}
.ls26{letter-spacing:0.169920px;}
.lse{letter-spacing:0.207360px;}
.ls33{letter-spacing:0.207600px;}
.ls15{letter-spacing:0.228000px;}
.ls36{letter-spacing:0.237000px;}
.ls21{letter-spacing:0.360000px;}
.ls2b{letter-spacing:1.234379px;}
.ls27{letter-spacing:1.272322px;}
.ls2c{letter-spacing:1.292406px;}
.ls1c{letter-spacing:1.358354px;}
.ls1d{letter-spacing:1.735674px;}
.ls0{letter-spacing:72.747360px;}
.ls10{letter-spacing:145.294713px;}
.ls13{letter-spacing:162.390685px;}
.ls14{letter-spacing:162.514320px;}
.ls12{letter-spacing:162.576138px;}
.ls2d{letter-spacing:181.862066px;}
.ls2f{letter-spacing:181.914818px;}
.ls2e{letter-spacing:181.967569px;}
.ls11{letter-spacing:188.539558px;}
.ls30{letter-spacing:204.123097px;}
.lsf{letter-spacing:309.500006px;}
.ls1e{letter-spacing:852.744000px;}
.ls32{letter-spacing:3884.112000px;}
.lsd{letter-spacing:3914.352000px;}
.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;}
}
.ws5a{word-spacing:-213.422088px;}
.ws26{word-spacing:-201.987064px;}
.ws0{word-spacing:-56.880000px;}
.ws21{word-spacing:-30.955680px;}
.ws5d{word-spacing:-28.212480px;}
.wsf{word-spacing:-23.927040px;}
.ws2{word-spacing:-23.058000px;}
.wsc{word-spacing:-21.600000px;}
.wsb{word-spacing:-19.440000px;}
.ws5c{word-spacing:-14.976000px;}
.ws24{word-spacing:-13.447506px;}
.ws39{word-spacing:-13.132866px;}
.ws5f{word-spacing:-12.833400px;}
.ws47{word-spacing:-12.632344px;}
.wsa{word-spacing:-12.078600px;}
.ws12{word-spacing:-11.960903px;}
.ws8{word-spacing:-11.952000px;}
.ws5e{word-spacing:-11.583600px;}
.ws45{word-spacing:-11.430480px;}
.ws5{word-spacing:-11.393280px;}
.ws6{word-spacing:-11.376000px;}
.ws7{word-spacing:-11.358600px;}
.ws9{word-spacing:-11.304000px;}
.ws60{word-spacing:-11.303400px;}
.ws43{word-spacing:-11.271600px;}
.ws5b{word-spacing:-11.186400px;}
.ws4{word-spacing:-10.524000px;}
.ws1{word-spacing:-10.500000px;}
.ws3{word-spacing:-10.464000px;}
.ws44{word-spacing:-10.356000px;}
.wse{word-spacing:-9.876000px;}
.ws11{word-spacing:-9.648000px;}
.ws10{word-spacing:-9.432600px;}
.wsd{word-spacing:0.000000px;}
.ws4a{word-spacing:40.773556px;}
.ws46{word-spacing:78.236160px;}
.ws2e{word-spacing:84.112518px;}
.ws2d{word-spacing:84.236153px;}
.ws34{word-spacing:84.296116px;}
.ws23{word-spacing:99.074248px;}
.ws3d{word-spacing:103.817773px;}
.ws3e{word-spacing:103.878144px;}
.ws41{word-spacing:103.998887px;}
.ws3b{word-spacing:118.489805px;}
.ws36{word-spacing:124.848506px;}
.ws33{word-spacing:124.910324px;}
.ws35{word-spacing:124.912178px;}
.ws38{word-spacing:125.035814px;}
.ws31{word-spacing:125.095777px;}
.ws1c{word-spacing:134.304824px;}
.ws3c{word-spacing:143.843932px;}
.ws3f{word-spacing:143.904303px;}
.ws51{word-spacing:147.930348px;}
.ws4c{word-spacing:147.932458px;}
.ws37{word-spacing:149.066814px;}
.ws29{word-spacing:149.128631px;}
.ws25{word-spacing:150.811926px;}
.ws28{word-spacing:150.873744px;}
.ws2f{word-spacing:150.935562px;}
.ws32{word-spacing:150.997379px;}
.ws13{word-spacing:154.624090px;}
.ws14{word-spacing:160.698701px;}
.ws42{word-spacing:161.955316px;}
.ws1f{word-spacing:163.997730px;}
.ws17{word-spacing:167.296758px;}
.ws15{word-spacing:168.940224px;}
.ws19{word-spacing:168.951359px;}
.ws49{word-spacing:169.719743px;}
.ws57{word-spacing:169.980373px;}
.ws58{word-spacing:170.033125px;}
.ws54{word-spacing:170.085876px;}
.ws53{word-spacing:170.087986px;}
.ws16{word-spacing:170.594137px;}
.ws1e{word-spacing:170.595787px;}
.ws56{word-spacing:172.563075px;}
.ws4f{word-spacing:172.668577px;}
.ws30{word-spacing:175.092052px;}
.ws2a{word-spacing:176.960800px;}
.ws27{word-spacing:176.962654px;}
.ws18{word-spacing:183.790251px;}
.ws20{word-spacing:183.791901px;}
.ws50{word-spacing:192.188652px;}
.ws4e{word-spacing:192.241404px;}
.ws1d{word-spacing:193.687337px;}
.ws4d{word-spacing:194.824105px;}
.ws2b{word-spacing:202.924220px;}
.ws1a{word-spacing:216.945487px;}
.ws3a{word-spacing:253.942884px;}
.ws22{word-spacing:310.529770px;}
.ws59{word-spacing:455.976585px;}
.ws48{word-spacing:465.905057px;}
.ws1b{word-spacing:503.795052px;}
.ws40{word-spacing:531.424681px;}
.ws55{word-spacing:534.957876px;}
.ws2c{word-spacing:581.432715px;}
.ws4b{word-spacing:588.754662px;}
.ws52{word-spacing:597.705495px;}
._38{margin-left:-52.050476px;}
._89{margin-left:-23.051068px;}
._3b{margin-left:-6.454971px;}
._5{margin-left:-4.810855px;}
._3{margin-left:-3.602880px;}
._1{margin-left:-2.585520px;}
._0{margin-left:-1.365120px;}
._2{width:1.110720px;}
._4{width:3.015768px;}
._7b{width:4.035685px;}
._35{width:22.497084px;}
._54{width:25.746508px;}
._6c{width:40.849610px;}
._66{width:65.543654px;}
._6a{width:66.577855px;}
._52{width:69.769200px;}
._64{width:89.008745px;}
._59{width:90.259409px;}
._3e{width:95.891747px;}
._4d{width:96.892221px;}
._51{width:103.169937px;}
._8c{width:106.882266px;}
._19{width:115.043353px;}
._56{width:116.112108px;}
._32{width:118.232414px;}
._31{width:120.597333px;}
._6f{width:125.651033px;}
._78{width:126.892780px;}
._67{width:128.431530px;}
._69{width:135.779607px;}
._24{width:137.025751px;}
._e{width:138.120023px;}
._1b{width:141.419051px;}
._68{width:142.483189px;}
._1a{width:144.679625px;}
._4e{width:147.517730px;}
._2c{width:148.611293px;}
._61{width:154.926412px;}
._4c{width:155.927111px;}
._7a{width:158.361382px;}
._40{width:162.322561px;}
._45{width:163.387804px;}
._47{width:164.452016px;}
._6d{width:166.597346px;}
._2f{width:168.058387px;}
._6{width:169.160525px;}
._1c{width:171.220275px;}
._8{width:172.459553px;}
._b{width:173.866324px;}
._7{width:175.758582px;}
._10{width:178.427406px;}
._1d{width:180.040630px;}
._f{width:181.172344px;}
._28{width:182.434398px;}
._60{width:186.883650px;}
._39{width:188.669499px;}
._3a{width:189.955537px;}
._13{width:191.425234px;}
._14{width:194.922548px;}
._3d{width:196.441338px;}
._37{width:197.511156px;}
._5c{width:198.676843px;}
._17{width:201.520605px;}
._81{width:202.727298px;}
._55{width:203.742001px;}
._77{width:204.812819px;}
._6e{width:206.492147px;}
._11{width:209.731887px;}
._15{width:210.990741px;}
._a{width:212.752010px;}
._49{width:214.728704px;}
._72{width:219.558635px;}
._9{width:221.944981px;}
._33{width:227.169814px;}
._2b{width:231.082171px;}
._18{width:234.083940px;}
._57{width:238.657736px;}
._5d{width:239.976176px;}
._43{width:245.422454px;}
._65{width:248.392795px;}
._1e{width:250.396958px;}
._23{width:257.327112px;}
._25{width:260.714529px;}
._6b{width:264.957150px;}
._71{width:268.317970px;}
._2d{width:271.478310px;}
._d{width:273.676753px;}
._5b{width:275.142271px;}
._42{width:278.258767px;}
._c{width:281.492445px;}
._12{width:286.544816px;}
._2a{width:287.608028px;}
._29{width:290.307146px;}
._27{width:293.495554px;}
._5f{width:296.901238px;}
._44{width:308.042807px;}
._22{width:309.638016px;}
._20{width:310.884086px;}
._16{width:313.502100px;}
._5e{width:315.093508px;}
._36{width:322.701240px;}
._46{width:330.410194px;}
._85{width:331.478270px;}
._58{width:336.909275px;}
._4b{width:341.291258px;}
._4a{width:345.034872px;}
._73{width:351.993167px;}
._84{width:364.193907px;}
._1f{width:366.187916px;}
._3c{width:367.545309px;}
._74{width:369.897644px;}
._21{width:385.509960px;}
._7e{width:387.076739px;}
._30{width:390.026267px;}
._2e{width:395.851342px;}
._70{width:396.979642px;}
._8b{width:398.313889px;}
._63{width:405.587811px;}
._5a{width:416.243328px;}
._62{width:428.261298px;}
._50{width:437.207979px;}
._41{width:448.637299px;}
._3f{width:453.510752px;}
._4f{width:460.969909px;}
._88{width:471.770786px;}
._26{width:475.009663px;}
._7d{width:478.608609px;}
._80{width:503.861558px;}
._75{width:505.327366px;}
._48{width:509.188724px;}
._7c{width:516.730892px;}
._76{width:528.709115px;}
._7f{width:566.945870px;}
._82{width:572.858934px;}
._79{width:578.825187px;}
._87{width:592.032778px;}
._86{width:623.482293px;}
._83{width:632.624224px;}
._34{width:707.955382px;}
._8a{width:712.061614px;}
._53{width:777.516266px;}
._8d{width:852.744000px;}
.fc7{color:rgb(47,97,173);}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,10);}
.fc3{color:rgb(255,192,0);}
.fc8{color:rgb(89,89,89);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(96,96,96);}
.fc0{color:rgb(48,48,48);}
.fsc{font-size:41.145980px;}
.fsa{font-size:41.760000px;}
.fs6{font-size:43.024830px;}
.fsb{font-size:45.440088px;}
.fs8{font-size:47.240526px;}
.fs1{font-size:48.240000px;}
.fs7{font-size:48.372325px;}
.fs0{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fsd{font-size:66.240000px;}
.fs9{font-size:74.880000px;}
.fs2{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs3{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y93{bottom:3.622277px;}
.y16f{bottom:3.956265px;}
.y14d{bottom:3.956344px;}
.y15f{bottom:3.982720px;}
.y16a{bottom:3.989314px;}
.y150{bottom:3.995908px;}
.y6{bottom:4.132500px;}
.y6c{bottom:4.636325px;}
.y7a{bottom:4.667234px;}
.y84{bottom:4.674899px;}
.y7c{bottom:4.674961px;}
.y78{bottom:4.682688px;}
.y95{bottom:5.433415px;}
.ya3{bottom:5.436434px;}
.yab{bottom:5.469638px;}
.yad{bottom:5.471132px;}
.ya7{bottom:5.471147px;}
.y154{bottom:5.538882px;}
.y152{bottom:5.565258px;}
.y158{bottom:5.578445px;}
.y64{bottom:5.765465px;}
.y4e{bottom:5.800792px;}
.y4a{bottom:5.814538px;}
.y118{bottom:6.097392px;}
.y91{bottom:6.338984px;}
.y12e{bottom:7.004720px;}
.y14b{bottom:8.703957px;}
.y6a{bottom:9.272650px;}
.y111{bottom:19.620000px;}
.y49{bottom:19.835409px;}
.y117{bottom:20.934379px;}
.y63{bottom:25.593588px;}
.y12d{bottom:28.817994px;}
.ya{bottom:28.836000px;}
.y45{bottom:29.376000px;}
.y48{bottom:33.883772px;}
.y119{bottom:35.742331px;}
.y5{bottom:39.952500px;}
.y43{bottom:42.510000px;}
.y9{bottom:43.776000px;}
.y62{bottom:45.422124px;}
.y44{bottom:46.656000px;}
.y4c{bottom:47.945881px;}
.y12c{bottom:49.759632px;}
.y4{bottom:57.952500px;}
.y1{bottom:60.163500px;}
.y4b{bottom:61.966752px;}
.y86{bottom:64.296000px;}
.y61{bottom:65.250660px;}
.y242{bottom:67.536000px;}
.y12b{bottom:70.701270px;}
.y42{bottom:72.750000px;}
.yd5{bottom:73.515000px;}
.yfd{bottom:77.790000px;}
.y85{bottom:78.336000px;}
.y67{bottom:78.401649px;}
.y83{bottom:79.328918px;}
.y3f{bottom:81.216000px;}
.ye9{bottom:81.795000px;}
.yd3{bottom:82.296000px;}
.y2a{bottom:83.370000px;}
.y3{bottom:84.772500px;}
.y60{bottom:85.079195px;}
.y241{bottom:85.536000px;}
.y214{bottom:87.156000px;}
.y12a{bottom:91.642908px;}
.yd6{bottom:94.215000px;}
.y1af{bottom:96.696000px;}
.yfe{bottom:98.460000px;}
.y82{bottom:98.840830px;}
.yd2{bottom:100.296000px;}
.y29{bottom:101.190000px;}
.yea{bottom:102.495000px;}
.y2{bottom:102.766500px;}
.y41{bottom:102.810000px;}
.y1e0{bottom:102.996000px;}
.y240{bottom:103.356000px;}
.y143{bottom:104.076000px;}
.y5f{bottom:104.907731px;}
.y213{bottom:105.156000px;}
.y129{bottom:112.584546px;}
.y1ae{bottom:114.696000px;}
.yd7{bottom:114.915000px;}
.yd1{bottom:118.296000px;}
.y81{bottom:118.352031px;}
.yff{bottom:119.160000px;}
.y28{bottom:119.190000px;}
.y1df{bottom:120.996000px;}
.y142{bottom:122.076000px;}
.y212{bottom:123.156000px;}
.yeb{bottom:123.195000px;}
.y5e{bottom:124.736267px;}
.y23f{bottom:130.176000px;}
.y1ad{bottom:132.696000px;}
.y128{bottom:133.526183px;}
.yd8{bottom:135.615000px;}
.yd0{bottom:136.296000px;}
.y27{bottom:137.190000px;}
.y80{bottom:137.863232px;}
.y100{bottom:139.860000px;}
.y141{bottom:140.076000px;}
.yec{bottom:143.895000px;}
.y5d{bottom:144.566177px;}
.y1de{bottom:147.996000px;}
.y23e{bottom:148.176000px;}
.y211{bottom:150.150000px;}
.y1ac{bottom:150.690000px;}
.ycf{bottom:154.290000px;}
.y127{bottom:154.473628px;}
.yd9{bottom:156.315000px;}
.y7f{bottom:157.374433px;}
.y140{bottom:158.070000px;}
.y17e{bottom:158.610000px;}
.y101{bottom:160.560000px;}
.y26{bottom:164.190000px;}
.y5c{bottom:164.360348px;}
.yed{bottom:164.595000px;}
.ybb{bottom:165.630000px;}
.y1dd{bottom:165.990000px;}
.y23d{bottom:166.170000px;}
.y210{bottom:168.150000px;}
.yce{bottom:172.290000px;}
.y126{bottom:175.408007px;}
.y7e{bottom:176.885635px;}
.yda{bottom:177.015000px;}
.y1ab{bottom:177.690000px;}
.y102{bottom:181.260000px;}
.y25{bottom:182.190000px;}
.yba{bottom:184.170000px;}
.y5b{bottom:184.182011px;}
.y13f{bottom:185.070000px;}
.yee{bottom:185.295000px;}
.y20f{bottom:186.150000px;}
.y17d{bottom:189.930000px;}
.y23c{bottom:193.170000px;}
.y1dc{bottom:193.530000px;}
.y1aa{bottom:195.690000px;}
.y125{bottom:196.356904px;}
.y7d{bottom:196.396836px;}
.ydb{bottom:197.715000px;}
.ycd{bottom:198.030000px;}
.y24{bottom:200.190000px;}
.y103{bottom:201.960000px;}
.yb9{bottom:202.170000px;}
.y13e{bottom:203.070000px;}
.y5a{bottom:204.017420px;}
.y20e{bottom:204.150000px;}
.yef{bottom:205.995000px;}
.y17c{bottom:207.930000px;}
.y23b{bottom:211.170000px;}
.y7b{bottom:215.908037px;}
.y124{bottom:217.291283px;}
.y23{bottom:218.190000px;}
.ydc{bottom:218.415000px;}
.y13d{bottom:221.070000px;}
.y104{bottom:222.660000px;}
.y1a9{bottom:222.690000px;}
.y59{bottom:223.839082px;}
.y17b{bottom:225.930000px;}
.yf0{bottom:226.695000px;}
.yb8{bottom:228.990000px;}
.y23a{bottom:229.170000px;}
.y20d{bottom:231.150000px;}
.y79{bottom:235.422329px;}
.yb{bottom:235.845000px;}
.y22{bottom:236.190000px;}
.y123{bottom:238.240179px;}
.y13c{bottom:239.070000px;}
.ydd{bottom:239.115000px;}
.y1a8{bottom:240.690000px;}
.ycc{bottom:241.230000px;}
.y105{bottom:243.360000px;}
.y58{bottom:243.674491px;}
.yb7{bottom:246.990000px;}
.y239{bottom:247.170000px;}
.yf1{bottom:247.395000px;}
.y20c{bottom:249.150000px;}
.y17a{bottom:252.930000px;}
.y77{bottom:254.925803px;}
.y13b{bottom:257.070000px;}
.y1db{bottom:258.690000px;}
.y122{bottom:259.174558px;}
.ycb{bottom:259.230000px;}
.yde{bottom:259.815000px;}
.y21{bottom:263.190000px;}
.y57{bottom:263.496154px;}
.y106{bottom:264.060000px;}
.y238{bottom:265.170000px;}
.y20b{bottom:267.150000px;}
.y1a7{bottom:267.735000px;}
.yf2{bottom:268.095000px;}
.y179{bottom:270.975000px;}
.yb6{bottom:274.035000px;}
.y76{bottom:274.475640px;}
.y1da{bottom:276.735000px;}
.yca{bottom:277.275000px;}
.y121{bottom:280.123455px;}
.ydf{bottom:280.515000px;}
.y20{bottom:281.190000px;}
.y237{bottom:283.215000px;}
.y56{bottom:283.331563px;}
.y13a{bottom:284.115000px;}
.y107{bottom:284.760000px;}
.y20a{bottom:285.195000px;}
.y1a6{bottom:285.735000px;}
.yf3{bottom:288.795000px;}
.y178{bottom:288.975000px;}
.yb5{bottom:292.035000px;}
.y75{bottom:293.994569px;}
.y1d9{bottom:294.735000px;}
.yc9{bottom:295.275000px;}
.y1f{bottom:299.190000px;}
.y120{bottom:301.057834px;}
.ye0{bottom:301.215000px;}
.y139{bottom:302.115000px;}
.y55{bottom:303.153225px;}
.y209{bottom:303.195000px;}
.y1a5{bottom:303.735000px;}
.y108{bottom:305.460000px;}
.y177{bottom:306.975000px;}
.yf4{bottom:309.495000px;}
.yb4{bottom:310.035000px;}
.y236{bottom:310.215000px;}
.y1d8{bottom:312.735000px;}
.y74{bottom:313.498043px;}
.y138{bottom:320.115000px;}
.ye1{bottom:321.915000px;}
.y11f{bottom:322.006731px;}
.yc8{bottom:322.275000px;}
.y54{bottom:322.988634px;}
.y109{bottom:326.160000px;}
.y1e{bottom:326.220000px;}
.yb3{bottom:328.035000px;}
.y235{bottom:328.215000px;}
.yf5{bottom:330.195000px;}
.y1a4{bottom:330.735000px;}
.y73{bottom:333.016971px;}
.y176{bottom:333.975000px;}
.y137{bottom:338.115000px;}
.yc7{bottom:340.275000px;}
.ye2{bottom:342.615000px;}
.y53{bottom:342.810297px;}
.y11e{bottom:342.941110px;}
.y1d{bottom:344.220000px;}
.yb2{bottom:346.035000px;}
.y234{bottom:346.215000px;}
.y10a{bottom:346.860000px;}
.y208{bottom:348.195000px;}
.y1a3{bottom:348.735000px;}
.yf6{bottom:350.895000px;}
.y175{bottom:351.975000px;}
.y72{bottom:352.520445px;}
.y136{bottom:356.115000px;}
.yc6{bottom:358.275000px;}
.y1c{bottom:362.220000px;}
.y52{bottom:362.645706px;}
.ye3{bottom:363.315000px;}
.y11d{bottom:363.890006px;}
.yb1{bottom:364.035000px;}
.y233{bottom:364.215000px;}
.y207{bottom:366.195000px;}
.y10b{bottom:367.560000px;}
.y1d7{bottom:369.435000px;}
.yf7{bottom:371.595000px;}
.y71{bottom:372.039374px;}
.y1a2{bottom:375.735000px;}
.yc5{bottom:376.275000px;}
.y174{bottom:378.975000px;}
.y135{bottom:381.855000px;}
.y232{bottom:382.215000px;}
.y51{bottom:382.467368px;}
.ye4{bottom:384.015000px;}
.y206{bottom:384.195000px;}
.y11c{bottom:384.824385px;}
.y1d6{bottom:387.435000px;}
.y10c{bottom:388.260000px;}
.y1b{bottom:389.220000px;}
.yb0{bottom:389.595000px;}
.y70{bottom:391.542848px;}
.yf8{bottom:392.295000px;}
.y1a1{bottom:393.735000px;}
.yc4{bottom:394.275000px;}
.y173{bottom:396.975000px;}
.y231{bottom:400.215000px;}
.y205{bottom:402.195000px;}
.y50{bottom:402.302777px;}
.ye5{bottom:404.715000px;}
.y1d5{bottom:405.435000px;}
.y11b{bottom:405.773282px;}
.y1a{bottom:407.220000px;}
.y10d{bottom:408.960000px;}
.y6f{bottom:411.061776px;}
.yc3{bottom:412.275000px;}
.yf9{bottom:412.995000px;}
.y172{bottom:414.975000px;}
.y230{bottom:418.215000px;}
.y1a0{bottom:420.735000px;}
.y134{bottom:425.055000px;}
.y19{bottom:425.220000px;}
.ye6{bottom:425.415000px;}
.y11a{bottom:426.707661px;}
.y204{bottom:429.195000px;}
.y10e{bottom:429.660000px;}
.yc2{bottom:430.275000px;}
.y6e{bottom:430.565250px;}
.y1d4{bottom:432.435000px;}
.yaf{bottom:432.975000px;}
.yfa{bottom:433.695000px;}
.y68{bottom:438.553791px;}
.y171{bottom:440.715000px;}
.y133{bottom:443.055000px;}
.y18{bottom:443.220000px;}
.y22f{bottom:445.395000px;}
.y115{bottom:445.914446px;}
.ye7{bottom:446.115000px;}
.y203{bottom:447.195000px;}
.y19f{bottom:447.735000px;}
.yc1{bottom:448.275000px;}
.y6d{bottom:450.084179px;}
.y10f{bottom:450.360000px;}
.y1d3{bottom:450.435000px;}
.yfb{bottom:454.395000px;}
.yae{bottom:456.015000px;}
.yac{bottom:456.931904px;}
.y132{bottom:461.055000px;}
.y22e{bottom:463.215000px;}
.y202{bottom:465.195000px;}
.y19e{bottom:465.735000px;}
.yc0{bottom:466.275000px;}
.ye8{bottom:466.770000px;}
.y1d2{bottom:468.435000px;}
.y6b{bottom:469.587653px;}
.y17{bottom:470.220000px;}
.y110{bottom:471.060000px;}
.yfc{bottom:475.050000px;}
.yaa{bottom:477.798467px;}
.y131{bottom:479.055000px;}
.y170{bottom:480.135000px;}
.y16e{bottom:480.961227px;}
.y22d{bottom:481.215000px;}
.y19d{bottom:483.735000px;}
.y1d1{bottom:486.435000px;}
.y16{bottom:488.220000px;}
.y69{bottom:489.106581px;}
.y201{bottom:492.195000px;}
.ybf{bottom:493.275000px;}
.y16d{bottom:497.611159px;}
.ya9{bottom:498.664291px;}
.y22c{bottom:499.035000px;}
.y19c{bottom:501.735000px;}
.y1d0{bottom:504.435000px;}
.y130{bottom:506.055000px;}
.y15{bottom:506.220000px;}
.y200{bottom:510.195000px;}
.y16c{bottom:514.260775px;}
.ybe{bottom:516.315000px;}
.yd4{bottom:516.600000px;}
.y22b{bottom:517.035000px;}
.ya8{bottom:519.530114px;}
.y19b{bottom:519.735000px;}
.y14{bottom:524.220000px;}
.y1ff{bottom:528.195000px;}
.y12f{bottom:529.275000px;}
.y114{bottom:529.298152px;}
.y16b{bottom:530.910390px;}
.y1cf{bottom:531.435000px;}
.y22a{bottom:535.035000px;}
.y19a{bottom:537.735000px;}
.ya6{bottom:540.395938px;}
.y13{bottom:542.220000px;}
.y1fe{bottom:546.195000px;}
.y169{bottom:547.527036px;}
.y1ce{bottom:549.435000px;}
.y229{bottom:552.885000px;}
.y66{bottom:553.965000px;}
.ya5{bottom:561.299493px;}
.y168{bottom:564.176651px;}
.y1fd{bottom:564.225000px;}
.y199{bottom:564.765000px;}
.y1cd{bottom:567.465000px;}
.y12{bottom:569.220000px;}
.y228{bottom:570.885000px;}
.y167{bottom:580.826266px;}
.ya4{bottom:582.165317px;}
.y1fc{bottom:582.225000px;}
.y198{bottom:582.765000px;}
.y1cc{bottom:585.465000px;}
.y65{bottom:586.725000px;}
.y4f{bottom:586.740000px;}
.y11{bottom:587.220000px;}
.y227{bottom:588.705000px;}
.y166{bottom:597.475881px;}
.y197{bottom:600.765000px;}
.ya2{bottom:603.031141px;}
.y10{bottom:605.265000px;}
.y1fb{bottom:609.225000px;}
.y1cb{bottom:612.465000px;}
.y165{bottom:614.126816px;}
.y226{bottom:615.525000px;}
.y196{bottom:618.765000px;}
.yf{bottom:623.265000px;}
.ya1{bottom:623.892436px;}
.y1fa{bottom:627.225000px;}
.y1ca{bottom:630.465000px;}
.y164{bottom:630.743461px;}
.y225{bottom:633.525000px;}
.y195{bottom:636.765000px;}
.ye{bottom:641.265000px;}
.ya0{bottom:644.765806px;}
.y1f9{bottom:645.225000px;}
.y163{bottom:647.386483px;}
.y1c9{bottom:648.465000px;}
.y3e{bottom:650.805000px;}
.y224{bottom:651.525000px;}
.y194{bottom:654.765000px;}
.yd{bottom:659.265000px;}
.y1f8{bottom:663.225000px;}
.y162{bottom:664.042692px;}
.y9f{bottom:665.624084px;}
.y1c8{bottom:666.465000px;}
.y3d{bottom:669.525000px;}
.y223{bottom:678.525000px;}
.y161{bottom:680.685713px;}
.y193{bottom:681.765000px;}
.y25a{bottom:683.745000px;}
.yc{bottom:684.105000px;}
.y9e{bottom:686.497454px;}
.y1f7{bottom:690.225000px;}
.y1c7{bottom:694.185000px;}
.y222{bottom:696.525000px;}
.y160{bottom:697.341922px;}
.y192{bottom:699.765000px;}
.y259{bottom:702.465000px;}
.y3c{bottom:706.065000px;}
.y9d{bottom:707.355731px;}
.y15e{bottom:713.958568px;}
.y1f6{bottom:717.225000px;}
.y258{bottom:721.185000px;}
.y1c6{bottom:723.345000px;}
.y221{bottom:723.525000px;}
.y3b{bottom:724.065000px;}
.y191{bottom:726.765000px;}
.y9c{bottom:728.229101px;}
.y15d{bottom:730.601590px;}
.y1f5{bottom:735.225000px;}
.y257{bottom:739.005000px;}
.y1c5{bottom:741.345000px;}
.y220{bottom:741.525000px;}
.y3a{bottom:742.065000px;}
.y190{bottom:744.765000px;}
.y15c{bottom:747.257799px;}
.y9b{bottom:749.087378px;}
.y1f4{bottom:753.225000px;}
.y256{bottom:757.005000px;}
.y21f{bottom:759.525000px;}
.y39{bottom:760.065000px;}
.y15b{bottom:763.900820px;}
.y1c4{bottom:768.345000px;}
.y9a{bottom:769.960748px;}
.y1f3{bottom:771.225000px;}
.y18f{bottom:771.765000px;}
.y255{bottom:774.825000px;}
.y21e{bottom:777.525000px;}
.y38{bottom:778.065000px;}
.y15a{bottom:780.557029px;}
.y1c3{bottom:786.345000px;}
.y1f2{bottom:789.225000px;}
.y18e{bottom:789.765000px;}
.y99{bottom:790.819025px;}
.y21d{bottom:795.525000px;}
.y159{bottom:797.173675px;}
.y254{bottom:801.645000px;}
.y37{bottom:805.065000px;}
.y1f1{bottom:807.225000px;}
.y98{bottom:811.692395px;}
.y1c2{bottom:813.345000px;}
.y21c{bottom:813.525000px;}
.y157{bottom:813.816696px;}
.y18d{bottom:816.765000px;}
.y253{bottom:819.645000px;}
.y36{bottom:823.065000px;}
.y1f0{bottom:825.225000px;}
.y156{bottom:830.472906px;}
.y1c1{bottom:831.345000px;}
.y21b{bottom:831.525000px;}
.y97{bottom:832.550672px;}
.y18c{bottom:834.765000px;}
.y252{bottom:837.690000px;}
.y35{bottom:841.110000px;}
.y1b5{bottom:841.470000px;}
.y1ef{bottom:843.270000px;}
.y155{bottom:847.115927px;}
.y1c0{bottom:849.390000px;}
.y96{bottom:853.424042px;}
.y251{bottom:855.690000px;}
.y21a{bottom:858.570000px;}
.y34{bottom:859.110000px;}
.y1ee{bottom:861.270000px;}
.y18b{bottom:861.810000px;}
.y153{bottom:863.772136px;}
.y1b4{bottom:867.390000px;}
.y250{bottom:873.690000px;}
.y94{bottom:874.282319px;}
.y18a{bottom:879.810000px;}
.y151{bottom:880.388782px;}
.y33{bottom:886.110000px;}
.y1ed{bottom:888.270000px;}
.y24f{bottom:891.690000px;}
.y1bf{bottom:894.390000px;}
.y92{bottom:895.155689px;}
.y14f{bottom:897.031803px;}
.y189{bottom:897.810000px;}
.y32{bottom:904.110000px;}
.y1ec{bottom:906.270000px;}
.y24e{bottom:909.690000px;}
.y90{bottom:912.391690px;}
.y14e{bottom:913.688013px;}
.y219{bottom:915.270000px;}
.y188{bottom:915.810000px;}
.y1be{bottom:921.390000px;}
.y31{bottom:922.110000px;}
.y1eb{bottom:924.270000px;}
.y24d{bottom:927.690000px;}
.y14c{bottom:930.331034px;}
.y218{bottom:933.270000px;}
.y187{bottom:933.810000px;}
.y1bd{bottom:939.390000px;}
.y30{bottom:940.110000px;}
.y1ea{bottom:942.270000px;}
.y1b3{bottom:942.810000px;}
.y24c{bottom:945.870000px;}
.y14a{bottom:946.987243px;}
.y217{bottom:951.270000px;}
.y186{bottom:951.810000px;}
.y8f{bottom:953.430000px;}
.y1bc{bottom:957.390000px;}
.y2f{bottom:958.110000px;}
.y1e9{bottom:960.270000px;}
.y1b2{bottom:960.810000px;}
.y24b{bottom:963.690000px;}
.y216{bottom:969.270000px;}
.y116{bottom:970.857317px;}
.y1bb{bottom:975.390000px;}
.y2e{bottom:976.110000px;}
.y1e8{bottom:978.270000px;}
.y185{bottom:978.810000px;}
.y24a{bottom:981.690000px;}
.y1b1{bottom:986.550000px;}
.y215{bottom:987.270000px;}
.y8e{bottom:989.970000px;}
.y1ba{bottom:993.390000px;}
.y149{bottom:995.370000px;}
.y1e7{bottom:996.270000px;}
.y184{bottom:996.810000px;}
.y249{bottom:999.510000px;}
.y4d{bottom:1004.713162px;}
.y8d{bottom:1007.970000px;}
.y1b9{bottom:1011.390000px;}
.y148{bottom:1014.090000px;}
.y2d{bottom:1014.450000px;}
.y183{bottom:1014.810000px;}
.y1e6{bottom:1023.270000px;}
.y47{bottom:1024.534825px;}
.y8c{bottom:1025.970000px;}
.y248{bottom:1026.330000px;}
.y182{bottom:1032.810000px;}
.y1b8{bottom:1038.930000px;}
.y1e5{bottom:1041.270000px;}
.y113{bottom:1043.430000px;}
.y8b{bottom:1043.970000px;}
.y2c{bottom:1045.950000px;}
.y181{bottom:1050.810000px;}
.y147{bottom:1050.990000px;}
.y247{bottom:1053.330000px;}
.y1e4{bottom:1059.270000px;}
.y1b0{bottom:1061.970000px;}
.y1b7{bottom:1068.270000px;}
.y180{bottom:1068.810000px;}
.ybd{bottom:1069.530000px;}
.y8a{bottom:1070.970000px;}
.y246{bottom:1071.510000px;}
.y1e3{bottom:1077.270000px;}
.y2b{bottom:1077.450000px;}
.y146{bottom:1078.530000px;}
.y112{bottom:1079.970000px;}
.y89{bottom:1088.970000px;}
.y245{bottom:1089.330000px;}
.y17f{bottom:1094.550000px;}
.y1e2{bottom:1095.270000px;}
.y145{bottom:1096.530000px;}
.y40{bottom:1103.910000px;}
.ybc{bottom:1105.710000px;}
.y88{bottom:1106.970000px;}
.y244{bottom:1107.330000px;}
.y1b6{bottom:1113.810000px;}
.y144{bottom:1122.300000px;}
.y1e1{bottom:1122.840000px;}
.y46{bottom:1124.460000px;}
.y87{bottom:1125.000000px;}
.y243{bottom:1125.180000px;}
.y8{bottom:1193.580000px;}
.y7{bottom:1208.700000px;}
.h27{height:15.825377px;}
.h25{height:15.858346px;}
.h19{height:16.337978px;}
.h17{height:18.149116px;}
.h16{height:18.545300px;}
.h15{height:18.583936px;}
.h10{height:19.003779px;}
.h1a{height:19.960254px;}
.h14{height:21.365731px;}
.h23{height:25.353573px;}
.h24{height:28.107044px;}
.h1d{height:30.402422px;}
.hf{height:31.323253px;}
.h26{height:32.627476px;}
.h21{height:33.081626px;}
.h18{height:34.392395px;}
.h1e{height:35.120039px;}
.h13{height:35.216375px;}
.h5{height:42.161760px;}
.h1f{height:43.506914px;}
.h3{height:48.689280px;}
.h4{height:49.713120px;}
.h22{height:49.722780px;}
.ha{height:51.154560px;}
.h29{height:56.701440px;}
.h1b{height:64.097280px;}
.h28{height:65.445120px;}
.he{height:76.839872px;}
.h7{height:81.970560px;}
.hc{height:89.424000px;}
.hd{height:94.392000px;}
.h9{height:107.856000px;}
.h8{height:110.124000px;}
.hb{height:126.750000px;}
.h2{height:245.902500px;}
.h12{height:452.505324px;}
.h20{height:491.275579px;}
.h11{height:514.640598px;}
.h1c{height:548.820000px;}
.h6{height:727.290000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:51.629061px;}
.w14{width:51.666774px;}
.w12{width:52.571885px;}
.wb{width:60.265567px;}
.w16{width:62.528110px;}
.w6{width:64.691435px;}
.w15{width:65.243444px;}
.w8{width:65.576609px;}
.w7{width:66.461782px;}
.w9{width:67.383838px;}
.w5{width:68.232130px;}
.wa{width:77.969039px;}
.wc{width:94.824219px;}
.w2{width:244.468500px;}
.w3{width:281.728125px;}
.w4{width:509.143500px;}
.w10{width:524.700000px;}
.w17{width:760.991866px;}
.wf{width:770.039485px;}
.wd{width:770.986182px;}
.we{width:777.696028px;}
.w11{width:796.498000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:1.770347px;}
.x9{left:3.540694px;}
.x10{left:5.311041px;}
.x15{left:7.096141px;}
.xa{left:8.851736px;}
.xe{left:10.666342px;}
.x16{left:12.392430px;}
.xc{left:14.207036px;}
.x8{left:15.962630px;}
.x18{left:17.718224px;}
.x4a{left:19.470000px;}
.x46{left:22.140000px;}
.x51{left:25.373289px;}
.x1c{left:26.599466px;}
.x52{left:29.898845px;}
.x14{left:30.981075px;}
.x4d{left:32.145000px;}
.x1b{left:38.991896px;}
.x1{left:40.141500px;}
.x2{left:42.480000px;}
.x4c{left:43.485000px;}
.x49{left:46.800000px;}
.x1d{left:50.625174px;}
.x45{left:58.140000px;}
.x6{left:60.480000px;}
.x3{left:69.478125px;}
.x44{left:72.825000px;}
.x47{left:78.870000px;}
.x4e{left:84.810000px;}
.x48{left:94.860000px;}
.x4b{left:126.210000px;}
.x1e{left:177.256008px;}
.x7{left:181.778391px;}
.x4f{left:189.435000px;}
.x50{left:191.088225px;}
.x35{left:243.465000px;}
.x53{left:244.565221px;}
.xb{left:250.895694px;}
.x36{left:268.890000px;}
.x37{left:294.270000px;}
.x54{left:297.137106px;}
.x22{left:306.394815px;}
.xf{left:316.472303px;}
.x20{left:317.631309px;}
.x38{left:319.680000px;}
.x4{left:326.235000px;}
.x28{left:330.585000px;}
.x26{left:337.860000px;}
.x39{left:341.460000px;}
.x3a{left:345.090000px;}
.x27{left:348.735000px;}
.x3b{left:352.365000px;}
.x30{left:356.010000px;}
.x29{left:359.640000px;}
.x2c{left:363.240000px;}
.x3c{left:366.870000px;}
.x2d{left:374.145000px;}
.x2a{left:377.790000px;}
.x11{left:383.819259px;}
.x2b{left:385.020000px;}
.x2e{left:388.650000px;}
.x3d{left:392.295000px;}
.x31{left:399.570000px;}
.x3e{left:403.200000px;}
.x32{left:406.800000px;}
.x2f{left:410.430000px;}
.x3f{left:417.705000px;}
.x24{left:423.615000px;}
.x40{left:428.580000px;}
.x33{left:446.760000px;}
.x12{left:450.281042px;}
.x55{left:454.777335px;}
.x34{left:461.265000px;}
.x41{left:464.910000px;}
.x42{left:479.415000px;}
.x43{left:504.825000px;}
.x56{left:507.349220px;}
.x13{left:518.542677px;}
.x57{left:559.875850px;}
.x17{left:597.396889px;}
.x58{left:612.447735px;}
.x19{left:658.547630px;}
.x59{left:665.034705px;}
.x5a{left:717.561335px;}
.x1a{left:725.894586px;}
.x5b{left:783.709890px;}
.x5{left:819.690000px;}
.x1f{left:821.670000px;}
.x23{left:831.390000px;}
.x21{left:839.130000px;}
.x5c{left:847.230000px;}
.x25{left:851.010000px;}
@media print{
.v1{vertical-align:-9.890827pt;}
.v2{vertical-align:-6.439603pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.920000pt;}
.ls4{letter-spacing:-1.904000pt;}
.ls1a{letter-spacing:-1.373726pt;}
.ls20{letter-spacing:-1.341584pt;}
.ls28{letter-spacing:-1.290453pt;}
.ls18{letter-spacing:-1.221862pt;}
.ls23{letter-spacing:-0.906667pt;}
.ls19{letter-spacing:-0.829730pt;}
.ls5{letter-spacing:-0.810667pt;}
.ls1f{letter-spacing:-0.810317pt;}
.ls29{letter-spacing:-0.779434pt;}
.ls3{letter-spacing:-0.778667pt;}
.ls6{letter-spacing:-0.757333pt;}
.ls17{letter-spacing:-0.738005pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.527467pt;}
.ls2a{letter-spacing:-0.522133pt;}
.ls8{letter-spacing:-0.512000pt;}
.ls2{letter-spacing:-0.429333pt;}
.ls34{letter-spacing:-0.368533pt;}
.ls25{letter-spacing:-0.239467pt;}
.ls16{letter-spacing:-0.191467pt;}
.ls31{letter-spacing:-0.168533pt;}
.ls24{letter-spacing:-0.158933pt;}
.ls22{letter-spacing:-0.092800pt;}
.ls35{letter-spacing:-0.064533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.015360pt;}
.ls1b{letter-spacing:0.102400pt;}
.lsb{letter-spacing:0.112533pt;}
.ls26{letter-spacing:0.151040pt;}
.lse{letter-spacing:0.184320pt;}
.ls33{letter-spacing:0.184533pt;}
.ls15{letter-spacing:0.202667pt;}
.ls36{letter-spacing:0.210667pt;}
.ls21{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:1.097226pt;}
.ls27{letter-spacing:1.130953pt;}
.ls2c{letter-spacing:1.148805pt;}
.ls1c{letter-spacing:1.207426pt;}
.ls1d{letter-spacing:1.542822pt;}
.ls0{letter-spacing:64.664320pt;}
.ls10{letter-spacing:129.150856pt;}
.ls13{letter-spacing:144.347275pt;}
.ls14{letter-spacing:144.457173pt;}
.ls12{letter-spacing:144.512122pt;}
.ls2d{letter-spacing:161.655170pt;}
.ls2f{letter-spacing:161.702060pt;}
.ls2e{letter-spacing:161.748950pt;}
.ls11{letter-spacing:167.590718pt;}
.ls30{letter-spacing:181.442752pt;}
.lsf{letter-spacing:275.111117pt;}
.ls1e{letter-spacing:757.994667pt;}
.ls32{letter-spacing:3452.544000pt;}
.lsd{letter-spacing:3479.424000pt;}
.ws5a{word-spacing:-189.708523pt;}
.ws26{word-spacing:-179.544057pt;}
.ws0{word-spacing:-50.560000pt;}
.ws21{word-spacing:-27.516160pt;}
.ws5d{word-spacing:-25.077760pt;}
.wsf{word-spacing:-21.268480pt;}
.ws2{word-spacing:-20.496000pt;}
.wsc{word-spacing:-19.200000pt;}
.wsb{word-spacing:-17.280000pt;}
.ws5c{word-spacing:-13.312000pt;}
.ws24{word-spacing:-11.953339pt;}
.ws39{word-spacing:-11.673659pt;}
.ws5f{word-spacing:-11.407467pt;}
.ws47{word-spacing:-11.228751pt;}
.wsa{word-spacing:-10.736533pt;}
.ws12{word-spacing:-10.631913pt;}
.ws8{word-spacing:-10.624000pt;}
.ws5e{word-spacing:-10.296533pt;}
.ws45{word-spacing:-10.160427pt;}
.ws5{word-spacing:-10.127360pt;}
.ws6{word-spacing:-10.112000pt;}
.ws7{word-spacing:-10.096533pt;}
.ws9{word-spacing:-10.048000pt;}
.ws60{word-spacing:-10.047467pt;}
.ws43{word-spacing:-10.019200pt;}
.ws5b{word-spacing:-9.943467pt;}
.ws4{word-spacing:-9.354667pt;}
.ws1{word-spacing:-9.333333pt;}
.ws3{word-spacing:-9.301333pt;}
.ws44{word-spacing:-9.205333pt;}
.wse{word-spacing:-8.778667pt;}
.ws11{word-spacing:-8.576000pt;}
.ws10{word-spacing:-8.384533pt;}
.wsd{word-spacing:0.000000pt;}
.ws4a{word-spacing:36.243161pt;}
.ws46{word-spacing:69.543253pt;}
.ws2e{word-spacing:74.766683pt;}
.ws2d{word-spacing:74.876581pt;}
.ws34{word-spacing:74.929881pt;}
.ws23{word-spacing:88.065998pt;}
.ws3d{word-spacing:92.282465pt;}
.ws3e{word-spacing:92.336128pt;}
.ws41{word-spacing:92.443455pt;}
.ws3b{word-spacing:105.324271pt;}
.ws36{word-spacing:110.976450pt;}
.ws33{word-spacing:111.031399pt;}
.ws35{word-spacing:111.033047pt;}
.ws38{word-spacing:111.142946pt;}
.ws31{word-spacing:111.196246pt;}
.ws1c{word-spacing:119.382066pt;}
.ws3c{word-spacing:127.861273pt;}
.ws3f{word-spacing:127.914936pt;}
.ws51{word-spacing:131.493643pt;}
.ws4c{word-spacing:131.495518pt;}
.ws37{word-spacing:132.503834pt;}
.ws29{word-spacing:132.558783pt;}
.ws25{word-spacing:134.055046pt;}
.ws28{word-spacing:134.109995pt;}
.ws2f{word-spacing:134.164944pt;}
.ws32{word-spacing:134.219893pt;}
.ws13{word-spacing:137.443636pt;}
.ws14{word-spacing:142.843290pt;}
.ws42{word-spacing:143.960281pt;}
.ws1f{word-spacing:145.775760pt;}
.ws17{word-spacing:148.708230pt;}
.ws15{word-spacing:150.169088pt;}
.ws19{word-spacing:150.178985pt;}
.ws49{word-spacing:150.861994pt;}
.ws57{word-spacing:151.093665pt;}
.ws58{word-spacing:151.140555pt;}
.ws54{word-spacing:151.187445pt;}
.ws53{word-spacing:151.189321pt;}
.ws16{word-spacing:151.639233pt;}
.ws1e{word-spacing:151.640699pt;}
.ws56{word-spacing:153.389400pt;}
.ws4f{word-spacing:153.483180pt;}
.ws30{word-spacing:155.637379pt;}
.ws2a{word-spacing:157.298489pt;}
.ws27{word-spacing:157.300137pt;}
.ws18{word-spacing:163.369112pt;}
.ws20{word-spacing:163.370578pt;}
.ws50{word-spacing:170.834358pt;}
.ws4e{word-spacing:170.881248pt;}
.ws1d{word-spacing:172.166521pt;}
.ws4d{word-spacing:173.176982pt;}
.ws2b{word-spacing:180.377084pt;}
.ws1a{word-spacing:192.840433pt;}
.ws3a{word-spacing:225.727008pt;}
.ws22{word-spacing:276.026462pt;}
.ws59{word-spacing:405.312520pt;}
.ws48{word-spacing:414.137829pt;}
.ws1b{word-spacing:447.817824pt;}
.ws40{word-spacing:472.377494pt;}
.ws55{word-spacing:475.518112pt;}
.ws2c{word-spacing:516.829080pt;}
.ws4b{word-spacing:523.337477pt;}
.ws52{word-spacing:531.293774pt;}
._38{margin-left:-46.267090pt;}
._89{margin-left:-20.489838pt;}
._3b{margin-left:-5.737752pt;}
._5{margin-left:-4.276316pt;}
._3{margin-left:-3.202560pt;}
._1{margin-left:-2.298240pt;}
._0{margin-left:-1.213440pt;}
._2{width:0.987307pt;}
._4{width:2.680683pt;}
._7b{width:3.587276pt;}
._35{width:19.997408pt;}
._54{width:22.885785pt;}
._6c{width:36.310764pt;}
._66{width:58.261026pt;}
._6a{width:59.180315pt;}
._52{width:62.017066pt;}
._64{width:79.118885pt;}
._59{width:80.230586pt;}
._3e{width:85.237109pt;}
._4d{width:86.126418pt;}
._51{width:91.706610pt;}
._8c{width:95.006458pt;}
._19{width:102.260758pt;}
._56{width:103.210763pt;}
._32{width:105.095479pt;}
._31{width:107.197629pt;}
._6f{width:111.689807pt;}
._78{width:112.793582pt;}
._67{width:114.161360pt;}
._69{width:120.692984pt;}
._24{width:121.800667pt;}
._e{width:122.773353pt;}
._1b{width:125.705823pt;}
._68{width:126.651724pt;}
._1a{width:128.604111pt;}
._4e{width:131.126871pt;}
._2c{width:132.098927pt;}
._61{width:137.712366pt;}
._4c{width:138.601876pt;}
._7a{width:140.765673pt;}
._40{width:144.286721pt;}
._45{width:145.233603pt;}
._47{width:146.179570pt;}
._6d{width:148.086530pt;}
._2f{width:149.385232pt;}
._6{width:150.364911pt;}
._1c{width:152.195800pt;}
._8{width:153.297381pt;}
._b{width:154.547843pt;}
._7{width:156.229851pt;}
._10{width:158.602138pt;}
._1d{width:160.036116pt;}
._f{width:161.042084pt;}
._28{width:162.163909pt;}
._60{width:166.118800pt;}
._39{width:167.706221pt;}
._3a{width:168.849366pt;}
._13{width:170.155764pt;}
._14{width:173.264487pt;}
._3d{width:174.614522pt;}
._37{width:175.565472pt;}
._5c{width:176.601638pt;}
._17{width:179.129427pt;}
._81{width:180.202043pt;}
._55{width:181.104001pt;}
._77{width:182.055839pt;}
._6e{width:183.548575pt;}
._11{width:186.428344pt;}
._15{width:187.547325pt;}
._a{width:189.112898pt;}
._49{width:190.869959pt;}
._72{width:195.163231pt;}
._9{width:197.284427pt;}
._33{width:201.928723pt;}
._2b{width:205.406374pt;}
._18{width:208.074614pt;}
._57{width:212.140210pt;}
._5d{width:213.312156pt;}
._43{width:218.153292pt;}
._65{width:220.793596pt;}
._1e{width:222.575074pt;}
._23{width:228.735210pt;}
._25{width:231.746248pt;}
._6b{width:235.517467pt;}
._71{width:238.504863pt;}
._2d{width:241.314053pt;}
._d{width:243.268225pt;}
._5b{width:244.570908pt;}
._42{width:247.341126pt;}
._c{width:250.215506pt;}
._12{width:254.706503pt;}
._2a{width:255.651581pt;}
._29{width:258.050796pt;}
._27{width:260.884937pt;}
._5f{width:263.912212pt;}
._44{width:273.815828pt;}
._22{width:275.233792pt;}
._20{width:276.341410pt;}
._16{width:278.668533pt;}
._5e{width:280.083118pt;}
._36{width:286.845546pt;}
._46{width:293.697950pt;}
._85{width:294.647351pt;}
._58{width:299.474911pt;}
._4b{width:303.370007pt;}
._4a{width:306.697664pt;}
._73{width:312.882815pt;}
._84{width:323.727917pt;}
._1f{width:325.500370pt;}
._3c{width:326.706941pt;}
._74{width:328.797906pt;}
._21{width:342.675520pt;}
._7e{width:344.068212pt;}
._30{width:346.690016pt;}
._2e{width:351.867860pt;}
._70{width:352.870793pt;}
._8b{width:354.056790pt;}
._63{width:360.522499pt;}
._5a{width:369.994070pt;}
._62{width:380.676709pt;}
._50{width:388.629315pt;}
._41{width:398.788710pt;}
._3f{width:403.120668pt;}
._4f{width:409.751030pt;}
._88{width:419.351810pt;}
._26{width:422.230812pt;}
._7d{width:425.429874pt;}
._80{width:447.876941pt;}
._75{width:449.179881pt;}
._48{width:452.612199pt;}
._7c{width:459.316348pt;}
._76{width:469.963658pt;}
._7f{width:503.951884pt;}
._82{width:509.207942pt;}
._79{width:514.511277pt;}
._87{width:526.251358pt;}
._86{width:554.206482pt;}
._83{width:562.332644pt;}
._34{width:629.293673pt;}
._8a{width:632.943657pt;}
._53{width:691.125570pt;}
._8d{width:757.994667pt;}
.fsc{font-size:36.574204pt;}
.fsa{font-size:37.120000pt;}
.fs6{font-size:38.244293pt;}
.fsb{font-size:40.391189pt;}
.fs8{font-size:41.991579pt;}
.fs1{font-size:42.880000pt;}
.fs7{font-size:42.997622pt;}
.fs0{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fsd{font-size:58.880000pt;}
.fs9{font-size:66.560000pt;}
.fs2{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs3{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:3.219802pt;}
.y16f{bottom:3.516680pt;}
.y14d{bottom:3.516750pt;}
.y15f{bottom:3.540195pt;}
.y16a{bottom:3.546057pt;}
.y150{bottom:3.551918pt;}
.y6{bottom:3.673333pt;}
.y6c{bottom:4.121178pt;}
.y7a{bottom:4.148652pt;}
.y84{bottom:4.155466pt;}
.y7c{bottom:4.155521pt;}
.y78{bottom:4.162390pt;}
.y95{bottom:4.829702pt;}
.ya3{bottom:4.832386pt;}
.yab{bottom:4.861900pt;}
.yad{bottom:4.863229pt;}
.ya7{bottom:4.863242pt;}
.y154{bottom:4.923451pt;}
.y152{bottom:4.946896pt;}
.y158{bottom:4.958618pt;}
.y64{bottom:5.124857pt;}
.y4e{bottom:5.156259pt;}
.y4a{bottom:5.168478pt;}
.y118{bottom:5.419904pt;}
.y91{bottom:5.634653pt;}
.y12e{bottom:6.226418pt;}
.y14b{bottom:7.736851pt;}
.y6a{bottom:8.242356pt;}
.y111{bottom:17.440000pt;}
.y49{bottom:17.631474pt;}
.y117{bottom:18.608337pt;}
.y63{bottom:22.749856pt;}
.y12d{bottom:25.615995pt;}
.ya{bottom:25.632000pt;}
.y45{bottom:26.112000pt;}
.y48{bottom:30.118908pt;}
.y119{bottom:31.770961pt;}
.y5{bottom:35.513333pt;}
.y43{bottom:37.786667pt;}
.y9{bottom:38.912000pt;}
.y62{bottom:40.375221pt;}
.y44{bottom:41.472000pt;}
.y4c{bottom:42.618561pt;}
.y12c{bottom:44.230784pt;}
.y4{bottom:51.513333pt;}
.y1{bottom:53.478667pt;}
.y4b{bottom:55.081557pt;}
.y86{bottom:57.152000pt;}
.y61{bottom:58.000586pt;}
.y242{bottom:60.032000pt;}
.y12b{bottom:62.845573pt;}
.y42{bottom:64.666667pt;}
.yd5{bottom:65.346667pt;}
.yfd{bottom:69.146667pt;}
.y85{bottom:69.632000pt;}
.y67{bottom:69.690355pt;}
.y83{bottom:70.514593pt;}
.y3f{bottom:72.192000pt;}
.ye9{bottom:72.706667pt;}
.yd3{bottom:73.152000pt;}
.y2a{bottom:74.106667pt;}
.y3{bottom:75.353333pt;}
.y60{bottom:75.625951pt;}
.y241{bottom:76.032000pt;}
.y214{bottom:77.472000pt;}
.y12a{bottom:81.460362pt;}
.yd6{bottom:83.746667pt;}
.y1af{bottom:85.952000pt;}
.yfe{bottom:87.520000pt;}
.y82{bottom:87.858515pt;}
.yd2{bottom:89.152000pt;}
.y29{bottom:89.946667pt;}
.yea{bottom:91.106667pt;}
.y2{bottom:91.348000pt;}
.y41{bottom:91.386667pt;}
.y1e0{bottom:91.552000pt;}
.y240{bottom:91.872000pt;}
.y143{bottom:92.512000pt;}
.y5f{bottom:93.251317pt;}
.y213{bottom:93.472000pt;}
.y129{bottom:100.075152pt;}
.y1ae{bottom:101.952000pt;}
.yd7{bottom:102.146667pt;}
.yd1{bottom:105.152000pt;}
.y81{bottom:105.201805pt;}
.yff{bottom:105.920000pt;}
.y28{bottom:105.946667pt;}
.y1df{bottom:107.552000pt;}
.y142{bottom:108.512000pt;}
.y212{bottom:109.472000pt;}
.yeb{bottom:109.506667pt;}
.y5e{bottom:110.876682pt;}
.y23f{bottom:115.712000pt;}
.y1ad{bottom:117.952000pt;}
.y128{bottom:118.689941pt;}
.yd8{bottom:120.546667pt;}
.yd0{bottom:121.152000pt;}
.y27{bottom:121.946667pt;}
.y80{bottom:122.545095pt;}
.y100{bottom:124.320000pt;}
.y141{bottom:124.512000pt;}
.yec{bottom:127.906667pt;}
.y5d{bottom:128.503269pt;}
.y1de{bottom:131.552000pt;}
.y23e{bottom:131.712000pt;}
.y211{bottom:133.466667pt;}
.y1ac{bottom:133.946667pt;}
.ycf{bottom:137.146667pt;}
.y127{bottom:137.309892pt;}
.yd9{bottom:138.946667pt;}
.y7f{bottom:139.888385pt;}
.y140{bottom:140.506667pt;}
.y17e{bottom:140.986667pt;}
.y101{bottom:142.720000pt;}
.y26{bottom:145.946667pt;}
.y5c{bottom:146.098087pt;}
.yed{bottom:146.306667pt;}
.ybb{bottom:147.226667pt;}
.y1dd{bottom:147.546667pt;}
.y23d{bottom:147.706667pt;}
.y210{bottom:149.466667pt;}
.yce{bottom:153.146667pt;}
.y126{bottom:155.918229pt;}
.y7e{bottom:157.231675pt;}
.yda{bottom:157.346667pt;}
.y1ab{bottom:157.946667pt;}
.y102{bottom:161.120000pt;}
.y25{bottom:161.946667pt;}
.yba{bottom:163.706667pt;}
.y5b{bottom:163.717343pt;}
.y13f{bottom:164.506667pt;}
.yee{bottom:164.706667pt;}
.y20f{bottom:165.466667pt;}
.y17d{bottom:168.826667pt;}
.y23c{bottom:171.706667pt;}
.y1dc{bottom:172.026667pt;}
.y1aa{bottom:173.946667pt;}
.y125{bottom:174.539470pt;}
.y7d{bottom:174.574965pt;}
.ydb{bottom:175.746667pt;}
.ycd{bottom:176.026667pt;}
.y24{bottom:177.946667pt;}
.y103{bottom:179.520000pt;}
.yb9{bottom:179.706667pt;}
.y13e{bottom:180.506667pt;}
.y5a{bottom:181.348817pt;}
.y20e{bottom:181.466667pt;}
.yef{bottom:183.106667pt;}
.y17c{bottom:184.826667pt;}
.y23b{bottom:187.706667pt;}
.y7b{bottom:191.918255pt;}
.y124{bottom:193.147807pt;}
.y23{bottom:193.946667pt;}
.ydc{bottom:194.146667pt;}
.y13d{bottom:196.506667pt;}
.y104{bottom:197.920000pt;}
.y1a9{bottom:197.946667pt;}
.y59{bottom:198.968073pt;}
.y17b{bottom:200.826667pt;}
.yf0{bottom:201.506667pt;}
.yb8{bottom:203.546667pt;}
.y23a{bottom:203.706667pt;}
.y20d{bottom:205.466667pt;}
.y79{bottom:209.264293pt;}
.yb{bottom:209.640000pt;}
.y22{bottom:209.946667pt;}
.y123{bottom:211.769048pt;}
.y13c{bottom:212.506667pt;}
.ydd{bottom:212.546667pt;}
.y1a8{bottom:213.946667pt;}
.ycc{bottom:214.426667pt;}
.y105{bottom:216.320000pt;}
.y58{bottom:216.599548pt;}
.yb7{bottom:219.546667pt;}
.y239{bottom:219.706667pt;}
.yf1{bottom:219.906667pt;}
.y20c{bottom:221.466667pt;}
.y17a{bottom:224.826667pt;}
.y77{bottom:226.600714pt;}
.y13b{bottom:228.506667pt;}
.y1db{bottom:229.946667pt;}
.y122{bottom:230.377385pt;}
.ycb{bottom:230.426667pt;}
.yde{bottom:230.946667pt;}
.y21{bottom:233.946667pt;}
.y57{bottom:234.218803pt;}
.y106{bottom:234.720000pt;}
.y238{bottom:235.706667pt;}
.y20b{bottom:237.466667pt;}
.y1a7{bottom:237.986667pt;}
.yf2{bottom:238.306667pt;}
.y179{bottom:240.866667pt;}
.yb6{bottom:243.586667pt;}
.y76{bottom:243.978347pt;}
.y1da{bottom:245.986667pt;}
.yca{bottom:246.466667pt;}
.y121{bottom:248.998627pt;}
.ydf{bottom:249.346667pt;}
.y20{bottom:249.946667pt;}
.y237{bottom:251.746667pt;}
.y56{bottom:251.850278pt;}
.y13a{bottom:252.546667pt;}
.y107{bottom:253.120000pt;}
.y20a{bottom:253.506667pt;}
.y1a6{bottom:253.986667pt;}
.yf3{bottom:256.706667pt;}
.y178{bottom:256.866667pt;}
.yb5{bottom:259.586667pt;}
.y75{bottom:261.328506pt;}
.y1d9{bottom:261.986667pt;}
.yc9{bottom:262.466667pt;}
.y1f{bottom:265.946667pt;}
.y120{bottom:267.606964pt;}
.ye0{bottom:267.746667pt;}
.y139{bottom:268.546667pt;}
.y55{bottom:269.469534pt;}
.y209{bottom:269.506667pt;}
.y1a5{bottom:269.986667pt;}
.y108{bottom:271.520000pt;}
.y177{bottom:272.866667pt;}
.yf4{bottom:275.106667pt;}
.yb4{bottom:275.586667pt;}
.y236{bottom:275.746667pt;}
.y1d8{bottom:277.986667pt;}
.y74{bottom:278.664927pt;}
.y138{bottom:284.546667pt;}
.ye1{bottom:286.146667pt;}
.y11f{bottom:286.228205pt;}
.yc8{bottom:286.466667pt;}
.y54{bottom:287.101008pt;}
.y109{bottom:289.920000pt;}
.y1e{bottom:289.973333pt;}
.yb3{bottom:291.586667pt;}
.y235{bottom:291.746667pt;}
.yf5{bottom:293.506667pt;}
.y1a4{bottom:293.986667pt;}
.y73{bottom:296.015086pt;}
.y176{bottom:296.866667pt;}
.y137{bottom:300.546667pt;}
.yc7{bottom:302.466667pt;}
.ye2{bottom:304.546667pt;}
.y53{bottom:304.720264pt;}
.y11e{bottom:304.836542pt;}
.y1d{bottom:305.973333pt;}
.yb2{bottom:307.586667pt;}
.y234{bottom:307.746667pt;}
.y10a{bottom:308.320000pt;}
.y208{bottom:309.506667pt;}
.y1a3{bottom:309.986667pt;}
.yf6{bottom:311.906667pt;}
.y175{bottom:312.866667pt;}
.y72{bottom:313.351507pt;}
.y136{bottom:316.546667pt;}
.yc6{bottom:318.466667pt;}
.y1c{bottom:321.973333pt;}
.y52{bottom:322.351738pt;}
.ye3{bottom:322.946667pt;}
.y11d{bottom:323.457783pt;}
.yb1{bottom:323.586667pt;}
.y233{bottom:323.746667pt;}
.y207{bottom:325.506667pt;}
.y10b{bottom:326.720000pt;}
.y1d7{bottom:328.386667pt;}
.yf7{bottom:330.306667pt;}
.y71{bottom:330.701666pt;}
.y1a2{bottom:333.986667pt;}
.yc5{bottom:334.466667pt;}
.y174{bottom:336.866667pt;}
.y135{bottom:339.426667pt;}
.y232{bottom:339.746667pt;}
.y51{bottom:339.970994pt;}
.ye4{bottom:341.346667pt;}
.y206{bottom:341.506667pt;}
.y11c{bottom:342.066120pt;}
.y1d6{bottom:344.386667pt;}
.y10c{bottom:345.120000pt;}
.y1b{bottom:345.973333pt;}
.yb0{bottom:346.306667pt;}
.y70{bottom:348.038087pt;}
.yf8{bottom:348.706667pt;}
.y1a1{bottom:349.986667pt;}
.yc4{bottom:350.466667pt;}
.y173{bottom:352.866667pt;}
.y231{bottom:355.746667pt;}
.y205{bottom:357.506667pt;}
.y50{bottom:357.602469pt;}
.ye5{bottom:359.746667pt;}
.y1d5{bottom:360.386667pt;}
.y11b{bottom:360.687362pt;}
.y1a{bottom:361.973333pt;}
.y10d{bottom:363.520000pt;}
.y6f{bottom:365.388246pt;}
.yc3{bottom:366.466667pt;}
.yf9{bottom:367.106667pt;}
.y172{bottom:368.866667pt;}
.y230{bottom:371.746667pt;}
.y1a0{bottom:373.986667pt;}
.y134{bottom:377.826667pt;}
.y19{bottom:377.973333pt;}
.ye6{bottom:378.146667pt;}
.y11a{bottom:379.295699pt;}
.y204{bottom:381.506667pt;}
.y10e{bottom:381.920000pt;}
.yc2{bottom:382.466667pt;}
.y6e{bottom:382.724667pt;}
.y1d4{bottom:384.386667pt;}
.yaf{bottom:384.866667pt;}
.yfa{bottom:385.506667pt;}
.y68{bottom:389.825592pt;}
.y171{bottom:391.746667pt;}
.y133{bottom:393.826667pt;}
.y18{bottom:393.973333pt;}
.y22f{bottom:395.906667pt;}
.y115{bottom:396.368396pt;}
.ye7{bottom:396.546667pt;}
.y203{bottom:397.506667pt;}
.y19f{bottom:397.986667pt;}
.yc1{bottom:398.466667pt;}
.y6d{bottom:400.074826pt;}
.y10f{bottom:400.320000pt;}
.y1d3{bottom:400.386667pt;}
.yfb{bottom:403.906667pt;}
.yae{bottom:405.346667pt;}
.yac{bottom:406.161692pt;}
.y132{bottom:409.826667pt;}
.y22e{bottom:411.746667pt;}
.y202{bottom:413.506667pt;}
.y19e{bottom:413.986667pt;}
.yc0{bottom:414.466667pt;}
.ye8{bottom:414.906667pt;}
.y1d2{bottom:416.386667pt;}
.y6b{bottom:417.411247pt;}
.y17{bottom:417.973333pt;}
.y110{bottom:418.720000pt;}
.yfc{bottom:422.266667pt;}
.yaa{bottom:424.709748pt;}
.y131{bottom:425.826667pt;}
.y170{bottom:426.786667pt;}
.y16e{bottom:427.521091pt;}
.y22d{bottom:427.746667pt;}
.y19d{bottom:429.986667pt;}
.y1d1{bottom:432.386667pt;}
.y16{bottom:433.973333pt;}
.y69{bottom:434.761405pt;}
.y201{bottom:437.506667pt;}
.ybf{bottom:438.466667pt;}
.y16d{bottom:442.321030pt;}
.ya9{bottom:443.257147pt;}
.y22c{bottom:443.586667pt;}
.y19c{bottom:445.986667pt;}
.y1d0{bottom:448.386667pt;}
.y130{bottom:449.826667pt;}
.y15{bottom:449.973333pt;}
.y200{bottom:453.506667pt;}
.y16c{bottom:457.120688pt;}
.ybe{bottom:458.946667pt;}
.yd4{bottom:459.200000pt;}
.y22b{bottom:459.586667pt;}
.ya8{bottom:461.804546pt;}
.y19b{bottom:461.986667pt;}
.y14{bottom:465.973333pt;}
.y1ff{bottom:469.506667pt;}
.y12f{bottom:470.466667pt;}
.y114{bottom:470.487246pt;}
.y16b{bottom:471.920347pt;}
.y1cf{bottom:472.386667pt;}
.y22a{bottom:475.586667pt;}
.y19a{bottom:477.986667pt;}
.ya6{bottom:480.351945pt;}
.y13{bottom:481.973333pt;}
.y1fe{bottom:485.506667pt;}
.y169{bottom:486.690698pt;}
.y1ce{bottom:488.386667pt;}
.y229{bottom:491.453333pt;}
.y66{bottom:492.413333pt;}
.ya5{bottom:498.932883pt;}
.y168{bottom:501.490356pt;}
.y1fd{bottom:501.533333pt;}
.y199{bottom:502.013333pt;}
.y1cd{bottom:504.413333pt;}
.y12{bottom:505.973333pt;}
.y228{bottom:507.453333pt;}
.y167{bottom:516.290014pt;}
.ya4{bottom:517.480282pt;}
.y1fc{bottom:517.533333pt;}
.y198{bottom:518.013333pt;}
.y1cc{bottom:520.413333pt;}
.y65{bottom:521.533333pt;}
.y4f{bottom:521.546667pt;}
.y11{bottom:521.973333pt;}
.y227{bottom:523.293333pt;}
.y166{bottom:531.089672pt;}
.y197{bottom:534.013333pt;}
.ya2{bottom:536.027681pt;}
.y10{bottom:538.013333pt;}
.y1fb{bottom:541.533333pt;}
.y1cb{bottom:544.413333pt;}
.y165{bottom:545.890503pt;}
.y226{bottom:547.133333pt;}
.y196{bottom:550.013333pt;}
.yf{bottom:554.013333pt;}
.ya1{bottom:554.571055pt;}
.y1fa{bottom:557.533333pt;}
.y1ca{bottom:560.413333pt;}
.y164{bottom:560.660854pt;}
.y225{bottom:563.133333pt;}
.y195{bottom:566.013333pt;}
.ye{bottom:570.013333pt;}
.ya0{bottom:573.125161pt;}
.y1f9{bottom:573.533333pt;}
.y163{bottom:575.454651pt;}
.y1c9{bottom:576.413333pt;}
.y3e{bottom:578.493333pt;}
.y224{bottom:579.133333pt;}
.y194{bottom:582.013333pt;}
.yd{bottom:586.013333pt;}
.y1f8{bottom:589.533333pt;}
.y162{bottom:590.260171pt;}
.y9f{bottom:591.665852pt;}
.y1c8{bottom:592.413333pt;}
.y3d{bottom:595.133333pt;}
.y223{bottom:603.133333pt;}
.y161{bottom:605.053967pt;}
.y193{bottom:606.013333pt;}
.y25a{bottom:607.773333pt;}
.yc{bottom:608.093333pt;}
.y9e{bottom:610.219959pt;}
.y1f7{bottom:613.533333pt;}
.y1c7{bottom:617.053333pt;}
.y222{bottom:619.133333pt;}
.y160{bottom:619.859487pt;}
.y192{bottom:622.013333pt;}
.y259{bottom:624.413333pt;}
.y3c{bottom:627.613333pt;}
.y9d{bottom:628.760650pt;}
.y15e{bottom:634.629838pt;}
.y1f6{bottom:637.533333pt;}
.y258{bottom:641.053333pt;}
.y1c6{bottom:642.973333pt;}
.y221{bottom:643.133333pt;}
.y3b{bottom:643.613333pt;}
.y191{bottom:646.013333pt;}
.y9c{bottom:647.314756pt;}
.y15d{bottom:649.423635pt;}
.y1f5{bottom:653.533333pt;}
.y257{bottom:656.893333pt;}
.y1c5{bottom:658.973333pt;}
.y220{bottom:659.133333pt;}
.y3a{bottom:659.613333pt;}
.y190{bottom:662.013333pt;}
.y15c{bottom:664.229154pt;}
.y9b{bottom:665.855447pt;}
.y1f4{bottom:669.533333pt;}
.y256{bottom:672.893333pt;}
.y21f{bottom:675.133333pt;}
.y39{bottom:675.613333pt;}
.y15b{bottom:679.022951pt;}
.y1c4{bottom:682.973333pt;}
.y9a{bottom:684.409554pt;}
.y1f3{bottom:685.533333pt;}
.y18f{bottom:686.013333pt;}
.y255{bottom:688.733333pt;}
.y21e{bottom:691.133333pt;}
.y38{bottom:691.613333pt;}
.y15a{bottom:693.828471pt;}
.y1c3{bottom:698.973333pt;}
.y1f2{bottom:701.533333pt;}
.y18e{bottom:702.013333pt;}
.y99{bottom:702.950244pt;}
.y21d{bottom:707.133333pt;}
.y159{bottom:708.598822pt;}
.y254{bottom:712.573333pt;}
.y37{bottom:715.613333pt;}
.y1f1{bottom:717.533333pt;}
.y98{bottom:721.504351pt;}
.y1c2{bottom:722.973333pt;}
.y21c{bottom:723.133333pt;}
.y157{bottom:723.392619pt;}
.y18d{bottom:726.013333pt;}
.y253{bottom:728.573333pt;}
.y36{bottom:731.613333pt;}
.y1f0{bottom:733.533333pt;}
.y156{bottom:738.198138pt;}
.y1c1{bottom:738.973333pt;}
.y21b{bottom:739.133333pt;}
.y97{bottom:740.045042pt;}
.y18c{bottom:742.013333pt;}
.y252{bottom:744.613333pt;}
.y35{bottom:747.653333pt;}
.y1b5{bottom:747.973333pt;}
.y1ef{bottom:749.573333pt;}
.y155{bottom:752.991935pt;}
.y1c0{bottom:755.013333pt;}
.y96{bottom:758.599149pt;}
.y251{bottom:760.613333pt;}
.y21a{bottom:763.173333pt;}
.y34{bottom:763.653333pt;}
.y1ee{bottom:765.573333pt;}
.y18b{bottom:766.053333pt;}
.y153{bottom:767.797454pt;}
.y1b4{bottom:771.013333pt;}
.y250{bottom:776.613333pt;}
.y94{bottom:777.139839pt;}
.y18a{bottom:782.053333pt;}
.y151{bottom:782.567806pt;}
.y33{bottom:787.653333pt;}
.y1ed{bottom:789.573333pt;}
.y24f{bottom:792.613333pt;}
.y1bf{bottom:795.013333pt;}
.y92{bottom:795.693946pt;}
.y14f{bottom:797.361603pt;}
.y189{bottom:798.053333pt;}
.y32{bottom:803.653333pt;}
.y1ec{bottom:805.573333pt;}
.y24e{bottom:808.613333pt;}
.y90{bottom:811.014835pt;}
.y14e{bottom:812.167122pt;}
.y219{bottom:813.573333pt;}
.y188{bottom:814.053333pt;}
.y1be{bottom:819.013333pt;}
.y31{bottom:819.653333pt;}
.y1eb{bottom:821.573333pt;}
.y24d{bottom:824.613333pt;}
.y14c{bottom:826.960919pt;}
.y218{bottom:829.573333pt;}
.y187{bottom:830.053333pt;}
.y1bd{bottom:835.013333pt;}
.y30{bottom:835.653333pt;}
.y1ea{bottom:837.573333pt;}
.y1b3{bottom:838.053333pt;}
.y24c{bottom:840.773333pt;}
.y14a{bottom:841.766438pt;}
.y217{bottom:845.573333pt;}
.y186{bottom:846.053333pt;}
.y8f{bottom:847.493333pt;}
.y1bc{bottom:851.013333pt;}
.y2f{bottom:851.653333pt;}
.y1e9{bottom:853.573333pt;}
.y1b2{bottom:854.053333pt;}
.y24b{bottom:856.613333pt;}
.y216{bottom:861.573333pt;}
.y116{bottom:862.984282pt;}
.y1bb{bottom:867.013333pt;}
.y2e{bottom:867.653333pt;}
.y1e8{bottom:869.573333pt;}
.y185{bottom:870.053333pt;}
.y24a{bottom:872.613333pt;}
.y1b1{bottom:876.933333pt;}
.y215{bottom:877.573333pt;}
.y8e{bottom:879.973333pt;}
.y1ba{bottom:883.013333pt;}
.y149{bottom:884.773333pt;}
.y1e7{bottom:885.573333pt;}
.y184{bottom:886.053333pt;}
.y249{bottom:888.453333pt;}
.y4d{bottom:893.078367pt;}
.y8d{bottom:895.973333pt;}
.y1b9{bottom:899.013333pt;}
.y148{bottom:901.413333pt;}
.y2d{bottom:901.733333pt;}
.y183{bottom:902.053333pt;}
.y1e6{bottom:909.573333pt;}
.y47{bottom:910.697622pt;}
.y8c{bottom:911.973333pt;}
.y248{bottom:912.293333pt;}
.y182{bottom:918.053333pt;}
.y1b8{bottom:923.493333pt;}
.y1e5{bottom:925.573333pt;}
.y113{bottom:927.493333pt;}
.y8b{bottom:927.973333pt;}
.y2c{bottom:929.733333pt;}
.y181{bottom:934.053333pt;}
.y147{bottom:934.213333pt;}
.y247{bottom:936.293333pt;}
.y1e4{bottom:941.573333pt;}
.y1b0{bottom:943.973333pt;}
.y1b7{bottom:949.573333pt;}
.y180{bottom:950.053333pt;}
.ybd{bottom:950.693333pt;}
.y8a{bottom:951.973333pt;}
.y246{bottom:952.453333pt;}
.y1e3{bottom:957.573333pt;}
.y2b{bottom:957.733333pt;}
.y146{bottom:958.693333pt;}
.y112{bottom:959.973333pt;}
.y89{bottom:967.973333pt;}
.y245{bottom:968.293333pt;}
.y17f{bottom:972.933333pt;}
.y1e2{bottom:973.573333pt;}
.y145{bottom:974.693333pt;}
.y40{bottom:981.253333pt;}
.ybc{bottom:982.853333pt;}
.y88{bottom:983.973333pt;}
.y244{bottom:984.293333pt;}
.y1b6{bottom:990.053333pt;}
.y144{bottom:997.600000pt;}
.y1e1{bottom:998.080000pt;}
.y46{bottom:999.520000pt;}
.y87{bottom:1000.000000pt;}
.y243{bottom:1000.160000pt;}
.y8{bottom:1060.960000pt;}
.y7{bottom:1074.400000pt;}
.h27{height:14.067002pt;}
.h25{height:14.096308pt;}
.h19{height:14.522647pt;}
.h17{height:16.132548pt;}
.h16{height:16.484711pt;}
.h15{height:16.519054pt;}
.h10{height:16.892248pt;}
.h1a{height:17.742448pt;}
.h14{height:18.991761pt;}
.h23{height:22.536509pt;}
.h24{height:24.984039pt;}
.h1d{height:27.024375pt;}
.hf{height:27.842891pt;}
.h26{height:29.002201pt;}
.h21{height:29.405890pt;}
.h18{height:30.571018pt;}
.h1e{height:31.217812pt;}
.h13{height:31.303444pt;}
.h5{height:37.477120pt;}
.h1f{height:38.672812pt;}
.h3{height:43.279360pt;}
.h4{height:44.189440pt;}
.h22{height:44.198026pt;}
.ha{height:45.470720pt;}
.h29{height:50.401280pt;}
.h1b{height:56.975360pt;}
.h28{height:58.173440pt;}
.he{height:68.302108pt;}
.h7{height:72.862720pt;}
.hc{height:79.488000pt;}
.hd{height:83.904000pt;}
.h9{height:95.872000pt;}
.h8{height:97.888000pt;}
.hb{height:112.666667pt;}
.h2{height:218.580000pt;}
.h12{height:402.226955pt;}
.h20{height:436.689404pt;}
.h11{height:457.458310pt;}
.h1c{height:487.840000pt;}
.h6{height:646.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:45.892498pt;}
.w14{width:45.926021pt;}
.w12{width:46.730564pt;}
.wb{width:53.569393pt;}
.w16{width:55.580542pt;}
.w6{width:57.503498pt;}
.w15{width:57.994173pt;}
.w8{width:58.290319pt;}
.w7{width:59.077140pt;}
.w9{width:59.896745pt;}
.w5{width:60.650782pt;}
.wa{width:69.305812pt;}
.wc{width:84.288195pt;}
.w2{width:217.305333pt;}
.w3{width:250.425000pt;}
.w4{width:452.572000pt;}
.w10{width:466.400000pt;}
.w17{width:676.437214pt;}
.wf{width:684.479542pt;}
.wd{width:685.321051pt;}
.we{width:691.285358pt;}
.w11{width:707.998222pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:1.573642pt;}
.x9{left:3.147284pt;}
.x10{left:4.720926pt;}
.x15{left:6.307681pt;}
.xa{left:7.868210pt;}
.xe{left:9.481192pt;}
.x16{left:11.015493pt;}
.xc{left:12.628476pt;}
.x8{left:14.189005pt;}
.x18{left:15.749533pt;}
.x4a{left:17.306667pt;}
.x46{left:19.680000pt;}
.x51{left:22.554034pt;}
.x1c{left:23.643970pt;}
.x52{left:26.576751pt;}
.x14{left:27.538733pt;}
.x4d{left:28.573333pt;}
.x1b{left:34.659463pt;}
.x1{left:35.681333pt;}
.x2{left:37.760000pt;}
.x4c{left:38.653333pt;}
.x49{left:41.600000pt;}
.x1d{left:45.000154pt;}
.x45{left:51.680000pt;}
.x6{left:53.760000pt;}
.x3{left:61.758333pt;}
.x44{left:64.733333pt;}
.x47{left:70.106667pt;}
.x4e{left:75.386667pt;}
.x48{left:84.320000pt;}
.x4b{left:112.186667pt;}
.x1e{left:157.560896pt;}
.x7{left:161.580792pt;}
.x4f{left:168.386667pt;}
.x50{left:169.856200pt;}
.x35{left:216.413333pt;}
.x53{left:217.391308pt;}
.xb{left:223.018395pt;}
.x36{left:239.013333pt;}
.x37{left:261.573333pt;}
.x54{left:264.121872pt;}
.x22{left:272.350947pt;}
.xf{left:281.308714pt;}
.x20{left:282.338942pt;}
.x38{left:284.160000pt;}
.x4{left:289.986667pt;}
.x28{left:293.853333pt;}
.x26{left:300.320000pt;}
.x39{left:303.520000pt;}
.x3a{left:306.746667pt;}
.x27{left:309.986667pt;}
.x3b{left:313.213333pt;}
.x30{left:316.453333pt;}
.x29{left:319.680000pt;}
.x2c{left:322.880000pt;}
.x3c{left:326.106667pt;}
.x2d{left:332.573333pt;}
.x2a{left:335.813333pt;}
.x11{left:341.172675pt;}
.x2b{left:342.240000pt;}
.x2e{left:345.466667pt;}
.x3d{left:348.706667pt;}
.x31{left:355.173333pt;}
.x3e{left:358.400000pt;}
.x32{left:361.600000pt;}
.x2f{left:364.826667pt;}
.x3f{left:371.293333pt;}
.x24{left:376.546667pt;}
.x40{left:380.960000pt;}
.x33{left:397.120000pt;}
.x12{left:400.249815pt;}
.x55{left:404.246520pt;}
.x34{left:410.013333pt;}
.x41{left:413.253333pt;}
.x42{left:426.146667pt;}
.x43{left:448.733333pt;}
.x56{left:450.977085pt;}
.x13{left:460.926824pt;}
.x57{left:497.667422pt;}
.x17{left:531.019457pt;}
.x58{left:544.397986pt;}
.x19{left:585.375672pt;}
.x59{left:591.141960pt;}
.x5a{left:637.832297pt;}
.x1a{left:645.239632pt;}
.x5b{left:696.631013pt;}
.x5{left:728.613333pt;}
.x1f{left:730.373333pt;}
.x23{left:739.013333pt;}
.x21{left:745.893333pt;}
.x5c{left:753.093333pt;}
.x25{left:756.453333pt;}
}




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