
    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_89ca6e9c0807c9dfaeb1fba5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.978000;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_978761c6f89a9d75098c3487.woff')format("woff");}.ff2{font-family:ff2;line-height:1.058000;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_7bbd285879555fc69e6355f7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.774069;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_22d36f336e3b158b189414e0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.964000;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_88ccc599c670087ed1d881b0.woff')format("woff");}.ff5{font-family:ff5;line-height:3.580000;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_bab7fa6c4f2f54bf3dcc1b3c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_2726d487d020965ff63b9dd0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.106000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-157.446000px;}
.v6{vertical-align:-78.720000px;}
.v3{vertical-align:-20.178000px;}
.v5{vertical-align:-14.976000px;}
.v4{vertical-align:-13.746000px;}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:5.892000px;}
.v2{vertical-align:24.546000px;}
.v9{vertical-align:28.416000px;}
.v7{vertical-align:41.406000px;}
.ls0{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.000976px;}
.ls4e{letter-spacing:0.002167px;}
.ls4a{letter-spacing:0.002695px;}
.ls23{letter-spacing:0.003254px;}
.ls41{letter-spacing:0.003255px;}
.ls17{letter-spacing:0.003806px;}
.ls34{letter-spacing:0.004325px;}
.lsc{letter-spacing:0.005419px;}
.ls28{letter-spacing:1.107034px;}
.ls8{letter-spacing:1.373050px;}
.ls3{letter-spacing:1.378243px;}
.ls42{letter-spacing:2.983028px;}
.ls7{letter-spacing:2.984496px;}
.lsb{letter-spacing:2.985571px;}
.ls38{letter-spacing:2.985706px;}
.ls2{letter-spacing:2.988384px;}
.ls9{letter-spacing:2.989018px;}
.ls4b{letter-spacing:2.989028px;}
.ls3c{letter-spacing:2.990496px;}
.ls13{letter-spacing:2.992833px;}
.ls27{letter-spacing:2.992867px;}
.ls1b{letter-spacing:3.071974px;}
.ls4{letter-spacing:3.077974px;}
.ls3e{letter-spacing:5.623610px;}
.ls19{letter-spacing:5.629610px;}
.ls29{letter-spacing:7.987610px;}
.ls11{letter-spacing:10.963076px;}
.ls24{letter-spacing:14.259254px;}
.ls2d{letter-spacing:14.546148px;}
.ls2c{letter-spacing:14.548325px;}
.ls46{letter-spacing:15.755420px;}
.ls33{letter-spacing:16.361420px;}
.ls40{letter-spacing:16.361970px;}
.lsf{letter-spacing:16.361988px;}
.ls36{letter-spacing:16.362534px;}
.ls37{letter-spacing:16.367420px;}
.ls10{letter-spacing:16.367988px;}
.ls31{letter-spacing:16.368534px;}
.ls3a{letter-spacing:16.438214px;}
.ls39{letter-spacing:16.439645px;}
.ls3b{letter-spacing:16.442496px;}
.ls1{letter-spacing:16.753064px;}
.ls47{letter-spacing:17.503028px;}
.ls1d{letter-spacing:18.185419px;}
.lsa{letter-spacing:18.221923px;}
.ls44{letter-spacing:18.739028px;}
.ls45{letter-spacing:18.745028px;}
.ls49{letter-spacing:18.894976px;}
.ls48{letter-spacing:18.900976px;}
.ls26{letter-spacing:19.307974px;}
.ls2e{letter-spacing:19.335796px;}
.ls3f{letter-spacing:19.341796px;}
.ls2b{letter-spacing:19.350976px;}
.ls32{letter-spacing:19.351028px;}
.ls3d{letter-spacing:19.356976px;}
.ls35{letter-spacing:19.357028px;}
.ls4d{letter-spacing:19.643420px;}
.ls15{letter-spacing:20.057974px;}
.ls2a{letter-spacing:20.321974px;}
.ls1a{letter-spacing:21.153796px;}
.ls1c{letter-spacing:21.159796px;}
.ls4f{letter-spacing:21.664884px;}
.ls43{letter-spacing:22.135610px;}
.ls30{letter-spacing:22.340172px;}
.ls4c{letter-spacing:22.633028px;}
.ls6{letter-spacing:22.913974px;}
.ls5{letter-spacing:23.459974px;}
.ls25{letter-spacing:25.394656px;}
.lsd{letter-spacing:26.197613px;}
.ls1e{letter-spacing:29.884887px;}
.lse{letter-spacing:32.107613px;}
.ls1f{letter-spacing:62.745796px;}
.ls16{letter-spacing:70.435611px;}
.ls21{letter-spacing:70.447611px;}
.ls18{letter-spacing:73.408833px;}
.ls22{letter-spacing:73.432833px;}
.ls12{letter-spacing:89.653611px;}
.ls14{letter-spacing:92.644833px;}
.ls20{letter-spacing:119.809611px;}
.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;}
}
.ws135{word-spacing:-37.013196px;}
.wsd{word-spacing:-28.472751px;}
.ws14{word-spacing:-26.509113px;}
.wsd4{word-spacing:-23.402304px;}
.wsa9{word-spacing:-22.778253px;}
.ws0{word-spacing:-22.315500px;}
.ws36{word-spacing:-21.788352px;}
.ws13d{word-spacing:-17.541833px;}
.wsb4{word-spacing:-17.476378px;}
.ws113{word-spacing:-17.410924px;}
.ws3d{word-spacing:-17.214560px;}
.ws143{word-spacing:-17.149105px;}
.ws125{word-spacing:-16.756378px;}
.ws77{word-spacing:-16.625468px;}
.ws76{word-spacing:-16.598321px;}
.ws8f{word-spacing:-16.560014px;}
.wsc9{word-spacing:-16.494559px;}
.ws142{word-spacing:-16.429105px;}
.ws13b{word-spacing:-16.298195px;}
.ws3b{word-spacing:-16.232741px;}
.ws162{word-spacing:-16.101832px;}
.ws40{word-spacing:-16.036377px;}
.ws1{word-spacing:-16.010359px;}
.ws126{word-spacing:-15.905468px;}
.ws3f{word-spacing:-15.840013px;}
.wsc4{word-spacing:-15.774559px;}
.ws4d{word-spacing:-15.709104px;}
.ws56{word-spacing:-15.643649px;}
.wse8{word-spacing:-15.601536px;}
.ws10f{word-spacing:-15.578195px;}
.wsb7{word-spacing:-15.512740px;}
.ws10a{word-spacing:-15.493896px;}
.ws157{word-spacing:-15.447286px;}
.wsfd{word-spacing:-15.381831px;}
.ws149{word-spacing:-15.250922px;}
.ws12d{word-spacing:-15.185467px;}
.ws72{word-spacing:-15.120013px;}
.ws11{word-spacing:-14.989103px;}
.ws129{word-spacing:-14.923649px;}
.ws31{word-spacing:-14.858194px;}
.ws51{word-spacing:-14.792740px;}
.ws117{word-spacing:-14.727285px;}
.ws102{word-spacing:-14.596376px;}
.wsc7{word-spacing:-14.465467px;}
.ws6a{word-spacing:-14.437140px;}
.ws104{word-spacing:-14.431140px;}
.ws47{word-spacing:-14.400012px;}
.wsc8{word-spacing:-14.334557px;}
.wsf4{word-spacing:-14.331874px;}
.ws3c{word-spacing:-14.269103px;}
.wsa2{word-spacing:-14.203648px;}
.ws112{word-spacing:-14.138194px;}
.ws85{word-spacing:-14.095181px;}
.ws15{word-spacing:-14.072739px;}
.ws90{word-spacing:-14.007284px;}
.wsf5{word-spacing:-13.941830px;}
.wsce{word-spacing:-13.879987px;}
.ws96{word-spacing:-13.745466px;}
.ws15f{word-spacing:-13.680011px;}
.ws46{word-spacing:-13.549102px;}
.ws44{word-spacing:-13.483648px;}
.ws42{word-spacing:-13.459186px;}
.wsf6{word-spacing:-13.418193px;}
.wsfc{word-spacing:-13.352738px;}
.ws4c{word-spacing:-13.287284px;}
.ws95{word-spacing:-13.221829px;}
.ws5a{word-spacing:-13.156375px;}
.ws14a{word-spacing:-13.090920px;}
.wscf{word-spacing:-13.073011px;}
.ws7{word-spacing:-13.031081px;}
.ws88{word-spacing:-12.965414px;}
.wsbf{word-spacing:-12.960011px;}
.wse{word-spacing:-12.911616px;}
.ws6d{word-spacing:-12.894556px;}
.wsbe{word-spacing:-12.891946px;}
.wsbd{word-spacing:-12.891421px;}
.wse9{word-spacing:-12.857818px;}
.ws12b{word-spacing:-12.829102px;}
.ws54{word-spacing:-12.763647px;}
.ws41{word-spacing:-12.698192px;}
.wsfa{word-spacing:-12.632738px;}
.ws7c{word-spacing:-12.567283px;}
.ws22{word-spacing:-12.549245px;}
.ws13e{word-spacing:-12.535748px;}
.ws150{word-spacing:-12.501829px;}
.ws39{word-spacing:-12.481776px;}
.wsc6{word-spacing:-12.305465px;}
.ws9a{word-spacing:-12.266035px;}
.wsc5{word-spacing:-12.240010px;}
.ws33{word-spacing:-12.174666px;}
.ws24{word-spacing:-12.174556px;}
.ws14f{word-spacing:-12.110857px;}
.ws32{word-spacing:-12.110763px;}
.ws138{word-spacing:-12.109331px;}
.wsdc{word-spacing:-12.109229px;}
.wsa7{word-spacing:-12.109190px;}
.ws2{word-spacing:-12.109101px;}
.ws14e{word-spacing:-12.108713px;}
.ws14b{word-spacing:-12.108698px;}
.wsfe{word-spacing:-12.108370px;}
.ws15e{word-spacing:-12.108263px;}
.wse6{word-spacing:-12.107589px;}
.wse5{word-spacing:-12.107060px;}
.wsbc{word-spacing:-12.105946px;}
.wsdd{word-spacing:-12.105874px;}
.wse4{word-spacing:-12.048134px;}
.wse3{word-spacing:-12.047605px;}
.ws53{word-spacing:-12.043646px;}
.ws10c{word-spacing:-11.978192px;}
.ws18{word-spacing:-11.912737px;}
.ws16{word-spacing:-11.847924px;}
.ws1a{word-spacing:-11.847283px;}
.ws73{word-spacing:-11.728051px;}
.ws7b{word-spacing:-11.716373px;}
.ws110{word-spacing:-11.650919px;}
.ws151{word-spacing:-11.585464px;}
.wsb2{word-spacing:-11.520010px;}
.wsb3{word-spacing:-11.488606px;}
.ws103{word-spacing:-11.454555px;}
.ws97{word-spacing:-11.389100px;}
.ws89{word-spacing:-11.351462px;}
.ws4a{word-spacing:-11.323646px;}
.ws99{word-spacing:-11.258191px;}
.wsdf{word-spacing:-11.223421px;}
.wse1{word-spacing:-11.222356px;}
.wse0{word-spacing:-11.221229px;}
.ws106{word-spacing:-11.136269px;}
.wsc0{word-spacing:-11.127282px;}
.ws11d{word-spacing:-11.118262px;}
.ws34{word-spacing:-11.082470px;}
.ws4e{word-spacing:-11.061827px;}
.ws9{word-spacing:-11.058486px;}
.ws66{word-spacing:-10.996373px;}
.ws10d{word-spacing:-10.930918px;}
.wsa0{word-spacing:-10.867277px;}
.ws10e{word-spacing:-10.865464px;}
.ws9e{word-spacing:-10.813478px;}
.wsf{word-spacing:-10.800009px;}
.wsda{word-spacing:-10.734554px;}
.ws52{word-spacing:-10.669100px;}
.ws9b{word-spacing:-10.652083px;}
.ws9c{word-spacing:-10.598285px;}
.ws6f{word-spacing:-10.538191px;}
.ws118{word-spacing:-10.472736px;}
.ws6{word-spacing:-10.460730px;}
.ws4b{word-spacing:-10.407281px;}
.wsd0{word-spacing:-10.383091px;}
.ws29{word-spacing:-10.341827px;}
.wscb{word-spacing:-10.276372px;}
.ws68{word-spacing:-10.210918px;}
.ws37{word-spacing:-10.167898px;}
.ws11c{word-spacing:-10.145463px;}
.ws12a{word-spacing:-10.090427px;}
.ws80{word-spacing:-10.080008px;}
.ws55{word-spacing:-10.014554px;}
.ws5b{word-spacing:-9.979159px;}
.wscd{word-spacing:-9.953952px;}
.wsed{word-spacing:-9.953530px;}
.ws38{word-spacing:-9.952704px;}
.wsec{word-spacing:-9.949056px;}
.wsd6{word-spacing:-9.898906px;}
.ws98{word-spacing:-9.883645px;}
.ws8{word-spacing:-9.862974px;}
.ws82{word-spacing:-9.818190px;}
.wsf1{word-spacing:-9.752735px;}
.wsa4{word-spacing:-9.687281px;}
.ws1c{word-spacing:-9.659761px;}
.wsae{word-spacing:-9.621826px;}
.ws13{word-spacing:-9.556372px;}
.ws70{word-spacing:-9.490917px;}
.ws59{word-spacing:-9.425462px;}
.ws78{word-spacing:-9.362416px;}
.ws57{word-spacing:-9.360008px;}
.ws7a{word-spacing:-9.294553px;}
.ws141{word-spacing:-9.229099px;}
.ws9f{word-spacing:-9.199526px;}
.wsa6{word-spacing:-9.163644px;}
.ws6b{word-spacing:-9.098189px;}
.ws67{word-spacing:-9.032735px;}
.ws9d{word-spacing:-8.984333px;}
.wsb{word-spacing:-8.967280px;}
.ws5{word-spacing:-8.906564px;}
.wse2{word-spacing:-8.901826px;}
.ws10{word-spacing:-8.836371px;}
.ws145{word-spacing:-8.770916px;}
.ws19{word-spacing:-8.713159px;}
.ws159{word-spacing:-8.640234px;}
.ws136{word-spacing:-8.640227px;}
.wsf7{word-spacing:-8.640097px;}
.ws6e{word-spacing:-8.640007px;}
.ws153{word-spacing:-8.637479px;}
.ws13c{word-spacing:-8.577511px;}
.ws12e{word-spacing:-8.574553px;}
.ws140{word-spacing:-8.572458px;}
.ws156{word-spacing:-8.571511px;}
.ws13f{word-spacing:-8.570982px;}
.ws14c{word-spacing:-8.569828px;}
.wsfb{word-spacing:-8.443643px;}
.wsea{word-spacing:-8.392550px;}
.wsca{word-spacing:-8.378189px;}
.ws12{word-spacing:-8.312734px;}
.wsd5{word-spacing:-8.284954px;}
.ws1d{word-spacing:-8.225143px;}
.ws6c{word-spacing:-8.116370px;}
.ws83{word-spacing:-8.069760px;}
.ws8e{word-spacing:-8.050916px;}
.wsd2{word-spacing:-8.015962px;}
.wsb1{word-spacing:-7.985461px;}
.ws1b{word-spacing:-7.938220px;}
.ws11b{word-spacing:-7.920007px;}
.ws124{word-spacing:-7.858981px;}
.ws35{word-spacing:-7.854566px;}
.wsd9{word-spacing:-7.854552px;}
.ws50{word-spacing:-7.789097px;}
.wsf0{word-spacing:-7.723643px;}
.ws30{word-spacing:-7.658188px;}
.ws128{word-spacing:-7.592734px;}
.wscc{word-spacing:-7.585574px;}
.ws8a{word-spacing:-7.531776px;}
.ws81{word-spacing:-7.481062px;}
.wse7{word-spacing:-7.461824px;}
.wsab{word-spacing:-7.396370px;}
.ws45{word-spacing:-7.376518px;}
.ws43{word-spacing:-7.370964px;}
.wsaa{word-spacing:-7.359874px;}
.ws17{word-spacing:-7.336519px;}
.ws92{word-spacing:-7.330915px;}
.ws94{word-spacing:-7.265461px;}
.ws3e{word-spacing:-7.200006px;}
.ws152{word-spacing:-7.135220px;}
.ws75{word-spacing:-7.134551px;}
.wsa1{word-spacing:-7.103520px;}
.ws161{word-spacing:-7.069097px;}
.ws2b{word-spacing:-7.003642px;}
.ws87{word-spacing:-6.939994px;}
.ws127{word-spacing:-6.938188px;}
.ws146{word-spacing:-6.872733px;}
.ws15d{word-spacing:-6.807278px;}
.ws144{word-spacing:-6.741824px;}
.ws64{word-spacing:-6.676369px;}
.wsd1{word-spacing:-6.617203px;}
.ws79{word-spacing:-6.616427px;}
.wsc{word-spacing:-6.610915px;}
.ws86{word-spacing:-6.605040px;}
.ws71{word-spacing:-6.545460px;}
.wseb{word-spacing:-6.512352px;}
.ws2a{word-spacing:-6.480005px;}
.ws111{word-spacing:-6.414551px;}
.ws49{word-spacing:-6.283642px;}
.wsd7{word-spacing:-6.240614px;}
.ws10b{word-spacing:-6.218187px;}
.wsd3{word-spacing:-6.186816px;}
.ws101{word-spacing:-6.152732px;}
.wsc3{word-spacing:-6.087278px;}
.ws20{word-spacing:-6.078643px;}
.ws1f{word-spacing:-6.073216px;}
.ws4f{word-spacing:-6.021823px;}
.ws4{word-spacing:-5.977560px;}
.ws8c{word-spacing:-5.971622px;}
.ws116{word-spacing:-5.956369px;}
.ws5c{word-spacing:-5.890914px;}
.ws3{word-spacing:-5.678682px;}
.wsf3{word-spacing:-5.643170px;}
.wsa5{word-spacing:-5.629096px;}
.ws93{word-spacing:-5.367277px;}
.ws14d{word-spacing:-5.301823px;}
.ws11a{word-spacing:-5.236368px;}
.wsa3{word-spacing:-5.170913px;}
.ws160{word-spacing:-5.105459px;}
.ws137{word-spacing:-5.040004px;}
.ws74{word-spacing:-5.003251px;}
.ws147{word-spacing:-4.974550px;}
.ws28{word-spacing:-4.909095px;}
.ws63{word-spacing:-4.895654px;}
.ws58{word-spacing:-4.858519px;}
.ws119{word-spacing:-4.843640px;}
.wsb8{word-spacing:-4.778186px;}
.ws158{word-spacing:-4.712731px;}
.ws1e{word-spacing:-4.686419px;}
.ws105{word-spacing:-4.626662px;}
.ws48{word-spacing:-4.581822px;}
.ws139{word-spacing:-4.516367px;}
.ws2e{word-spacing:-4.385458px;}
.ws12f{word-spacing:-4.254549px;}
.ws109{word-spacing:-4.189094px;}
.ws65{word-spacing:-3.992731px;}
.ws26{word-spacing:-3.861821px;}
.wsd8{word-spacing:-3.534548px;}
.wsff{word-spacing:-3.429170px;}
.wsa8{word-spacing:-3.425732px;}
.wsf2{word-spacing:-3.423170px;}
.ws8b{word-spacing:-3.389299px;}
.ws163{word-spacing:-3.338185px;}
.wsba{word-spacing:-3.272730px;}
.wsb9{word-spacing:-3.207275px;}
.ws2c{word-spacing:-3.010912px;}
.ws100{word-spacing:-2.749093px;}
.ws13a{word-spacing:-2.618184px;}
.ws62{word-spacing:-2.420928px;}
.ws5f{word-spacing:-2.367130px;}
.ws5d{word-spacing:-2.345462px;}
.ws115{word-spacing:-1.636365px;}
.wsde{word-spacing:-1.611170px;}
.ws164{word-spacing:-1.374547px;}
.ws15c{word-spacing:-0.130909px;}
.wsad{word-spacing:-0.065455px;}
.ws21{word-spacing:0.000000px;}
.ws2d{word-spacing:0.130841px;}
.ws2f{word-spacing:0.175481px;}
.ws5e{word-spacing:0.232186px;}
.ws148{word-spacing:1.178183px;}
.ws61{word-spacing:1.357373px;}
.ws60{word-spacing:1.360963px;}
.ws155{word-spacing:1.636365px;}
.ws15b{word-spacing:1.832729px;}
.ws27{word-spacing:2.279782px;}
.ws15a{word-spacing:3.010912px;}
.ws154{word-spacing:3.534548px;}
.ws114{word-spacing:5.939327px;}
.wsa{word-spacing:6.025404px;}
.ws3a{word-spacing:13.581757px;}
.ws8d{word-spacing:13.642844px;}
.ws7d{word-spacing:13.644485px;}
.wsb6{word-spacing:13.646668px;}
.ws25{word-spacing:13.647211px;}
.ws7f{word-spacing:13.648844px;}
.ws23{word-spacing:13.650485px;}
.ws7e{word-spacing:13.651040px;}
.ws84{word-spacing:30.394483px;}
.ws12c{word-spacing:36.979529px;}
.wsbb{word-spacing:36.982263px;}
.wsdb{word-spacing:36.982800px;}
.ws91{word-spacing:36.982827px;}
.wsac{word-spacing:36.983353px;}
.ws11e{word-spacing:39.796397px;}
.wsc2{word-spacing:41.954054px;}
.wsef{word-spacing:41.956771px;}
.wsf9{word-spacing:41.962771px;}
.ws108{word-spacing:41.974771px;}
.ws130{word-spacing:51.777757px;}
.ws69{word-spacing:51.840485px;}
.ws107{word-spacing:53.477894px;}
.wsaf{word-spacing:58.792262px;}
.wsb0{word-spacing:61.189394px;}
.ws131{word-spacing:116.181915px;}
.ws11f{word-spacing:142.069773px;}
.ws121{word-spacing:171.591974px;}
.ws120{word-spacing:257.303398px;}
.ws122{word-spacing:257.305045px;}
.wsb5{word-spacing:275.337211px;}
.ws133{word-spacing:276.185398px;}
.ws132{word-spacing:282.203398px;}
.wsc1{word-spacing:290.325211px;}
.wsee{word-spacing:314.907710px;}
.wsf8{word-spacing:323.862982px;}
.ws123{word-spacing:405.366808px;}
.ws134{word-spacing:416.622808px;}
._10{margin-left:-8.967280px;}
._e{margin-left:-7.659086px;}
._12{margin-left:-5.956369px;}
._f{margin-left:-4.398560px;}
._0{margin-left:-3.357011px;}
._1{margin-left:-1.635467px;}
._3{width:1.157262px;}
._2{width:2.390561px;}
._4{width:3.586536px;}
._c{width:4.628945px;}
._11{width:6.087278px;}
._19{width:7.616249px;}
._1f{width:8.676727px;}
._17{width:10.632952px;}
._9{width:12.166859px;}
._7{width:13.383019px;}
._8{width:15.130442px;}
._1a{width:16.363650px;}
._b{width:17.454519px;}
._21{width:18.508550px;}
._6{width:19.743613px;}
._a{width:21.273871px;}
._1d{width:22.647292px;}
._18{width:23.972197px;}
._1e{width:26.087978px;}
._2d{width:27.460555px;}
._1c{width:28.807850px;}
._2e{width:31.035986px;}
._14{width:33.667060px;}
._5{width:35.865600px;}
._13{width:42.120503px;}
._1b{width:43.321220px;}
._15{width:65.450670px;}
._16{width:80.636337px;}
._d{width:81.947402px;}
._23{width:95.432807px;}
._22{width:105.970997px;}
._28{width:183.514543px;}
._27{width:291.891777px;}
._25{width:297.915777px;}
._2b{width:299.533398px;}
._29{width:306.419423px;}
._2c{width:313.863777px;}
._2a{width:319.889423px;}
._26{width:328.594322px;}
._24{width:334.227241px;}
._20{width:336.495236px;}
.fc2{color:transparent;}
.fc1{color:rgb(156,154,155);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:0.000000px;}
.fs9{font-size:35.865600px;}
.fsb{font-size:36.654000px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:52.363800px;}
.fsa{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs7{font-size:67.469057px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y40{bottom:56.406000px;}
.y1c{bottom:75.139500px;}
.y1b{bottom:86.497500px;}
.y1a{bottom:97.854000px;}
.yc7{bottom:108.715500px;}
.yf9{bottom:110.781000px;}
.y3f{bottom:117.633000px;}
.y19f{bottom:118.858500px;}
.y11c{bottom:119.899500px;}
.y1ee{bottom:122.458500px;}
.ya3{bottom:122.469000px;}
.y62{bottom:122.487000px;}
.y16a{bottom:122.511000px;}
.y137{bottom:122.541000px;}
.y81{bottom:122.545500px;}
.yc6{bottom:125.154000px;}
.y184{bottom:127.503000px;}
.y1d1{bottom:132.228000px;}
.ye1{bottom:132.327000px;}
.y1b2{bottom:133.560000px;}
.y3e{bottom:134.071500px;}
.y21f{bottom:135.550500px;}
.y11b{bottom:136.338000px;}
.ya2{bottom:138.907500px;}
.y61{bottom:138.925500px;}
.y169{bottom:138.949500px;}
.y19e{bottom:139.182000px;}
.y20a{bottom:139.728000px;}
.yc5{bottom:141.592500px;}
.y1ed{bottom:142.782000px;}
.y80{bottom:144.028500px;}
.y3d{bottom:150.510000px;}
.y1d0{bottom:152.551500px;}
.y11a{bottom:152.776500px;}
.y183{bottom:153.549000px;}
.y1b1{bottom:153.883500px;}
.y136{bottom:153.922500px;}
.ya1{bottom:155.346000px;}
.y168{bottom:155.388000px;}
.y7f{bottom:155.422500px;}
.y21e{bottom:155.874000px;}
.y19{bottom:156.165000px;}
.y209{bottom:160.051500px;}
.y60{bottom:160.407000px;}
.yc4{bottom:163.075500px;}
.y119{bottom:169.215000px;}
.y150{bottom:170.398500px;}
.ya0{bottom:171.784500px;}
.y167{bottom:171.826500px;}
.y3c{bottom:171.993000px;}
.y1cf{bottom:172.875000px;}
.y19d{bottom:173.071500px;}
.y182{bottom:173.872500px;}
.y1b0{bottom:174.207000px;}
.y21d{bottom:176.197500px;}
.y18{bottom:176.488500px;}
.y7e{bottom:176.905500px;}
.y1ec{bottom:179.251500px;}
.yc3{bottom:179.730000px;}
.y208{bottom:180.375000px;}
.ye0{bottom:183.837000px;}
.y135{bottom:185.305500px;}
.y118{bottom:185.653500px;}
.y9f{bottom:188.223000px;}
.yf8{bottom:190.744500px;}
.y1ce{bottom:193.198500px;}
.y166{bottom:193.309500px;}
.y181{bottom:194.196000px;}
.y1af{bottom:194.532000px;}
.y3b{bottom:195.291000px;}
.y14f{bottom:196.239000px;}
.y21c{bottom:196.521000px;}
.y17{bottom:196.812000px;}
.y19c{bottom:196.959000px;}
.y5f{bottom:199.150500px;}
.yc2{bottom:200.053500px;}
.y207{bottom:200.698500px;}
.y134{bottom:201.744000px;}
.y117{bottom:202.092000px;}
.y9e{bottom:204.661500px;}
.yf7{bottom:210.424500px;}
.y1cd{bottom:213.523500px;}
.y180{bottom:214.521000px;}
.y1ae{bottom:214.855500px;}
.y21b{bottom:216.844500px;}
.y16{bottom:217.137000px;}
.y3a{bottom:218.364000px;}
.y116{bottom:218.529000px;}
.y5e{bottom:219.475500px;}
.y206{bottom:221.023500px;}
.y9d{bottom:221.098500px;}
.y133{bottom:223.227000px;}
.yc1{bottom:224.950500px;}
.y1eb{bottom:230.118000px;}
.y19b{bottom:230.848500px;}
.y1cc{bottom:233.847000px;}
.y17f{bottom:234.844500px;}
.y115{bottom:234.967500px;}
.y1ad{bottom:235.179000px;}
.ydf{bottom:235.348500px;}
.y21a{bottom:237.169500px;}
.y15{bottom:237.460500px;}
.y9c{bottom:237.537000px;}
.y39{bottom:238.689000px;}
.y132{bottom:239.665500px;}
.y5d{bottom:239.799000px;}
.y205{bottom:241.347000px;}
.y7d{bottom:243.396000px;}
.yc0{bottom:245.274000px;}
.yf6{bottom:251.028000px;}
.y19a{bottom:251.172000px;}
.y17e{bottom:255.168000px;}
.y1ac{bottom:255.502500px;}
.y114{bottom:256.450500px;}
.y14e{bottom:256.521000px;}
.y165{bottom:256.543500px;}
.y219{bottom:257.493000px;}
.y14{bottom:257.784000px;}
.y5c{bottom:260.122500px;}
.y204{bottom:261.670500px;}
.y7c{bottom:263.721000px;}
.y1cb{bottom:267.804000px;}
.y113{bottom:267.844500px;}
.ybf{bottom:268.677000px;}
.y9b{bottom:268.920000px;}
.y199{bottom:271.495500px;}
.y38{bottom:272.109000px;}
.y17d{bottom:275.491500px;}
.y1ab{bottom:275.826000px;}
.yf5{bottom:276.126000px;}
.y14d{bottom:276.202500px;}
.y164{bottom:276.867000px;}
.y218{bottom:277.816500px;}
.y13{bottom:278.107500px;}
.y5b{bottom:280.446000px;}
.y1ea{bottom:281.880000px;}
.y203{bottom:281.994000px;}
.y7b{bottom:284.044500px;}
.y112{bottom:284.283000px;}
.yde{bottom:286.858500px;}
.y1ca{bottom:288.127500px;}
.y9a{bottom:288.687000px;}
.y198{bottom:291.820500px;}
.y37{bottom:292.432500px;}
.y17c{bottom:295.815000px;}
.y14c{bottom:295.882500px;}
.y1aa{bottom:296.151000px;}
.yf4{bottom:296.449500px;}
.y217{bottom:298.140000px;}
.ybe{bottom:298.684500px;}
.y5a{bottom:300.769500px;}
.y202{bottom:302.317500px;}
.y131{bottom:303.709500px;}
.y7a{bottom:304.368000px;}
.y99{bottom:305.124000px;}
.y111{bottom:305.766000px;}
.y12{bottom:308.961000px;}
.y1e9{bottom:310.393500px;}
.y163{bottom:312.135000px;}
.y197{bottom:312.144000px;}
.y216{bottom:318.463500px;}
.ybd{bottom:319.008000px;}
.y59{bottom:321.094500px;}
.y201{bottom:322.641000px;}
.y1c9{bottom:323.395500px;}
.y130{bottom:324.033000px;}
.y79{bottom:324.691500px;}
.y36{bottom:325.854000px;}
.ydd{bottom:326.806500px;}
.yf3{bottom:328.060500px;}
.y110{bottom:330.511500px;}
.y1e8{bottom:330.717000px;}
.y17b{bottom:332.286000px;}
.y196{bottom:332.467500px;}
.y162{bottom:334.603500px;}
.y14b{bottom:336.486000px;}
.y98{bottom:336.507000px;}
.y215{bottom:338.788500px;}
.ybc{bottom:339.331500px;}
.y58{bottom:341.418000px;}
.y200{bottom:342.966000px;}
.y1c8{bottom:343.719000px;}
.y12f{bottom:344.356500px;}
.y78{bottom:345.015000px;}
.ydc{bottom:347.130000px;}
.yf2{bottom:348.384000px;}
.y35{bottom:349.683000px;}
.y1a9{bottom:350.176500px;}
.y11{bottom:352.698000px;}
.y195{bottom:352.791000px;}
.y161{bottom:354.927000px;}
.y97{bottom:357.990000px;}
.y214{bottom:359.112000px;}
.y1e7{bottom:359.229000px;}
.ybb{bottom:359.655000px;}
.y57{bottom:361.741500px;}
.y1ff{bottom:363.289500px;}
.y1c7{bottom:364.042500px;}
.y10f{bottom:364.800000px;}
.y77{bottom:365.340000px;}
.yf1{bottom:368.707500px;}
.y14a{bottom:371.754000px;}
.y10{bottom:373.021500px;}
.y194{bottom:373.114500px;}
.y1a8{bottom:378.690000px;}
.y213{bottom:379.435500px;}
.y1e6{bottom:379.554000px;}
.y12e{bottom:379.624500px;}
.yba{bottom:379.980000px;}
.y56{bottom:382.065000px;}
.ydb{bottom:382.398000px;}
.y34{bottom:383.104500px;}
.y1fe{bottom:383.613000px;}
.y17a{bottom:383.754000px;}
.y1c6{bottom:384.367500px;}
.y10e{bottom:385.123500px;}
.y76{bottom:385.663500px;}
.y96{bottom:388.476000px;}
.y160{bottom:390.195000px;}
.y149{bottom:392.077500px;}
.yf{bottom:393.345000px;}
.y193{bottom:393.439500px;}
.y1a7{bottom:399.013500px;}
.yf0{bottom:399.565500px;}
.y212{bottom:399.759000px;}
.yb9{bottom:400.303500px;}
.y55{bottom:402.388500px;}
.yda{bottom:402.721500px;}
.y33{bottom:403.428000px;}
.y12d{bottom:403.684500px;}
.y1fd{bottom:403.936500px;}
.y179{bottom:404.079000px;}
.y1c5{bottom:404.691000px;}
.y10d{bottom:405.447000px;}
.y75{bottom:405.987000px;}
.yef{bottom:409.537500px;}
.y15f{bottom:410.518500px;}
.y95{bottom:411.550500px;}
.y148{bottom:412.401000px;}
.y192{bottom:413.763000px;}
.y211{bottom:420.082500px;}
.yb8{bottom:420.627000px;}
.y54{bottom:422.712000px;}
.y32{bottom:423.751500px;}
.y1fc{bottom:424.260000px;}
.y178{bottom:424.402500px;}
.y1c4{bottom:425.014500px;}
.y1e5{bottom:425.515500px;}
.y10c{bottom:425.772000px;}
.y74{bottom:426.310500px;}
.y1a6{bottom:427.525500px;}
.y12c{bottom:427.744500px;}
.ye{bottom:429.816000px;}
.y15e{bottom:430.842000px;}
.y94{bottom:431.874000px;}
.y147{bottom:432.726000px;}
.y191{bottom:434.086500px;}
.yd9{bottom:437.989500px;}
.y210{bottom:440.406000px;}
.yb7{bottom:440.950500px;}
.y53{bottom:443.037000px;}
.y31{bottom:444.075000px;}
.y1fb{bottom:444.585000px;}
.y177{bottom:444.726000px;}
.y1c3{bottom:445.338000px;}
.y10b{bottom:446.095500px;}
.yee{bottom:450.792000px;}
.y15d{bottom:451.167000px;}
.y146{bottom:453.049500px;}
.y190{bottom:454.410000px;}
.yd8{bottom:458.313000px;}
.y20f{bottom:460.731000px;}
.yb6{bottom:461.274000px;}
.y73{bottom:461.578500px;}
.y12b{bottom:463.012500px;}
.y52{bottom:463.360500px;}
.y30{bottom:464.400000px;}
.y1fa{bottom:464.908500px;}
.y176{bottom:465.049500px;}
.y1c2{bottom:465.661500px;}
.y10a{bottom:466.419000px;}
.y93{bottom:467.142000px;}
.y1e4{bottom:468.771000px;}
.yed{bottom:471.115500px;}
.y15c{bottom:471.490500px;}
.y145{bottom:473.373000px;}
.y1a5{bottom:473.487000px;}
.y18f{bottom:474.733500px;}
.yd7{bottom:478.636500px;}
.y20e{bottom:481.054500px;}
.yb5{bottom:481.599000px;}
.y72{bottom:481.902000px;}
.y12a{bottom:483.336000px;}
.y51{bottom:483.684000px;}
.y2f{bottom:484.723500px;}
.y1f9{bottom:485.232000px;}
.y175{bottom:485.373000px;}
.y1c1{bottom:485.986500px;}
.y92{bottom:487.465500px;}
.yec{bottom:491.439000px;}
.y15b{bottom:491.814000px;}
.y1e3{bottom:493.018500px;}
.y144{bottom:493.696500px;}
.y109{bottom:497.272500px;}
.yd6{bottom:498.960000px;}
.yd{bottom:499.218000px;}
.y20d{bottom:501.378000px;}
.yb4{bottom:501.922500px;}
.y129{bottom:503.659500px;}
.y50{bottom:504.007500px;}
.y1f8{bottom:505.555500px;}
.y71{bottom:505.962000px;}
.y91{bottom:507.789000px;}
.y18e{bottom:511.204500px;}
.yeb{bottom:511.764000px;}
.y15a{bottom:512.137500px;}
.y1e2{bottom:513.343500px;}
.y143{bottom:514.020000px;}
.yc{bottom:517.150500px;}
.y2e{bottom:518.145000px;}
.y1a4{bottom:519.610500px;}
.y174{bottom:520.641000px;}
.y1c0{bottom:521.253000px;}
.y20c{bottom:521.701500px;}
.yb3{bottom:522.246000px;}
.y128{bottom:523.983000px;}
.y4f{bottom:524.331000px;}
.y1f7{bottom:525.879000px;}
.y70{bottom:526.285500px;}
.y90{bottom:528.114000px;}
.yea{bottom:532.087500px;}
.y159{bottom:532.461000px;}
.yd5{bottom:534.228000px;}
.yb{bottom:535.083000px;}
.y1e1{bottom:538.576500px;}
.y108{bottom:540.780000px;}
.y2d{bottom:541.218000px;}
.y20b{bottom:542.025000px;}
.yb2{bottom:542.569500px;}
.y1a3{bottom:543.669000px;}
.y127{bottom:544.306500px;}
.y4e{bottom:544.656000px;}
.y173{bottom:544.701000px;}
.y1bf{bottom:545.313000px;}
.y1f6{bottom:546.204000px;}
.y142{bottom:549.288000px;}
.y6f{bottom:550.345500px;}
.y158{bottom:552.786000px;}
.ya{bottom:553.015500px;}
.yd4{bottom:558.288000px;}
.y1e0{bottom:558.900000px;}
.y107{bottom:561.103500px;}
.y2c{bottom:561.541500px;}
.y8f{bottom:562.071000px;}
.y18d{bottom:562.350000px;}
.yb1{bottom:562.893000px;}
.ye9{bottom:562.941000px;}
.y4d{bottom:564.979500px;}
.y1f5{bottom:566.527500px;}
.y1a2{bottom:567.729000px;}
.y172{bottom:568.761000px;}
.y1be{bottom:569.373000px;}
.y141{bottom:569.611500px;}
.y6e{bottom:570.669000px;}
.y9{bottom:570.948000px;}
.y157{bottom:573.109500px;}
.y126{bottom:578.820000px;}
.y106{bottom:581.427000px;}
.y8e{bottom:582.394500px;}
.y1df{bottom:582.639000px;}
.y18c{bottom:582.673500px;}
.y4c{bottom:585.303000px;}
.y2b{bottom:585.370500px;}
.y1f4{bottom:586.851000px;}
.y1a1{bottom:588.052500px;}
.y8{bottom:588.880500px;}
.y125{bottom:588.981000px;}
.y140{bottom:589.936500px;}
.yb0{bottom:592.902000px;}
.y156{bottom:593.433000px;}
.yd3{bottom:593.556000px;}
.y18b{bottom:602.997000px;}
.y171{bottom:604.029000px;}
.y1bd{bottom:604.641000px;}
.y4b{bottom:605.626500px;}
.ye8{bottom:605.818500px;}
.y6d{bottom:605.937000px;}
.y7{bottom:606.814500px;}
.y1f3{bottom:607.174500px;}
.y8d{bottom:607.948500px;}
.y2a{bottom:608.445000px;}
.y155{bottom:613.756500px;}
.yd2{bottom:613.879500px;}
.y1de{bottom:615.342000px;}
.y105{bottom:615.715500px;}
.yaf{bottom:615.975000px;}
.y18a{bottom:623.320500px;}
.y170{bottom:624.352500px;}
.y1bc{bottom:624.964500px;}
.y13f{bottom:625.203000px;}
.y4a{bottom:625.950000px;}
.y6c{bottom:626.260500px;}
.y1f2{bottom:627.498000px;}
.y8c{bottom:628.272000px;}
.y29{bottom:628.768500px;}
.ye7{bottom:628.960500px;}
.y124{bottom:634.080000px;}
.yd1{bottom:634.203000px;}
.y1dd{bottom:635.665500px;}
.y104{bottom:636.039000px;}
.yae{bottom:636.298500px;}
.y1a0{bottom:643.644000px;}
.y189{bottom:643.645500px;}
.y16f{bottom:644.676000px;}
.y1bb{bottom:645.288000px;}
.y13e{bottom:645.528000px;}
.y6{bottom:646.006500px;}
.y49{bottom:646.275000px;}
.y1f1{bottom:647.823000px;}
.y8b{bottom:652.332000px;}
.y123{bottom:654.405000px;}
.y1dc{bottom:655.989000px;}
.y6b{bottom:660.382500px;}
.y28{bottom:662.190000px;}
.y188{bottom:663.969000px;}
.yd0{bottom:665.058000px;}
.y1ba{bottom:665.613000px;}
.y13d{bottom:665.851500px;}
.yad{bottom:666.307500px;}
.y4{bottom:666.330000px;}
.y48{bottom:666.598500px;}
.y1f0{bottom:668.146500px;}
.y103{bottom:670.327500px;}
.y154{bottom:674.728500px;}
.y8a{bottom:676.392000px;}
.y16e{bottom:679.944000px;}
.y6a{bottom:680.706000px;}
.y27{bottom:682.513500px;}
.y5{bottom:683.475000px;}
.y187{bottom:684.292500px;}
.y1b9{bottom:685.936500px;}
.yac{bottom:686.631000px;}
.y47{bottom:686.922000px;}
.y1ef{bottom:688.470000px;}
.y1db{bottom:688.692000px;}
.ye6{bottom:689.244000px;}
.y122{bottom:689.671500px;}
.y102{bottom:690.651000px;}
.y153{bottom:695.052000px;}
.y89{bottom:699.466500px;}
.y13c{bottom:701.119500px;}
.y26{bottom:702.837000px;}
.y16d{bottom:704.004000px;}
.y186{bottom:704.616000px;}
.y69{bottom:706.260000px;}
.yab{bottom:706.954500px;}
.y46{bottom:707.245500px;}
.ycf{bottom:708.793500px;}
.ye5{bottom:708.924000px;}
.y3{bottom:710.026500px;}
.y101{bottom:710.974500px;}
.y1da{bottom:712.431000px;}
.y152{bottom:715.375500px;}
.y88{bottom:719.790000px;}
.y13b{bottom:721.443000px;}
.y25{bottom:723.160500px;}
.y121{bottom:724.939500px;}
.y68{bottom:726.583500px;}
.yaa{bottom:727.278000px;}
.y45{bottom:727.569000px;}
.y16c{bottom:727.602000px;}
.yce{bottom:729.117000px;}
.y100{bottom:731.299500px;}
.y1d9{bottom:736.170000px;}
.y24{bottom:743.485500px;}
.y120{bottom:745.263000px;}
.y185{bottom:745.264500px;}
.y1b8{bottom:746.907000px;}
.y13a{bottom:747.283500px;}
.y2{bottom:747.385500px;}
.ya9{bottom:747.601500px;}
.y44{bottom:747.894000px;}
.ycd{bottom:749.442000px;}
.ye4{bottom:749.527500px;}
.y67{bottom:750.643500px;}
.yff{bottom:751.623000px;}
.y87{bottom:755.058000px;}
.y1d8{bottom:759.909000px;}
.y11f{bottom:765.588000px;}
.y1b7{bottom:767.232000px;}
.ya8{bottom:767.926500px;}
.y43{bottom:768.217500px;}
.ycc{bottom:769.765500px;}
.y66{bottom:770.967000px;}
.yfe{bottom:771.946500px;}
.ye3{bottom:774.624000px;}
.y86{bottom:775.381500px;}
.y23{bottom:776.905500px;}
.y11e{bottom:785.911500px;}
.y1b6{bottom:787.555500px;}
.y42{bottom:788.541000px;}
.ycb{bottom:790.089000px;}
.y151{bottom:791.290500px;}
.yfd{bottom:792.270000px;}
.y1d7{bottom:792.612000px;}
.ye2{bottom:794.947500px;}
.y85{bottom:795.705000px;}
.ya7{bottom:796.623000px;}
.y22{bottom:799.980000px;}
.y1{bottom:803.425500px;}
.y65{bottom:806.235000px;}
.y16b{bottom:807.565500px;}
.y1b5{bottom:807.879000px;}
.y41{bottom:808.864500px;}
.yca{bottom:810.412500px;}
.yfc{bottom:812.593500px;}
.y1d6{bottom:812.935500px;}
.y84{bottom:816.028500px;}
.ya6{bottom:816.946500px;}
.y21{bottom:820.303500px;}
.y64{bottom:826.558500px;}
.y139{bottom:827.247000px;}
.y1b4{bottom:828.202500px;}
.yc9{bottom:830.736000px;}
.yfb{bottom:832.918500px;}
.y1d5{bottom:833.259000px;}
.y83{bottom:836.352000px;}
.ya5{bottom:840.349500px;}
.y20{bottom:844.132500px;}
.y11d{bottom:846.882000px;}
.y63{bottom:846.883500px;}
.y138{bottom:846.927000px;}
.yc8{bottom:851.061000px;}
.yfa{bottom:853.242000px;}
.y1d4{bottom:853.584000px;}
.y82{bottom:856.677000px;}
.ya4{bottom:860.673000px;}
.y1b3{bottom:863.470500px;}
.y1f{bottom:867.207000px;}
.y1d3{bottom:873.907500px;}
.y1e{bottom:887.530500px;}
.y1d2{bottom:894.231000px;}
.y1d{bottom:940.741500px;}
.h4{height:0.000000px;}
.hc{height:29.409792px;}
.h9{height:39.212892px;}
.hd{height:44.114688px;}
.h6{height:49.015992px;}
.h8{height:53.081088px;}
.h5{height:53.672772px;}
.he{height:53.678772px;}
.ha{height:55.324627px;}
.h13{height:56.110476px;}
.h11{height:56.116476px;}
.h7{height:63.697128px;}
.hb{height:67.484316px;}
.hf{height:67.490316px;}
.h3{height:70.583304px;}
.h2{height:91.741500px;}
.h15{height:110.824704px;}
.h16{height:132.415428px;}
.h10{height:134.836476px;}
.h12{height:176.242476px;}
.h14{height:176.998476px;}
.h0{height:1020.465000px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x2{left:86.080500px;}
.x1{left:87.165000px;}
.x4d{left:88.491000px;}
.x4c{left:90.421500px;}
.x2a{left:95.037000px;}
.x62{left:99.078000px;}
.x1d{left:102.306000px;}
.x6{left:104.173500px;}
.x45{left:105.286500px;}
.x1e{left:107.340000px;}
.x10{left:111.390000px;}
.x7{left:113.320500px;}
.x57{left:115.969500px;}
.x34{left:117.441000px;}
.x29{left:119.431500px;}
.x4{left:121.180500px;}
.x65{left:122.707500px;}
.x15{left:124.347000px;}
.x4e{left:128.320500px;}
.x17{left:132.181500px;}
.x58{left:134.448000px;}
.x37{left:141.474000px;}
.x35{left:142.551000px;}
.x44{left:144.018000px;}
.x20{left:145.327500px;}
.xc{left:149.190000px;}
.x5{left:152.172000px;}
.x18{left:154.051500px;}
.x30{left:156.784500px;}
.x4f{left:159.631500px;}
.x2d{left:161.218500px;}
.x69{left:163.600500px;}
.x67{left:165.171000px;}
.xb{left:169.750500px;}
.x8{left:171.060000px;}
.x3a{left:173.793000px;}
.x38{left:178.227000px;}
.x21{left:180.607500px;}
.x25{left:182.178000px;}
.x19{left:189.331500px;}
.x5c{left:192.250500px;}
.x3{left:195.180000px;}
.x39{left:196.530000px;}
.x6a{left:198.880500px;}
.x68{left:200.451000px;}
.x9{left:206.340000px;}
.x40{left:208.197000px;}
.x36{left:209.826000px;}
.x59{left:212.187000px;}
.x63{left:213.232500px;}
.x22{left:215.887500px;}
.x26{left:217.458000px;}
.x2b{left:227.394000px;}
.x5d{left:230.313000px;}
.x3b{left:232.071000px;}
.xd{left:233.928000px;}
.x1a{left:235.902000px;}
.x54{left:236.938500px;}
.xa{left:239.460000px;}
.x56{left:241.078500px;}
.x2e{left:242.652000px;}
.x13{left:245.841000px;}
.x23{left:249.007500px;}
.x50{left:250.090500px;}
.x5a{left:251.841000px;}
.x11{left:252.910500px;}
.x52{left:254.322000px;}
.x48{left:255.520500px;}
.x2c{left:260.514000px;}
.x53{left:261.990000px;}
.x5e{left:263.433000px;}
.x64{left:264.850500px;}
.xe{left:267.048000px;}
.x1b{left:269.022000px;}
.x3c{left:270.133500px;}
.x51{left:274.267500px;}
.x27{left:278.167500px;}
.x41{left:279.378000px;}
.x14{left:281.628000px;}
.x24{left:284.794500px;}
.x12{left:286.030500px;}
.x6b{left:287.440500px;}
.x49{left:288.640500px;}
.x66{left:299.853000px;}
.xf{left:302.836500px;}
.x1c{left:304.810500px;}
.x32{left:306.135000px;}
.x61{left:307.396500px;}
.x5f{left:309.136500px;}
.x55{left:310.711500px;}
.x28{left:313.954500px;}
.x16{left:321.138000px;}
.x42{left:325.083000px;}
.x4a{left:334.344000px;}
.x33{left:343.444500px;}
.x3d{left:348.874500px;}
.x31{left:350.571000px;}
.x6d{left:354.714000px;}
.x46{left:360.363000px;}
.x6c{left:366.264000px;}
.x2f{left:378.160500px;}
.x3e{left:386.184000px;}
.x3f{left:415.050000px;}
.x60{left:417.364500px;}
.x43{left:433.311000px;}
.x6e{left:440.662500px;}
.x4b{left:442.573500px;}
.x47{left:468.591000px;}
.x1f{left:595.311000px;}
.x5b{left:597.519000px;}
@media print{
.v8{vertical-align:-139.952000pt;}
.v6{vertical-align:-69.973333pt;}
.v3{vertical-align:-17.936000pt;}
.v5{vertical-align:-13.312000pt;}
.v4{vertical-align:-12.218667pt;}
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:5.237333pt;}
.v2{vertical-align:21.818667pt;}
.v9{vertical-align:25.258667pt;}
.v7{vertical-align:36.805333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.000868pt;}
.ls4e{letter-spacing:0.001926pt;}
.ls4a{letter-spacing:0.002395pt;}
.ls23{letter-spacing:0.002892pt;}
.ls41{letter-spacing:0.002893pt;}
.ls17{letter-spacing:0.003383pt;}
.ls34{letter-spacing:0.003845pt;}
.lsc{letter-spacing:0.004817pt;}
.ls28{letter-spacing:0.984030pt;}
.ls8{letter-spacing:1.220489pt;}
.ls3{letter-spacing:1.225105pt;}
.ls42{letter-spacing:2.651581pt;}
.ls7{letter-spacing:2.652885pt;}
.lsb{letter-spacing:2.653841pt;}
.ls38{letter-spacing:2.653961pt;}
.ls2{letter-spacing:2.656341pt;}
.ls9{letter-spacing:2.656905pt;}
.ls4b{letter-spacing:2.656914pt;}
.ls3c{letter-spacing:2.658219pt;}
.ls13{letter-spacing:2.660296pt;}
.ls27{letter-spacing:2.660326pt;}
.ls1b{letter-spacing:2.730643pt;}
.ls4{letter-spacing:2.735977pt;}
.ls3e{letter-spacing:4.998765pt;}
.ls19{letter-spacing:5.004098pt;}
.ls29{letter-spacing:7.100098pt;}
.ls11{letter-spacing:9.744956pt;}
.ls24{letter-spacing:12.674892pt;}
.ls2d{letter-spacing:12.929909pt;}
.ls2c{letter-spacing:12.931845pt;}
.ls46{letter-spacing:14.004818pt;}
.ls33{letter-spacing:14.543484pt;}
.ls40{letter-spacing:14.543973pt;}
.lsf{letter-spacing:14.543989pt;}
.ls36{letter-spacing:14.544475pt;}
.ls37{letter-spacing:14.548818pt;}
.ls10{letter-spacing:14.549323pt;}
.ls31{letter-spacing:14.549808pt;}
.ls3a{letter-spacing:14.611746pt;}
.ls39{letter-spacing:14.613018pt;}
.ls3b{letter-spacing:14.615552pt;}
.ls1{letter-spacing:14.891613pt;}
.ls47{letter-spacing:15.558247pt;}
.ls1d{letter-spacing:16.164817pt;}
.lsa{letter-spacing:16.197265pt;}
.ls44{letter-spacing:16.656914pt;}
.ls45{letter-spacing:16.662247pt;}
.ls49{letter-spacing:16.795534pt;}
.ls48{letter-spacing:16.800868pt;}
.ls26{letter-spacing:17.162643pt;}
.ls2e{letter-spacing:17.187374pt;}
.ls3f{letter-spacing:17.192708pt;}
.ls2b{letter-spacing:17.200868pt;}
.ls32{letter-spacing:17.200914pt;}
.ls3d{letter-spacing:17.206201pt;}
.ls35{letter-spacing:17.206247pt;}
.ls4d{letter-spacing:17.460818pt;}
.ls15{letter-spacing:17.829310pt;}
.ls2a{letter-spacing:18.063977pt;}
.ls1a{letter-spacing:18.803374pt;}
.ls1c{letter-spacing:18.808708pt;}
.ls4f{letter-spacing:19.257675pt;}
.ls43{letter-spacing:19.676098pt;}
.ls30{letter-spacing:19.857931pt;}
.ls4c{letter-spacing:20.118247pt;}
.ls6{letter-spacing:20.367977pt;}
.ls5{letter-spacing:20.853310pt;}
.ls25{letter-spacing:22.573027pt;}
.lsd{letter-spacing:23.286767pt;}
.ls1e{letter-spacing:26.564344pt;}
.lse{letter-spacing:28.540101pt;}
.ls1f{letter-spacing:55.774041pt;}
.ls16{letter-spacing:62.609432pt;}
.ls21{letter-spacing:62.620099pt;}
.ls18{letter-spacing:65.252296pt;}
.ls22{letter-spacing:65.273629pt;}
.ls12{letter-spacing:79.692099pt;}
.ls14{letter-spacing:82.350963pt;}
.ls20{letter-spacing:106.497432pt;}
.ws135{word-spacing:-32.900619pt;}
.wsd{word-spacing:-25.309112pt;}
.ws14{word-spacing:-23.563656pt;}
.wsd4{word-spacing:-20.802048pt;}
.wsa9{word-spacing:-20.247336pt;}
.ws0{word-spacing:-19.836000pt;}
.ws36{word-spacing:-19.367424pt;}
.ws13d{word-spacing:-15.592740pt;}
.wsb4{word-spacing:-15.534558pt;}
.ws113{word-spacing:-15.476377pt;}
.ws3d{word-spacing:-15.301831pt;}
.ws143{word-spacing:-15.243649pt;}
.ws125{word-spacing:-14.894558pt;}
.ws77{word-spacing:-14.778194pt;}
.ws76{word-spacing:-14.754063pt;}
.ws8f{word-spacing:-14.720012pt;}
.wsc9{word-spacing:-14.661830pt;}
.ws142{word-spacing:-14.603649pt;}
.ws13b{word-spacing:-14.487285pt;}
.ws3b{word-spacing:-14.429103pt;}
.ws162{word-spacing:-14.312739pt;}
.ws40{word-spacing:-14.254557pt;}
.ws1{word-spacing:-14.231430pt;}
.ws126{word-spacing:-14.138194pt;}
.ws3f{word-spacing:-14.080012pt;}
.wsc4{word-spacing:-14.021830pt;}
.ws4d{word-spacing:-13.963648pt;}
.ws56{word-spacing:-13.905466pt;}
.wse8{word-spacing:-13.868032pt;}
.ws10f{word-spacing:-13.847284pt;}
.wsb7{word-spacing:-13.789102pt;}
.ws10a{word-spacing:-13.772352pt;}
.ws157{word-spacing:-13.730921pt;}
.wsfd{word-spacing:-13.672739pt;}
.ws149{word-spacing:-13.556375pt;}
.ws12d{word-spacing:-13.498193pt;}
.ws72{word-spacing:-13.440011pt;}
.ws11{word-spacing:-13.323647pt;}
.ws129{word-spacing:-13.265466pt;}
.ws31{word-spacing:-13.207284pt;}
.ws51{word-spacing:-13.149102pt;}
.ws117{word-spacing:-13.090920pt;}
.ws102{word-spacing:-12.974556pt;}
.wsc7{word-spacing:-12.858193pt;}
.ws6a{word-spacing:-12.833013pt;}
.ws104{word-spacing:-12.827680pt;}
.ws47{word-spacing:-12.800011pt;}
.wsc8{word-spacing:-12.741829pt;}
.wsf4{word-spacing:-12.739443pt;}
.ws3c{word-spacing:-12.683647pt;}
.wsa2{word-spacing:-12.625465pt;}
.ws112{word-spacing:-12.567283pt;}
.ws85{word-spacing:-12.529050pt;}
.ws15{word-spacing:-12.509101pt;}
.ws90{word-spacing:-12.450919pt;}
.wsf5{word-spacing:-12.392738pt;}
.wsce{word-spacing:-12.337766pt;}
.ws96{word-spacing:-12.218192pt;}
.ws15f{word-spacing:-12.160010pt;}
.ws46{word-spacing:-12.043646pt;}
.ws44{word-spacing:-11.985465pt;}
.ws42{word-spacing:-11.963721pt;}
.wsf6{word-spacing:-11.927283pt;}
.wsfc{word-spacing:-11.869101pt;}
.ws4c{word-spacing:-11.810919pt;}
.ws95{word-spacing:-11.752737pt;}
.ws5a{word-spacing:-11.694555pt;}
.ws14a{word-spacing:-11.636373pt;}
.wscf{word-spacing:-11.620454pt;}
.ws7{word-spacing:-11.583183pt;}
.ws88{word-spacing:-11.524813pt;}
.wsbf{word-spacing:-11.520010pt;}
.wse{word-spacing:-11.476992pt;}
.ws6d{word-spacing:-11.461828pt;}
.wsbe{word-spacing:-11.459507pt;}
.wsbd{word-spacing:-11.459041pt;}
.wse9{word-spacing:-11.429171pt;}
.ws12b{word-spacing:-11.403646pt;}
.ws54{word-spacing:-11.345464pt;}
.ws41{word-spacing:-11.287282pt;}
.wsfa{word-spacing:-11.229100pt;}
.ws7c{word-spacing:-11.170918pt;}
.ws22{word-spacing:-11.154884pt;}
.ws13e{word-spacing:-11.142887pt;}
.ws150{word-spacing:-11.112737pt;}
.ws39{word-spacing:-11.094912pt;}
.wsc6{word-spacing:-10.938191pt;}
.ws9a{word-spacing:-10.903142pt;}
.wsc5{word-spacing:-10.880009pt;}
.ws33{word-spacing:-10.821925pt;}
.ws24{word-spacing:-10.821827pt;}
.ws14f{word-spacing:-10.765206pt;}
.ws32{word-spacing:-10.765123pt;}
.ws138{word-spacing:-10.763850pt;}
.wsdc{word-spacing:-10.763759pt;}
.wsa7{word-spacing:-10.763724pt;}
.ws2{word-spacing:-10.763645pt;}
.ws14e{word-spacing:-10.763300pt;}
.ws14b{word-spacing:-10.763287pt;}
.wsfe{word-spacing:-10.762996pt;}
.ws15e{word-spacing:-10.762901pt;}
.wse6{word-spacing:-10.762301pt;}
.wse5{word-spacing:-10.761831pt;}
.wsbc{word-spacing:-10.760841pt;}
.wsdd{word-spacing:-10.760777pt;}
.wse4{word-spacing:-10.709453pt;}
.wse3{word-spacing:-10.708982pt;}
.ws53{word-spacing:-10.705463pt;}
.ws10c{word-spacing:-10.647282pt;}
.ws18{word-spacing:-10.589100pt;}
.ws16{word-spacing:-10.531488pt;}
.ws1a{word-spacing:-10.530918pt;}
.ws73{word-spacing:-10.424934pt;}
.ws7b{word-spacing:-10.414554pt;}
.ws110{word-spacing:-10.356372pt;}
.ws151{word-spacing:-10.298190pt;}
.wsb2{word-spacing:-10.240009pt;}
.wsb3{word-spacing:-10.212094pt;}
.ws103{word-spacing:-10.181827pt;}
.ws97{word-spacing:-10.123645pt;}
.ws89{word-spacing:-10.090189pt;}
.ws4a{word-spacing:-10.065463pt;}
.ws99{word-spacing:-10.007281pt;}
.wsdf{word-spacing:-9.976374pt;}
.wse1{word-spacing:-9.975428pt;}
.wse0{word-spacing:-9.974426pt;}
.ws106{word-spacing:-9.898906pt;}
.wsc0{word-spacing:-9.890917pt;}
.ws11d{word-spacing:-9.882899pt;}
.ws34{word-spacing:-9.851085pt;}
.ws4e{word-spacing:-9.832735pt;}
.ws9{word-spacing:-9.829765pt;}
.ws66{word-spacing:-9.774554pt;}
.ws10d{word-spacing:-9.716372pt;}
.wsa0{word-spacing:-9.659802pt;}
.ws10e{word-spacing:-9.658190pt;}
.ws9e{word-spacing:-9.611981pt;}
.wsf{word-spacing:-9.600008pt;}
.wsda{word-spacing:-9.541826pt;}
.ws52{word-spacing:-9.483644pt;}
.ws9b{word-spacing:-9.468518pt;}
.ws9c{word-spacing:-9.420698pt;}
.ws6f{word-spacing:-9.367281pt;}
.ws118{word-spacing:-9.309099pt;}
.ws6{word-spacing:-9.298427pt;}
.ws4b{word-spacing:-9.250917pt;}
.wsd0{word-spacing:-9.229414pt;}
.ws29{word-spacing:-9.192735pt;}
.wscb{word-spacing:-9.134553pt;}
.ws68{word-spacing:-9.076371pt;}
.ws37{word-spacing:-9.038131pt;}
.ws11c{word-spacing:-9.018189pt;}
.ws12a{word-spacing:-8.969268pt;}
.ws80{word-spacing:-8.960007pt;}
.ws55{word-spacing:-8.901826pt;}
.ws5b{word-spacing:-8.870363pt;}
.wscd{word-spacing:-8.847957pt;}
.wsed{word-spacing:-8.847582pt;}
.ws38{word-spacing:-8.846848pt;}
.wsec{word-spacing:-8.843605pt;}
.wsd6{word-spacing:-8.799027pt;}
.ws98{word-spacing:-8.785462pt;}
.ws8{word-spacing:-8.767088pt;}
.ws82{word-spacing:-8.727280pt;}
.wsf1{word-spacing:-8.669098pt;}
.wsa4{word-spacing:-8.610916pt;}
.ws1c{word-spacing:-8.586454pt;}
.wsae{word-spacing:-8.552734pt;}
.ws13{word-spacing:-8.494553pt;}
.ws70{word-spacing:-8.436371pt;}
.ws59{word-spacing:-8.378189pt;}
.ws78{word-spacing:-8.322147pt;}
.ws57{word-spacing:-8.320007pt;}
.ws7a{word-spacing:-8.261825pt;}
.ws141{word-spacing:-8.203643pt;}
.ws9f{word-spacing:-8.177357pt;}
.wsa6{word-spacing:-8.145461pt;}
.ws6b{word-spacing:-8.087279pt;}
.ws67{word-spacing:-8.029098pt;}
.ws9d{word-spacing:-7.986074pt;}
.wsb{word-spacing:-7.970916pt;}
.ws5{word-spacing:-7.916946pt;}
.wse2{word-spacing:-7.912734pt;}
.ws10{word-spacing:-7.854552pt;}
.ws145{word-spacing:-7.796370pt;}
.ws19{word-spacing:-7.745030pt;}
.ws159{word-spacing:-7.680208pt;}
.ws136{word-spacing:-7.680202pt;}
.wsf7{word-spacing:-7.680086pt;}
.ws6e{word-spacing:-7.680006pt;}
.ws153{word-spacing:-7.677759pt;}
.ws13c{word-spacing:-7.624454pt;}
.ws12e{word-spacing:-7.621825pt;}
.ws140{word-spacing:-7.619963pt;}
.ws156{word-spacing:-7.619121pt;}
.ws13f{word-spacing:-7.618651pt;}
.ws14c{word-spacing:-7.617625pt;}
.wsfb{word-spacing:-7.505461pt;}
.wsea{word-spacing:-7.460045pt;}
.wsca{word-spacing:-7.447279pt;}
.ws12{word-spacing:-7.389097pt;}
.wsd5{word-spacing:-7.364403pt;}
.ws1d{word-spacing:-7.311238pt;}
.ws6c{word-spacing:-7.214551pt;}
.ws83{word-spacing:-7.173120pt;}
.ws8e{word-spacing:-7.156370pt;}
.wsd2{word-spacing:-7.125299pt;}
.wsb1{word-spacing:-7.098188pt;}
.ws1b{word-spacing:-7.056195pt;}
.ws11b{word-spacing:-7.040006pt;}
.ws124{word-spacing:-6.985761pt;}
.ws35{word-spacing:-6.981837pt;}
.wsd9{word-spacing:-6.981824pt;}
.ws50{word-spacing:-6.923642pt;}
.wsf0{word-spacing:-6.865460pt;}
.ws30{word-spacing:-6.807278pt;}
.ws128{word-spacing:-6.749097pt;}
.wscc{word-spacing:-6.742733pt;}
.ws8a{word-spacing:-6.694912pt;}
.ws81{word-spacing:-6.649833pt;}
.wse7{word-spacing:-6.632733pt;}
.wsab{word-spacing:-6.574551pt;}
.ws45{word-spacing:-6.556905pt;}
.ws43{word-spacing:-6.551968pt;}
.wsaa{word-spacing:-6.542110pt;}
.ws17{word-spacing:-6.521350pt;}
.ws92{word-spacing:-6.516369pt;}
.ws94{word-spacing:-6.458187pt;}
.ws3e{word-spacing:-6.400005pt;}
.ws152{word-spacing:-6.342418pt;}
.ws75{word-spacing:-6.341823pt;}
.wsa1{word-spacing:-6.314240pt;}
.ws161{word-spacing:-6.283642pt;}
.ws2b{word-spacing:-6.225460pt;}
.ws87{word-spacing:-6.168883pt;}
.ws127{word-spacing:-6.167278pt;}
.ws146{word-spacing:-6.109096pt;}
.ws15d{word-spacing:-6.050914pt;}
.ws144{word-spacing:-5.992732pt;}
.ws64{word-spacing:-5.934550pt;}
.wsd1{word-spacing:-5.881958pt;}
.ws79{word-spacing:-5.881268pt;}
.wsc{word-spacing:-5.876369pt;}
.ws86{word-spacing:-5.871147pt;}
.ws71{word-spacing:-5.818187pt;}
.wseb{word-spacing:-5.788757pt;}
.ws2a{word-spacing:-5.760005pt;}
.ws111{word-spacing:-5.701823pt;}
.ws49{word-spacing:-5.585459pt;}
.wsd7{word-spacing:-5.547213pt;}
.ws10b{word-spacing:-5.527277pt;}
.wsd3{word-spacing:-5.499392pt;}
.ws101{word-spacing:-5.469095pt;}
.wsc3{word-spacing:-5.410914pt;}
.ws20{word-spacing:-5.403238pt;}
.ws1f{word-spacing:-5.398414pt;}
.ws4f{word-spacing:-5.352732pt;}
.ws4{word-spacing:-5.313387pt;}
.ws8c{word-spacing:-5.308109pt;}
.ws116{word-spacing:-5.294550pt;}
.ws5c{word-spacing:-5.236368pt;}
.ws3{word-spacing:-5.047717pt;}
.wsf3{word-spacing:-5.016151pt;}
.wsa5{word-spacing:-5.003641pt;}
.ws93{word-spacing:-4.770913pt;}
.ws14d{word-spacing:-4.712731pt;}
.ws11a{word-spacing:-4.654549pt;}
.wsa3{word-spacing:-4.596367pt;}
.ws160{word-spacing:-4.538186pt;}
.ws137{word-spacing:-4.480004pt;}
.ws74{word-spacing:-4.447334pt;}
.ws147{word-spacing:-4.421822pt;}
.ws28{word-spacing:-4.363640pt;}
.ws63{word-spacing:-4.351693pt;}
.ws58{word-spacing:-4.318684pt;}
.ws119{word-spacing:-4.305458pt;}
.wsb8{word-spacing:-4.247276pt;}
.ws158{word-spacing:-4.189094pt;}
.ws1e{word-spacing:-4.165706pt;}
.ws105{word-spacing:-4.112589pt;}
.ws48{word-spacing:-4.072731pt;}
.ws139{word-spacing:-4.014549pt;}
.ws2e{word-spacing:-3.898185pt;}
.ws12f{word-spacing:-3.781821pt;}
.ws109{word-spacing:-3.723639pt;}
.ws65{word-spacing:-3.549094pt;}
.ws26{word-spacing:-3.432730pt;}
.wsd8{word-spacing:-3.141821pt;}
.wsff{word-spacing:-3.048151pt;}
.wsa8{word-spacing:-3.045095pt;}
.wsf2{word-spacing:-3.042818pt;}
.ws8b{word-spacing:-3.012710pt;}
.ws163{word-spacing:-2.967275pt;}
.wsba{word-spacing:-2.909093pt;}
.wsb9{word-spacing:-2.850911pt;}
.ws2c{word-spacing:-2.676366pt;}
.ws100{word-spacing:-2.443638pt;}
.ws13a{word-spacing:-2.327275pt;}
.ws62{word-spacing:-2.151936pt;}
.ws5f{word-spacing:-2.104115pt;}
.ws5d{word-spacing:-2.084855pt;}
.ws115{word-spacing:-1.454547pt;}
.wsde{word-spacing:-1.432151pt;}
.ws164{word-spacing:-1.221819pt;}
.ws15c{word-spacing:-0.116364pt;}
.wsad{word-spacing:-0.058182pt;}
.ws21{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.116303pt;}
.ws2f{word-spacing:0.155983pt;}
.ws5e{word-spacing:0.206387pt;}
.ws148{word-spacing:1.047274pt;}
.ws61{word-spacing:1.206554pt;}
.ws60{word-spacing:1.209745pt;}
.ws155{word-spacing:1.454547pt;}
.ws15b{word-spacing:1.629092pt;}
.ws27{word-spacing:2.026473pt;}
.ws15a{word-spacing:2.676366pt;}
.ws154{word-spacing:3.141821pt;}
.ws114{word-spacing:5.279402pt;}
.wsa{word-spacing:5.355915pt;}
.ws3a{word-spacing:12.072673pt;}
.ws8d{word-spacing:12.126972pt;}
.ws7d{word-spacing:12.128431pt;}
.wsb6{word-spacing:12.130372pt;}
.ws25{word-spacing:12.130854pt;}
.ws7f{word-spacing:12.132306pt;}
.ws23{word-spacing:12.133764pt;}
.ws7e{word-spacing:12.134258pt;}
.ws84{word-spacing:27.017318pt;}
.ws12c{word-spacing:32.870693pt;}
.wsbb{word-spacing:32.873123pt;}
.wsdb{word-spacing:32.873600pt;}
.ws91{word-spacing:32.873624pt;}
.wsac{word-spacing:32.874091pt;}
.ws11e{word-spacing:35.374575pt;}
.wsc2{word-spacing:37.292493pt;}
.wsef{word-spacing:37.294907pt;}
.wsf9{word-spacing:37.300241pt;}
.ws108{word-spacing:37.310907pt;}
.ws130{word-spacing:46.024673pt;}
.ws69{word-spacing:46.080431pt;}
.ws107{word-spacing:47.535906pt;}
.wsaf{word-spacing:52.259789pt;}
.wsb0{word-spacing:54.390572pt;}
.ws131{word-spacing:103.272813pt;}
.ws11f{word-spacing:126.284243pt;}
.ws121{word-spacing:152.526199pt;}
.ws120{word-spacing:228.714132pt;}
.ws122{word-spacing:228.715595pt;}
.wsb5{word-spacing:244.744188pt;}
.ws133{word-spacing:245.498132pt;}
.ws132{word-spacing:250.847465pt;}
.wsc1{word-spacing:258.066854pt;}
.wsee{word-spacing:279.917964pt;}
.wsf8{word-spacing:287.878206pt;}
.ws123{word-spacing:360.326051pt;}
.ws134{word-spacing:370.331385pt;}
._10{margin-left:-7.970916pt;}
._e{margin-left:-6.808077pt;}
._12{margin-left:-5.294550pt;}
._f{margin-left:-3.909831pt;}
._0{margin-left:-2.984010pt;}
._1{margin-left:-1.453748pt;}
._3{width:1.028677pt;}
._2{width:2.124943pt;}
._4{width:3.188032pt;}
._c{width:4.114618pt;}
._11{width:5.410914pt;}
._19{width:6.769999pt;}
._1f{width:7.712646pt;}
._17{width:9.451513pt;}
._9{width:10.814986pt;}
._7{width:11.896017pt;}
._8{width:13.449282pt;}
._1a{width:14.545467pt;}
._b{width:15.515128pt;}
._21{width:16.452044pt;}
._6{width:17.549878pt;}
._a{width:18.910108pt;}
._1d{width:20.130926pt;}
._18{width:21.308620pt;}
._1e{width:23.189314pt;}
._2d{width:24.409382pt;}
._1c{width:25.606978pt;}
._2e{width:27.587543pt;}
._14{width:29.926275pt;}
._5{width:31.880533pt;}
._13{width:37.440447pt;}
._1b{width:38.507751pt;}
._15{width:58.178373pt;}
._16{width:71.676744pt;}
._d{width:72.842135pt;}
._23{width:84.829162pt;}
._22{width:94.196442pt;}
._28{width:163.124038pt;}
._27{width:259.459357pt;}
._25{width:264.814024pt;}
._2b{width:266.251909pt;}
._29{width:272.372821pt;}
._2c{width:278.990024pt;}
._2a{width:284.346154pt;}
._26{width:292.083842pt;}
._24{width:297.090881pt;}
._20{width:299.106876pt;}
.fs2{font-size:0.000000pt;}
.fs9{font-size:31.880533pt;}
.fsb{font-size:32.581333pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:46.545600pt;}
.fsa{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs7{font-size:59.972495pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:50.138667pt;}
.y1c{bottom:66.790667pt;}
.y1b{bottom:76.886667pt;}
.y1a{bottom:86.981333pt;}
.yc7{bottom:96.636000pt;}
.yf9{bottom:98.472000pt;}
.y3f{bottom:104.562667pt;}
.y19f{bottom:105.652000pt;}
.y11c{bottom:106.577333pt;}
.y1ee{bottom:108.852000pt;}
.ya3{bottom:108.861333pt;}
.y62{bottom:108.877333pt;}
.y16a{bottom:108.898667pt;}
.y137{bottom:108.925333pt;}
.y81{bottom:108.929333pt;}
.yc6{bottom:111.248000pt;}
.y184{bottom:113.336000pt;}
.y1d1{bottom:117.536000pt;}
.ye1{bottom:117.624000pt;}
.y1b2{bottom:118.720000pt;}
.y3e{bottom:119.174667pt;}
.y21f{bottom:120.489333pt;}
.y11b{bottom:121.189333pt;}
.ya2{bottom:123.473333pt;}
.y61{bottom:123.489333pt;}
.y169{bottom:123.510667pt;}
.y19e{bottom:123.717333pt;}
.y20a{bottom:124.202667pt;}
.yc5{bottom:125.860000pt;}
.y1ed{bottom:126.917333pt;}
.y80{bottom:128.025333pt;}
.y3d{bottom:133.786667pt;}
.y1d0{bottom:135.601333pt;}
.y11a{bottom:135.801333pt;}
.y183{bottom:136.488000pt;}
.y1b1{bottom:136.785333pt;}
.y136{bottom:136.820000pt;}
.ya1{bottom:138.085333pt;}
.y168{bottom:138.122667pt;}
.y7f{bottom:138.153333pt;}
.y21e{bottom:138.554667pt;}
.y19{bottom:138.813333pt;}
.y209{bottom:142.268000pt;}
.y60{bottom:142.584000pt;}
.yc4{bottom:144.956000pt;}
.y119{bottom:150.413333pt;}
.y150{bottom:151.465333pt;}
.ya0{bottom:152.697333pt;}
.y167{bottom:152.734667pt;}
.y3c{bottom:152.882667pt;}
.y1cf{bottom:153.666667pt;}
.y19d{bottom:153.841333pt;}
.y182{bottom:154.553333pt;}
.y1b0{bottom:154.850667pt;}
.y21d{bottom:156.620000pt;}
.y18{bottom:156.878667pt;}
.y7e{bottom:157.249333pt;}
.y1ec{bottom:159.334667pt;}
.yc3{bottom:159.760000pt;}
.y208{bottom:160.333333pt;}
.ye0{bottom:163.410667pt;}
.y135{bottom:164.716000pt;}
.y118{bottom:165.025333pt;}
.y9f{bottom:167.309333pt;}
.yf8{bottom:169.550667pt;}
.y1ce{bottom:171.732000pt;}
.y166{bottom:171.830667pt;}
.y181{bottom:172.618667pt;}
.y1af{bottom:172.917333pt;}
.y3b{bottom:173.592000pt;}
.y14f{bottom:174.434667pt;}
.y21c{bottom:174.685333pt;}
.y17{bottom:174.944000pt;}
.y19c{bottom:175.074667pt;}
.y5f{bottom:177.022667pt;}
.yc2{bottom:177.825333pt;}
.y207{bottom:178.398667pt;}
.y134{bottom:179.328000pt;}
.y117{bottom:179.637333pt;}
.y9e{bottom:181.921333pt;}
.yf7{bottom:187.044000pt;}
.y1cd{bottom:189.798667pt;}
.y180{bottom:190.685333pt;}
.y1ae{bottom:190.982667pt;}
.y21b{bottom:192.750667pt;}
.y16{bottom:193.010667pt;}
.y3a{bottom:194.101333pt;}
.y116{bottom:194.248000pt;}
.y5e{bottom:195.089333pt;}
.y206{bottom:196.465333pt;}
.y9d{bottom:196.532000pt;}
.y133{bottom:198.424000pt;}
.yc1{bottom:199.956000pt;}
.y1eb{bottom:204.549333pt;}
.y19b{bottom:205.198667pt;}
.y1cc{bottom:207.864000pt;}
.y17f{bottom:208.750667pt;}
.y115{bottom:208.860000pt;}
.y1ad{bottom:209.048000pt;}
.ydf{bottom:209.198667pt;}
.y21a{bottom:210.817333pt;}
.y15{bottom:211.076000pt;}
.y9c{bottom:211.144000pt;}
.y39{bottom:212.168000pt;}
.y132{bottom:213.036000pt;}
.y5d{bottom:213.154667pt;}
.y205{bottom:214.530667pt;}
.y7d{bottom:216.352000pt;}
.yc0{bottom:218.021333pt;}
.yf6{bottom:223.136000pt;}
.y19a{bottom:223.264000pt;}
.y17e{bottom:226.816000pt;}
.y1ac{bottom:227.113333pt;}
.y114{bottom:227.956000pt;}
.y14e{bottom:228.018667pt;}
.y165{bottom:228.038667pt;}
.y219{bottom:228.882667pt;}
.y14{bottom:229.141333pt;}
.y5c{bottom:231.220000pt;}
.y204{bottom:232.596000pt;}
.y7c{bottom:234.418667pt;}
.y1cb{bottom:238.048000pt;}
.y113{bottom:238.084000pt;}
.ybf{bottom:238.824000pt;}
.y9b{bottom:239.040000pt;}
.y199{bottom:241.329333pt;}
.y38{bottom:241.874667pt;}
.y17d{bottom:244.881333pt;}
.y1ab{bottom:245.178667pt;}
.yf5{bottom:245.445333pt;}
.y14d{bottom:245.513333pt;}
.y164{bottom:246.104000pt;}
.y218{bottom:246.948000pt;}
.y13{bottom:247.206667pt;}
.y5b{bottom:249.285333pt;}
.y1ea{bottom:250.560000pt;}
.y203{bottom:250.661333pt;}
.y7b{bottom:252.484000pt;}
.y112{bottom:252.696000pt;}
.yde{bottom:254.985333pt;}
.y1ca{bottom:256.113333pt;}
.y9a{bottom:256.610667pt;}
.y198{bottom:259.396000pt;}
.y37{bottom:259.940000pt;}
.y17c{bottom:262.946667pt;}
.y14c{bottom:263.006667pt;}
.y1aa{bottom:263.245333pt;}
.yf4{bottom:263.510667pt;}
.y217{bottom:265.013333pt;}
.ybe{bottom:265.497333pt;}
.y5a{bottom:267.350667pt;}
.y202{bottom:268.726667pt;}
.y131{bottom:269.964000pt;}
.y7a{bottom:270.549333pt;}
.y99{bottom:271.221333pt;}
.y111{bottom:271.792000pt;}
.y12{bottom:274.632000pt;}
.y1e9{bottom:275.905333pt;}
.y163{bottom:277.453333pt;}
.y197{bottom:277.461333pt;}
.y216{bottom:283.078667pt;}
.ybd{bottom:283.562667pt;}
.y59{bottom:285.417333pt;}
.y201{bottom:286.792000pt;}
.y1c9{bottom:287.462667pt;}
.y130{bottom:288.029333pt;}
.y79{bottom:288.614667pt;}
.y36{bottom:289.648000pt;}
.ydd{bottom:290.494667pt;}
.yf3{bottom:291.609333pt;}
.y110{bottom:293.788000pt;}
.y1e8{bottom:293.970667pt;}
.y17b{bottom:295.365333pt;}
.y196{bottom:295.526667pt;}
.y162{bottom:297.425333pt;}
.y14b{bottom:299.098667pt;}
.y98{bottom:299.117333pt;}
.y215{bottom:301.145333pt;}
.ybc{bottom:301.628000pt;}
.y58{bottom:303.482667pt;}
.y200{bottom:304.858667pt;}
.y1c8{bottom:305.528000pt;}
.y12f{bottom:306.094667pt;}
.y78{bottom:306.680000pt;}
.ydc{bottom:308.560000pt;}
.yf2{bottom:309.674667pt;}
.y35{bottom:310.829333pt;}
.y1a9{bottom:311.268000pt;}
.y11{bottom:313.509333pt;}
.y195{bottom:313.592000pt;}
.y161{bottom:315.490667pt;}
.y97{bottom:318.213333pt;}
.y214{bottom:319.210667pt;}
.y1e7{bottom:319.314667pt;}
.ybb{bottom:319.693333pt;}
.y57{bottom:321.548000pt;}
.y1ff{bottom:322.924000pt;}
.y1c7{bottom:323.593333pt;}
.y10f{bottom:324.266667pt;}
.y77{bottom:324.746667pt;}
.yf1{bottom:327.740000pt;}
.y14a{bottom:330.448000pt;}
.y10{bottom:331.574667pt;}
.y194{bottom:331.657333pt;}
.y1a8{bottom:336.613333pt;}
.y213{bottom:337.276000pt;}
.y1e6{bottom:337.381333pt;}
.y12e{bottom:337.444000pt;}
.yba{bottom:337.760000pt;}
.y56{bottom:339.613333pt;}
.ydb{bottom:339.909333pt;}
.y34{bottom:340.537333pt;}
.y1fe{bottom:340.989333pt;}
.y17a{bottom:341.114667pt;}
.y1c6{bottom:341.660000pt;}
.y10e{bottom:342.332000pt;}
.y76{bottom:342.812000pt;}
.y96{bottom:345.312000pt;}
.y160{bottom:346.840000pt;}
.y149{bottom:348.513333pt;}
.yf{bottom:349.640000pt;}
.y193{bottom:349.724000pt;}
.y1a7{bottom:354.678667pt;}
.yf0{bottom:355.169333pt;}
.y212{bottom:355.341333pt;}
.yb9{bottom:355.825333pt;}
.y55{bottom:357.678667pt;}
.yda{bottom:357.974667pt;}
.y33{bottom:358.602667pt;}
.y12d{bottom:358.830667pt;}
.y1fd{bottom:359.054667pt;}
.y179{bottom:359.181333pt;}
.y1c5{bottom:359.725333pt;}
.y10d{bottom:360.397333pt;}
.y75{bottom:360.877333pt;}
.yef{bottom:364.033333pt;}
.y15f{bottom:364.905333pt;}
.y95{bottom:365.822667pt;}
.y148{bottom:366.578667pt;}
.y192{bottom:367.789333pt;}
.y211{bottom:373.406667pt;}
.yb8{bottom:373.890667pt;}
.y54{bottom:375.744000pt;}
.y32{bottom:376.668000pt;}
.y1fc{bottom:377.120000pt;}
.y178{bottom:377.246667pt;}
.y1c4{bottom:377.790667pt;}
.y1e5{bottom:378.236000pt;}
.y10c{bottom:378.464000pt;}
.y74{bottom:378.942667pt;}
.y1a6{bottom:380.022667pt;}
.y12c{bottom:380.217333pt;}
.ye{bottom:382.058667pt;}
.y15e{bottom:382.970667pt;}
.y94{bottom:383.888000pt;}
.y147{bottom:384.645333pt;}
.y191{bottom:385.854667pt;}
.yd9{bottom:389.324000pt;}
.y210{bottom:391.472000pt;}
.yb7{bottom:391.956000pt;}
.y53{bottom:393.810667pt;}
.y31{bottom:394.733333pt;}
.y1fb{bottom:395.186667pt;}
.y177{bottom:395.312000pt;}
.y1c3{bottom:395.856000pt;}
.y10b{bottom:396.529333pt;}
.yee{bottom:400.704000pt;}
.y15d{bottom:401.037333pt;}
.y146{bottom:402.710667pt;}
.y190{bottom:403.920000pt;}
.yd8{bottom:407.389333pt;}
.y20f{bottom:409.538667pt;}
.yb6{bottom:410.021333pt;}
.y73{bottom:410.292000pt;}
.y12b{bottom:411.566667pt;}
.y52{bottom:411.876000pt;}
.y30{bottom:412.800000pt;}
.y1fa{bottom:413.252000pt;}
.y176{bottom:413.377333pt;}
.y1c2{bottom:413.921333pt;}
.y10a{bottom:414.594667pt;}
.y93{bottom:415.237333pt;}
.y1e4{bottom:416.685333pt;}
.yed{bottom:418.769333pt;}
.y15c{bottom:419.102667pt;}
.y145{bottom:420.776000pt;}
.y1a5{bottom:420.877333pt;}
.y18f{bottom:421.985333pt;}
.yd7{bottom:425.454667pt;}
.y20e{bottom:427.604000pt;}
.yb5{bottom:428.088000pt;}
.y72{bottom:428.357333pt;}
.y12a{bottom:429.632000pt;}
.y51{bottom:429.941333pt;}
.y2f{bottom:430.865333pt;}
.y1f9{bottom:431.317333pt;}
.y175{bottom:431.442667pt;}
.y1c1{bottom:431.988000pt;}
.y92{bottom:433.302667pt;}
.yec{bottom:436.834667pt;}
.y15b{bottom:437.168000pt;}
.y1e3{bottom:438.238667pt;}
.y144{bottom:438.841333pt;}
.y109{bottom:442.020000pt;}
.yd6{bottom:443.520000pt;}
.yd{bottom:443.749333pt;}
.y20d{bottom:445.669333pt;}
.yb4{bottom:446.153333pt;}
.y129{bottom:447.697333pt;}
.y50{bottom:448.006667pt;}
.y1f8{bottom:449.382667pt;}
.y71{bottom:449.744000pt;}
.y91{bottom:451.368000pt;}
.y18e{bottom:454.404000pt;}
.yeb{bottom:454.901333pt;}
.y15a{bottom:455.233333pt;}
.y1e2{bottom:456.305333pt;}
.y143{bottom:456.906667pt;}
.yc{bottom:459.689333pt;}
.y2e{bottom:460.573333pt;}
.y1a4{bottom:461.876000pt;}
.y174{bottom:462.792000pt;}
.y1c0{bottom:463.336000pt;}
.y20c{bottom:463.734667pt;}
.yb3{bottom:464.218667pt;}
.y128{bottom:465.762667pt;}
.y4f{bottom:466.072000pt;}
.y1f7{bottom:467.448000pt;}
.y70{bottom:467.809333pt;}
.y90{bottom:469.434667pt;}
.yea{bottom:472.966667pt;}
.y159{bottom:473.298667pt;}
.yd5{bottom:474.869333pt;}
.yb{bottom:475.629333pt;}
.y1e1{bottom:478.734667pt;}
.y108{bottom:480.693333pt;}
.y2d{bottom:481.082667pt;}
.y20b{bottom:481.800000pt;}
.yb2{bottom:482.284000pt;}
.y1a3{bottom:483.261333pt;}
.y127{bottom:483.828000pt;}
.y4e{bottom:484.138667pt;}
.y173{bottom:484.178667pt;}
.y1bf{bottom:484.722667pt;}
.y1f6{bottom:485.514667pt;}
.y142{bottom:488.256000pt;}
.y6f{bottom:489.196000pt;}
.y158{bottom:491.365333pt;}
.ya{bottom:491.569333pt;}
.yd4{bottom:496.256000pt;}
.y1e0{bottom:496.800000pt;}
.y107{bottom:498.758667pt;}
.y2c{bottom:499.148000pt;}
.y8f{bottom:499.618667pt;}
.y18d{bottom:499.866667pt;}
.yb1{bottom:500.349333pt;}
.ye9{bottom:500.392000pt;}
.y4d{bottom:502.204000pt;}
.y1f5{bottom:503.580000pt;}
.y1a2{bottom:504.648000pt;}
.y172{bottom:505.565333pt;}
.y1be{bottom:506.109333pt;}
.y141{bottom:506.321333pt;}
.y6e{bottom:507.261333pt;}
.y9{bottom:507.509333pt;}
.y157{bottom:509.430667pt;}
.y126{bottom:514.506667pt;}
.y106{bottom:516.824000pt;}
.y8e{bottom:517.684000pt;}
.y1df{bottom:517.901333pt;}
.y18c{bottom:517.932000pt;}
.y4c{bottom:520.269333pt;}
.y2b{bottom:520.329333pt;}
.y1f4{bottom:521.645333pt;}
.y1a1{bottom:522.713333pt;}
.y8{bottom:523.449333pt;}
.y125{bottom:523.538667pt;}
.y140{bottom:524.388000pt;}
.yb0{bottom:527.024000pt;}
.y156{bottom:527.496000pt;}
.yd3{bottom:527.605333pt;}
.y18b{bottom:535.997333pt;}
.y171{bottom:536.914667pt;}
.y1bd{bottom:537.458667pt;}
.y4b{bottom:538.334667pt;}
.ye8{bottom:538.505333pt;}
.y6d{bottom:538.610667pt;}
.y7{bottom:539.390667pt;}
.y1f3{bottom:539.710667pt;}
.y8d{bottom:540.398667pt;}
.y2a{bottom:540.840000pt;}
.y155{bottom:545.561333pt;}
.yd2{bottom:545.670667pt;}
.y1de{bottom:546.970667pt;}
.y105{bottom:547.302667pt;}
.yaf{bottom:547.533333pt;}
.y18a{bottom:554.062667pt;}
.y170{bottom:554.980000pt;}
.y1bc{bottom:555.524000pt;}
.y13f{bottom:555.736000pt;}
.y4a{bottom:556.400000pt;}
.y6c{bottom:556.676000pt;}
.y1f2{bottom:557.776000pt;}
.y8c{bottom:558.464000pt;}
.y29{bottom:558.905333pt;}
.ye7{bottom:559.076000pt;}
.y124{bottom:563.626667pt;}
.yd1{bottom:563.736000pt;}
.y1dd{bottom:565.036000pt;}
.y104{bottom:565.368000pt;}
.yae{bottom:565.598667pt;}
.y1a0{bottom:572.128000pt;}
.y189{bottom:572.129333pt;}
.y16f{bottom:573.045333pt;}
.y1bb{bottom:573.589333pt;}
.y13e{bottom:573.802667pt;}
.y6{bottom:574.228000pt;}
.y49{bottom:574.466667pt;}
.y1f1{bottom:575.842667pt;}
.y8b{bottom:579.850667pt;}
.y123{bottom:581.693333pt;}
.y1dc{bottom:583.101333pt;}
.y6b{bottom:587.006667pt;}
.y28{bottom:588.613333pt;}
.y188{bottom:590.194667pt;}
.yd0{bottom:591.162667pt;}
.y1ba{bottom:591.656000pt;}
.y13d{bottom:591.868000pt;}
.yad{bottom:592.273333pt;}
.y4{bottom:592.293333pt;}
.y48{bottom:592.532000pt;}
.y1f0{bottom:593.908000pt;}
.y103{bottom:595.846667pt;}
.y154{bottom:599.758667pt;}
.y8a{bottom:601.237333pt;}
.y16e{bottom:604.394667pt;}
.y6a{bottom:605.072000pt;}
.y27{bottom:606.678667pt;}
.y5{bottom:607.533333pt;}
.y187{bottom:608.260000pt;}
.y1b9{bottom:609.721333pt;}
.yac{bottom:610.338667pt;}
.y47{bottom:610.597333pt;}
.y1ef{bottom:611.973333pt;}
.y1db{bottom:612.170667pt;}
.ye6{bottom:612.661333pt;}
.y122{bottom:613.041333pt;}
.y102{bottom:613.912000pt;}
.y153{bottom:617.824000pt;}
.y89{bottom:621.748000pt;}
.y13c{bottom:623.217333pt;}
.y26{bottom:624.744000pt;}
.y16d{bottom:625.781333pt;}
.y186{bottom:626.325333pt;}
.y69{bottom:627.786667pt;}
.yab{bottom:628.404000pt;}
.y46{bottom:628.662667pt;}
.ycf{bottom:630.038667pt;}
.ye5{bottom:630.154667pt;}
.y3{bottom:631.134667pt;}
.y101{bottom:631.977333pt;}
.y1da{bottom:633.272000pt;}
.y152{bottom:635.889333pt;}
.y88{bottom:639.813333pt;}
.y13b{bottom:641.282667pt;}
.y25{bottom:642.809333pt;}
.y121{bottom:644.390667pt;}
.y68{bottom:645.852000pt;}
.yaa{bottom:646.469333pt;}
.y45{bottom:646.728000pt;}
.y16c{bottom:646.757333pt;}
.yce{bottom:648.104000pt;}
.y100{bottom:650.044000pt;}
.y1d9{bottom:654.373333pt;}
.y24{bottom:660.876000pt;}
.y120{bottom:662.456000pt;}
.y185{bottom:662.457333pt;}
.y1b8{bottom:663.917333pt;}
.y13a{bottom:664.252000pt;}
.y2{bottom:664.342667pt;}
.ya9{bottom:664.534667pt;}
.y44{bottom:664.794667pt;}
.ycd{bottom:666.170667pt;}
.ye4{bottom:666.246667pt;}
.y67{bottom:667.238667pt;}
.yff{bottom:668.109333pt;}
.y87{bottom:671.162667pt;}
.y1d8{bottom:675.474667pt;}
.y11f{bottom:680.522667pt;}
.y1b7{bottom:681.984000pt;}
.ya8{bottom:682.601333pt;}
.y43{bottom:682.860000pt;}
.ycc{bottom:684.236000pt;}
.y66{bottom:685.304000pt;}
.yfe{bottom:686.174667pt;}
.ye3{bottom:688.554667pt;}
.y86{bottom:689.228000pt;}
.y23{bottom:690.582667pt;}
.y11e{bottom:698.588000pt;}
.y1b6{bottom:700.049333pt;}
.y42{bottom:700.925333pt;}
.ycb{bottom:702.301333pt;}
.y151{bottom:703.369333pt;}
.yfd{bottom:704.240000pt;}
.y1d7{bottom:704.544000pt;}
.ye2{bottom:706.620000pt;}
.y85{bottom:707.293333pt;}
.ya7{bottom:708.109333pt;}
.y22{bottom:711.093333pt;}
.y1{bottom:714.156000pt;}
.y65{bottom:716.653333pt;}
.y16b{bottom:717.836000pt;}
.y1b5{bottom:718.114667pt;}
.y41{bottom:718.990667pt;}
.yca{bottom:720.366667pt;}
.yfc{bottom:722.305333pt;}
.y1d6{bottom:722.609333pt;}
.y84{bottom:725.358667pt;}
.ya6{bottom:726.174667pt;}
.y21{bottom:729.158667pt;}
.y64{bottom:734.718667pt;}
.y139{bottom:735.330667pt;}
.y1b4{bottom:736.180000pt;}
.yc9{bottom:738.432000pt;}
.yfb{bottom:740.372000pt;}
.y1d5{bottom:740.674667pt;}
.y83{bottom:743.424000pt;}
.ya5{bottom:746.977333pt;}
.y20{bottom:750.340000pt;}
.y11d{bottom:752.784000pt;}
.y63{bottom:752.785333pt;}
.y138{bottom:752.824000pt;}
.yc8{bottom:756.498667pt;}
.yfa{bottom:758.437333pt;}
.y1d4{bottom:758.741333pt;}
.y82{bottom:761.490667pt;}
.ya4{bottom:765.042667pt;}
.y1b3{bottom:767.529333pt;}
.y1f{bottom:770.850667pt;}
.y1d3{bottom:776.806667pt;}
.y1e{bottom:788.916000pt;}
.y1d2{bottom:794.872000pt;}
.y1d{bottom:836.214667pt;}
.h4{height:0.000000pt;}
.hc{height:26.142037pt;}
.h9{height:34.855904pt;}
.hd{height:39.213056pt;}
.h6{height:43.569771pt;}
.h8{height:47.183189pt;}
.h5{height:47.709131pt;}
.he{height:47.714464pt;}
.ha{height:49.177446pt;}
.h13{height:49.875979pt;}
.h11{height:49.881312pt;}
.h7{height:56.619669pt;}
.hb{height:59.986059pt;}
.hf{height:59.991392pt;}
.h3{height:62.740715pt;}
.h2{height:81.548000pt;}
.h15{height:98.510848pt;}
.h16{height:117.702603pt;}
.h10{height:119.854645pt;}
.h12{height:156.659979pt;}
.h14{height:157.331979pt;}
.h0{height:907.080000pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x2{left:76.516000pt;}
.x1{left:77.480000pt;}
.x4d{left:78.658667pt;}
.x4c{left:80.374667pt;}
.x2a{left:84.477333pt;}
.x62{left:88.069333pt;}
.x1d{left:90.938667pt;}
.x6{left:92.598667pt;}
.x45{left:93.588000pt;}
.x1e{left:95.413333pt;}
.x10{left:99.013333pt;}
.x7{left:100.729333pt;}
.x57{left:103.084000pt;}
.x34{left:104.392000pt;}
.x29{left:106.161333pt;}
.x4{left:107.716000pt;}
.x65{left:109.073333pt;}
.x15{left:110.530667pt;}
.x4e{left:114.062667pt;}
.x17{left:117.494667pt;}
.x58{left:119.509333pt;}
.x37{left:125.754667pt;}
.x35{left:126.712000pt;}
.x44{left:128.016000pt;}
.x20{left:129.180000pt;}
.xc{left:132.613333pt;}
.x5{left:135.264000pt;}
.x18{left:136.934667pt;}
.x30{left:139.364000pt;}
.x4f{left:141.894667pt;}
.x2d{left:143.305333pt;}
.x69{left:145.422667pt;}
.x67{left:146.818667pt;}
.xb{left:150.889333pt;}
.x8{left:152.053333pt;}
.x3a{left:154.482667pt;}
.x38{left:158.424000pt;}
.x21{left:160.540000pt;}
.x25{left:161.936000pt;}
.x19{left:168.294667pt;}
.x5c{left:170.889333pt;}
.x3{left:173.493333pt;}
.x39{left:174.693333pt;}
.x6a{left:176.782667pt;}
.x68{left:178.178667pt;}
.x9{left:183.413333pt;}
.x40{left:185.064000pt;}
.x36{left:186.512000pt;}
.x59{left:188.610667pt;}
.x63{left:189.540000pt;}
.x22{left:191.900000pt;}
.x26{left:193.296000pt;}
.x2b{left:202.128000pt;}
.x5d{left:204.722667pt;}
.x3b{left:206.285333pt;}
.xd{left:207.936000pt;}
.x1a{left:209.690667pt;}
.x54{left:210.612000pt;}
.xa{left:212.853333pt;}
.x56{left:214.292000pt;}
.x2e{left:215.690667pt;}
.x13{left:218.525333pt;}
.x23{left:221.340000pt;}
.x50{left:222.302667pt;}
.x5a{left:223.858667pt;}
.x11{left:224.809333pt;}
.x52{left:226.064000pt;}
.x48{left:227.129333pt;}
.x2c{left:231.568000pt;}
.x53{left:232.880000pt;}
.x5e{left:234.162667pt;}
.x64{left:235.422667pt;}
.xe{left:237.376000pt;}
.x1b{left:239.130667pt;}
.x3c{left:240.118667pt;}
.x51{left:243.793333pt;}
.x27{left:247.260000pt;}
.x41{left:248.336000pt;}
.x14{left:250.336000pt;}
.x24{left:253.150667pt;}
.x12{left:254.249333pt;}
.x6b{left:255.502667pt;}
.x49{left:256.569333pt;}
.x66{left:266.536000pt;}
.xf{left:269.188000pt;}
.x1c{left:270.942667pt;}
.x32{left:272.120000pt;}
.x61{left:273.241333pt;}
.x5f{left:274.788000pt;}
.x55{left:276.188000pt;}
.x28{left:279.070667pt;}
.x16{left:285.456000pt;}
.x42{left:288.962667pt;}
.x4a{left:297.194667pt;}
.x33{left:305.284000pt;}
.x3d{left:310.110667pt;}
.x31{left:311.618667pt;}
.x6d{left:315.301333pt;}
.x46{left:320.322667pt;}
.x6c{left:325.568000pt;}
.x2f{left:336.142667pt;}
.x3e{left:343.274667pt;}
.x3f{left:368.933333pt;}
.x60{left:370.990667pt;}
.x43{left:385.165333pt;}
.x6e{left:391.700000pt;}
.x4b{left:393.398667pt;}
.x47{left:416.525333pt;}
.x1f{left:529.165333pt;}
.x5b{left:531.128000pt;}
}




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