
    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_7fcc5b4dd0305902e52431c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.256000;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_bea678a1f26915a98fa66e2a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_642ceec4af57f6ddeb2c8d28.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_46068500b56077f7134a64d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.207031;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_e2b5b90ec9daf66aff9fa34e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.237029;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_cd07f939d74080544b2d1d47.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.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:ff7;src:url('chunks/assets/font_c71520c049a6776d69cf6f59.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.765625;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_4d1f83605e29f87c28c87f37.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765625;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;}
.ma{transform:matrix(0.181044,-0.181044,0.176777,0.176777,0,0);-ms-transform:matrix(0.181044,-0.181044,0.176777,0.176777,0,0);-webkit-transform:matrix(0.181044,-0.181044,0.176777,0.176777,0,0);}
.me{transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250139,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.256018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256018,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.256034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256034,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.256065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256065,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.256067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256067,0.000000,0.000000,0.250000,0,0);}
.vb{vertical-align:-17.999993px;}
.vf{vertical-align:-15.119951px;}
.v1{vertical-align:-7.919997px;}
.v3{vertical-align:-5.759999px;}
.v2{vertical-align:-4.319998px;}
.v5{vertical-align:-2.879999px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:1.440000px;}
.va{vertical-align:7.200084px;}
.v8{vertical-align:36.000115px;}
.ve{vertical-align:37.440071px;}
.v7{vertical-align:42.480069px;}
.vc{vertical-align:48.239947px;}
.v6{vertical-align:64.079974px;}
.v9{vertical-align:72.000014px;}
.v4{vertical-align:96.480321px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.007852px;}
.ls17{letter-spacing:0.015783px;}
.ls10{letter-spacing:0.043893px;}
.ls7{letter-spacing:0.068897px;}
.lsb{letter-spacing:0.108288px;}
.ls11{letter-spacing:0.140241px;}
.ls1c{letter-spacing:0.189504px;}
.ls5{letter-spacing:0.305187px;}
.ls20{letter-spacing:0.310167px;}
.ls8{letter-spacing:0.657877px;}
.ls16{letter-spacing:2.487256px;}
.ls15{letter-spacing:2.500144px;}
.ls14{letter-spacing:2.815681px;}
.ls2{letter-spacing:4.045972px;}
.ls1{letter-spacing:7.871375px;}
.ls0{letter-spacing:8.208999px;}
.ls1e{letter-spacing:26.935230px;}
.ls1d{letter-spacing:26.935362px;}
.ls18{letter-spacing:29.032233px;}
.lsa{letter-spacing:40.559671px;}
.ls1f{letter-spacing:53.560462px;}
.ls4{letter-spacing:83.432127px;}
.ls13{letter-spacing:91.327733px;}
.ls6{letter-spacing:119.825124px;}
.ls12{letter-spacing:128.429446px;}
.lsd{letter-spacing:191.052615px;}
.lsf{letter-spacing:191.814403px;}
.ls1a{letter-spacing:203.066202px;}
.ls19{letter-spacing:205.223203px;}
.ls1b{letter-spacing:205.226202px;}
.lse{letter-spacing:222.306837px;}
.lsc{letter-spacing:254.324094px;}
.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;}
}
.ws7{word-spacing:-143.999942px;}
.wsa{word-spacing:-120.239952px;}
.ws16{word-spacing:-107.999957px;}
.ws0{word-spacing:-97.273401px;}
.ws1f{word-spacing:-95.759962px;}
.ws3b{word-spacing:-95.758617px;}
.wsb{word-spacing:-94.975162px;}
.ws18{word-spacing:-94.960330px;}
.ws19{word-spacing:-94.680826px;}
.ws37{word-spacing:-86.539825px;}
.ws21{word-spacing:-84.239966px;}
.ws4{word-spacing:-72.863971px;}
.ws17{word-spacing:-71.220356px;}
.ws28{word-spacing:-71.011376px;}
.ws23{word-spacing:-69.188488px;}
.ws1{word-spacing:-67.897026px;}
.ws22{word-spacing:-62.978741px;}
.ws8{word-spacing:-61.307947px;}
.ws3{word-spacing:-60.841416px;}
.ws27{word-spacing:-55.311035px;}
.wse{word-spacing:-54.647978px;}
.ws26{word-spacing:-53.999978px;}
.ws3d{word-spacing:-53.442699px;}
.ws12{word-spacing:-36.629265px;}
.ws38{word-spacing:-34.728466px;}
.ws10{word-spacing:-33.495604px;}
.wsf{word-spacing:-33.426707px;}
.ws24{word-spacing:-30.548385px;}
.wsc{word-spacing:-30.023988px;}
.wsd{word-spacing:-26.621269px;}
.ws3c{word-spacing:-25.957401px;}
.ws2{word-spacing:-23.817971px;}
.ws1a{word-spacing:-23.418711px;}
.ws5{word-spacing:-22.223583px;}
.ws39{word-spacing:-20.205496px;}
.ws1c{word-spacing:-20.015992px;}
.ws1e{word-spacing:-16.613273px;}
.ws1d{word-spacing:-15.011994px;}
.ws35{word-spacing:-14.309833px;}
.ws29{word-spacing:-12.829050px;}
.ws2a{word-spacing:-12.828681px;}
.ws30{word-spacing:-10.903482px;}
.ws2f{word-spacing:-10.887699px;}
.ws13{word-spacing:-0.305374px;}
.ws41{word-spacing:-0.221780px;}
.ws2d{word-spacing:-0.179982px;}
.ws1b{word-spacing:-0.119410px;}
.ws6{word-spacing:0.000000px;}
.ws14{word-spacing:0.497856px;}
.ws31{word-spacing:15.137035px;}
.ws9{word-spacing:35.004255px;}
.ws3a{word-spacing:38.559750px;}
.ws32{word-spacing:47.213057px;}
.ws33{word-spacing:48.045692px;}
.ws34{word-spacing:50.986937px;}
.ws20{word-spacing:67.930202px;}
.ws25{word-spacing:85.732699px;}
.ws36{word-spacing:166.037950px;}
.ws11{word-spacing:174.771023px;}
.ws2e{word-spacing:184.338575px;}
.ws40{word-spacing:244.847152px;}
.ws3e{word-spacing:269.659104px;}
.ws15{word-spacing:850.576542px;}
.ws2c{word-spacing:1069.596713px;}
.ws2b{word-spacing:1070.813821px;}
.ws3f{word-spacing:1123.816493px;}
._19{margin-left:-95.066602px;}
._28{margin-left:-93.959579px;}
._20{margin-left:-87.858130px;}
._26{margin-left:-86.311573px;}
._44{margin-left:-85.099502px;}
._3b{margin-left:-82.889480px;}
._55{margin-left:-79.566480px;}
._21{margin-left:-77.880172px;}
._88{margin-left:-76.838795px;}
._1f{margin-left:-72.746734px;}
._3d{margin-left:-71.045414px;}
._25{margin-left:-69.080283px;}
._1c{margin-left:-65.562742px;}
._58{margin-left:-64.390594px;}
._48{margin-left:-63.358157px;}
._4a{margin-left:-62.001063px;}
._4c{margin-left:-60.658015px;}
._42{margin-left:-59.261495px;}
._2b{margin-left:-58.254731px;}
._23{margin-left:-57.205466px;}
._4b{margin-left:-56.099357px;}
._3c{margin-left:-54.944860px;}
._24{margin-left:-53.317641px;}
._54{margin-left:-51.807159px;}
._2a{margin-left:-50.752708px;}
._22{margin-left:-49.000065px;}
._1d{margin-left:-47.441429px;}
._18{margin-left:-45.413694px;}
._40{margin-left:-44.381380px;}
._29{margin-left:-43.254847px;}
._1a{margin-left:-41.986351px;}
._41{margin-left:-40.925360px;}
._4d{margin-left:-39.872534px;}
._27{margin-left:-38.808979px;}
._4f{margin-left:-37.753671px;}
._3f{margin-left:-36.719284px;}
._14{margin-left:-35.524354px;}
._49{margin-left:-33.628561px;}
._1e{margin-left:-32.449396px;}
._4e{margin-left:-31.373192px;}
._2c{margin-left:-30.197302px;}
._f{margin-left:-29.127679px;}
._1b{margin-left:-27.423493px;}
._50{margin-left:-26.095152px;}
._3e{margin-left:-24.601986px;}
._13{margin-left:-22.278951px;}
._17{margin-left:-21.089692px;}
._53{margin-left:-20.045823px;}
._56{margin-left:-18.514691px;}
._15{margin-left:-17.109459px;}
._2{margin-left:-15.958413px;}
._51{margin-left:-14.445199px;}
._10{margin-left:-13.348198px;}
._8{margin-left:-9.419564px;}
._5{margin-left:-6.692064px;}
._16{margin-left:-4.195057px;}
._4{margin-left:-2.686168px;}
._0{margin-left:-1.289735px;}
._1{width:1.192644px;}
._93{width:2.196991px;}
._11{width:3.204311px;}
._c{width:4.639903px;}
._b{width:6.567548px;}
._6{width:7.639029px;}
._43{width:8.727117px;}
._a{width:10.666817px;}
._12{width:12.049771px;}
._5b{width:13.482849px;}
._e{width:14.883573px;}
._86{width:16.676568px;}
._5f{width:17.830704px;}
._3{width:19.301849px;}
._59{width:20.397932px;}
._92{width:21.573711px;}
._7{width:22.629907px;}
._45{width:24.720155px;}
._81{width:26.271166px;}
._80{width:27.367141px;}
._d{width:29.295839px;}
._38{width:30.401867px;}
._47{width:31.968472px;}
._9{width:32.974337px;}
._60{width:34.592660px;}
._5a{width:36.601193px;}
._39{width:37.702108px;}
._5e{width:39.107287px;}
._75{width:40.657370px;}
._8c{width:45.021074px;}
._8b{width:46.208831px;}
._91{width:51.064298px;}
._46{width:54.299072px;}
._8e{width:58.152777px;}
._31{width:59.333707px;}
._32{width:60.468545px;}
._6e{width:62.220379px;}
._57{width:66.403358px;}
._68{width:67.484013px;}
._69{width:68.898945px;}
._6f{width:70.756217px;}
._36{width:75.042621px;}
._35{width:76.066072px;}
._6b{width:80.211633px;}
._7b{width:83.089673px;}
._74{width:87.559814px;}
._33{width:88.677043px;}
._34{width:89.715780px;}
._37{width:91.536582px;}
._6a{width:93.220350px;}
._82{width:96.867376px;}
._73{width:97.895452px;}
._70{width:99.301610px;}
._71{width:101.151187px;}
._72{width:105.757702px;}
._7f{width:118.125692px;}
._5d{width:123.134159px;}
._2e{width:133.762482px;}
._84{width:139.238760px;}
._2f{width:141.927826px;}
._6c{width:145.337963px;}
._65{width:153.076799px;}
._7c{width:155.407643px;}
._87{width:159.715871px;}
._52{width:163.690163px;}
._30{width:175.885526px;}
._7a{width:181.824407px;}
._62{width:199.286935px;}
._85{width:201.672624px;}
._79{width:206.734981px;}
._63{width:214.087442px;}
._76{width:238.494626px;}
._7e{width:259.672027px;}
._8d{width:264.538312px;}
._77{width:271.541432px;}
._78{width:286.282931px;}
._64{width:314.362954px;}
._83{width:338.233455px;}
._2d{width:369.443597px;}
._90{width:395.567556px;}
._8a{width:490.396580px;}
._6d{width:744.417499px;}
._7d{width:746.576276px;}
._61{width:780.525600px;}
._5c{width:869.367197px;}
._89{width:885.497690px;}
._66{width:930.156519px;}
._8f{width:931.165376px;}
._67{width:952.232934px;}
._3a{width:1069.556818px;}
.fc12{color:rgb(22,22,69);}
.fc11{color:rgb(25,25,77);}
.fc14{color:rgb(0,154,154);}
.fc10{color:rgb(193,193,193);}
.fce{color:rgb(255,50,0);}
.fcd{color:rgb(63,63,0);}
.fcf{color:transparent;}
.fc0{color:rgb(50,50,154);}
.fc1{color:rgb(0,0,0);}
.fc13{color:rgb(50,154,101);}
.fc3{color:rgb(186,221,226);}
.fc2{color:rgb(255,255,255);}
.fc4{color:rgb(174,201,241);}
.fca{color:rgb(255,0,0);}
.fc5{color:rgb(45,45,139);}
.fc9{color:rgb(0,0,154);}
.fc6{color:rgb(0,16,118);}
.fcc{color:rgb(255,255,205);}
.fc8{color:rgb(0,31,95);}
.fc7{color:rgb(0,13,119);}
.fcb{color:rgb(255,255,0);}
.fsf{font-size:39.164384px;}
.fsd{font-size:46.146336px;}
.fsc{font-size:46.147662px;}
.fse{font-size:47.185181px;}
.fs11{font-size:51.474219px;}
.fs9{font-size:53.999978px;}
.fsb{font-size:55.600538px;}
.fsa{font-size:59.759976px;}
.fs10{font-size:62.015975px;}
.fs7{font-size:66.239974px;}
.fs8{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs0{font-size:107.999957px;}
.fs2{font-size:120.239952px;}
.fs6{font-size:131.759947px;}
.fs3{font-size:143.999942px;}
.fs1{font-size:192.239923px;}
.y0{bottom:0.000000px;}
.y11a{bottom:3.060215px;}
.y115{bottom:3.060221px;}
.y117{bottom:3.060222px;}
.y121{bottom:3.060226px;}
.y107{bottom:3.240108px;}
.y11c{bottom:3.240215px;}
.yfd{bottom:48.300338px;}
.y165{bottom:58.380198px;}
.y211{bottom:63.959977px;}
.ye8{bottom:66.840330px;}
.y164{bottom:70.440185px;}
.y1cd{bottom:74.220327px;}
.y71{bottom:77.460326px;}
.y1f1{bottom:80.340303px;}
.yc9{bottom:80.700255px;}
.y1b8{bottom:80.880325px;}
.y15d{bottom:84.480323px;}
.yba{bottom:85.380235px;}
.y104{bottom:87.000322px;}
.y159{bottom:87.720232px;}
.yfc{bottom:91.140321px;}
.y210{bottom:92.760025px;}
.y200{bottom:93.480320px;}
.y47{bottom:94.020215px;}
.y1ee{bottom:94.200298px;}
.y2a{bottom:96.900408px;}
.y1f0{bottom:98.340307px;}
.y173{bottom:99.594437px;}
.y1{bottom:101.760316px;}
.y158{bottom:103.740271px;}
.y39{bottom:104.279703px;}
.y148{bottom:105.720304px;}
.y1c0{bottom:110.220313px;}
.y1cc{bottom:110.220930px;}
.y1ed{bottom:112.200301px;}
.yc8{bottom:112.560312px;}
.yb9{bottom:114.360187px;}
.y1ef{bottom:116.340310px;}
.y169{bottom:117.960310px;}
.y5f{bottom:119.760309px;}
.y157{bottom:119.940264px;}
.y70{bottom:120.660309px;}
.y20f{bottom:121.740101px;}
.y83{bottom:121.740308px;}
.y25{bottom:123.000104px;}
.y147{bottom:123.720297px;}
.y29{bottom:123.900217px;}
.ye7{bottom:124.440307px;}
.y149{bottom:125.520307px;}
.y1ff{bottom:125.880307px;}
.y46{bottom:128.760253px;}
.yfb{bottom:129.300305px;}
.y1ec{bottom:130.200305px;}
.y57{bottom:130.200357px;}
.y16{bottom:131.460304px;}
.ya9{bottom:134.520292px;}
.y156{bottom:135.960303px;}
.y15e{bottom:141.360325px;}
.y146{bottom:141.720290px;}
.y1b7{bottom:144.060299px;}
.yc7{bottom:144.420299px;}
.y82{bottom:146.760199px;}
.y38{bottom:147.479814px;}
.y20e{bottom:150.540149px;}
.y109{bottom:151.080297px;}
.ya8{bottom:152.520296px;}
.y1e9{bottom:155.760273px;}
.y190{bottom:155.940241px;}
.y24{bottom:157.560114px;}
.y145{bottom:159.720293px;}
.y132{bottom:160.260293px;}
.y133{bottom:160.800293px;}
.y1eb{bottom:160.980282px;}
.yd9{bottom:163.320369px;}
.y45{bottom:163.500292px;}
.yac{bottom:168.900268px;}
.yae{bottom:169.440278px;}
.y16a{bottom:169.620222px;}
.y56{bottom:169.800150px;}
.y15{bottom:170.160289px;}
.yfa{bottom:171.960454px;}
.y5e{bottom:172.680288px;}
.ya5{bottom:173.580277px;}
.y1e8{bottom:173.760277px;}
.y18f{bottom:173.940244px;}
.y28{bottom:175.380287px;}
.y21d{bottom:175.739794px;}
.y81{bottom:177.000241px;}
.y134{bottom:177.360286px;}
.y1bf{bottom:177.720286px;}
.y192{bottom:178.980275px;}
.y1ea{bottom:178.980285px;}
.y20d{bottom:179.340197px;}
.y155{bottom:180.060195px;}
.y168{bottom:182.940284px;}
.yab{bottom:186.900271px;}
.yad{bottom:187.440282px;}
.ye6{bottom:187.980086px;}
.y1cb{bottom:189.420882px;}
.y1fe{bottom:190.139637px;}
.y37{bottom:190.499865px;}
.ya4{bottom:191.580280px;}
.y1e7{bottom:191.760280px;}
.y18e{bottom:191.940248px;}
.y23{bottom:192.300152px;}
.y1b3{bottom:192.300280px;}
.y19b{bottom:193.920279px;}
.y1d2{bottom:194.100279px;}
.yb8{bottom:195.360187px;}
.y1d3{bottom:196.080279px;}
.y154{bottom:196.260188px;}
.y191{bottom:196.980278px;}
.y15f{bottom:198.420287px;}
.yd8{bottom:198.600278px;}
.y105{bottom:202.920353px;}
.y21c{bottom:204.539841px;}
.yaa{bottom:204.900275px;}
.y6f{bottom:206.880274px;}
.y80{bottom:207.240283px;}
.yf9{bottom:207.240362px;}
.yc6{bottom:208.139887px;}
.y20c{bottom:208.320274px;}
.y55{bottom:209.400178px;}
.y18d{bottom:209.940251px;}
.y10a{bottom:210.120230px;}
.y153{bottom:212.280227px;}
.y143{bottom:213.720239px;}
.y144{bottom:213.720261px;}
.y1b2{bottom:213.720272px;}
.y99{bottom:214.800181px;}
.ye5{bottom:216.960162px;}
.y1fd{bottom:218.939684px;}
.y16b{bottom:221.280264px;}
.y93{bottom:223.080178px;}
.yb7{bottom:224.340264px;}
.y1ca{bottom:225.420724px;}
.y14{bottom:226.320266px;}
.y22{bottom:227.040191px;}
.y18c{bottom:227.940255px;}
.y18b{bottom:227.940266px;}
.y152{bottom:228.480221px;}
.y98{bottom:230.820220px;}
.ya{bottom:231.000265px;}
.y142{bottom:231.720243px;}
.y67{bottom:231.720264px;}
.yf8{bottom:232.260264px;}
.yb{bottom:232.440264px;}
.y36{bottom:233.699976px;}
.yd7{bottom:236.760262px;}
.y20b{bottom:237.120262px;}
.y7f{bottom:237.300262px;}
.y92{bottom:239.100216px;}
.yc5{bottom:239.999944px;}
.y44{bottom:242.340170px;}
.y151{bottom:244.500259px;}
.y1e5{bottom:245.220205px;}
.y1be{bottom:245.220259px;}
.ya2{bottom:245.940248px;}
.y1a6{bottom:245.940259px;}
.y97{bottom:247.020213px;}
.y167{bottom:247.380258px;}
.y1fc{bottom:247.919761px;}
.y141{bottom:249.720246px;}
.y9c{bottom:252.420211px;}
.y91{bottom:255.300210px;}
.y160{bottom:255.300289px;}
.ye4{bottom:257.460162px;}
.ya7{bottom:260.700253px;}
.y21{bottom:261.780229px;}
.y166{bottom:261.960252px;}
.y1b5{bottom:262.140252px;}
.y21b{bottom:262.319726px;}
.y1d1{bottom:263.040252px;}
.y96{bottom:263.220207px;}
.y1e4{bottom:263.220209px;}
.ya3{bottom:263.400241px;}
.ya1{bottom:263.940251px;}
.y13{bottom:265.020251px;}
.y7e{bottom:267.540250px;}
.y140{bottom:267.720250px;}
.y9b{bottom:268.620205px;}
.y10b{bottom:269.160164px;}
.yf7{bottom:270.420249px;}
.y90{bottom:271.320248px;}
.yc4{bottom:271.860002px;}
.y19a{bottom:272.040338px;}
.y1e6{bottom:272.580248px;}
.y8{bottom:272.940248px;}
.y16c{bottom:272.940305px;}
.y9{bottom:274.020247px;}
.y1c9{bottom:275.640744px;}
.y1fb{bottom:276.719809px;}
.y35{bottom:276.900086px;}
.ya6{bottom:276.900246px;}
.y1a5{bottom:278.340246px;}
.y95{bottom:279.240245px;}
.yd6{bottom:279.420323px;}
.y1e3{bottom:281.220212px;}
.y186{bottom:281.220223px;}
.y43{bottom:281.400244px;}
.y9a{bottom:284.640243px;}
.ye3{bottom:286.260210px;}
.y66{bottom:287.160154px;}
.y8f{bottom:287.520242px;}
.y54{bottom:288.420242px;}
.y18a{bottom:290.580230px;}
.y21a{bottom:291.119774px;}
.y6e{bottom:293.100240px;}
.y94{bottom:295.440239px;}
.y20{bottom:296.340238px;}
.y20a{bottom:297.600238px;}
.y189{bottom:299.220216px;}
.y185{bottom:299.220227px;}
.yf6{bottom:302.820236px;}
.yc3{bottom:303.720059px;}
.y199{bottom:304.260235px;}
.yb6{bottom:305.160235px;}
.y1fa{bottom:305.699886px;}
.y27{bottom:306.240235px;}
.y1c8{bottom:311.640585px;}
.y161{bottom:312.000233px;}
.yd5{bottom:314.700231px;}
.y65{bottom:316.140231px;}
.y5d{bottom:316.500355px;}
.y188{bottom:317.220219px;}
.y184{bottom:317.220230px;}
.y13f{bottom:318.120208px;}
.y34{bottom:319.920137px;}
.y219{bottom:320.099851px;}
.y1b4{bottom:321.180229px;}
.y7d{bottom:322.800174px;}
.y1a4{bottom:324.060227px;}
.y120{bottom:324.600000px;}
.y16d{bottom:324.600346px;}
.ye2{bottom:326.760210px;}
.y53{bottom:328.019949px;}
.y10c{bottom:328.200098px;}
.y209{bottom:329.280166px;}
.y1bd{bottom:329.640225px;}
.yc2{bottom:329.820155px;}
.y118{bottom:331.260000px;}
.y1f{bottom:332.159954px;}
.y116{bottom:333.240000px;}
.y1f9{bottom:334.499933px;}
.y187{bottom:335.220223px;}
.y123{bottom:335.400000px;}
.y11d{bottom:335.400223px;}
.y112{bottom:335.760232px;}
.y113{bottom:335.760235px;}
.y13e{bottom:336.120212px;}
.y114{bottom:337.740000px;}
.y175{bottom:340.080221px;}
.y5c{bottom:345.300402px;}
.yf3{bottom:345.660174px;}
.yf5{bottom:345.660219px;}
.y11e{bottom:346.380243px;}
.y150{bottom:348.000173px;}
.y218{bottom:348.899899px;}
.y6{bottom:348.900217px;}
.y198{bottom:349.980217px;}
.y7{bottom:350.880217px;}
.y119{bottom:351.240000px;}
.yf4{bottom:351.600216px;}
.y11b{bottom:352.140000px;}
.y122{bottom:352.500216px;}
.y11f{bottom:352.680000px;}
.yd4{bottom:352.680216px;}
.y7c{bottom:353.040216px;}
.y13d{bottom:354.120215px;}
.y111{bottom:354.840215px;}
.y1a3{bottom:356.460214px;}
.y26{bottom:357.180214px;}
.y208{bottom:358.080214px;}
.y174{bottom:359.160213px;}
.y12{bottom:359.700404px;}
.yc1{bottom:361.680212px;}
.y1c7{bottom:361.860605px;}
.y33{bottom:363.120248px;}
.y1f8{bottom:363.299981px;}
.y183{bottom:363.300199px;}
.y42{bottom:364.019882px;}
.y14f{bottom:364.200166px;}
.y6d{bottom:366.900120px;}
.ye1{bottom:367.260210px;}
.y52{bottom:367.620071px;}
.y162{bottom:369.060195px;}
.y1ba{bottom:369.420209px;}
.y222{bottom:371.400484px;}
.y17f{bottom:373.200186px;}
.y64{bottom:373.380089px;}
.y1e2{bottom:374.820207px;}
.y16e{bottom:376.074566px;}
.y217{bottom:377.879975px;}
.y1e1{bottom:378.600195px;}
.y14e{bottom:380.400160px;}
.yf2{bottom:380.760230px;}
.y8e{bottom:380.940205px;}
.y182{bottom:381.300203px;}
.y197{bottom:382.380204px;}
.y7b{bottom:383.280204px;}
.yd3{bottom:385.080203px;}
.yb5{bottom:386.160055px;}
.y207{bottom:387.060202px;}
.y10d{bottom:387.240032px;}
.y9f{bottom:387.960202px;}
.y1a2{bottom:388.860201px;}
.y1b9{bottom:391.020201px;}
.y17d{bottom:391.200190px;}
.y1f7{bottom:392.280058px;}
.yc0{bottom:393.540200px;}
.y14d{bottom:396.420198px;}
.y1e0{bottom:396.600198px;}
.y1bc{bottom:397.140198px;}
.y11{bottom:397.680297px;}
.y1c6{bottom:397.860446px;}
.y6c{bottom:399.300107px;}
.y181{bottom:399.300206px;}
.y1cf{bottom:401.100197px;}
.y63{bottom:402.180137px;}
.y8d{bottom:402.360196px;}
.y1d0{bottom:403.080196px;}
.y5b{bottom:403.080288px;}
.y9e{bottom:404.160195px;}
.yf0{bottom:405.960195px;}
.y32{bottom:406.140299px;}
.y4{bottom:406.500194px;}
.y216{bottom:406.680023px;}
.y41{bottom:407.039933px;}
.y51{bottom:407.220194px;}
.y221{bottom:407.400325px;}
.y13c{bottom:408.120161px;}
.y5{bottom:408.480194px;}
.y17c{bottom:409.200194px;}
.y1e{bottom:410.100013px;}
.yf1{bottom:411.900192px;}
.yb4{bottom:415.140132px;}
.y180{bottom:417.300210px;}
.y9d{bottom:420.360189px;}
.y1f6{bottom:421.080106px;}
.y8c{bottom:423.960187px;}
.y163{bottom:425.940197px;}
.y13b{bottom:426.120165px;}
.y17e{bottom:427.200197px;}
.y16f{bottom:427.734607px;}
.y196{bottom:427.920186px;}
.yd2{bottom:427.920263px;}
.ye0{bottom:430.800185px;}
.y62{bottom:430.980185px;}
.y6b{bottom:431.880184px;}
.y130{bottom:432.420184px;}
.y131{bottom:433.140184px;}
.y1c5{bottom:433.860288px;}
.y1a1{bottom:434.580183px;}
.y215{bottom:435.480071px;}
.y10{bottom:437.460182px;}
.y1b1{bottom:439.440181px;}
.y1df{bottom:440.160170px;}
.y7a{bottom:443.580180px;}
.yb3{bottom:443.940179px;}
.y13a{bottom:444.120169px;}
.yef{bottom:444.120179px;}
.yee{bottom:444.120269px;}
.y10e{bottom:446.279965px;}
.y50{bottom:446.640178px;}
.y1d{bottom:449.160087px;}
.y1f5{bottom:450.060182px;}
.y40{bottom:450.240044px;}
.ybf{bottom:457.259935px;}
.y1de{bottom:458.160174px;}
.y15c{bottom:459.600173px;}
.y5a{bottom:460.860173px;}
.y139{bottom:462.120172px;}
.y12e{bottom:462.660172px;}
.yd1{bottom:463.200172px;}
.y12f{bottom:463.380172px;}
.y103{bottom:463.740172px;}
.y6a{bottom:464.280171px;}
.y214{bottom:464.460148px;}
.y1c1{bottom:464.640171px;}
.y1c4{bottom:469.860129px;}
.y14c{bottom:472.380123px;}
.y195{bottom:473.460168px;}
.y79{bottom:473.820167px;}
.yed{bottom:476.340166px;}
.y1f4{bottom:478.860230px;}
.y170{bottom:479.394649px;}
.y220{bottom:479.400309px;}
.y1a0{bottom:480.120165px;}
.y17a{bottom:480.480154px;}
.y1db{bottom:486.060130px;}
.y4f{bottom:486.240163px;}
.yf{bottom:486.600162px;}
.y1b0{bottom:487.500162px;}
.y1c{bottom:488.220162px;}
.y14b{bottom:488.580117px;}
.ybe{bottom:489.119992px;}
.y206{bottom:489.659866px;}
.y61{bottom:489.660073px;}
.y30{bottom:492.360032px;}
.y31{bottom:492.360160px;}
.y12c{bottom:492.720160px;}
.y213{bottom:493.260196px;}
.y12d{bottom:493.440160px;}
.y138{bottom:494.700138px;}
.y8b{bottom:495.780159px;}
.y3c{bottom:498.120556px;}
.y179{bottom:498.480158px;}
.y1dd{bottom:499.200147px;}
.yd0{bottom:501.180157px;}
.y1da{bottom:504.060134px;}
.y78{bottom:504.060190px;}
.y14a{bottom:504.600155px;}
.y10f{bottom:505.319899px;}
.y1f3{bottom:508.380154px;}
.y1af{bottom:509.100153px;}
.y19f{bottom:512.340062px;}
.y137{bottom:512.700141px;}
.y21f{bottom:515.400151px;}
.y17b{bottom:516.480161px;}
.y1dc{bottom:517.200150px;}
.y8a{bottom:517.380150px;}
.y205{bottom:518.639943px;}
.y60{bottom:518.640150px;}
.y194{bottom:519.000149px;}
.yec{bottom:519.180149px;}
.y1c3{bottom:520.080149px;}
.ybd{bottom:521.160078px;}
.y2{bottom:521.520148px;}
.y1d9{bottom:522.060137px;}
.y12a{bottom:522.960148px;}
.ydf{bottom:523.320131px;}
.y3{bottom:523.500148px;}
.y12b{bottom:523.680148px;}
.yb2{bottom:524.939999px;}
.y4e{bottom:525.839869px;}
.y1b{bottom:527.100146px;}
.y136{bottom:530.700145px;}
.y171{bottom:531.054690px;}
.y1bb{bottom:532.140144px;}
.y77{bottom:534.120169px;}
.y2e{bottom:535.559934px;}
.y2f{bottom:535.560143px;}
.y3f{bottom:536.459905px;}
.y89{bottom:538.980141px;}
.y1d8{bottom:540.060141px;}
.y3b{bottom:541.140607px;}
.y69{bottom:541.860140px;}
.ye{bottom:542.580140px;}
.y19e{bottom:544.920139px;}
.y1ae{bottom:546.540138px;}
.y204{bottom:547.439990px;}
.ycf{bottom:547.980041px;}
.ybc{bottom:553.020136px;}
.yb1{bottom:553.920076px;}
.y128{bottom:554.100135px;}
.y129{bottom:555.180135px;}
.yeb{bottom:557.340134px;}
.y178{bottom:558.060123px;}
.y76{bottom:559.320133px;}
.y177{bottom:562.560121px;}
.yde{bottom:563.820131px;}
.y110{bottom:564.359833px;}
.y193{bottom:564.720131px;}
.y4d{bottom:565.439992px;}
.y1ad{bottom:568.140130px;}
.y15b{bottom:569.220119px;}
.y1f2{bottom:573.360128px;}
.y15a{bottom:573.720117px;}
.y203{bottom:576.420067px;}
.y68{bottom:577.680126px;}
.y2d{bottom:578.760044px;}
.y3e{bottom:579.660015px;}
.y176{bottom:580.560125px;}
.y172{bottom:582.714731px;}
.yb0{bottom:582.720124px;}
.yce{bottom:583.800123px;}
.y3a{bottom:584.340717px;}
.ybb{bottom:584.880123px;}
.y21e{bottom:587.760122px;}
.y75{bottom:589.560121px;}
.y19d{bottom:590.460121px;}
.y88{bottom:591.720120px;}
.y1d6{bottom:593.880119px;}
.y1d7{bottom:595.500119px;}
.yea{bottom:602.880116px;}
.y1a{bottom:603.780115px;}
.y127{bottom:604.500115px;}
.y108{bottom:604.680115px;}
.y4c{bottom:605.040115px;}
.y202{bottom:605.220115px;}
.y1b6{bottom:616.560110px;}
.y106{bottom:618.900000px;}
.y212{bottom:620.160109px;}
.y1c2{bottom:620.700109px;}
.y19c{bottom:622.860108px;}
.ya0{bottom:626.280106px;}
.ydd{bottom:627.360106px;}
.y201{bottom:634.200913px;}
.ye9{bottom:635.280103px;}
.y19{bottom:636.180103px;}
.y126{bottom:636.900102px;}
.y3d{bottom:657.420094px;}
.y2c{bottom:663.720092px;}
.y74{bottom:693.420080px;}
.y87{bottom:696.299988px;}
.y102{bottom:698.099930px;}
.y1a8{bottom:701.339986px;}
.y1ac{bottom:706.740213px;}
.ydc{bottom:707.819926px;}
.y1d5{bottom:707.820218px;}
.y59{bottom:709.620073px;}
.y18{bottom:711.059983px;}
.y125{bottom:712.500013px;}
.yff{bottom:719.339979px;}
.ycb{bottom:722.219980px;}
.yd{bottom:722.580068px;}
.y73{bottom:725.820067px;}
.y101{bottom:726.899978px;}
.y135{bottom:726.900066px;}
.y86{bottom:728.699976px;}
.y4b{bottom:731.400064px;}
.y1ab{bottom:731.760115px;}
.y1a7{bottom:733.920063px;}
.y1ce{bottom:735.720063px;}
.ydb{bottom:736.619974px;}
.y223{bottom:736.620062px;}
.y124{bottom:741.300060px;}
.y58{bottom:742.020060px;}
.ycd{bottom:743.460060px;}
.y17{bottom:743.640060px;}
.y1d4{bottom:743.820059px;}
.yaf{bottom:749.760057px;}
.yca{bottom:751.200057px;}
.yfe{bottom:751.920056px;}
.yc{bottom:754.980055px;}
.y100{bottom:755.880055px;}
.y1aa{bottom:756.960079px;}
.y2b{bottom:757.860054px;}
.y72{bottom:758.220054px;}
.y85{bottom:761.280052px;}
.y4a{bottom:763.800051px;}
.y48{bottom:763.980051px;}
.yda{bottom:765.600051px;}
.ycc{bottom:775.860047px;}
.y1a9{bottom:782.160044px;}
.y84{bottom:793.680040px;}
.y49{bottom:796.200039px;}
.h20{height:16.020000px;}
.h2a{height:28.440000px;}
.h29{height:28.980000px;}
.h28{height:29.880000px;}
.h3a{height:37.323658px;}
.h25{height:43.560000px;}
.h23{height:43.977458px;}
.h22{height:43.978721px;}
.h1f{height:44.191389px;}
.h24{height:44.486575px;}
.h39{height:44.778737px;}
.h2c{height:45.900000px;}
.h26{height:48.060000px;}
.h3d{height:49.054931px;}
.h27{height:50.040000px;}
.h16{height:51.245980px;}
.h36{height:51.461979px;}
.h21{height:52.764910px;}
.h18{height:56.712217px;}
.h2b{height:56.880000px;}
.h2e{height:56.951257px;}
.h3e{height:58.391258px;}
.h3c{height:58.853160px;}
.h11{height:63.126695px;}
.h33{height:64.151341px;}
.h15{height:68.327973px;}
.h41{height:68.615973px;}
.h1e{height:68.938566px;}
.h1c{height:78.366062px;}
.hd{height:79.943728px;}
.h13{height:80.280688px;}
.h14{height:80.281084px;}
.h45{height:82.687467px;}
.h3b{height:85.563605px;}
.h5{height:89.068324px;}
.ha{height:90.876204px;}
.h9{height:91.259243px;}
.h38{height:92.712246px;}
.h35{height:92.951286px;}
.h31{height:92.951372px;}
.h3f{height:94.391329px;}
.h19{height:95.806719px;}
.h1b{height:95.807216px;}
.h1a{height:95.807310px;}
.h7{height:98.399492px;}
.h3{height:99.162734px;}
.h30{height:99.431327px;}
.h1{height:102.491959px;}
.h2d{height:102.923959px;}
.h12{height:108.052691px;}
.hc{height:114.107714px;}
.h8{height:114.588674px;}
.h4{height:118.757765px;}
.h1d{height:120.298663px;}
.h2f{height:121.031232px;}
.hf{height:125.040190px;}
.h10{height:125.041299px;}
.he{height:125.567230px;}
.h37{height:128.712232px;}
.h40{height:128.951228px;}
.h32{height:128.951272px;}
.h43{height:128.951315px;}
.h34{height:128.951358px;}
.h17{height:136.655945px;}
.h6{height:144.070255px;}
.h2{height:158.541616px;}
.h42{height:182.435687px;}
.hb{height:198.972280px;}
.h0{height:892.500000px;}
.h44{height:1263.000000px;}
.w7{width:28.620000px;}
.w6{width:29.160000px;}
.w5{width:29.880000px;}
.w9{width:30.060000px;}
.w2{width:43.740000px;}
.wa{width:46.080000px;}
.w3{width:48.420000px;}
.w4{width:50.220000px;}
.w8{width:57.060000px;}
.w1{width:329.220000px;}
.wb{width:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.xa2{left:8.820749px;}
.x68{left:113.565701px;}
.x67{left:115.365727px;}
.x66{left:121.485701px;}
.xf8{left:124.185700px;}
.xc9{left:125.445700px;}
.x82{left:130.305698px;}
.x1d{left:131.925702px;}
.xff{left:134.625696px;}
.x22{left:139.485694px;}
.xbb{left:142.545693px;}
.x89{left:145.065692px;}
.x3{left:148.665691px;}
.x2{left:150.646440px;}
.x42{left:153.706439px;}
.xf9{left:155.686438px;}
.x1b{left:156.946437px;}
.xb{left:159.466436px;}
.xa{left:161.446435px;}
.x100{left:166.126434px;}
.x5{left:169.006432px;}
.x4{left:170.986432px;}
.x16{left:175.666430px;}
.x45{left:178.186429px;}
.xf7{left:179.266428px;}
.x25{left:181.427562px;}
.x84{left:184.306426px;}
.x8b{left:185.386426px;}
.x7b{left:187.366425px;}
.xd0{left:188.986424px;}
.xce{left:190.066424px;}
.x48{left:194.566422px;}
.xaf{left:196.726421px;}
.x74{left:198.706421px;}
.xae{left:200.506420px;}
.x83{left:202.304474px;}
.xb1{left:210.946416px;}
.x5c{left:212.566427px;}
.xeb{left:213.646415px;}
.x18{left:216.165287px;}
.xd5{left:217.426413px;}
.xcb{left:219.406412px;}
.x9c{left:221.926411px;}
.x7a{left:225.706108px;}
.x9d{left:228.406412px;}
.x17{left:229.666408px;}
.x9e{left:232.366406px;}
.x20{left:233.805335px;}
.x54{left:237.946405px;}
.x8c{left:239.386404px;}
.x7c{left:241.366403px;}
.xb2{left:244.066402px;}
.x53{left:247.126401px;}
.x24{left:248.386706px;}
.x9f{left:250.006400px;}
.x51{left:251.806399px;}
.x101{left:253.246399px;}
.xea{left:256.846397px;}
.x1f{left:260.805301px;}
.xec{left:264.408496px;}
.xe5{left:266.926393px;}
.x1c{left:269.266194px;}
.x1e{left:273.585248px;}
.x13{left:277.906389px;}
.x12{left:279.346388px;}
.x5f{left:283.666528px;}
.x5d{left:286.546385px;}
.xd6{left:289.426843px;}
.x46{left:291.406383px;}
.x5e{left:292.486460px;}
.x7d{left:295.367197px;}
.xc5{left:298.966343px;}
.x33{left:301.127950px;}
.xc4{left:304.546379px;}
.x85{left:307.067314px;}
.x32{left:309.407951px;}
.x21{left:310.485045px;}
.xe9{left:312.826375px;}
.x30{left:313.907100px;}
.xe6{left:318.586373px;}
.x1{left:322.906371px;}
.xa0{left:324.346382px;}
.xb3{left:329.026368px;}
.xc6{left:337.306268px;}
.xb4{left:340.726364px;}
.xe8{left:347.566361px;}
.xe7{left:350.626360px;}
.x23{left:351.705943px;}
.x31{left:354.405877px;}
.x97{left:362.326355px;}
.x92{left:363.766354px;}
.xa1{left:367.725600px;}
.xc3{left:374.206350px;}
.x3d{left:375.466114px;}
.x3b{left:377.446349px;}
.x2c{left:379.245372px;}
.x36{left:384.465859px;}
.x3c{left:395.986342px;}
.x38{left:398.866396px;}
.xee{left:408.406337px;}
.x47{left:410.386336px;}
.x64{left:413.806435px;}
.x65{left:415.246458px;}
.x63{left:417.766421px;}
.x6{left:420.286332px;}
.x39{left:422.987408px;}
.x8a{left:427.126329px;}
.x61{left:428.386406px;}
.x35{left:431.806327px;}
.x60{left:435.406326px;}
.xb7{left:437.926325px;}
.x2b{left:439.546324px;}
.x62{left:441.346400px;}
.x7{left:452.866319px;}
.xa3{left:454.845600px;}
.xca{left:456.286317px;}
.x5b{left:459.886376px;}
.x6c{left:463.486315px;}
.xbc{left:465.466314px;}
.x90{left:467.626313px;}
.xf0{left:472.846311px;}
.xef{left:474.826310px;}
.x9a{left:476.985600px;}
.x5a{left:479.686308px;}
.x8d{left:482.566307px;}
.xb8{left:483.826306px;}
.x8e{left:487.606305px;}
.x91{left:488.686305px;}
.xf{left:501.646299px;}
.xe{left:502.726299px;}
.x3e{left:506.325704px;}
.x8f{left:508.846296px;}
.xd1{left:515.866959px;}
.x9b{left:519.286292px;}
.xa4{left:522.345600px;}
.xed{left:536.386285px;}
.x93{left:547.546281px;}
.x4b{left:558.886276px;}
.x3a{left:567.887298px;}
.xa5{left:570.225600px;}
.x71{left:573.286271px;}
.x49{left:587.146265px;}
.x4a{left:592.906301px;}
.x4e{left:595.246262px;}
.x14{left:598.846260px;}
.x37{left:605.326258px;}
.x4c{left:606.406518px;}
.x2f{left:615.946254px;}
.x4d{left:623.146478px;}
.x6a{left:648.166242px;}
.x69{left:652.666239px;}
.x4f{left:653.746379px;}
.x50{left:658.426237px;}
.xa6{left:663.646259px;}
.xe1{left:672.286231px;}
.x28{left:674.266230px;}
.x6b{left:678.226252px;}
.x10{left:682.546227px;}
.xe3{left:685.606226px;}
.xde{left:688.306225px;}
.xe2{left:689.746224px;}
.x6e{left:692.446289px;}
.x2d{left:694.246222px;}
.x11{left:697.306221px;}
.xdb{left:702.166219px;}
.x102{left:707.206217px;}
.xa7{left:711.525600px;}
.x6d{left:716.206214px;}
.x103{left:722.146274px;}
.xfb{left:725.206210px;}
.xa8{left:729.525600px;}
.xb5{left:731.146208px;}
.xfc{left:732.946207px;}
.xe4{left:734.026885px;}
.xe0{left:739.246204px;}
.x27{left:740.866204px;}
.xb6{left:743.926202px;}
.xdc{left:746.806800px;}
.x26{left:747.886201px;}
.xdf{left:756.166042px;}
.x79{left:759.586131px;}
.xb9{left:784.606186px;}
.xdd{left:786.046213px;}
.x78{left:788.746185px;}
.x15{left:789.826184px;}
.xbe{left:791.086184px;}
.xa9{left:803.865600px;}
.x104{left:805.486311px;}
.xfd{left:809.446289px;}
.x99{left:813.046175px;}
.xd7{left:817.006173px;}
.xc7{left:819.166196px;}
.xbd{left:821.506258px;}
.x7e{left:823.486171px;}
.xfa{left:825.286547px;}
.x87{left:829.426168px;}
.x70{left:830.686120px;}
.xf6{left:832.126112px;}
.xd8{left:835.006166px;}
.xfe{left:840.046164px;}
.xd4{left:841.126164px;}
.x86{left:843.286840px;}
.x94{left:846.166092px;}
.xf5{left:849.586160px;}
.x80{left:851.026160px;}
.xd9{left:853.726159px;}
.x8{left:855.166158px;}
.xaa{left:857.686157px;}
.x43{left:860.206156px;}
.xd2{left:861.647886px;}
.x105{left:862.726155px;}
.xcf{left:863.986204px;}
.x6f{left:865.246154px;}
.xd3{left:866.866127px;}
.xc2{left:869.206152px;}
.xad{left:871.726151px;}
.x55{left:874.066150px;}
.xba{left:877.846149px;}
.xf4{left:879.826158px;}
.x96{left:882.346202px;}
.x29{left:883.786228px;}
.x2a{left:884.866146px;}
.xf2{left:886.306116px;}
.x9{left:887.746145px;}
.x44{left:889.366001px;}
.x7f{left:890.806195px;}
.xf1{left:892.966143px;}
.x40{left:894.046142px;}
.x34{left:895.486142px;}
.x3f{left:898.546141px;}
.x58{left:899.806140px;}
.x56{left:902.506054px;}
.x59{left:905.026360px;}
.x95{left:906.466137px;}
.x88{left:907.546275px;}
.x41{left:910.606012px;}
.xda{left:915.646845px;}
.x98{left:922.486183px;}
.x2e{left:926.626129px;}
.xab{left:928.425600px;}
.x1a{left:930.226198px;}
.x52{left:933.106127px;}
.x57{left:937.426125px;}
.x19{left:946.786121px;}
.x81{left:949.125978px;}
.xcd{left:959.206448px;}
.xc{left:967.306113px;}
.xc8{left:970.006112px;}
.xd{left:980.086108px;}
.xf3{left:1000.066100px;}
.xc1{left:1014.646094px;}
.xc0{left:1015.726094px;}
.xbf{left:1016.986093px;}
.xac{left:1022.566091px;}
.xcc{left:1028.146089px;}
.xb0{left:1032.106087px;}
.x76{left:1046.686071px;}
.x77{left:1049.566130px;}
.x75{left:1054.066078px;}
.x73{left:1067.926024px;}
.x72{left:1097.986061px;}
@media print{
.vb{vertical-align:-15.999994pt;}
.vf{vertical-align:-13.439956pt;}
.v1{vertical-align:-7.039997pt;}
.v3{vertical-align:-5.119999pt;}
.v2{vertical-align:-3.839998pt;}
.v5{vertical-align:-2.559999pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:1.280000pt;}
.va{vertical-align:6.400074pt;}
.v8{vertical-align:32.000102pt;}
.ve{vertical-align:33.280063pt;}
.v7{vertical-align:37.760062pt;}
.vc{vertical-align:42.879953pt;}
.v6{vertical-align:56.959977pt;}
.v9{vertical-align:64.000013pt;}
.v4{vertical-align:85.760286pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.006980pt;}
.ls17{letter-spacing:0.014030pt;}
.ls10{letter-spacing:0.039016pt;}
.ls7{letter-spacing:0.061242pt;}
.lsb{letter-spacing:0.096256pt;}
.ls11{letter-spacing:0.124659pt;}
.ls1c{letter-spacing:0.168448pt;}
.ls5{letter-spacing:0.271277pt;}
.ls20{letter-spacing:0.275704pt;}
.ls8{letter-spacing:0.584780pt;}
.ls16{letter-spacing:2.210894pt;}
.ls15{letter-spacing:2.222350pt;}
.ls14{letter-spacing:2.502828pt;}
.ls2{letter-spacing:3.596419pt;}
.ls1{letter-spacing:6.996778pt;}
.ls0{letter-spacing:7.296888pt;}
.ls1e{letter-spacing:23.942426pt;}
.ls1d{letter-spacing:23.942544pt;}
.ls18{letter-spacing:25.806429pt;}
.lsa{letter-spacing:36.053041pt;}
.ls1f{letter-spacing:47.609299pt;}
.ls4{letter-spacing:74.161890pt;}
.ls13{letter-spacing:81.180207pt;}
.ls6{letter-spacing:106.511221pt;}
.ls12{letter-spacing:114.159507pt;}
.lsd{letter-spacing:169.824546pt;}
.lsf{letter-spacing:170.501692pt;}
.ls1a{letter-spacing:180.503291pt;}
.ls19{letter-spacing:182.420625pt;}
.ls1b{letter-spacing:182.423290pt;}
.lse{letter-spacing:197.606078pt;}
.lsc{letter-spacing:226.065862pt;}
.ws7{word-spacing:-127.999949pt;}
.wsa{word-spacing:-106.879957pt;}
.ws16{word-spacing:-95.999962pt;}
.ws0{word-spacing:-86.465245pt;}
.ws1f{word-spacing:-85.119966pt;}
.ws3b{word-spacing:-85.118770pt;}
.wsb{word-spacing:-84.422366pt;}
.ws18{word-spacing:-84.409182pt;}
.ws19{word-spacing:-84.160734pt;}
.ws37{word-spacing:-76.924289pt;}
.ws21{word-spacing:-74.879970pt;}
.ws4{word-spacing:-64.767974pt;}
.ws17{word-spacing:-63.306983pt;}
.ws28{word-spacing:-63.121223pt;}
.ws23{word-spacing:-61.500878pt;}
.ws1{word-spacing:-60.352912pt;}
.ws22{word-spacing:-55.981103pt;}
.ws8{word-spacing:-54.495953pt;}
.ws3{word-spacing:-54.081258pt;}
.ws27{word-spacing:-49.165365pt;}
.wse{word-spacing:-48.575981pt;}
.ws26{word-spacing:-47.999981pt;}
.ws3d{word-spacing:-47.504621pt;}
.ws12{word-spacing:-32.559347pt;}
.ws38{word-spacing:-30.869748pt;}
.ws10{word-spacing:-29.773870pt;}
.wsf{word-spacing:-29.712628pt;}
.ws24{word-spacing:-27.154120pt;}
.wsc{word-spacing:-26.687989pt;}
.wsd{word-spacing:-23.663351pt;}
.ws3c{word-spacing:-23.073245pt;}
.ws2{word-spacing:-21.171530pt;}
.ws1a{word-spacing:-20.816632pt;}
.ws5{word-spacing:-19.754296pt;}
.ws39{word-spacing:-17.960441pt;}
.ws1c{word-spacing:-17.791993pt;}
.ws1e{word-spacing:-14.767354pt;}
.ws1d{word-spacing:-13.343995pt;}
.ws35{word-spacing:-12.719852pt;}
.ws29{word-spacing:-11.403600pt;}
.ws2a{word-spacing:-11.403272pt;}
.ws30{word-spacing:-9.691984pt;}
.ws2f{word-spacing:-9.677955pt;}
.ws13{word-spacing:-0.271444pt;}
.ws41{word-spacing:-0.197138pt;}
.ws2d{word-spacing:-0.159984pt;}
.ws1b{word-spacing:-0.106142pt;}
.ws6{word-spacing:0.000000pt;}
.ws14{word-spacing:0.442539pt;}
.ws31{word-spacing:13.455142pt;}
.ws9{word-spacing:31.114893pt;}
.ws3a{word-spacing:34.275333pt;}
.ws32{word-spacing:41.967162pt;}
.ws33{word-spacing:42.707282pt;}
.ws34{word-spacing:45.321722pt;}
.ws20{word-spacing:60.382401pt;}
.ws25{word-spacing:76.206843pt;}
.ws36{word-spacing:147.589289pt;}
.ws11{word-spacing:155.352020pt;}
.ws2e{word-spacing:163.856512pt;}
.ws40{word-spacing:217.641913pt;}
.ws3e{word-spacing:239.696981pt;}
.ws15{word-spacing:756.068038pt;}
.ws2c{word-spacing:950.752634pt;}
.ws2b{word-spacing:951.834508pt;}
.ws3f{word-spacing:998.947993pt;}
._19{margin-left:-84.503646pt;}
._28{margin-left:-83.519626pt;}
._20{margin-left:-78.096116pt;}
._26{margin-left:-76.721398pt;}
._44{margin-left:-75.644002pt;}
._3b{margin-left:-73.679538pt;}
._55{margin-left:-70.725760pt;}
._21{margin-left:-69.226820pt;}
._88{margin-left:-68.301151pt;}
._1f{margin-left:-64.663764pt;}
._3d{margin-left:-63.151479pt;}
._25{margin-left:-61.404696pt;}
._1c{margin-left:-58.277993pt;}
._58{margin-left:-57.236084pt;}
._48{margin-left:-56.318361pt;}
._4a{margin-left:-55.112056pt;}
._4c{margin-left:-53.918235pt;}
._42{margin-left:-52.676884pt;}
._2b{margin-left:-51.781983pt;}
._23{margin-left:-50.849303pt;}
._4b{margin-left:-49.866095pt;}
._3c{margin-left:-48.839876pt;}
._24{margin-left:-47.393459pt;}
._54{margin-left:-46.050808pt;}
._2a{margin-left:-45.113518pt;}
._22{margin-left:-43.555613pt;}
._1d{margin-left:-42.170159pt;}
._18{margin-left:-40.367728pt;}
._40{margin-left:-39.450115pt;}
._29{margin-left:-38.448753pt;}
._1a{margin-left:-37.321201pt;}
._41{margin-left:-36.378097pt;}
._4d{margin-left:-35.442252pt;}
._27{margin-left:-34.496871pt;}
._4f{margin-left:-33.558819pt;}
._3f{margin-left:-32.639364pt;}
._14{margin-left:-31.577203pt;}
._49{margin-left:-29.892054pt;}
._1e{margin-left:-28.843908pt;}
._4e{margin-left:-27.887282pt;}
._2c{margin-left:-26.842046pt;}
._f{margin-left:-25.891270pt;}
._1b{margin-left:-24.376438pt;}
._50{margin-left:-23.195691pt;}
._3e{margin-left:-21.868432pt;}
._13{margin-left:-19.803512pt;}
._17{margin-left:-18.746393pt;}
._53{margin-left:-17.818509pt;}
._56{margin-left:-16.457503pt;}
._15{margin-left:-15.208408pt;}
._2{margin-left:-14.185256pt;}
._51{margin-left:-12.840177pt;}
._10{margin-left:-11.865065pt;}
._8{margin-left:-8.372946pt;}
._5{margin-left:-5.948501pt;}
._16{margin-left:-3.728940pt;}
._4{margin-left:-2.387705pt;}
._0{margin-left:-1.146432pt;}
._1{width:1.060128pt;}
._93{width:1.952881pt;}
._11{width:2.848277pt;}
._c{width:4.124358pt;}
._b{width:5.837820pt;}
._6{width:6.790248pt;}
._43{width:7.757437pt;}
._a{width:9.481615pt;}
._12{width:10.710908pt;}
._5b{width:11.984754pt;}
._e{width:13.229843pt;}
._86{width:14.823616pt;}
._5f{width:15.849514pt;}
._3{width:17.157200pt;}
._59{width:18.131495pt;}
._92{width:19.176632pt;}
._7{width:20.115473pt;}
._45{width:21.973472pt;}
._81{width:23.352147pt;}
._80{width:24.326347pt;}
._d{width:26.040746pt;}
._38{width:27.023882pt;}
._47{width:28.416420pt;}
._9{width:29.310522pt;}
._60{width:30.749031pt;}
._5a{width:32.534393pt;}
._39{width:33.512985pt;}
._5e{width:34.762033pt;}
._75{width:36.139884pt;}
._8c{width:40.018733pt;}
._8b{width:41.074516pt;}
._91{width:45.390487pt;}
._46{width:48.265842pt;}
._8e{width:51.691357pt;}
._31{width:52.741073pt;}
._32{width:53.749818pt;}
._6e{width:55.307004pt;}
._57{width:59.025207pt;}
._68{width:59.985789pt;}
._69{width:61.243507pt;}
._6f{width:62.894416pt;}
._36{width:66.704552pt;}
._35{width:67.614286pt;}
._6b{width:71.299229pt;}
._7b{width:73.857487pt;}
._74{width:77.830946pt;}
._33{width:78.824038pt;}
._34{width:79.747360pt;}
._37{width:81.365850pt;}
._6a{width:82.862533pt;}
._82{width:86.104334pt;}
._73{width:87.018179pt;}
._70{width:88.268098pt;}
._71{width:89.912166pt;}
._72{width:94.006846pt;}
._7f{width:105.000615pt;}
._5d{width:109.452586pt;}
._2e{width:118.899984pt;}
._84{width:123.767787pt;}
._2f{width:126.158067pt;}
._6c{width:129.189301pt;}
._65{width:136.068266pt;}
._7c{width:138.140127pt;}
._87{width:141.969664pt;}
._52{width:145.502367pt;}
._30{width:156.342690pt;}
._7a{width:161.621695pt;}
._62{width:177.143942pt;}
._85{width:179.264555pt;}
._79{width:183.764427pt;}
._63{width:190.299948pt;}
._76{width:211.995223pt;}
._7e{width:230.819580pt;}
._8d{width:235.145166pt;}
._77{width:241.370162pt;}
._78{width:254.473716pt;}
._64{width:279.433737pt;}
._83{width:300.651960pt;}
._2d{width:328.394308pt;}
._90{width:351.615605pt;}
._8a{width:435.908071pt;}
._6d{width:661.704444pt;}
._7d{width:663.623356pt;}
._61{width:693.800533pt;}
._5c{width:772.770842pt;}
._89{width:787.109058pt;}
._66{width:826.805795pt;}
._8f{width:827.702557pt;}
._67{width:846.429275pt;}
._3a{width:950.717172pt;}
.fsf{font-size:34.812786pt;}
.fsd{font-size:41.018965pt;}
.fsc{font-size:41.020144pt;}
.fse{font-size:41.942383pt;}
.fs11{font-size:45.754862pt;}
.fs9{font-size:47.999981pt;}
.fsb{font-size:49.422700pt;}
.fsa{font-size:53.119979pt;}
.fs10{font-size:55.125311pt;}
.fs7{font-size:58.879976pt;}
.fs8{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs0{font-size:95.999962pt;}
.fs2{font-size:106.879957pt;}
.fs6{font-size:117.119953pt;}
.fs3{font-size:127.999949pt;}
.fs1{font-size:170.879932pt;}
.y0{bottom:0.000000pt;}
.y11a{bottom:2.720191pt;}
.y115{bottom:2.720196pt;}
.y117{bottom:2.720198pt;}
.y121{bottom:2.720201pt;}
.y107{bottom:2.880096pt;}
.y11c{bottom:2.880191pt;}
.yfd{bottom:42.933633pt;}
.y165{bottom:51.893510pt;}
.y211{bottom:56.853313pt;}
.ye8{bottom:59.413627pt;}
.y164{bottom:62.613498pt;}
.y1cd{bottom:65.973624pt;}
.y71{bottom:68.853623pt;}
.y1f1{bottom:71.413603pt;}
.yc9{bottom:71.733560pt;}
.y1b8{bottom:71.893622pt;}
.y15d{bottom:75.093621pt;}
.yba{bottom:75.893542pt;}
.y104{bottom:77.333620pt;}
.y159{bottom:77.973539pt;}
.yfc{bottom:81.013618pt;}
.y210{bottom:82.453355pt;}
.y200{bottom:83.093617pt;}
.y47{bottom:83.573524pt;}
.y1ee{bottom:83.733598pt;}
.y2a{bottom:86.133696pt;}
.y1f0{bottom:87.413606pt;}
.y173{bottom:88.528388pt;}
.y1{bottom:90.453614pt;}
.y158{bottom:92.213574pt;}
.y39{bottom:92.693070pt;}
.y148{bottom:93.973603pt;}
.y1c0{bottom:97.973611pt;}
.y1cc{bottom:97.974160pt;}
.y1ed{bottom:99.733601pt;}
.yc8{bottom:100.053611pt;}
.yb9{bottom:101.653500pt;}
.y1ef{bottom:103.413609pt;}
.y169{bottom:104.853609pt;}
.y5f{bottom:106.453608pt;}
.y157{bottom:106.613568pt;}
.y70{bottom:107.253608pt;}
.y20f{bottom:108.213423pt;}
.y83{bottom:108.213607pt;}
.y25{bottom:109.333426pt;}
.y147{bottom:109.973597pt;}
.y29{bottom:110.133527pt;}
.ye7{bottom:110.613606pt;}
.y149{bottom:111.573606pt;}
.y1ff{bottom:111.893606pt;}
.y46{bottom:114.453558pt;}
.yfb{bottom:114.933605pt;}
.y1ec{bottom:115.733604pt;}
.y57{bottom:115.733651pt;}
.y16{bottom:116.853604pt;}
.ya9{bottom:119.573593pt;}
.y156{bottom:120.853602pt;}
.y15e{bottom:125.653622pt;}
.y146{bottom:125.973591pt;}
.y1b7{bottom:128.053599pt;}
.yc7{bottom:128.373599pt;}
.y82{bottom:130.453510pt;}
.y38{bottom:131.093168pt;}
.y20e{bottom:133.813466pt;}
.y109{bottom:134.293597pt;}
.ya8{bottom:135.573596pt;}
.y1e9{bottom:138.453576pt;}
.y190{bottom:138.613547pt;}
.y24{bottom:140.053435pt;}
.y145{bottom:141.973594pt;}
.y132{bottom:142.453594pt;}
.y133{bottom:142.933593pt;}
.y1eb{bottom:143.093584pt;}
.yd9{bottom:145.173661pt;}
.y45{bottom:145.333593pt;}
.yac{bottom:150.133571pt;}
.yae{bottom:150.613581pt;}
.y16a{bottom:150.773531pt;}
.y56{bottom:150.933467pt;}
.y15{bottom:151.253590pt;}
.yfa{bottom:152.853737pt;}
.y5e{bottom:153.493589pt;}
.ya5{bottom:154.293579pt;}
.y1e8{bottom:154.453579pt;}
.y18f{bottom:154.613550pt;}
.y28{bottom:155.893588pt;}
.y21d{bottom:156.213150pt;}
.y81{bottom:157.333548pt;}
.y134{bottom:157.653588pt;}
.y1bf{bottom:157.973587pt;}
.y192{bottom:159.093577pt;}
.y1ea{bottom:159.093587pt;}
.y20d{bottom:159.413509pt;}
.y155{bottom:160.053507pt;}
.y168{bottom:162.613586pt;}
.yab{bottom:166.133575pt;}
.yad{bottom:166.613584pt;}
.ye6{bottom:167.093409pt;}
.y1cb{bottom:168.374118pt;}
.y1fe{bottom:169.013010pt;}
.y37{bottom:169.333213pt;}
.ya4{bottom:170.293583pt;}
.y1e7{bottom:170.453582pt;}
.y18e{bottom:170.613554pt;}
.y23{bottom:170.933469pt;}
.y1b3{bottom:170.933582pt;}
.y19b{bottom:172.373582pt;}
.y1d2{bottom:172.533582pt;}
.yb8{bottom:173.653500pt;}
.y1d3{bottom:174.293581pt;}
.y154{bottom:174.453501pt;}
.y191{bottom:175.093581pt;}
.y15f{bottom:176.373589pt;}
.yd8{bottom:176.533580pt;}
.y105{bottom:180.373647pt;}
.y21c{bottom:181.813192pt;}
.yaa{bottom:182.133578pt;}
.y6f{bottom:183.893577pt;}
.y80{bottom:184.213585pt;}
.yf9{bottom:184.213655pt;}
.yc6{bottom:185.013233pt;}
.y20c{bottom:185.173577pt;}
.y55{bottom:186.133491pt;}
.y18d{bottom:186.613557pt;}
.y10a{bottom:186.773538pt;}
.y153{bottom:188.693535pt;}
.y143{bottom:189.973546pt;}
.y144{bottom:189.973565pt;}
.y1b2{bottom:189.973575pt;}
.y99{bottom:190.933494pt;}
.ye5{bottom:192.853478pt;}
.y1fd{bottom:194.613053pt;}
.y16b{bottom:196.693568pt;}
.y93{bottom:198.293491pt;}
.yb7{bottom:199.413568pt;}
.y1ca{bottom:200.373977pt;}
.y14{bottom:201.173570pt;}
.y22{bottom:201.813503pt;}
.y18c{bottom:202.613560pt;}
.y18b{bottom:202.613570pt;}
.y152{bottom:203.093529pt;}
.y98{bottom:205.173529pt;}
.ya{bottom:205.333569pt;}
.y142{bottom:205.973549pt;}
.y67{bottom:205.973568pt;}
.yf8{bottom:206.453568pt;}
.yb{bottom:206.613568pt;}
.y36{bottom:207.733312pt;}
.yd7{bottom:210.453566pt;}
.y20b{bottom:210.773566pt;}
.y7f{bottom:210.933566pt;}
.y92{bottom:212.533526pt;}
.yc5{bottom:213.333284pt;}
.y44{bottom:215.413485pt;}
.y151{bottom:217.333564pt;}
.y1e5{bottom:217.973515pt;}
.y1be{bottom:217.973563pt;}
.ya2{bottom:218.613554pt;}
.y1a6{bottom:218.613563pt;}
.y97{bottom:219.573523pt;}
.y167{bottom:219.893563pt;}
.y1fc{bottom:220.373121pt;}
.y141{bottom:221.973552pt;}
.y9c{bottom:224.373521pt;}
.y91{bottom:226.933520pt;}
.y160{bottom:226.933591pt;}
.ye4{bottom:228.853478pt;}
.ya7{bottom:231.733558pt;}
.y21{bottom:232.693537pt;}
.y166{bottom:232.853558pt;}
.y1b5{bottom:233.013557pt;}
.y21b{bottom:233.173090pt;}
.y1d1{bottom:233.813557pt;}
.y96{bottom:233.973517pt;}
.y1e4{bottom:233.973519pt;}
.ya3{bottom:234.133547pt;}
.ya1{bottom:234.613557pt;}
.y13{bottom:235.573556pt;}
.y7e{bottom:237.813556pt;}
.y140{bottom:237.973555pt;}
.y9b{bottom:238.773515pt;}
.y10b{bottom:239.253479pt;}
.yf7{bottom:240.373555pt;}
.y90{bottom:241.173554pt;}
.yc4{bottom:241.653335pt;}
.y19a{bottom:241.813634pt;}
.y1e6{bottom:242.293554pt;}
.y8{bottom:242.613554pt;}
.y16c{bottom:242.613605pt;}
.y9{bottom:243.573553pt;}
.y1c9{bottom:245.013994pt;}
.y1fb{bottom:245.973163pt;}
.y35{bottom:246.133410pt;}
.ya6{bottom:246.133552pt;}
.y1a5{bottom:247.413552pt;}
.y95{bottom:248.213551pt;}
.yd6{bottom:248.373620pt;}
.y1e3{bottom:249.973522pt;}
.y186{bottom:249.973531pt;}
.y43{bottom:250.133551pt;}
.y9a{bottom:253.013549pt;}
.ye3{bottom:254.453520pt;}
.y66{bottom:255.253470pt;}
.y8f{bottom:255.573548pt;}
.y54{bottom:256.373548pt;}
.y18a{bottom:258.293538pt;}
.y21a{bottom:258.773133pt;}
.y6e{bottom:260.533546pt;}
.y94{bottom:262.613546pt;}
.y20{bottom:263.413545pt;}
.y20a{bottom:264.533545pt;}
.y189{bottom:265.973525pt;}
.y185{bottom:265.973535pt;}
.yf6{bottom:269.173543pt;}
.yc3{bottom:269.973386pt;}
.y199{bottom:270.453542pt;}
.yb6{bottom:271.253542pt;}
.y1fa{bottom:271.733232pt;}
.y27{bottom:272.213542pt;}
.y1c8{bottom:277.013853pt;}
.y161{bottom:277.333541pt;}
.yd5{bottom:279.733539pt;}
.y65{bottom:281.013538pt;}
.y5d{bottom:281.333649pt;}
.y188{bottom:281.973528pt;}
.y184{bottom:281.973538pt;}
.y13f{bottom:282.773518pt;}
.y34{bottom:284.373455pt;}
.y219{bottom:284.533201pt;}
.y1b4{bottom:285.493536pt;}
.y7d{bottom:286.933488pt;}
.y1a4{bottom:288.053535pt;}
.y120{bottom:288.533333pt;}
.y16d{bottom:288.533641pt;}
.ye2{bottom:290.453520pt;}
.y53{bottom:291.573288pt;}
.y10c{bottom:291.733420pt;}
.y209{bottom:292.693481pt;}
.y1bd{bottom:293.013533pt;}
.yc2{bottom:293.173471pt;}
.y118{bottom:294.453333pt;}
.y1f{bottom:295.253293pt;}
.y116{bottom:296.213333pt;}
.y1f9{bottom:297.333274pt;}
.y187{bottom:297.973531pt;}
.y123{bottom:298.133333pt;}
.y11d{bottom:298.133531pt;}
.y112{bottom:298.453539pt;}
.y113{bottom:298.453542pt;}
.y13e{bottom:298.773522pt;}
.y114{bottom:300.213333pt;}
.y175{bottom:302.293530pt;}
.y5c{bottom:306.933691pt;}
.yf3{bottom:307.253488pt;}
.yf5{bottom:307.253528pt;}
.y11e{bottom:307.893549pt;}
.y150{bottom:309.333487pt;}
.y218{bottom:310.133243pt;}
.y6{bottom:310.133527pt;}
.y198{bottom:311.093526pt;}
.y7{bottom:311.893526pt;}
.y119{bottom:312.213333pt;}
.yf4{bottom:312.533526pt;}
.y11b{bottom:313.013333pt;}
.y122{bottom:313.333525pt;}
.y11f{bottom:313.493333pt;}
.yd4{bottom:313.493525pt;}
.y7c{bottom:313.813525pt;}
.y13d{bottom:314.773525pt;}
.y111{bottom:315.413525pt;}
.y1a3{bottom:316.853524pt;}
.y26{bottom:317.493524pt;}
.y208{bottom:318.293523pt;}
.y174{bottom:319.253523pt;}
.y12{bottom:319.733692pt;}
.yc1{bottom:321.493522pt;}
.y1c7{bottom:321.653871pt;}
.y33{bottom:322.773554pt;}
.y1f8{bottom:322.933317pt;}
.y183{bottom:322.933510pt;}
.y42{bottom:323.573228pt;}
.y14f{bottom:323.733481pt;}
.y6d{bottom:326.133440pt;}
.ye1{bottom:326.453520pt;}
.y52{bottom:326.773397pt;}
.y162{bottom:328.053507pt;}
.y1ba{bottom:328.373519pt;}
.y222{bottom:330.133763pt;}
.y17f{bottom:331.733499pt;}
.y64{bottom:331.893412pt;}
.y1e2{bottom:333.173517pt;}
.y16e{bottom:334.288503pt;}
.y217{bottom:335.893312pt;}
.y1e1{bottom:336.533506pt;}
.y14e{bottom:338.133475pt;}
.yf2{bottom:338.453538pt;}
.y8e{bottom:338.613515pt;}
.y182{bottom:338.933514pt;}
.y197{bottom:339.893515pt;}
.y7b{bottom:340.693514pt;}
.yd3{bottom:342.293514pt;}
.yb5{bottom:343.253382pt;}
.y207{bottom:344.053513pt;}
.y10d{bottom:344.213361pt;}
.y9f{bottom:344.853513pt;}
.y1a2{bottom:345.653512pt;}
.y1b9{bottom:347.573512pt;}
.y17d{bottom:347.733502pt;}
.y1f7{bottom:348.693385pt;}
.yc0{bottom:349.813511pt;}
.y14d{bottom:352.373510pt;}
.y1e0{bottom:352.533510pt;}
.y1bc{bottom:353.013509pt;}
.y11{bottom:353.493597pt;}
.y1c6{bottom:353.653730pt;}
.y6c{bottom:354.933429pt;}
.y181{bottom:354.933517pt;}
.y1cf{bottom:356.533508pt;}
.y63{bottom:357.493455pt;}
.y8d{bottom:357.653508pt;}
.y1d0{bottom:358.293507pt;}
.y5b{bottom:358.293589pt;}
.y9e{bottom:359.253507pt;}
.yf0{bottom:360.853506pt;}
.y32{bottom:361.013599pt;}
.y4{bottom:361.333506pt;}
.y216{bottom:361.493354pt;}
.y41{bottom:361.813274pt;}
.y51{bottom:361.973506pt;}
.y221{bottom:362.133623pt;}
.y13c{bottom:362.773477pt;}
.y5{bottom:363.093505pt;}
.y17c{bottom:363.733505pt;}
.y1e{bottom:364.533345pt;}
.yf1{bottom:366.133504pt;}
.yb4{bottom:369.013450pt;}
.y180{bottom:370.933520pt;}
.y9d{bottom:373.653501pt;}
.y1f6{bottom:374.293427pt;}
.y8c{bottom:376.853500pt;}
.y163{bottom:378.613509pt;}
.y13b{bottom:378.773480pt;}
.y17e{bottom:379.733509pt;}
.y16f{bottom:380.208540pt;}
.y196{bottom:380.373499pt;}
.yd2{bottom:380.373567pt;}
.ye0{bottom:382.933497pt;}
.y62{bottom:383.093497pt;}
.y6b{bottom:383.893497pt;}
.y130{bottom:384.373497pt;}
.y131{bottom:385.013497pt;}
.y1c5{bottom:385.653589pt;}
.y1a1{bottom:386.293496pt;}
.y215{bottom:387.093397pt;}
.y10{bottom:388.853495pt;}
.y1b1{bottom:390.613494pt;}
.y1df{bottom:391.253485pt;}
.y7a{bottom:394.293493pt;}
.yb3{bottom:394.613493pt;}
.y13a{bottom:394.773483pt;}
.yef{bottom:394.773493pt;}
.yee{bottom:394.773573pt;}
.y10e{bottom:396.693302pt;}
.y50{bottom:397.013492pt;}
.y1d{bottom:399.253411pt;}
.y1f5{bottom:400.053495pt;}
.y40{bottom:400.213372pt;}
.ybf{bottom:406.453275pt;}
.y1de{bottom:407.253488pt;}
.y15c{bottom:408.533487pt;}
.y5a{bottom:409.653487pt;}
.y139{bottom:410.773486pt;}
.y12e{bottom:411.253486pt;}
.yd1{bottom:411.733486pt;}
.y12f{bottom:411.893486pt;}
.y103{bottom:412.213486pt;}
.y6a{bottom:412.693486pt;}
.y214{bottom:412.853465pt;}
.y1c1{bottom:413.013485pt;}
.y1c4{bottom:417.653448pt;}
.y14c{bottom:419.893443pt;}
.y195{bottom:420.853482pt;}
.y79{bottom:421.173482pt;}
.yed{bottom:423.413481pt;}
.y1f4{bottom:425.653538pt;}
.y170{bottom:426.128577pt;}
.y220{bottom:426.133608pt;}
.y1a0{bottom:426.773480pt;}
.y17a{bottom:427.093470pt;}
.y1db{bottom:432.053449pt;}
.y4f{bottom:432.213478pt;}
.yf{bottom:432.533478pt;}
.y1b0{bottom:433.333477pt;}
.y1c{bottom:433.973477pt;}
.y14b{bottom:434.293437pt;}
.ybe{bottom:434.773326pt;}
.y206{bottom:435.253214pt;}
.y61{bottom:435.253398pt;}
.y30{bottom:437.653362pt;}
.y31{bottom:437.653476pt;}
.y12c{bottom:437.973475pt;}
.y213{bottom:438.453507pt;}
.y12d{bottom:438.613475pt;}
.y138{bottom:439.733456pt;}
.y8b{bottom:440.693474pt;}
.y3c{bottom:442.773827pt;}
.y179{bottom:443.093473pt;}
.y1dd{bottom:443.733464pt;}
.yd0{bottom:445.493472pt;}
.y1da{bottom:448.053452pt;}
.y78{bottom:448.053502pt;}
.y14a{bottom:448.533471pt;}
.y10f{bottom:449.173244pt;}
.y1f3{bottom:451.893470pt;}
.y1af{bottom:452.533470pt;}
.y19f{bottom:455.413389pt;}
.y137{bottom:455.733459pt;}
.y21f{bottom:458.133467pt;}
.y17b{bottom:459.093477pt;}
.y1dc{bottom:459.733467pt;}
.y8a{bottom:459.893467pt;}
.y205{bottom:461.013282pt;}
.y60{bottom:461.013466pt;}
.y194{bottom:461.333466pt;}
.yec{bottom:461.493466pt;}
.y1c3{bottom:462.293466pt;}
.ybd{bottom:463.253403pt;}
.y2{bottom:463.573465pt;}
.y1d9{bottom:464.053455pt;}
.y12a{bottom:464.853465pt;}
.ydf{bottom:465.173450pt;}
.y3{bottom:465.333465pt;}
.y12b{bottom:465.493464pt;}
.yb2{bottom:466.613333pt;}
.y4e{bottom:467.413217pt;}
.y1b{bottom:468.533463pt;}
.y136{bottom:471.733462pt;}
.y171{bottom:472.048613pt;}
.y1bb{bottom:473.013461pt;}
.y77{bottom:474.773483pt;}
.y2e{bottom:476.053275pt;}
.y2f{bottom:476.053460pt;}
.y3f{bottom:476.853249pt;}
.y89{bottom:479.093459pt;}
.y1d8{bottom:480.053459pt;}
.y3b{bottom:481.013873pt;}
.y69{bottom:481.653458pt;}
.ye{bottom:482.293458pt;}
.y19e{bottom:484.373457pt;}
.y1ae{bottom:485.813456pt;}
.y204{bottom:486.613325pt;}
.ycf{bottom:487.093369pt;}
.ybc{bottom:491.573454pt;}
.yb1{bottom:492.373401pt;}
.y128{bottom:492.533454pt;}
.y129{bottom:493.493453pt;}
.yeb{bottom:495.413453pt;}
.y178{bottom:496.053443pt;}
.y76{bottom:497.173452pt;}
.y177{bottom:500.053441pt;}
.yde{bottom:501.173450pt;}
.y110{bottom:501.653185pt;}
.y193{bottom:501.973450pt;}
.y4d{bottom:502.613326pt;}
.y1ad{bottom:505.013449pt;}
.y15b{bottom:505.973439pt;}
.y1f2{bottom:509.653447pt;}
.y15a{bottom:509.973437pt;}
.y203{bottom:512.373393pt;}
.y68{bottom:513.493445pt;}
.y2d{bottom:514.453373pt;}
.y3e{bottom:515.253347pt;}
.y176{bottom:516.053444pt;}
.y172{bottom:517.968650pt;}
.yb0{bottom:517.973443pt;}
.yce{bottom:518.933443pt;}
.y3a{bottom:519.413971pt;}
.ybb{bottom:519.893443pt;}
.y21e{bottom:522.453442pt;}
.y75{bottom:524.053441pt;}
.y19d{bottom:524.853441pt;}
.y88{bottom:525.973440pt;}
.y1d6{bottom:527.893440pt;}
.y1d7{bottom:529.333439pt;}
.yea{bottom:535.893436pt;}
.y1a{bottom:536.693436pt;}
.y127{bottom:537.333436pt;}
.y108{bottom:537.493436pt;}
.y4c{bottom:537.813436pt;}
.y202{bottom:537.973435pt;}
.y1b6{bottom:548.053431pt;}
.y106{bottom:550.133333pt;}
.y212{bottom:551.253430pt;}
.y1c2{bottom:551.733430pt;}
.y19c{bottom:553.653429pt;}
.ya0{bottom:556.693428pt;}
.ydd{bottom:557.653428pt;}
.y201{bottom:563.734145pt;}
.ye9{bottom:564.693425pt;}
.y19{bottom:565.493424pt;}
.y126{bottom:566.133424pt;}
.y3d{bottom:584.373417pt;}
.y2c{bottom:589.973415pt;}
.y74{bottom:616.373404pt;}
.y87{bottom:618.933323pt;}
.y102{bottom:620.533271pt;}
.y1a8{bottom:623.413321pt;}
.y1ac{bottom:628.213523pt;}
.ydc{bottom:629.173268pt;}
.y1d5{bottom:629.173527pt;}
.y59{bottom:630.773398pt;}
.y18{bottom:632.053318pt;}
.y125{bottom:633.333345pt;}
.yff{bottom:639.413315pt;}
.ycb{bottom:641.973315pt;}
.yd{bottom:642.293394pt;}
.y73{bottom:645.173393pt;}
.y101{bottom:646.133314pt;}
.y135{bottom:646.133392pt;}
.y86{bottom:647.733312pt;}
.y4b{bottom:650.133391pt;}
.y1ab{bottom:650.453435pt;}
.y1a7{bottom:652.373390pt;}
.y1ce{bottom:653.973389pt;}
.ydb{bottom:654.773310pt;}
.y223{bottom:654.773389pt;}
.y124{bottom:658.933387pt;}
.y58{bottom:659.573387pt;}
.ycd{bottom:660.853386pt;}
.y17{bottom:661.013386pt;}
.y1d4{bottom:661.173386pt;}
.yaf{bottom:666.453384pt;}
.yca{bottom:667.733384pt;}
.yfe{bottom:668.373383pt;}
.yc{bottom:671.093382pt;}
.y100{bottom:671.893382pt;}
.y1aa{bottom:672.853404pt;}
.y2b{bottom:673.653381pt;}
.y72{bottom:673.973381pt;}
.y85{bottom:676.693380pt;}
.y4a{bottom:678.933379pt;}
.y48{bottom:679.093379pt;}
.yda{bottom:680.533378pt;}
.ycc{bottom:689.653375pt;}
.y1a9{bottom:695.253373pt;}
.y84{bottom:705.493368pt;}
.y49{bottom:707.733368pt;}
.h20{height:14.240000pt;}
.h2a{height:25.280000pt;}
.h29{height:25.760000pt;}
.h28{height:26.560000pt;}
.h3a{height:33.176585pt;}
.h25{height:38.720000pt;}
.h23{height:39.091074pt;}
.h22{height:39.092197pt;}
.h1f{height:39.281234pt;}
.h24{height:39.543622pt;}
.h39{height:39.803322pt;}
.h2c{height:40.800000pt;}
.h26{height:42.720000pt;}
.h3d{height:43.604383pt;}
.h27{height:44.480000pt;}
.h16{height:45.551982pt;}
.h36{height:45.743982pt;}
.h21{height:46.902143pt;}
.h18{height:50.410860pt;}
.h2b{height:50.560000pt;}
.h2e{height:50.623340pt;}
.h3e{height:51.903340pt;}
.h3c{height:52.313920pt;}
.h11{height:56.112618pt;}
.h33{height:57.023414pt;}
.h15{height:60.735976pt;}
.h41{height:60.991976pt;}
.h1e{height:61.278725pt;}
.h1c{height:69.658722pt;}
.hd{height:71.061092pt;}
.h13{height:71.360611pt;}
.h14{height:71.360963pt;}
.h45{height:73.499971pt;}
.h3b{height:76.056538pt;}
.h5{height:79.171843pt;}
.ha{height:80.778848pt;}
.h9{height:81.119328pt;}
.h38{height:82.410885pt;}
.h35{height:82.623365pt;}
.h31{height:82.623442pt;}
.h3f{height:83.903403pt;}
.h19{height:85.161528pt;}
.h1b{height:85.161970pt;}
.h1a{height:85.162053pt;}
.h7{height:87.466215pt;}
.h3{height:88.144652pt;}
.h30{height:88.383401pt;}
.h1{height:91.103964pt;}
.h2d{height:91.487963pt;}
.h12{height:96.046837pt;}
.hc{height:101.429079pt;}
.h8{height:101.856599pt;}
.h4{height:105.562458pt;}
.h1d{height:106.932145pt;}
.h2f{height:107.583317pt;}
.hf{height:111.146836pt;}
.h10{height:111.147821pt;}
.he{height:111.615315pt;}
.h37{height:114.410873pt;}
.h40{height:114.623314pt;}
.h32{height:114.623353pt;}
.h43{height:114.623391pt;}
.h34{height:114.623429pt;}
.h17{height:121.471951pt;}
.h6{height:128.062449pt;}
.h2{height:140.925881pt;}
.h42{height:162.165055pt;}
.hb{height:176.864249pt;}
.h0{height:793.333333pt;}
.h44{height:1122.666667pt;}
.w7{width:25.440000pt;}
.w6{width:25.920000pt;}
.w5{width:26.560000pt;}
.w9{width:26.720000pt;}
.w2{width:38.880000pt;}
.wa{width:40.960000pt;}
.w3{width:43.040000pt;}
.w4{width:44.640000pt;}
.w8{width:50.720000pt;}
.w1{width:292.640000pt;}
.wb{width:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa2{left:7.840666pt;}
.x68{left:100.947290pt;}
.x67{left:102.547313pt;}
.x66{left:107.987290pt;}
.xf8{left:110.387289pt;}
.xc9{left:111.507289pt;}
.x82{left:115.827287pt;}
.x1d{left:117.267291pt;}
.xff{left:119.667285pt;}
.x22{left:123.987284pt;}
.xbb{left:126.707283pt;}
.x89{left:128.947282pt;}
.x3{left:132.147280pt;}
.x2{left:133.907946pt;}
.x42{left:136.627945pt;}
.xf9{left:138.387945pt;}
.x1b{left:139.507944pt;}
.xb{left:141.747943pt;}
.xa{left:143.507943pt;}
.x100{left:147.667941pt;}
.x5{left:150.227940pt;}
.x4{left:151.987939pt;}
.x16{left:156.147938pt;}
.x45{left:158.387937pt;}
.xf7{left:159.347936pt;}
.x25{left:161.268944pt;}
.x84{left:163.827934pt;}
.x8b{left:164.787934pt;}
.x7b{left:166.547933pt;}
.xd0{left:167.987933pt;}
.xce{left:168.947932pt;}
.x48{left:172.947931pt;}
.xaf{left:174.867930pt;}
.x74{left:176.627929pt;}
.xae{left:178.227929pt;}
.x83{left:179.826199pt;}
.xb1{left:187.507925pt;}
.x5c{left:188.947935pt;}
.xeb{left:189.907924pt;}
.x18{left:192.146922pt;}
.xd5{left:193.267923pt;}
.xcb{left:195.027922pt;}
.x9c{left:197.267921pt;}
.x7a{left:200.627651pt;}
.x9d{left:203.027922pt;}
.x17{left:204.147918pt;}
.x9e{left:206.547916pt;}
.x20{left:207.826965pt;}
.x54{left:211.507915pt;}
.x8c{left:212.787915pt;}
.x7c{left:214.547914pt;}
.xb2{left:216.947913pt;}
.x53{left:219.667912pt;}
.x24{left:220.788183pt;}
.x9f{left:222.227911pt;}
.x51{left:223.827910pt;}
.x101{left:225.107910pt;}
.xea{left:228.307909pt;}
.x1f{left:231.826935pt;}
.xec{left:235.029774pt;}
.xe5{left:237.267905pt;}
.x1c{left:239.347728pt;}
.x1e{left:243.186887pt;}
.x13{left:247.027901pt;}
.x12{left:248.307901pt;}
.x5f{left:252.148025pt;}
.x5d{left:254.707898pt;}
.xd6{left:257.268305pt;}
.x46{left:259.027896pt;}
.x5e{left:259.987964pt;}
.x7d{left:262.548620pt;}
.xc5{left:265.747860pt;}
.x33{left:267.669289pt;}
.xc4{left:270.707893pt;}
.x85{left:272.948724pt;}
.x32{left:275.029289pt;}
.x21{left:275.986706pt;}
.xe9{left:278.067889pt;}
.x30{left:279.028533pt;}
.xe6{left:283.187887pt;}
.x1{left:287.027885pt;}
.xa0{left:288.307895pt;}
.xb3{left:292.467883pt;}
.xc6{left:299.827794pt;}
.xb4{left:302.867879pt;}
.xe8{left:308.947876pt;}
.xe7{left:311.667875pt;}
.x23{left:312.627505pt;}
.x31{left:315.027446pt;}
.x97{left:322.067871pt;}
.x92{left:323.347871pt;}
.xa1{left:326.867200pt;}
.xc3{left:332.627867pt;}
.x3d{left:333.747657pt;}
.x3b{left:335.507866pt;}
.x2c{left:337.106997pt;}
.x36{left:341.747430pt;}
.x3c{left:351.987859pt;}
.x38{left:354.547907pt;}
.xee{left:363.027855pt;}
.x47{left:364.787854pt;}
.x64{left:367.827942pt;}
.x65{left:369.107963pt;}
.x63{left:371.347930pt;}
.x6{left:373.587851pt;}
.x39{left:375.988807pt;}
.x8a{left:379.667848pt;}
.x61{left:380.787917pt;}
.x35{left:383.827846pt;}
.x60{left:387.027845pt;}
.xb7{left:389.267844pt;}
.x2b{left:390.707844pt;}
.x62{left:392.307911pt;}
.x7{left:402.547839pt;}
.xa3{left:404.307200pt;}
.xca{left:405.587838pt;}
.x5b{left:408.787890pt;}
.x6c{left:411.987835pt;}
.xbc{left:413.747835pt;}
.x90{left:415.667834pt;}
.xf0{left:420.307832pt;}
.xef{left:422.067831pt;}
.x9a{left:423.987200pt;}
.x5a{left:426.387829pt;}
.x8d{left:428.947828pt;}
.xb8{left:430.067828pt;}
.x8e{left:433.427827pt;}
.x91{left:434.387826pt;}
.xf{left:445.907822pt;}
.xe{left:446.867821pt;}
.x3e{left:450.067292pt;}
.x8f{left:452.307819pt;}
.xd1{left:458.548408pt;}
.x9b{left:461.587815pt;}
.xa4{left:464.307200pt;}
.xed{left:476.787809pt;}
.x93{left:486.707805pt;}
.x4b{left:496.787801pt;}
.x3a{left:504.788709pt;}
.xa5{left:506.867200pt;}
.x71{left:509.587796pt;}
.x49{left:521.907791pt;}
.x4a{left:527.027823pt;}
.x4e{left:529.107788pt;}
.x14{left:532.307787pt;}
.x37{left:538.067785pt;}
.x4c{left:539.028016pt;}
.x2f{left:547.507781pt;}
.x4d{left:553.907980pt;}
.x6a{left:576.147771pt;}
.x69{left:580.147768pt;}
.x4f{left:581.107893pt;}
.x50{left:585.267766pt;}
.xa6{left:589.907786pt;}
.xe1{left:597.587761pt;}
.x28{left:599.347760pt;}
.x6b{left:602.867779pt;}
.x10{left:606.707757pt;}
.xe3{left:609.427756pt;}
.xde{left:611.827755pt;}
.xe2{left:613.107755pt;}
.x6e{left:615.507812pt;}
.x2d{left:617.107753pt;}
.x11{left:619.827752pt;}
.xdb{left:624.147750pt;}
.x102{left:628.627749pt;}
.xa7{left:632.467200pt;}
.x6d{left:636.627745pt;}
.x103{left:641.907799pt;}
.xfb{left:644.627742pt;}
.xa8{left:648.467200pt;}
.xb5{left:649.907740pt;}
.xfc{left:651.507739pt;}
.xe4{left:652.468342pt;}
.xe0{left:657.107737pt;}
.x27{left:658.547737pt;}
.xb6{left:661.267735pt;}
.xdc{left:663.828267pt;}
.x26{left:664.787734pt;}
.xdf{left:672.147593pt;}
.x79{left:675.187672pt;}
.xb9{left:697.427721pt;}
.xdd{left:698.707745pt;}
.x78{left:701.107720pt;}
.x15{left:702.067719pt;}
.xbe{left:703.187719pt;}
.xa9{left:714.547200pt;}
.x104{left:715.987832pt;}
.xfd{left:719.507812pt;}
.x99{left:722.707711pt;}
.xd7{left:726.227710pt;}
.xc7{left:728.147730pt;}
.xbd{left:730.227785pt;}
.x7e{left:731.987707pt;}
.xfa{left:733.588042pt;}
.x87{left:737.267705pt;}
.x70{left:738.387663pt;}
.xf6{left:739.667655pt;}
.xd8{left:742.227703pt;}
.xfe{left:746.707701pt;}
.xd4{left:747.667701pt;}
.x86{left:749.588302pt;}
.x94{left:752.147637pt;}
.xf5{left:755.187698pt;}
.x80{left:756.467697pt;}
.xd9{left:758.867696pt;}
.x8{left:760.147696pt;}
.xaa{left:762.387695pt;}
.x43{left:764.627694pt;}
.xd2{left:765.909232pt;}
.x105{left:766.867693pt;}
.xcf{left:767.987737pt;}
.x6f{left:769.107692pt;}
.xd3{left:770.547668pt;}
.xc2{left:772.627691pt;}
.xad{left:774.867690pt;}
.x55{left:776.947689pt;}
.xba{left:780.307688pt;}
.xf4{left:782.067696pt;}
.x96{left:784.307735pt;}
.x29{left:785.587758pt;}
.x2a{left:786.547685pt;}
.xf2{left:787.827659pt;}
.x9{left:789.107684pt;}
.x44{left:790.547556pt;}
.x7f{left:791.827729pt;}
.xf1{left:793.747683pt;}
.x40{left:794.707682pt;}
.x34{left:795.987682pt;}
.x3f{left:798.707681pt;}
.x58{left:799.827680pt;}
.x56{left:802.227603pt;}
.x59{left:804.467876pt;}
.x95{left:805.747678pt;}
.x88{left:806.707800pt;}
.x41{left:809.427566pt;}
.xda{left:813.908306pt;}
.x98{left:819.987718pt;}
.x2e{left:823.667671pt;}
.xab{left:825.267200pt;}
.x1a{left:826.867731pt;}
.x52{left:829.427668pt;}
.x57{left:833.267667pt;}
.x19{left:841.587663pt;}
.x81{left:843.667536pt;}
.xcd{left:852.627954pt;}
.xc{left:859.827656pt;}
.xc8{left:862.227655pt;}
.xd{left:871.187652pt;}
.xf3{left:888.947644pt;}
.xc1{left:901.907639pt;}
.xc0{left:902.867639pt;}
.xbf{left:903.987638pt;}
.xac{left:908.947636pt;}
.xcc{left:913.907634pt;}
.xb0{left:917.427633pt;}
.x76{left:930.387619pt;}
.x77{left:932.947671pt;}
.x75{left:936.947625pt;}
.x73{left:949.267577pt;}
.x72{left:975.987610pt;}
}




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