
    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_c563b66a6108a34cdec73356.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_c599f0efade430b66c6d8f51.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_36abe56d5aad3c14121e4044.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_0af676f0a3a716c376691de1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.944336;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_5e837bc78f51a72b841db107.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_1089775d3f67d86d91f0ce57.woff')format("woff");}.ff6{font-family:ff6;line-height:0.931152;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_a3f04bd5df72219a4a163116.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922852;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_83605ecfc371f5b196569c5a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.925781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_23e03bdfdc1eb57e690843f3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_32bfa589ab50ae98418c6c37.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.307600px;}
.v1{vertical-align:17.868000px;}
.lsd{letter-spacing:-3.276000px;}
.ls16{letter-spacing:-3.159000px;}
.ls1f{letter-spacing:-2.898000px;}
.ls1b{letter-spacing:-2.109000px;}
.ls1{letter-spacing:-2.016000px;}
.lsc{letter-spacing:-1.404000px;}
.ls14{letter-spacing:-1.215000px;}
.ls23{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.855000px;}
.ls17{letter-spacing:-0.627000px;}
.ls21{letter-spacing:-0.570000px;}
.ls1e{letter-spacing:-0.552000px;}
.ls27{letter-spacing:-0.440748px;}
.ls5{letter-spacing:-0.300000px;}
.ls6{letter-spacing:-0.252000px;}
.lsb{letter-spacing:-0.240000px;}
.ls10{letter-spacing:-0.180000px;}
.ls1a{letter-spacing:-0.171000px;}
.ls22{letter-spacing:-0.081000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:1.260000px;}
.ls3{letter-spacing:1.740000px;}
.lsa{letter-spacing:2.400000px;}
.ls1d{letter-spacing:3.512100px;}
.ls8{letter-spacing:3.600000px;}
.ls18{letter-spacing:4.158000px;}
.lsf{letter-spacing:4.200000px;}
.ls24{letter-spacing:5.475000px;}
.ls12{letter-spacing:5.760000px;}
.ls1c{letter-spacing:5.850000px;}
.lse{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls19{letter-spacing:6.075000px;}
.ls25{letter-spacing:6.300000px;}
.ls26{letter-spacing:6.867000px;}
.ls15{letter-spacing:7.200000px;}
.ls20{letter-spacing:7.500000px;}
.ls7{letter-spacing:7.530000px;}
.ls4{letter-spacing:8.400000px;}
.ls9{letter-spacing:17.820000px;}
.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;}
}
.wse{word-spacing:-77.544000px;}
.wsf{word-spacing:-76.140000px;}
.wsb1{word-spacing:-69.000000px;}
.wsa{word-spacing:-61.380000px;}
.wsb5{word-spacing:-61.350000px;}
.ws26{word-spacing:-61.050000px;}
.ws10{word-spacing:-60.312000px;}
.ws68{word-spacing:-59.925000px;}
.wsc2{word-spacing:-59.325000px;}
.ws4b{word-spacing:-58.158000px;}
.wsb8{word-spacing:-58.077000px;}
.wsbb{word-spacing:-57.186000px;}
.ws11{word-spacing:-57.036000px;}
.ws1b{word-spacing:-56.943000px;}
.ws34{word-spacing:-54.999000px;}
.wsc9{word-spacing:-52.101000px;}
.wsca{word-spacing:-51.534000px;}
.ws6{word-spacing:-51.480000px;}
.ws1c{word-spacing:-49.542000px;}
.ws2{word-spacing:-49.080000px;}
.ws12{word-spacing:-48.960000px;}
.ws14{word-spacing:-48.840000px;}
.ws5{word-spacing:-45.234000px;}
.ws8{word-spacing:-44.982000px;}
.ws4{word-spacing:-44.820000px;}
.ws1{word-spacing:-43.218000px;}
.ws3{word-spacing:-43.080000px;}
.wsd{word-spacing:-42.840000px;}
.ws7{word-spacing:-42.780000px;}
.wsd1{word-spacing:-40.981500px;}
.wsa8{word-spacing:-38.322600px;}
.wsc4{word-spacing:-38.295000px;}
.ws31{word-spacing:-38.157000px;}
.wsc{word-spacing:-38.064000px;}
.ws88{word-spacing:-37.950000px;}
.wsab{word-spacing:-37.881000px;}
.ws57{word-spacing:-37.812000px;}
.ws38{word-spacing:-37.674000px;}
.ws37{word-spacing:-37.660200px;}
.ws3a{word-spacing:-37.467000px;}
.ws23{word-spacing:-37.425600px;}
.ws58{word-spacing:-37.349700px;}
.ws2e{word-spacing:-37.260000px;}
.ws21{word-spacing:-37.156500px;}
.wsc0{word-spacing:-37.122000px;}
.ws98{word-spacing:-36.866700px;}
.ws93{word-spacing:-36.846000px;}
.ws81{word-spacing:-36.777000px;}
.wsf1{word-spacing:-36.603000px;}
.ws35{word-spacing:-36.570000px;}
.ws85{word-spacing:-36.542400px;}
.ws84{word-spacing:-36.501000px;}
.ws3d{word-spacing:-36.432000px;}
.ws6c{word-spacing:-36.369900px;}
.ws3e{word-spacing:-36.363000px;}
.ws6b{word-spacing:-36.294000px;}
.ws9f{word-spacing:-36.156000px;}
.ws92{word-spacing:-36.018000px;}
.ws96{word-spacing:-35.949000px;}
.ws79{word-spacing:-35.748900px;}
.ws7e{word-spacing:-35.673000px;}
.ws1e{word-spacing:-35.604000px;}
.ws101{word-spacing:-35.595000px;}
.wsb9{word-spacing:-35.328000px;}
.ws91{word-spacing:-35.259000px;}
.wsd2{word-spacing:-35.217000px;}
.wsdb{word-spacing:-35.091000px;}
.wse8{word-spacing:-35.053200px;}
.wsa6{word-spacing:-35.052000px;}
.wsfc{word-spacing:-34.776000px;}
.wsc7{word-spacing:-34.707000px;}
.wsad{word-spacing:-34.500000px;}
.wsce{word-spacing:-34.398000px;}
.wsc6{word-spacing:-34.362000px;}
.ws6a{word-spacing:-34.356000px;}
.wscc{word-spacing:-34.335000px;}
.ws2c{word-spacing:-34.224000px;}
.wsec{word-spacing:-34.032600px;}
.wseb{word-spacing:-34.020000px;}
.wsd3{word-spacing:-33.957000px;}
.ws2a{word-spacing:-33.948000px;}
.wsef{word-spacing:-33.705000px;}
.ws30{word-spacing:-33.672000px;}
.ws2f{word-spacing:-33.547800px;}
.wsd8{word-spacing:-33.390000px;}
.wsda{word-spacing:-33.345900px;}
.ws3b{word-spacing:-33.264900px;}
.ws7d{word-spacing:-33.051000px;}
.ws80{word-spacing:-32.616300px;}
.ws100{word-spacing:-32.571000px;}
.wsa4{word-spacing:-32.174700px;}
.ws47{word-spacing:-31.967700px;}
.wsa1{word-spacing:-31.940100px;}
.ws7b{word-spacing:-31.553700px;}
.wsc8{word-spacing:-31.533000px;}
.wse9{word-spacing:-31.500000px;}
.ws111{word-spacing:-31.437000px;}
.ws3c{word-spacing:-31.326000px;}
.wsf9{word-spacing:-31.311000px;}
.ws2b{word-spacing:-31.188000px;}
.wsf0{word-spacing:-31.185000px;}
.ws113{word-spacing:-30.924000px;}
.wsff{word-spacing:-30.870000px;}
.ws87{word-spacing:-30.849900px;}
.ws86{word-spacing:-30.843000px;}
.wsbe{word-spacing:-30.580800px;}
.wsbf{word-spacing:-30.429000px;}
.ws5a{word-spacing:-30.360000px;}
.ws59{word-spacing:-30.291000px;}
.ws72{word-spacing:-30.153000px;}
.ws71{word-spacing:-30.084000px;}
.ws56{word-spacing:-29.877000px;}
.ws95{word-spacing:-29.814900px;}
.ws94{word-spacing:-29.808000px;}
.wscb{word-spacing:-29.673000px;}
.wsea{word-spacing:-29.610000px;}
.wscf{word-spacing:-29.364300px;}
.wsd0{word-spacing:-29.358000px;}
.ws1d{word-spacing:-29.325000px;}
.ws112{word-spacing:-29.232000px;}
.ws29{word-spacing:-29.180100px;}
.ws6e{word-spacing:-29.118000px;}
.ws97{word-spacing:-29.049000px;}
.ws7c{word-spacing:-28.883400px;}
.ws3f{word-spacing:-28.882986px;}
.ws5b{word-spacing:-28.862700px;}
.ws22{word-spacing:-28.842000px;}
.ws16{word-spacing:-28.680000px;}
.wsd7{word-spacing:-28.350000px;}
.ws39{word-spacing:-28.331400px;}
.ws48{word-spacing:-27.945000px;}
.wsfa{word-spacing:-27.858600px;}
.wsd5{word-spacing:-27.783000px;}
.ws55{word-spacing:-27.317100px;}
.ws77{word-spacing:-26.925000px;}
.ws2d{word-spacing:-26.634000px;}
.ws7f{word-spacing:-26.565000px;}
.ws6d{word-spacing:-26.496000px;}
.ws104{word-spacing:-26.460000px;}
.wsfd{word-spacing:-26.403300px;}
.wsd9{word-spacing:-26.371422px;}
.wsfe{word-spacing:-26.334000px;}
.ws18{word-spacing:-26.280000px;}
.ws53{word-spacing:-26.178600px;}
.wsee{word-spacing:-25.930674px;}
.ws54{word-spacing:-25.392000px;}
.ws20{word-spacing:-25.385100px;}
.ws7a{word-spacing:-25.254000px;}
.ws105{word-spacing:-24.759000px;}
.ws4d{word-spacing:-24.357000px;}
.ws9e{word-spacing:-24.245700px;}
.ws36{word-spacing:-23.943000px;}
.ws103{word-spacing:-23.536800px;}
.ws102{word-spacing:-23.499000px;}
.wsd6{word-spacing:-23.310000px;}
.ws28{word-spacing:-22.701000px;}
.ws4c{word-spacing:-21.666000px;}
.wsdc{word-spacing:-20.979000px;}
.ws49{word-spacing:-20.976000px;}
.ws73{word-spacing:-20.429100px;}
.wsba{word-spacing:-20.381100px;}
.wsbd{word-spacing:-19.632600px;}
.wsb0{word-spacing:-19.389000px;}
.wsc5{word-spacing:-18.630000px;}
.wsed{word-spacing:-17.703000px;}
.wsaa{word-spacing:-17.043000px;}
.ws33{word-spacing:-17.032800px;}
.wsa5{word-spacing:-16.634100px;}
.wsa9{word-spacing:-16.491000px;}
.ws1f{word-spacing:-16.422000px;}
.wsb7{word-spacing:-16.283700px;}
.ws1a{word-spacing:-16.199700px;}
.ws17{word-spacing:-16.188000px;}
.wsc1{word-spacing:-16.109700px;}
.wsd4{word-spacing:-15.567300px;}
.wscd{word-spacing:-15.561000px;}
.ws4a{word-spacing:-15.222900px;}
.ws116{word-spacing:-14.820000px;}
.wsac{word-spacing:-14.145000px;}
.ws74{word-spacing:-11.706300px;}
.ws15{word-spacing:-9.780000px;}
.wsfb{word-spacing:-9.072063px;}
.ws4e{word-spacing:-7.452000px;}
.ws42{word-spacing:-6.555000px;}
.ws66{word-spacing:-6.348000px;}
.ws82{word-spacing:-5.727000px;}
.wsa3{word-spacing:-4.554000px;}
.ws50{word-spacing:-4.416000px;}
.wse4{word-spacing:-4.284000px;}
.wsa2{word-spacing:-4.200000px;}
.ws43{word-spacing:-3.933000px;}
.ws63{word-spacing:-3.105000px;}
.ws10a{word-spacing:-3.087000px;}
.ws41{word-spacing:-2.898000px;}
.ws32{word-spacing:-2.346000px;}
.wsdd{word-spacing:-1.953000px;}
.ws45{word-spacing:-1.863000px;}
.wsb4{word-spacing:-1.794000px;}
.ws106{word-spacing:-1.764000px;}
.ws83{word-spacing:-1.656000px;}
.ws25{word-spacing:-1.260000px;}
.ws62{word-spacing:-1.242000px;}
.ws8b{word-spacing:-1.035000px;}
.wse6{word-spacing:-0.819000px;}
.wsbc{word-spacing:-0.621000px;}
.ws115{word-spacing:-0.504000px;}
.ws52{word-spacing:-0.069000px;}
.ws9{word-spacing:0.000000px;}
.ws24{word-spacing:0.180000px;}
.wsaf{word-spacing:0.276000px;}
.ws61{word-spacing:0.690000px;}
.wse1{word-spacing:0.693000px;}
.ws109{word-spacing:0.945000px;}
.wsb3{word-spacing:1.242000px;}
.ws8f{word-spacing:1.656000px;}
.ws10b{word-spacing:2.205000px;}
.ws76{word-spacing:2.346000px;}
.ws8c{word-spacing:2.553000px;}
.ws5c{word-spacing:3.243000px;}
.wse0{word-spacing:3.969000px;}
.wsae{word-spacing:4.071000px;}
.ws4f{word-spacing:4.140000px;}
.wse2{word-spacing:4.158000px;}
.ws51{word-spacing:4.761000px;}
.ws10c{word-spacing:5.607000px;}
.ws10f{word-spacing:6.048000px;}
.wsf8{word-spacing:6.426000px;}
.wsf2{word-spacing:6.489000px;}
.wsf7{word-spacing:6.804000px;}
.ws10e{word-spacing:7.056000px;}
.ws108{word-spacing:7.245000px;}
.wsf4{word-spacing:7.497000px;}
.ws8a{word-spacing:7.728000px;}
.ws60{word-spacing:7.866000px;}
.ws64{word-spacing:7.935000px;}
.wsf5{word-spacing:8.253000px;}
.ws65{word-spacing:8.970000px;}
.ws5f{word-spacing:9.246000px;}
.wsf6{word-spacing:9.828000px;}
.ws9d{word-spacing:10.005000px;}
.ws40{word-spacing:10.419000px;}
.wsb2{word-spacing:10.557000px;}
.ws8e{word-spacing:11.109000px;}
.ws44{word-spacing:11.523000px;}
.ws114{word-spacing:12.096000px;}
.ws89{word-spacing:12.489000px;}
.ws6f{word-spacing:12.696000px;}
.ws9a{word-spacing:12.903000px;}
.ws99{word-spacing:13.662000px;}
.wsde{word-spacing:13.923000px;}
.wsdf{word-spacing:14.301000px;}
.wsf3{word-spacing:14.427000px;}
.wse5{word-spacing:14.742000px;}
.wse3{word-spacing:15.246000px;}
.ws107{word-spacing:16.569000px;}
.ws8d{word-spacing:17.940000px;}
.ws67{word-spacing:18.423000px;}
.ws75{word-spacing:18.630000px;}
.ws9b{word-spacing:18.906000px;}
.ws10d{word-spacing:19.026000px;}
.ws9c{word-spacing:19.596000px;}
.ws5e{word-spacing:21.321000px;}
.ws70{word-spacing:22.080000px;}
.ws5d{word-spacing:23.115000px;}
.ws19{word-spacing:47.010600px;}
.ws13{word-spacing:222.054000px;}
.wse7{word-spacing:392.280000px;}
.wsb6{word-spacing:392.820000px;}
.ws110{word-spacing:392.880000px;}
.ws46{word-spacing:393.540000px;}
.wsb{word-spacing:393.960000px;}
.ws27{word-spacing:394.020000px;}
.ws69{word-spacing:394.140000px;}
.ws90{word-spacing:394.260000px;}
.wsa0{word-spacing:394.740000px;}
.wsa7{word-spacing:394.920000px;}
.wsc3{word-spacing:395.760000px;}
.ws78{word-spacing:396.780000px;}
.ws0{word-spacing:535.320000px;}
._19{margin-left:-11.082000px;}
._18{margin-left:-9.798000px;}
._c{margin-left:-8.637900px;}
._d{margin-left:-6.918000px;}
._b{margin-left:-5.598000px;}
._9{margin-left:-4.386000px;}
._3{margin-left:-3.060000px;}
._a{margin-left:-2.046000px;}
._4{margin-left:-1.044000px;}
._5{width:1.146000px;}
._0{width:2.400000px;}
._2{width:3.824700px;}
._6{width:5.724000px;}
._7{width:6.960000px;}
._8{width:8.502000px;}
._f{width:9.612000px;}
._11{width:10.971000px;}
._15{width:11.988000px;}
._14{width:13.194900px;}
._1a{width:15.846000px;}
._17{width:18.602400px;}
._13{width:20.736000px;}
._1c{width:22.209000px;}
._1b{width:23.655000px;}
._10{width:25.176000px;}
._1d{width:26.631000px;}
._1{width:956.206200px;}
._e{width:958.831200px;}
._12{width:962.881200px;}
._16{width:964.861200px;}
.fc1{color:rgb(70,118,135);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:36.729000px;}
.fsa{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1ae{bottom:92.641350px;}
.y8a{bottom:106.165350px;}
.y178{bottom:106.170600px;}
.y62{bottom:106.235700px;}
.yd2{bottom:106.257450px;}
.y19b{bottom:106.267200px;}
.yae{bottom:106.268550px;}
.yf7{bottom:106.268850px;}
.y1e{bottom:106.292250px;}
.y3d{bottom:106.293000px;}
.y232{bottom:106.299300px;}
.y1d0{bottom:106.329000px;}
.y1f3{bottom:106.338600px;}
.y215{bottom:106.393350px;}
.y133{bottom:109.941900px;}
.y255{bottom:110.442750px;}
.y1ad{bottom:112.892850px;}
.y10c{bottom:112.924350px;}
.y147{bottom:112.942350px;}
.y11e{bottom:121.651650px;}
.y231{bottom:125.979300px;}
.yd1{bottom:126.526200px;}
.y19a{bottom:126.553200px;}
.y89{bottom:126.589350px;}
.yad{bottom:126.640800px;}
.y1f2{bottom:126.687600px;}
.y177{bottom:126.836100px;}
.y1cf{bottom:127.024500px;}
.y61{bottom:127.056450px;}
.yf6{bottom:127.227600px;}
.y214{bottom:127.340850px;}
.y3c{bottom:127.518000px;}
.y1d{bottom:129.002250px;}
.y132{bottom:130.193400px;}
.y14d{bottom:130.669350px;}
.y254{bottom:130.692750px;}
.y1ac{bottom:133.144350px;}
.y10b{bottom:133.175850px;}
.y146{bottom:133.193850px;}
.y11d{bottom:141.903150px;}
.y230{bottom:145.659300px;}
.yd0{bottom:146.794950px;}
.y199{bottom:146.839200px;}
.yac{bottom:147.013050px;}
.y88{bottom:147.013350px;}
.y1f1{bottom:147.036600px;}
.y176{bottom:147.501600px;}
.y60{bottom:147.877200px;}
.yf5{bottom:148.186350px;}
.y213{bottom:148.288350px;}
.y3b{bottom:148.674300px;}
.y131{bottom:150.444900px;}
.y14c{bottom:150.920850px;}
.y253{bottom:150.942750px;}
.y1ab{bottom:153.395850px;}
.y10a{bottom:153.427350px;}
.y145{bottom:153.445350px;}
.y1ce{bottom:156.225000px;}
.y1c{bottom:160.217250px;}
.y11c{bottom:162.154650px;}
.y22f{bottom:165.339300px;}
.ycf{bottom:167.063700px;}
.y198{bottom:167.125200px;}
.yab{bottom:167.385300px;}
.y87{bottom:167.437350px;}
.y175{bottom:168.167100px;}
.y3a{bottom:168.399300px;}
.y5f{bottom:168.697950px;}
.yf4{bottom:169.145100px;}
.y130{bottom:170.696400px;}
.y14b{bottom:171.172350px;}
.y252{bottom:171.192750px;}
.y1aa{bottom:173.647350px;}
.y109{bottom:173.678850px;}
.y144{bottom:173.696850px;}
.y1f0{bottom:175.890600px;}
.y1cd{bottom:176.920500px;}
.y212{bottom:177.740850px;}
.y11b{bottom:182.406150px;}
.y1b{bottom:182.927250px;}
.y22e{bottom:185.019300px;}
.yce{bottom:187.332450px;}
.y197{bottom:187.411200px;}
.yaa{bottom:187.534800px;}
.y86{bottom:187.861350px;}
.y39{bottom:188.124300px;}
.y174{bottom:188.832600px;}
.y5e{bottom:189.518700px;}
.yf3{bottom:190.103850px;}
.y14a{bottom:191.423850px;}
.y251{bottom:191.442750px;}
.y1a9{bottom:193.898850px;}
.y108{bottom:193.930350px;}
.y143{bottom:193.948350px;}
.y156{bottom:193.951350px;}
.y1ef{bottom:196.239600px;}
.y1cc{bottom:197.616000px;}
.y211{bottom:198.688350px;}
.y22d{bottom:204.699300px;}
.y1a{bottom:205.635300px;}
.ycd{bottom:207.601200px;}
.y196{bottom:207.697200px;}
.y38{bottom:207.849300px;}
.ya9{bottom:207.907050px;}
.y85{bottom:208.285350px;}
.y173{bottom:209.498100px;}
.y5d{bottom:210.339450px;}
.yf2{bottom:211.062600px;}
.y12f{bottom:211.196400px;}
.y250{bottom:211.692750px;}
.y1a8{bottom:214.150350px;}
.y107{bottom:214.181850px;}
.y142{bottom:214.199850px;}
.y1ee{bottom:216.588600px;}
.y1cb{bottom:218.479350px;}
.y210{bottom:219.635850px;}
.y11a{bottom:223.915950px;}
.y22c{bottom:224.379300px;}
.y37{bottom:227.574300px;}
.y195{bottom:227.983200px;}
.ya8{bottom:228.279300px;}
.y84{bottom:228.709350px;}
.y172{bottom:230.163600px;}
.y5c{bottom:231.160200px;}
.yf1{bottom:232.021350px;}
.y149{bottom:232.933650px;}
.y1a7{bottom:234.401850px;}
.y106{bottom:234.433350px;}
.y141{bottom:234.451350px;}
.y1ed{bottom:236.937600px;}
.y1ca{bottom:239.174850px;}
.y22b{bottom:244.059300px;}
.y24f{bottom:244.692750px;}
.y36{bottom:247.299300px;}
.y194{bottom:248.269200px;}
.ya7{bottom:248.651550px;}
.y20f{bottom:249.088350px;}
.ycc{bottom:249.115500px;}
.y83{bottom:249.133350px;}
.y171{bottom:250.829100px;}
.y5b{bottom:251.980950px;}
.yf0{bottom:252.980100px;}
.y1a6{bottom:254.653350px;}
.y105{bottom:254.684850px;}
.y19{bottom:258.096150px;}
.y1c9{bottom:259.870350px;}
.y22a{bottom:263.739300px;}
.y24e{bottom:264.942750px;}
.y1ec{bottom:265.791600px;}
.y35{bottom:267.024300px;}
.y193{bottom:268.555200px;}
.ya6{bottom:269.023800px;}
.y82{bottom:269.557350px;}
.y20e{bottom:270.035850px;}
.y170{bottom:271.494600px;}
.y5a{bottom:272.801700px;}
.ycb{bottom:273.132000px;}
.y11f{bottom:273.938850px;}
.y1a5{bottom:274.904850px;}
.y104{bottom:274.936350px;}
.y140{bottom:274.951350px;}
.y18{bottom:280.806150px;}
.y229{bottom:283.419300px;}
.y24d{bottom:285.192750px;}
.y1eb{bottom:286.140600px;}
.y119{bottom:286.191150px;}
.y34{bottom:286.749300px;}
.y1c8{bottom:289.070850px;}
.ya5{bottom:289.396050px;}
.y81{bottom:289.981350px;}
.y20d{bottom:290.983350px;}
.y16f{bottom:292.160100px;}
.y59{bottom:293.622450px;}
.yef{bottom:294.897600px;}
.y1a4{bottom:295.156350px;}
.y103{bottom:295.187850px;}
.y228{bottom:303.099300px;}
.y24c{bottom:305.442750px;}
.y33{bottom:306.474300px;}
.y1ea{bottom:306.489600px;}
.y1c7{bottom:309.766350px;}
.ya4{bottom:309.768300px;}
.y192{bottom:310.096950px;}
.y118{bottom:310.187400px;}
.y80{bottom:310.405350px;}
.y20c{bottom:311.930850px;}
.y17{bottom:312.021150px;}
.y16e{bottom:312.825600px;}
.y58{bottom:314.443200px;}
.y1a3{bottom:315.407850px;}
.y102{bottom:315.439350px;}
.y148{bottom:315.451350px;}
.yee{bottom:315.856350px;}
.y227{bottom:322.779300px;}
.y24b{bottom:325.692750px;}
.y32{bottom:326.199300px;}
.y1e9{bottom:326.861400px;}
.ya3{bottom:330.140550px;}
.y7f{bottom:330.829350px;}
.y16d{bottom:333.491100px;}
.y117{bottom:334.183650px;}
.y16{bottom:334.731150px;}
.yca{bottom:335.176350px;}
.y57{bottom:335.263950px;}
.y1a2{bottom:335.659350px;}
.y101{bottom:335.690850px;}
.yed{bottom:336.815100px;}
.y1c6{bottom:338.966850px;}
.y20b{bottom:341.383350px;}
.y226{bottom:342.459300px;}
.y31{bottom:345.924300px;}
.y1e8{bottom:347.210400px;}
.ya2{bottom:350.512800px;}
.y7e{bottom:351.253350px;}
.y16c{bottom:354.156600px;}
.yc9{bottom:355.445100px;}
.y1a1{bottom:355.910850px;}
.y100{bottom:355.942350px;}
.y56{bottom:356.084700px;}
.y15{bottom:357.441150px;}
.yec{bottom:357.773850px;}
.y24a{bottom:358.692750px;}
.y1c5{bottom:359.662350px;}
.y225{bottom:362.139300px;}
.y20a{bottom:362.330850px;}
.ya1{bottom:370.885050px;}
.y7d{bottom:371.677350px;}
.y191{bottom:372.300300px;}
.y16b{bottom:374.822100px;}
.yc8{bottom:375.713850px;}
.y1e7{bottom:376.064400px;}
.y1a0{bottom:376.162350px;}
.yff{bottom:376.193850px;}
.y55{bottom:376.905450px;}
.y30{bottom:378.399300px;}
.yeb{bottom:378.732600px;}
.y249{bottom:378.942750px;}
.y14{bottom:380.151150px;}
.y1c4{bottom:380.357850px;}
.y224{bottom:381.819300px;}
.y209{bottom:383.278350px;}
.ya0{bottom:391.257300px;}
.y7c{bottom:392.101350px;}
.y190{bottom:392.586300px;}
.y16a{bottom:395.487600px;}
.yc7{bottom:395.982600px;}
.y1e6{bottom:396.413400px;}
.y19f{bottom:396.413850px;}
.y116{bottom:396.439350px;}
.yfe{bottom:396.445350px;}
.y54{bottom:397.726200px;}
.y248{bottom:399.192750px;}
.yea{bottom:399.691350px;}
.y223{bottom:401.499300px;}
.y13{bottom:402.859200px;}
.y1c3{bottom:409.558350px;}
.y9f{bottom:411.629550px;}
.y7b{bottom:412.525350px;}
.y208{bottom:412.730850px;}
.y18f{bottom:412.872300px;}
.y169{bottom:416.153100px;}
.yc6{bottom:416.251350px;}
.y19e{bottom:416.665350px;}
.y115{bottom:416.690850px;}
.yfd{bottom:416.696850px;}
.y53{bottom:418.546950px;}
.y247{bottom:419.442750px;}
.ye9{bottom:420.650100px;}
.y222{bottom:421.179300px;}
.y1e5{bottom:425.267400px;}
.y1c2{bottom:430.253850px;}
.y9e{bottom:432.001800px;}
.y7a{bottom:432.949350px;}
.y18e{bottom:433.158300px;}
.y207{bottom:433.678350px;}
.y2f{bottom:436.391250px;}
.yc5{bottom:436.520100px;}
.y168{bottom:436.818600px;}
.y19d{bottom:436.916850px;}
.y114{bottom:436.942350px;}
.yfc{bottom:436.948350px;}
.y52{bottom:439.367700px;}
.y246{bottom:439.692750px;}
.ye8{bottom:441.608850px;}
.y1e4{bottom:445.616400px;}
.y1c1{bottom:450.949350px;}
.y9d{bottom:452.374050px;}
.y79{bottom:453.373350px;}
.y18d{bottom:453.444300px;}
.y221{bottom:453.609300px;}
.y206{bottom:454.625850px;}
.y12{bottom:455.324100px;}
.yc4{bottom:456.788850px;}
.y19c{bottom:457.168350px;}
.y113{bottom:457.193850px;}
.yfb{bottom:457.199850px;}
.y167{bottom:457.484100px;}
.y245{bottom:459.942750px;}
.y51{bottom:460.188450px;}
.ye7{bottom:462.567600px;}
.y2e{bottom:463.607250px;}
.y1e3{bottom:466.037850px;}
.y9c{bottom:472.746300px;}
.y18c{bottom:473.730300px;}
.y78{bottom:473.797350px;}
.y205{bottom:475.573350px;}
.yc3{bottom:477.057600px;}
.y155{bottom:477.419850px;}
.y112{bottom:477.445350px;}
.yfa{bottom:477.451350px;}
.y11{bottom:478.034100px;}
.y1c0{bottom:480.149850px;}
.y244{bottom:480.192750px;}
.y50{bottom:481.009200px;}
.ye6{bottom:483.526350px;}
.y1e2{bottom:486.386850px;}
.y2d{bottom:490.823250px;}
.y9b{bottom:493.118550px;}
.y18b{bottom:494.016300px;}
.y77{bottom:494.221350px;}
.yc2{bottom:497.326350px;}
.y154{bottom:497.671350px;}
.y111{bottom:497.696850px;}
.y166{bottom:499.401750px;}
.y243{bottom:500.442750px;}
.y1bf{bottom:500.845350px;}
.y4f{bottom:501.829950px;}
.ye5{bottom:504.485100px;}
.y204{bottom:505.025850px;}
.y1e1{bottom:506.735850px;}
.y10{bottom:509.249100px;}
.y220{bottom:511.573650px;}
.y9a{bottom:513.490800px;}
.y18a{bottom:514.302300px;}
.y76{bottom:514.645350px;}
.yc1{bottom:517.595100px;}
.y153{bottom:517.922850px;}
.y110{bottom:517.948350px;}
.yf9{bottom:517.951350px;}
.y242{bottom:520.692750px;}
.y1be{bottom:521.540850px;}
.y4e{bottom:522.650700px;}
.ye4{bottom:525.443850px;}
.y203{bottom:525.973350px;}
.yf{bottom:531.959100px;}
.y99{bottom:533.863050px;}
.y189{bottom:534.588300px;}
.y75{bottom:535.069350px;}
.y1e0{bottom:535.589850px;}
.yc0{bottom:537.863850px;}
.y152{bottom:538.174350px;}
.y10f{bottom:538.199850px;}
.y21f{bottom:538.747650px;}
.y2c{bottom:539.270850px;}
.ye3{bottom:546.402600px;}
.y1bd{bottom:550.741350px;}
.y241{bottom:553.692750px;}
.y98{bottom:554.235300px;}
.ye{bottom:554.667150px;}
.y188{bottom:554.874300px;}
.y202{bottom:555.425850px;}
.y74{bottom:555.493350px;}
.y1df{bottom:555.938850px;}
.ybf{bottom:558.132600px;}
.y151{bottom:558.425850px;}
.y10e{bottom:558.451350px;}
.y165{bottom:561.986700px;}
.y4d{bottom:564.728100px;}
.y21e{bottom:565.921650px;}
.ye2{bottom:567.361350px;}
.y2b{bottom:570.995850px;}
.y1bc{bottom:571.436850px;}
.y240{bottom:573.942750px;}
.y97{bottom:574.607550px;}
.y187{bottom:575.160300px;}
.y73{bottom:575.917350px;}
.y1de{bottom:576.287850px;}
.ybe{bottom:578.401350px;}
.y150{bottom:578.677350px;}
.y164{bottom:582.652200px;}
.y201{bottom:584.878350px;}
.ye1{bottom:588.320100px;}
.y1bb{bottom:592.132350px;}
.y21d{bottom:593.095650px;}
.y23f{bottom:594.192750px;}
.y96{bottom:594.979800px;}
.y186{bottom:595.446300px;}
.y12e{bottom:595.926900px;}
.y72{bottom:596.341350px;}
.y1dd{bottom:596.636850px;}
.ybd{bottom:598.670100px;}
.y14f{bottom:598.928850px;}
.y10d{bottom:598.951350px;}
.y2a{bottom:602.720850px;}
.y163{bottom:603.317700px;}
.y200{bottom:605.825850px;}
.yd{bottom:607.129950px;}
.ye0{bottom:609.278850px;}
.y23e{bottom:614.442750px;}
.y95{bottom:615.352050px;}
.y185{bottom:615.732300px;}
.y12d{bottom:616.178400px;}
.y71{bottom:616.765350px;}
.y1dc{bottom:616.985850px;}
.ybc{bottom:618.938850px;}
.y14e{bottom:619.180350px;}
.y1ba{bottom:621.332850px;}
.y162{bottom:623.983200px;}
.y4c{bottom:627.561000px;}
.yc{bottom:629.839950px;}
.ydf{bottom:630.237600px;}
.y29{bottom:634.445850px;}
.y23d{bottom:634.692750px;}
.y1ff{bottom:635.278350px;}
.y94{bottom:635.724300px;}
.y184{bottom:636.018300px;}
.y12c{bottom:636.429900px;}
.y70{bottom:637.189350px;}
.ybb{bottom:639.207600px;}
.y13f{bottom:639.431850px;}
.y1b9{bottom:642.028350px;}
.y161{bottom:644.648700px;}
.y1db{bottom:645.839850px;}
.y4b{bottom:649.131000px;}
.yde{bottom:651.196350px;}
.yb{bottom:652.549950px;}
.y93{bottom:656.096550px;}
.y1fe{bottom:656.225850px;}
.y183{bottom:656.304300px;}
.y12b{bottom:656.681400px;}
.y6f{bottom:657.613350px;}
.yba{bottom:659.476350px;}
.y13e{bottom:659.683350px;}
.y1b8{bottom:662.723850px;}
.y160{bottom:665.314200px;}
.y28{bottom:666.170850px;}
.y1da{bottom:666.188850px;}
.y23c{bottom:667.692750px;}
.y4a{bottom:670.677750px;}
.ydd{bottom:672.155100px;}
.y92{bottom:676.468800px;}
.y182{bottom:676.590300px;}
.y12a{bottom:676.932900px;}
.y1fd{bottom:677.209650px;}
.y6e{bottom:678.037350px;}
.yb9{bottom:679.745100px;}
.y13d{bottom:679.934850px;}
.y1b7{bottom:683.419350px;}
.ya{bottom:683.764950px;}
.y15f{bottom:685.979700px;}
.y1d9{bottom:686.537850px;}
.y23b{bottom:687.942750px;}
.y49{bottom:690.747750px;}
.ydc{bottom:693.113850px;}
.y91{bottom:696.841050px;}
.y181{bottom:696.876300px;}
.y129{bottom:697.184400px;}
.y27{bottom:697.895850px;}
.y1fc{bottom:698.157150px;}
.y6d{bottom:698.461350px;}
.yb8{bottom:700.013850px;}
.y13c{bottom:700.186350px;}
.y9{bottom:706.474950px;}
.y15e{bottom:706.645200px;}
.y23a{bottom:708.192750px;}
.y48{bottom:710.817750px;}
.y1b6{bottom:712.619850px;}
.ydb{bottom:714.072600px;}
.y1d8{bottom:715.391850px;}
.y180{bottom:717.162300px;}
.y90{bottom:717.213300px;}
.y128{bottom:717.435900px;}
.y6c{bottom:718.885350px;}
.y1fb{bottom:719.104650px;}
.yb7{bottom:720.282600px;}
.y13b{bottom:720.437850px;}
.y15d{bottom:727.310700px;}
.y239{bottom:728.442750px;}
.y8{bottom:729.183000px;}
.y47{bottom:730.887750px;}
.y1b5{bottom:733.315350px;}
.yda{bottom:735.031350px;}
.y1d7{bottom:735.740850px;}
.y17f{bottom:737.448300px;}
.y8f{bottom:737.585550px;}
.y127{bottom:737.687400px;}
.y6b{bottom:739.309350px;}
.yb6{bottom:740.551350px;}
.y13a{bottom:740.689350px;}
.y21c{bottom:743.694600px;}
.y15c{bottom:747.976200px;}
.y1fa{bottom:748.557150px;}
.y238{bottom:748.692750px;}
.y46{bottom:750.957750px;}
.y1b4{bottom:754.010850px;}
.yd9{bottom:755.990100px;}
.y1d6{bottom:756.089850px;}
.y17e{bottom:757.734300px;}
.y126{bottom:757.938900px;}
.y8e{bottom:757.957800px;}
.y26{bottom:759.345150px;}
.y6a{bottom:759.733350px;}
.yb5{bottom:760.820100px;}
.y139{bottom:760.940850px;}
.y21b{bottom:764.122350px;}
.y15b{bottom:768.641700px;}
.y1f9{bottom:769.504650px;}
.y45{bottom:771.027750px;}
.yd8{bottom:776.948850px;}
.y17d{bottom:778.020300px;}
.y125{bottom:778.190400px;}
.y8d{bottom:778.330050px;}
.y69{bottom:780.157350px;}
.yb4{bottom:781.088850px;}
.y138{bottom:781.192350px;}
.y7{bottom:781.645950px;}
.y237{bottom:781.692750px;}
.y1b3{bottom:783.211350px;}
.y21a{bottom:784.550100px;}
.y1d5{bottom:784.943850px;}
.y25{bottom:789.075150px;}
.y15a{bottom:789.307200px;}
.y1f8{bottom:790.452150px;}
.y44{bottom:791.097750px;}
.yd7{bottom:797.907600px;}
.y17c{bottom:798.306300px;}
.y124{bottom:798.441900px;}
.y68{bottom:800.581350px;}
.yb3{bottom:801.357600px;}
.y137{bottom:801.443850px;}
.y236{bottom:801.942750px;}
.y1b2{bottom:803.906850px;}
.y6{bottom:804.355950px;}
.y1d4{bottom:805.292850px;}
.y159{bottom:809.972700px;}
.y24{bottom:810.300150px;}
.y43{bottom:811.167750px;}
.y1f7{bottom:811.399650px;}
.y219{bottom:813.482850px;}
.y17b{bottom:818.592300px;}
.y123{bottom:818.693400px;}
.yd6{bottom:818.866350px;}
.y8c{bottom:819.954600px;}
.y67{bottom:821.005350px;}
.yb2{bottom:821.626350px;}
.y136{bottom:821.695350px;}
.y235{bottom:822.192750px;}
.y1b1{bottom:824.602350px;}
.y5{bottom:827.065950px;}
.y42{bottom:831.237750px;}
.y218{bottom:833.910600px;}
.y1d3{bottom:834.146850px;}
.y17a{bottom:838.878300px;}
.y122{bottom:838.944900px;}
.yd5{bottom:839.825100px;}
.y23{bottom:840.030150px;}
.y1f6{bottom:840.852150px;}
.y66{bottom:841.429350px;}
.yb1{bottom:841.895100px;}
.y135{bottom:841.946850px;}
.y234{bottom:842.442750px;}
.y41{bottom:851.307750px;}
.y158{bottom:851.903700px;}
.y1b0{bottom:853.802850px;}
.y217{bottom:854.338350px;}
.y1d2{bottom:854.495850px;}
.y4{bottom:858.280950px;}
.y179{bottom:859.164300px;}
.y121{bottom:859.196400px;}
.yd4{bottom:860.783850px;}
.y22{bottom:861.255150px;}
.y1f5{bottom:861.799650px;}
.y65{bottom:861.853350px;}
.yb0{bottom:862.163850px;}
.y134{bottom:862.198350px;}
.y233{bottom:862.692750px;}
.y40{bottom:871.377750px;}
.y1af{bottom:874.498350px;}
.y157{bottom:876.304950px;}
.y3{bottom:880.990950px;}
.yd3{bottom:881.742600px;}
.y64{bottom:882.277350px;}
.y8b{bottom:882.329100px;}
.yaf{bottom:882.432600px;}
.yf8{bottom:882.449850px;}
.y21{bottom:882.480150px;}
.y1f4{bottom:882.751350px;}
.y216{bottom:883.271100px;}
.y1d1{bottom:883.349850px;}
.y120{bottom:900.706200px;}
.y63{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y3f{bottom:904.197750px;}
.y20{bottom:948.189000px;}
.y1f{bottom:966.189000px;}
.y3e{bottom:984.189000px;}
.h5{height:33.117188px;}
.hc{height:35.663086px;}
.h9{height:41.396484px;}
.h10{height:43.466309px;}
.he{height:47.605957px;}
.hd{height:49.088379px;}
.h4{height:50.947266px;}
.h2{height:51.745605px;}
.hf{height:53.204829px;}
.h3{height:53.494629px;}
.hb{height:58.589355px;}
.h6{height:63.684082px;}
.ha{height:68.778809px;}
.h8{height:71.326172px;}
.h7{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:81.075600px;}
.xf{left:82.455450px;}
.x5{left:83.686650px;}
.x1{left:85.039350px;}
.xc{left:87.203400px;}
.xa{left:95.793900px;}
.xe{left:103.718850px;}
.x6{left:105.030600px;}
.x7{left:106.035600px;}
.xb{left:114.924150px;}
.x10{left:200.986500px;}
.xd{left:202.344450px;}
.x9{left:212.664000px;}
.x12{left:229.003050px;}
.x4{left:231.288000px;}
.x3{left:232.583850px;}
.x2{left:233.635500px;}
.x11{left:257.968350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.717867pt;}
.v1{vertical-align:15.882667pt;}
.lsd{letter-spacing:-2.912000pt;}
.ls16{letter-spacing:-2.808000pt;}
.ls1f{letter-spacing:-2.576000pt;}
.ls1b{letter-spacing:-1.874667pt;}
.ls1{letter-spacing:-1.792000pt;}
.lsc{letter-spacing:-1.248000pt;}
.ls14{letter-spacing:-1.080000pt;}
.ls23{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.760000pt;}
.ls17{letter-spacing:-0.557333pt;}
.ls21{letter-spacing:-0.506667pt;}
.ls1e{letter-spacing:-0.490667pt;}
.ls27{letter-spacing:-0.391776pt;}
.ls5{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:-0.224000pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls1a{letter-spacing:-0.152000pt;}
.ls22{letter-spacing:-0.072000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:1.120000pt;}
.ls3{letter-spacing:1.546667pt;}
.lsa{letter-spacing:2.133333pt;}
.ls1d{letter-spacing:3.121867pt;}
.ls8{letter-spacing:3.200000pt;}
.ls18{letter-spacing:3.696000pt;}
.lsf{letter-spacing:3.733333pt;}
.ls24{letter-spacing:4.866667pt;}
.ls12{letter-spacing:5.120000pt;}
.ls1c{letter-spacing:5.200000pt;}
.lse{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls19{letter-spacing:5.400000pt;}
.ls25{letter-spacing:5.600000pt;}
.ls26{letter-spacing:6.104000pt;}
.ls15{letter-spacing:6.400000pt;}
.ls20{letter-spacing:6.666667pt;}
.ls7{letter-spacing:6.693333pt;}
.ls4{letter-spacing:7.466667pt;}
.ls9{letter-spacing:15.840000pt;}
.wse{word-spacing:-68.928000pt;}
.wsf{word-spacing:-67.680000pt;}
.wsb1{word-spacing:-61.333333pt;}
.wsa{word-spacing:-54.560000pt;}
.wsb5{word-spacing:-54.533333pt;}
.ws26{word-spacing:-54.266667pt;}
.ws10{word-spacing:-53.610667pt;}
.ws68{word-spacing:-53.266667pt;}
.wsc2{word-spacing:-52.733333pt;}
.ws4b{word-spacing:-51.696000pt;}
.wsb8{word-spacing:-51.624000pt;}
.wsbb{word-spacing:-50.832000pt;}
.ws11{word-spacing:-50.698667pt;}
.ws1b{word-spacing:-50.616000pt;}
.ws34{word-spacing:-48.888000pt;}
.wsc9{word-spacing:-46.312000pt;}
.wsca{word-spacing:-45.808000pt;}
.ws6{word-spacing:-45.760000pt;}
.ws1c{word-spacing:-44.037333pt;}
.ws2{word-spacing:-43.626667pt;}
.ws12{word-spacing:-43.520000pt;}
.ws14{word-spacing:-43.413333pt;}
.ws5{word-spacing:-40.208000pt;}
.ws8{word-spacing:-39.984000pt;}
.ws4{word-spacing:-39.840000pt;}
.ws1{word-spacing:-38.416000pt;}
.ws3{word-spacing:-38.293333pt;}
.wsd{word-spacing:-38.080000pt;}
.ws7{word-spacing:-38.026667pt;}
.wsd1{word-spacing:-36.428000pt;}
.wsa8{word-spacing:-34.064533pt;}
.wsc4{word-spacing:-34.040000pt;}
.ws31{word-spacing:-33.917333pt;}
.wsc{word-spacing:-33.834667pt;}
.ws88{word-spacing:-33.733333pt;}
.wsab{word-spacing:-33.672000pt;}
.ws57{word-spacing:-33.610667pt;}
.ws38{word-spacing:-33.488000pt;}
.ws37{word-spacing:-33.475733pt;}
.ws3a{word-spacing:-33.304000pt;}
.ws23{word-spacing:-33.267200pt;}
.ws58{word-spacing:-33.199733pt;}
.ws2e{word-spacing:-33.120000pt;}
.ws21{word-spacing:-33.028000pt;}
.wsc0{word-spacing:-32.997333pt;}
.ws98{word-spacing:-32.770400pt;}
.ws93{word-spacing:-32.752000pt;}
.ws81{word-spacing:-32.690667pt;}
.wsf1{word-spacing:-32.536000pt;}
.ws35{word-spacing:-32.506667pt;}
.ws85{word-spacing:-32.482133pt;}
.ws84{word-spacing:-32.445333pt;}
.ws3d{word-spacing:-32.384000pt;}
.ws6c{word-spacing:-32.328800pt;}
.ws3e{word-spacing:-32.322667pt;}
.ws6b{word-spacing:-32.261333pt;}
.ws9f{word-spacing:-32.138667pt;}
.ws92{word-spacing:-32.016000pt;}
.ws96{word-spacing:-31.954667pt;}
.ws79{word-spacing:-31.776800pt;}
.ws7e{word-spacing:-31.709333pt;}
.ws1e{word-spacing:-31.648000pt;}
.ws101{word-spacing:-31.640000pt;}
.wsb9{word-spacing:-31.402667pt;}
.ws91{word-spacing:-31.341333pt;}
.wsd2{word-spacing:-31.304000pt;}
.wsdb{word-spacing:-31.192000pt;}
.wse8{word-spacing:-31.158400pt;}
.wsa6{word-spacing:-31.157333pt;}
.wsfc{word-spacing:-30.912000pt;}
.wsc7{word-spacing:-30.850667pt;}
.wsad{word-spacing:-30.666667pt;}
.wsce{word-spacing:-30.576000pt;}
.wsc6{word-spacing:-30.544000pt;}
.ws6a{word-spacing:-30.538667pt;}
.wscc{word-spacing:-30.520000pt;}
.ws2c{word-spacing:-30.421333pt;}
.wsec{word-spacing:-30.251200pt;}
.wseb{word-spacing:-30.240000pt;}
.wsd3{word-spacing:-30.184000pt;}
.ws2a{word-spacing:-30.176000pt;}
.wsef{word-spacing:-29.960000pt;}
.ws30{word-spacing:-29.930667pt;}
.ws2f{word-spacing:-29.820267pt;}
.wsd8{word-spacing:-29.680000pt;}
.wsda{word-spacing:-29.640800pt;}
.ws3b{word-spacing:-29.568800pt;}
.ws7d{word-spacing:-29.378667pt;}
.ws80{word-spacing:-28.992267pt;}
.ws100{word-spacing:-28.952000pt;}
.wsa4{word-spacing:-28.599733pt;}
.ws47{word-spacing:-28.415733pt;}
.wsa1{word-spacing:-28.391200pt;}
.ws7b{word-spacing:-28.047733pt;}
.wsc8{word-spacing:-28.029333pt;}
.wse9{word-spacing:-28.000000pt;}
.ws111{word-spacing:-27.944000pt;}
.ws3c{word-spacing:-27.845333pt;}
.wsf9{word-spacing:-27.832000pt;}
.ws2b{word-spacing:-27.722667pt;}
.wsf0{word-spacing:-27.720000pt;}
.ws113{word-spacing:-27.488000pt;}
.wsff{word-spacing:-27.440000pt;}
.ws87{word-spacing:-27.422133pt;}
.ws86{word-spacing:-27.416000pt;}
.wsbe{word-spacing:-27.182933pt;}
.wsbf{word-spacing:-27.048000pt;}
.ws5a{word-spacing:-26.986667pt;}
.ws59{word-spacing:-26.925333pt;}
.ws72{word-spacing:-26.802667pt;}
.ws71{word-spacing:-26.741333pt;}
.ws56{word-spacing:-26.557333pt;}
.ws95{word-spacing:-26.502133pt;}
.ws94{word-spacing:-26.496000pt;}
.wscb{word-spacing:-26.376000pt;}
.wsea{word-spacing:-26.320000pt;}
.wscf{word-spacing:-26.101600pt;}
.wsd0{word-spacing:-26.096000pt;}
.ws1d{word-spacing:-26.066667pt;}
.ws112{word-spacing:-25.984000pt;}
.ws29{word-spacing:-25.937867pt;}
.ws6e{word-spacing:-25.882667pt;}
.ws97{word-spacing:-25.821333pt;}
.ws7c{word-spacing:-25.674133pt;}
.ws3f{word-spacing:-25.673765pt;}
.ws5b{word-spacing:-25.655733pt;}
.ws22{word-spacing:-25.637333pt;}
.ws16{word-spacing:-25.493333pt;}
.wsd7{word-spacing:-25.200000pt;}
.ws39{word-spacing:-25.183467pt;}
.ws48{word-spacing:-24.840000pt;}
.wsfa{word-spacing:-24.763200pt;}
.wsd5{word-spacing:-24.696000pt;}
.ws55{word-spacing:-24.281867pt;}
.ws77{word-spacing:-23.933333pt;}
.ws2d{word-spacing:-23.674667pt;}
.ws7f{word-spacing:-23.613333pt;}
.ws6d{word-spacing:-23.552000pt;}
.ws104{word-spacing:-23.520000pt;}
.wsfd{word-spacing:-23.469600pt;}
.wsd9{word-spacing:-23.441264pt;}
.wsfe{word-spacing:-23.408000pt;}
.ws18{word-spacing:-23.360000pt;}
.ws53{word-spacing:-23.269867pt;}
.wsee{word-spacing:-23.049488pt;}
.ws54{word-spacing:-22.570667pt;}
.ws20{word-spacing:-22.564533pt;}
.ws7a{word-spacing:-22.448000pt;}
.ws105{word-spacing:-22.008000pt;}
.ws4d{word-spacing:-21.650667pt;}
.ws9e{word-spacing:-21.551733pt;}
.ws36{word-spacing:-21.282667pt;}
.ws103{word-spacing:-20.921600pt;}
.ws102{word-spacing:-20.888000pt;}
.wsd6{word-spacing:-20.720000pt;}
.ws28{word-spacing:-20.178667pt;}
.ws4c{word-spacing:-19.258667pt;}
.wsdc{word-spacing:-18.648000pt;}
.ws49{word-spacing:-18.645333pt;}
.ws73{word-spacing:-18.159200pt;}
.wsba{word-spacing:-18.116533pt;}
.wsbd{word-spacing:-17.451200pt;}
.wsb0{word-spacing:-17.234667pt;}
.wsc5{word-spacing:-16.560000pt;}
.wsed{word-spacing:-15.736000pt;}
.wsaa{word-spacing:-15.149333pt;}
.ws33{word-spacing:-15.140267pt;}
.wsa5{word-spacing:-14.785867pt;}
.wsa9{word-spacing:-14.658667pt;}
.ws1f{word-spacing:-14.597333pt;}
.wsb7{word-spacing:-14.474400pt;}
.ws1a{word-spacing:-14.399733pt;}
.ws17{word-spacing:-14.389333pt;}
.wsc1{word-spacing:-14.319733pt;}
.wsd4{word-spacing:-13.837600pt;}
.wscd{word-spacing:-13.832000pt;}
.ws4a{word-spacing:-13.531467pt;}
.ws116{word-spacing:-13.173333pt;}
.wsac{word-spacing:-12.573333pt;}
.ws74{word-spacing:-10.405600pt;}
.ws15{word-spacing:-8.693333pt;}
.wsfb{word-spacing:-8.064056pt;}
.ws4e{word-spacing:-6.624000pt;}
.ws42{word-spacing:-5.826667pt;}
.ws66{word-spacing:-5.642667pt;}
.ws82{word-spacing:-5.090667pt;}
.wsa3{word-spacing:-4.048000pt;}
.ws50{word-spacing:-3.925333pt;}
.wse4{word-spacing:-3.808000pt;}
.wsa2{word-spacing:-3.733333pt;}
.ws43{word-spacing:-3.496000pt;}
.ws63{word-spacing:-2.760000pt;}
.ws10a{word-spacing:-2.744000pt;}
.ws41{word-spacing:-2.576000pt;}
.ws32{word-spacing:-2.085333pt;}
.wsdd{word-spacing:-1.736000pt;}
.ws45{word-spacing:-1.656000pt;}
.wsb4{word-spacing:-1.594667pt;}
.ws106{word-spacing:-1.568000pt;}
.ws83{word-spacing:-1.472000pt;}
.ws25{word-spacing:-1.120000pt;}
.ws62{word-spacing:-1.104000pt;}
.ws8b{word-spacing:-0.920000pt;}
.wse6{word-spacing:-0.728000pt;}
.wsbc{word-spacing:-0.552000pt;}
.ws115{word-spacing:-0.448000pt;}
.ws52{word-spacing:-0.061333pt;}
.ws9{word-spacing:0.000000pt;}
.ws24{word-spacing:0.160000pt;}
.wsaf{word-spacing:0.245333pt;}
.ws61{word-spacing:0.613333pt;}
.wse1{word-spacing:0.616000pt;}
.ws109{word-spacing:0.840000pt;}
.wsb3{word-spacing:1.104000pt;}
.ws8f{word-spacing:1.472000pt;}
.ws10b{word-spacing:1.960000pt;}
.ws76{word-spacing:2.085333pt;}
.ws8c{word-spacing:2.269333pt;}
.ws5c{word-spacing:2.882667pt;}
.wse0{word-spacing:3.528000pt;}
.wsae{word-spacing:3.618667pt;}
.ws4f{word-spacing:3.680000pt;}
.wse2{word-spacing:3.696000pt;}
.ws51{word-spacing:4.232000pt;}
.ws10c{word-spacing:4.984000pt;}
.ws10f{word-spacing:5.376000pt;}
.wsf8{word-spacing:5.712000pt;}
.wsf2{word-spacing:5.768000pt;}
.wsf7{word-spacing:6.048000pt;}
.ws10e{word-spacing:6.272000pt;}
.ws108{word-spacing:6.440000pt;}
.wsf4{word-spacing:6.664000pt;}
.ws8a{word-spacing:6.869333pt;}
.ws60{word-spacing:6.992000pt;}
.ws64{word-spacing:7.053333pt;}
.wsf5{word-spacing:7.336000pt;}
.ws65{word-spacing:7.973333pt;}
.ws5f{word-spacing:8.218667pt;}
.wsf6{word-spacing:8.736000pt;}
.ws9d{word-spacing:8.893333pt;}
.ws40{word-spacing:9.261333pt;}
.wsb2{word-spacing:9.384000pt;}
.ws8e{word-spacing:9.874667pt;}
.ws44{word-spacing:10.242667pt;}
.ws114{word-spacing:10.752000pt;}
.ws89{word-spacing:11.101333pt;}
.ws6f{word-spacing:11.285333pt;}
.ws9a{word-spacing:11.469333pt;}
.ws99{word-spacing:12.144000pt;}
.wsde{word-spacing:12.376000pt;}
.wsdf{word-spacing:12.712000pt;}
.wsf3{word-spacing:12.824000pt;}
.wse5{word-spacing:13.104000pt;}
.wse3{word-spacing:13.552000pt;}
.ws107{word-spacing:14.728000pt;}
.ws8d{word-spacing:15.946667pt;}
.ws67{word-spacing:16.376000pt;}
.ws75{word-spacing:16.560000pt;}
.ws9b{word-spacing:16.805333pt;}
.ws10d{word-spacing:16.912000pt;}
.ws9c{word-spacing:17.418667pt;}
.ws5e{word-spacing:18.952000pt;}
.ws70{word-spacing:19.626667pt;}
.ws5d{word-spacing:20.546667pt;}
.ws19{word-spacing:41.787200pt;}
.ws13{word-spacing:197.381333pt;}
.wse7{word-spacing:348.693333pt;}
.wsb6{word-spacing:349.173333pt;}
.ws110{word-spacing:349.226667pt;}
.ws46{word-spacing:349.813333pt;}
.wsb{word-spacing:350.186667pt;}
.ws27{word-spacing:350.240000pt;}
.ws69{word-spacing:350.346667pt;}
.ws90{word-spacing:350.453333pt;}
.wsa0{word-spacing:350.880000pt;}
.wsa7{word-spacing:351.040000pt;}
.wsc3{word-spacing:351.786667pt;}
.ws78{word-spacing:352.693333pt;}
.ws0{word-spacing:475.840000pt;}
._19{margin-left:-9.850667pt;}
._18{margin-left:-8.709333pt;}
._c{margin-left:-7.678133pt;}
._d{margin-left:-6.149333pt;}
._b{margin-left:-4.976000pt;}
._9{margin-left:-3.898667pt;}
._3{margin-left:-2.720000pt;}
._a{margin-left:-1.818667pt;}
._4{margin-left:-0.928000pt;}
._5{width:1.018667pt;}
._0{width:2.133333pt;}
._2{width:3.399733pt;}
._6{width:5.088000pt;}
._7{width:6.186667pt;}
._8{width:7.557333pt;}
._f{width:8.544000pt;}
._11{width:9.752000pt;}
._15{width:10.656000pt;}
._14{width:11.728800pt;}
._1a{width:14.085333pt;}
._17{width:16.535467pt;}
._13{width:18.432000pt;}
._1c{width:19.741333pt;}
._1b{width:21.026667pt;}
._10{width:22.378667pt;}
._1d{width:23.672000pt;}
._1{width:849.961067pt;}
._e{width:852.294400pt;}
._12{width:855.894400pt;}
._16{width:857.654400pt;}
.fsb{font-size:32.648000pt;}
.fsa{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1ae{bottom:82.347867pt;}
.y8a{bottom:94.369200pt;}
.y178{bottom:94.373867pt;}
.y62{bottom:94.431733pt;}
.yd2{bottom:94.451067pt;}
.y19b{bottom:94.459733pt;}
.yae{bottom:94.460933pt;}
.yf7{bottom:94.461200pt;}
.y1e{bottom:94.482000pt;}
.y3d{bottom:94.482667pt;}
.y232{bottom:94.488267pt;}
.y1d0{bottom:94.514667pt;}
.y1f3{bottom:94.523200pt;}
.y215{bottom:94.571867pt;}
.y133{bottom:97.726133pt;}
.y255{bottom:98.171333pt;}
.y1ad{bottom:100.349200pt;}
.y10c{bottom:100.377200pt;}
.y147{bottom:100.393200pt;}
.y11e{bottom:108.134800pt;}
.y231{bottom:111.981600pt;}
.yd1{bottom:112.467733pt;}
.y19a{bottom:112.491733pt;}
.y89{bottom:112.523867pt;}
.yad{bottom:112.569600pt;}
.y1f2{bottom:112.611200pt;}
.y177{bottom:112.743200pt;}
.y1cf{bottom:112.910667pt;}
.y61{bottom:112.939067pt;}
.yf6{bottom:113.091200pt;}
.y214{bottom:113.191867pt;}
.y3c{bottom:113.349333pt;}
.y1d{bottom:114.668667pt;}
.y132{bottom:115.727467pt;}
.y14d{bottom:116.150533pt;}
.y254{bottom:116.171333pt;}
.y1ac{bottom:118.350533pt;}
.y10b{bottom:118.378533pt;}
.y146{bottom:118.394533pt;}
.y11d{bottom:126.136133pt;}
.y230{bottom:129.474933pt;}
.yd0{bottom:130.484400pt;}
.y199{bottom:130.523733pt;}
.yac{bottom:130.678267pt;}
.y88{bottom:130.678533pt;}
.y1f1{bottom:130.699200pt;}
.y176{bottom:131.112533pt;}
.y60{bottom:131.446400pt;}
.yf5{bottom:131.721200pt;}
.y213{bottom:131.811867pt;}
.y3b{bottom:132.154933pt;}
.y131{bottom:133.728800pt;}
.y14c{bottom:134.151867pt;}
.y253{bottom:134.171333pt;}
.y1ab{bottom:136.351867pt;}
.y10a{bottom:136.379867pt;}
.y145{bottom:136.395867pt;}
.y1ce{bottom:138.866667pt;}
.y1c{bottom:142.415333pt;}
.y11c{bottom:144.137467pt;}
.y22f{bottom:146.968267pt;}
.ycf{bottom:148.501067pt;}
.y198{bottom:148.555733pt;}
.yab{bottom:148.786933pt;}
.y87{bottom:148.833200pt;}
.y175{bottom:149.481867pt;}
.y3a{bottom:149.688267pt;}
.y5f{bottom:149.953733pt;}
.yf4{bottom:150.351200pt;}
.y130{bottom:151.730133pt;}
.y14b{bottom:152.153200pt;}
.y252{bottom:152.171333pt;}
.y1aa{bottom:154.353200pt;}
.y109{bottom:154.381200pt;}
.y144{bottom:154.397200pt;}
.y1f0{bottom:156.347200pt;}
.y1cd{bottom:157.262667pt;}
.y212{bottom:157.991867pt;}
.y11b{bottom:162.138800pt;}
.y1b{bottom:162.602000pt;}
.y22e{bottom:164.461600pt;}
.yce{bottom:166.517733pt;}
.y197{bottom:166.587733pt;}
.yaa{bottom:166.697600pt;}
.y86{bottom:166.987867pt;}
.y39{bottom:167.221600pt;}
.y174{bottom:167.851200pt;}
.y5e{bottom:168.461067pt;}
.yf3{bottom:168.981200pt;}
.y14a{bottom:170.154533pt;}
.y251{bottom:170.171333pt;}
.y1a9{bottom:172.354533pt;}
.y108{bottom:172.382533pt;}
.y143{bottom:172.398533pt;}
.y156{bottom:172.401200pt;}
.y1ef{bottom:174.435200pt;}
.y1cc{bottom:175.658667pt;}
.y211{bottom:176.611867pt;}
.y22d{bottom:181.954933pt;}
.y1a{bottom:182.786933pt;}
.ycd{bottom:184.534400pt;}
.y196{bottom:184.619733pt;}
.y38{bottom:184.754933pt;}
.ya9{bottom:184.806267pt;}
.y85{bottom:185.142533pt;}
.y173{bottom:186.220533pt;}
.y5d{bottom:186.968400pt;}
.yf2{bottom:187.611200pt;}
.y12f{bottom:187.730133pt;}
.y250{bottom:188.171333pt;}
.y1a8{bottom:190.355867pt;}
.y107{bottom:190.383867pt;}
.y142{bottom:190.399867pt;}
.y1ee{bottom:192.523200pt;}
.y1cb{bottom:194.203867pt;}
.y210{bottom:195.231867pt;}
.y11a{bottom:199.036400pt;}
.y22c{bottom:199.448267pt;}
.y37{bottom:202.288267pt;}
.y195{bottom:202.651733pt;}
.ya8{bottom:202.914933pt;}
.y84{bottom:203.297200pt;}
.y172{bottom:204.589867pt;}
.y5c{bottom:205.475733pt;}
.yf1{bottom:206.241200pt;}
.y149{bottom:207.052133pt;}
.y1a7{bottom:208.357200pt;}
.y106{bottom:208.385200pt;}
.y141{bottom:208.401200pt;}
.y1ed{bottom:210.611200pt;}
.y1ca{bottom:212.599867pt;}
.y22b{bottom:216.941600pt;}
.y24f{bottom:217.504667pt;}
.y36{bottom:219.821600pt;}
.y194{bottom:220.683733pt;}
.ya7{bottom:221.023600pt;}
.y20f{bottom:221.411867pt;}
.ycc{bottom:221.436000pt;}
.y83{bottom:221.451867pt;}
.y171{bottom:222.959200pt;}
.y5b{bottom:223.983067pt;}
.yf0{bottom:224.871200pt;}
.y1a6{bottom:226.358533pt;}
.y105{bottom:226.386533pt;}
.y19{bottom:229.418800pt;}
.y1c9{bottom:230.995867pt;}
.y22a{bottom:234.434933pt;}
.y24e{bottom:235.504667pt;}
.y1ec{bottom:236.259200pt;}
.y35{bottom:237.354933pt;}
.y193{bottom:238.715733pt;}
.ya6{bottom:239.132267pt;}
.y82{bottom:239.606533pt;}
.y20e{bottom:240.031867pt;}
.y170{bottom:241.328533pt;}
.y5a{bottom:242.490400pt;}
.ycb{bottom:242.784000pt;}
.y11f{bottom:243.501200pt;}
.y1a5{bottom:244.359867pt;}
.y104{bottom:244.387867pt;}
.y140{bottom:244.401200pt;}
.y18{bottom:249.605467pt;}
.y229{bottom:251.928267pt;}
.y24d{bottom:253.504667pt;}
.y1eb{bottom:254.347200pt;}
.y119{bottom:254.392133pt;}
.y34{bottom:254.888267pt;}
.y1c8{bottom:256.951867pt;}
.ya5{bottom:257.240933pt;}
.y81{bottom:257.761200pt;}
.y20d{bottom:258.651867pt;}
.y16f{bottom:259.697867pt;}
.y59{bottom:260.997733pt;}
.yef{bottom:262.131200pt;}
.y1a4{bottom:262.361200pt;}
.y103{bottom:262.389200pt;}
.y228{bottom:269.421600pt;}
.y24c{bottom:271.504667pt;}
.y33{bottom:272.421600pt;}
.y1ea{bottom:272.435200pt;}
.y1c7{bottom:275.347867pt;}
.ya4{bottom:275.349600pt;}
.y192{bottom:275.641733pt;}
.y118{bottom:275.722133pt;}
.y80{bottom:275.915867pt;}
.y20c{bottom:277.271867pt;}
.y17{bottom:277.352133pt;}
.y16e{bottom:278.067200pt;}
.y58{bottom:279.505067pt;}
.y1a3{bottom:280.362533pt;}
.y102{bottom:280.390533pt;}
.y148{bottom:280.401200pt;}
.yee{bottom:280.761200pt;}
.y227{bottom:286.914933pt;}
.y24b{bottom:289.504667pt;}
.y32{bottom:289.954933pt;}
.y1e9{bottom:290.543467pt;}
.ya3{bottom:293.458267pt;}
.y7f{bottom:294.070533pt;}
.y16d{bottom:296.436533pt;}
.y117{bottom:297.052133pt;}
.y16{bottom:297.538800pt;}
.yca{bottom:297.934533pt;}
.y57{bottom:298.012400pt;}
.y1a2{bottom:298.363867pt;}
.y101{bottom:298.391867pt;}
.yed{bottom:299.391200pt;}
.y1c6{bottom:301.303867pt;}
.y20b{bottom:303.451867pt;}
.y226{bottom:304.408267pt;}
.y31{bottom:307.488267pt;}
.y1e8{bottom:308.631467pt;}
.ya2{bottom:311.566933pt;}
.y7e{bottom:312.225200pt;}
.y16c{bottom:314.805867pt;}
.yc9{bottom:315.951200pt;}
.y1a1{bottom:316.365200pt;}
.y100{bottom:316.393200pt;}
.y56{bottom:316.519733pt;}
.y15{bottom:317.725467pt;}
.yec{bottom:318.021200pt;}
.y24a{bottom:318.838000pt;}
.y1c5{bottom:319.699867pt;}
.y225{bottom:321.901600pt;}
.y20a{bottom:322.071867pt;}
.ya1{bottom:329.675600pt;}
.y7d{bottom:330.379867pt;}
.y191{bottom:330.933600pt;}
.y16b{bottom:333.175200pt;}
.yc8{bottom:333.967867pt;}
.y1e7{bottom:334.279467pt;}
.y1a0{bottom:334.366533pt;}
.yff{bottom:334.394533pt;}
.y55{bottom:335.027067pt;}
.y30{bottom:336.354933pt;}
.yeb{bottom:336.651200pt;}
.y249{bottom:336.838000pt;}
.y14{bottom:337.912133pt;}
.y1c4{bottom:338.095867pt;}
.y224{bottom:339.394933pt;}
.y209{bottom:340.691867pt;}
.ya0{bottom:347.784267pt;}
.y7c{bottom:348.534533pt;}
.y190{bottom:348.965600pt;}
.y16a{bottom:351.544533pt;}
.yc7{bottom:351.984533pt;}
.y1e6{bottom:352.367467pt;}
.y19f{bottom:352.367867pt;}
.y116{bottom:352.390533pt;}
.yfe{bottom:352.395867pt;}
.y54{bottom:353.534400pt;}
.y248{bottom:354.838000pt;}
.yea{bottom:355.281200pt;}
.y223{bottom:356.888267pt;}
.y13{bottom:358.097067pt;}
.y1c3{bottom:364.051867pt;}
.y9f{bottom:365.892933pt;}
.y7b{bottom:366.689200pt;}
.y208{bottom:366.871867pt;}
.y18f{bottom:366.997600pt;}
.y169{bottom:369.913867pt;}
.yc6{bottom:370.001200pt;}
.y19e{bottom:370.369200pt;}
.y115{bottom:370.391867pt;}
.yfd{bottom:370.397200pt;}
.y53{bottom:372.041733pt;}
.y247{bottom:372.838000pt;}
.ye9{bottom:373.911200pt;}
.y222{bottom:374.381600pt;}
.y1e5{bottom:378.015467pt;}
.y1c2{bottom:382.447867pt;}
.y9e{bottom:384.001600pt;}
.y7a{bottom:384.843867pt;}
.y18e{bottom:385.029600pt;}
.y207{bottom:385.491867pt;}
.y2f{bottom:387.903333pt;}
.yc5{bottom:388.017867pt;}
.y168{bottom:388.283200pt;}
.y19d{bottom:388.370533pt;}
.y114{bottom:388.393200pt;}
.yfc{bottom:388.398533pt;}
.y52{bottom:390.549067pt;}
.y246{bottom:390.838000pt;}
.ye8{bottom:392.541200pt;}
.y1e4{bottom:396.103467pt;}
.y1c1{bottom:400.843867pt;}
.y9d{bottom:402.110267pt;}
.y79{bottom:402.998533pt;}
.y18d{bottom:403.061600pt;}
.y221{bottom:403.208267pt;}
.y206{bottom:404.111867pt;}
.y12{bottom:404.732533pt;}
.yc4{bottom:406.034533pt;}
.y19c{bottom:406.371867pt;}
.y113{bottom:406.394533pt;}
.yfb{bottom:406.399867pt;}
.y167{bottom:406.652533pt;}
.y245{bottom:408.838000pt;}
.y51{bottom:409.056400pt;}
.ye7{bottom:411.171200pt;}
.y2e{bottom:412.095333pt;}
.y1e3{bottom:414.255867pt;}
.y9c{bottom:420.218933pt;}
.y18c{bottom:421.093600pt;}
.y78{bottom:421.153200pt;}
.y205{bottom:422.731867pt;}
.yc3{bottom:424.051200pt;}
.y155{bottom:424.373200pt;}
.y112{bottom:424.395867pt;}
.yfa{bottom:424.401200pt;}
.y11{bottom:424.919200pt;}
.y1c0{bottom:426.799867pt;}
.y244{bottom:426.838000pt;}
.y50{bottom:427.563733pt;}
.ye6{bottom:429.801200pt;}
.y1e2{bottom:432.343867pt;}
.y2d{bottom:436.287333pt;}
.y9b{bottom:438.327600pt;}
.y18b{bottom:439.125600pt;}
.y77{bottom:439.307867pt;}
.yc2{bottom:442.067867pt;}
.y154{bottom:442.374533pt;}
.y111{bottom:442.397200pt;}
.y166{bottom:443.912667pt;}
.y243{bottom:444.838000pt;}
.y1bf{bottom:445.195867pt;}
.y4f{bottom:446.071067pt;}
.ye5{bottom:448.431200pt;}
.y204{bottom:448.911867pt;}
.y1e1{bottom:450.431867pt;}
.y10{bottom:452.665867pt;}
.y220{bottom:454.732133pt;}
.y9a{bottom:456.436267pt;}
.y18a{bottom:457.157600pt;}
.y76{bottom:457.462533pt;}
.yc1{bottom:460.084533pt;}
.y153{bottom:460.375867pt;}
.y110{bottom:460.398533pt;}
.yf9{bottom:460.401200pt;}
.y242{bottom:462.838000pt;}
.y1be{bottom:463.591867pt;}
.y4e{bottom:464.578400pt;}
.ye4{bottom:467.061200pt;}
.y203{bottom:467.531867pt;}
.yf{bottom:472.852533pt;}
.y99{bottom:474.544933pt;}
.y189{bottom:475.189600pt;}
.y75{bottom:475.617200pt;}
.y1e0{bottom:476.079867pt;}
.yc0{bottom:478.101200pt;}
.y152{bottom:478.377200pt;}
.y10f{bottom:478.399867pt;}
.y21f{bottom:478.886800pt;}
.y2c{bottom:479.351867pt;}
.ye3{bottom:485.691200pt;}
.y1bd{bottom:489.547867pt;}
.y241{bottom:492.171333pt;}
.y98{bottom:492.653600pt;}
.ye{bottom:493.037467pt;}
.y188{bottom:493.221600pt;}
.y202{bottom:493.711867pt;}
.y74{bottom:493.771867pt;}
.y1df{bottom:494.167867pt;}
.ybf{bottom:496.117867pt;}
.y151{bottom:496.378533pt;}
.y10e{bottom:496.401200pt;}
.y165{bottom:499.543733pt;}
.y4d{bottom:501.980533pt;}
.y21e{bottom:503.041467pt;}
.ye2{bottom:504.321200pt;}
.y2b{bottom:507.551867pt;}
.y1bc{bottom:507.943867pt;}
.y240{bottom:510.171333pt;}
.y97{bottom:510.762267pt;}
.y187{bottom:511.253600pt;}
.y73{bottom:511.926533pt;}
.y1de{bottom:512.255867pt;}
.ybe{bottom:514.134533pt;}
.y150{bottom:514.379867pt;}
.y164{bottom:517.913067pt;}
.y201{bottom:519.891867pt;}
.ye1{bottom:522.951200pt;}
.y1bb{bottom:526.339867pt;}
.y21d{bottom:527.196133pt;}
.y23f{bottom:528.171333pt;}
.y96{bottom:528.870933pt;}
.y186{bottom:529.285600pt;}
.y12e{bottom:529.712800pt;}
.y72{bottom:530.081200pt;}
.y1dd{bottom:530.343867pt;}
.ybd{bottom:532.151200pt;}
.y14f{bottom:532.381200pt;}
.y10d{bottom:532.401200pt;}
.y2a{bottom:535.751867pt;}
.y163{bottom:536.282400pt;}
.y200{bottom:538.511867pt;}
.yd{bottom:539.671067pt;}
.ye0{bottom:541.581200pt;}
.y23e{bottom:546.171333pt;}
.y95{bottom:546.979600pt;}
.y185{bottom:547.317600pt;}
.y12d{bottom:547.714133pt;}
.y71{bottom:548.235867pt;}
.y1dc{bottom:548.431867pt;}
.ybc{bottom:550.167867pt;}
.y14e{bottom:550.382533pt;}
.y1ba{bottom:552.295867pt;}
.y162{bottom:554.651733pt;}
.y4c{bottom:557.832000pt;}
.yc{bottom:559.857733pt;}
.ydf{bottom:560.211200pt;}
.y29{bottom:563.951867pt;}
.y23d{bottom:564.171333pt;}
.y1ff{bottom:564.691867pt;}
.y94{bottom:565.088267pt;}
.y184{bottom:565.349600pt;}
.y12c{bottom:565.715467pt;}
.y70{bottom:566.390533pt;}
.ybb{bottom:568.184533pt;}
.y13f{bottom:568.383867pt;}
.y1b9{bottom:570.691867pt;}
.y161{bottom:573.021067pt;}
.y1db{bottom:574.079867pt;}
.y4b{bottom:577.005333pt;}
.yde{bottom:578.841200pt;}
.yb{bottom:580.044400pt;}
.y93{bottom:583.196933pt;}
.y1fe{bottom:583.311867pt;}
.y183{bottom:583.381600pt;}
.y12b{bottom:583.716800pt;}
.y6f{bottom:584.545200pt;}
.yba{bottom:586.201200pt;}
.y13e{bottom:586.385200pt;}
.y1b8{bottom:589.087867pt;}
.y160{bottom:591.390400pt;}
.y28{bottom:592.151867pt;}
.y1da{bottom:592.167867pt;}
.y23c{bottom:593.504667pt;}
.y4a{bottom:596.158000pt;}
.ydd{bottom:597.471200pt;}
.y92{bottom:601.305600pt;}
.y182{bottom:601.413600pt;}
.y12a{bottom:601.718133pt;}
.y1fd{bottom:601.964133pt;}
.y6e{bottom:602.699867pt;}
.yb9{bottom:604.217867pt;}
.y13d{bottom:604.386533pt;}
.y1b7{bottom:607.483867pt;}
.ya{bottom:607.791067pt;}
.y15f{bottom:609.759733pt;}
.y1d9{bottom:610.255867pt;}
.y23b{bottom:611.504667pt;}
.y49{bottom:613.998000pt;}
.ydc{bottom:616.101200pt;}
.y91{bottom:619.414267pt;}
.y181{bottom:619.445600pt;}
.y129{bottom:619.719467pt;}
.y27{bottom:620.351867pt;}
.y1fc{bottom:620.584133pt;}
.y6d{bottom:620.854533pt;}
.yb8{bottom:622.234533pt;}
.y13c{bottom:622.387867pt;}
.y9{bottom:627.977733pt;}
.y15e{bottom:628.129067pt;}
.y23a{bottom:629.504667pt;}
.y48{bottom:631.838000pt;}
.y1b6{bottom:633.439867pt;}
.ydb{bottom:634.731200pt;}
.y1d8{bottom:635.903867pt;}
.y180{bottom:637.477600pt;}
.y90{bottom:637.522933pt;}
.y128{bottom:637.720800pt;}
.y6c{bottom:639.009200pt;}
.y1fb{bottom:639.204133pt;}
.yb7{bottom:640.251200pt;}
.y13b{bottom:640.389200pt;}
.y15d{bottom:646.498400pt;}
.y239{bottom:647.504667pt;}
.y8{bottom:648.162667pt;}
.y47{bottom:649.678000pt;}
.y1b5{bottom:651.835867pt;}
.yda{bottom:653.361200pt;}
.y1d7{bottom:653.991867pt;}
.y17f{bottom:655.509600pt;}
.y8f{bottom:655.631600pt;}
.y127{bottom:655.722133pt;}
.y6b{bottom:657.163867pt;}
.yb6{bottom:658.267867pt;}
.y13a{bottom:658.390533pt;}
.y21c{bottom:661.061867pt;}
.y15c{bottom:664.867733pt;}
.y1fa{bottom:665.384133pt;}
.y238{bottom:665.504667pt;}
.y46{bottom:667.518000pt;}
.y1b4{bottom:670.231867pt;}
.yd9{bottom:671.991200pt;}
.y1d6{bottom:672.079867pt;}
.y17e{bottom:673.541600pt;}
.y126{bottom:673.723467pt;}
.y8e{bottom:673.740267pt;}
.y26{bottom:674.973467pt;}
.y6a{bottom:675.318533pt;}
.yb5{bottom:676.284533pt;}
.y139{bottom:676.391867pt;}
.y21b{bottom:679.219867pt;}
.y15b{bottom:683.237067pt;}
.y1f9{bottom:684.004133pt;}
.y45{bottom:685.358000pt;}
.yd8{bottom:690.621200pt;}
.y17d{bottom:691.573600pt;}
.y125{bottom:691.724800pt;}
.y8d{bottom:691.848933pt;}
.y69{bottom:693.473200pt;}
.yb4{bottom:694.301200pt;}
.y138{bottom:694.393200pt;}
.y7{bottom:694.796400pt;}
.y237{bottom:694.838000pt;}
.y1b3{bottom:696.187867pt;}
.y21a{bottom:697.377867pt;}
.y1d5{bottom:697.727867pt;}
.y25{bottom:701.400133pt;}
.y15a{bottom:701.606400pt;}
.y1f8{bottom:702.624133pt;}
.y44{bottom:703.198000pt;}
.yd7{bottom:709.251200pt;}
.y17c{bottom:709.605600pt;}
.y124{bottom:709.726133pt;}
.y68{bottom:711.627867pt;}
.yb3{bottom:712.317867pt;}
.y137{bottom:712.394533pt;}
.y236{bottom:712.838000pt;}
.y1b2{bottom:714.583867pt;}
.y6{bottom:714.983067pt;}
.y1d4{bottom:715.815867pt;}
.y159{bottom:719.975733pt;}
.y24{bottom:720.266800pt;}
.y43{bottom:721.038000pt;}
.y1f7{bottom:721.244133pt;}
.y219{bottom:723.095867pt;}
.y17b{bottom:727.637600pt;}
.y123{bottom:727.727467pt;}
.yd6{bottom:727.881200pt;}
.y8c{bottom:728.848533pt;}
.y67{bottom:729.782533pt;}
.yb2{bottom:730.334533pt;}
.y136{bottom:730.395867pt;}
.y235{bottom:730.838000pt;}
.y1b1{bottom:732.979867pt;}
.y5{bottom:735.169733pt;}
.y42{bottom:738.878000pt;}
.y218{bottom:741.253867pt;}
.y1d3{bottom:741.463867pt;}
.y17a{bottom:745.669600pt;}
.y122{bottom:745.728800pt;}
.yd5{bottom:746.511200pt;}
.y23{bottom:746.693467pt;}
.y1f6{bottom:747.424133pt;}
.y66{bottom:747.937200pt;}
.yb1{bottom:748.351200pt;}
.y135{bottom:748.397200pt;}
.y234{bottom:748.838000pt;}
.y41{bottom:756.718000pt;}
.y158{bottom:757.247733pt;}
.y1b0{bottom:758.935867pt;}
.y217{bottom:759.411867pt;}
.y1d2{bottom:759.551867pt;}
.y4{bottom:762.916400pt;}
.y179{bottom:763.701600pt;}
.y121{bottom:763.730133pt;}
.yd4{bottom:765.141200pt;}
.y22{bottom:765.560133pt;}
.y1f5{bottom:766.044133pt;}
.y65{bottom:766.091867pt;}
.yb0{bottom:766.367867pt;}
.y134{bottom:766.398533pt;}
.y233{bottom:766.838000pt;}
.y40{bottom:774.558000pt;}
.y1af{bottom:777.331867pt;}
.y157{bottom:778.937733pt;}
.y3{bottom:783.103067pt;}
.yd3{bottom:783.771200pt;}
.y64{bottom:784.246533pt;}
.y8b{bottom:784.292533pt;}
.yaf{bottom:784.384533pt;}
.yf8{bottom:784.399867pt;}
.y21{bottom:784.426800pt;}
.y1f4{bottom:784.667867pt;}
.y216{bottom:785.129867pt;}
.y1d1{bottom:785.199867pt;}
.y120{bottom:800.627733pt;}
.y63{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y3f{bottom:803.731333pt;}
.y20{bottom:842.834667pt;}
.y1f{bottom:858.834667pt;}
.y3e{bottom:874.834667pt;}
.h5{height:29.437500pt;}
.hc{height:31.700521pt;}
.h9{height:36.796875pt;}
.h10{height:38.636719pt;}
.he{height:42.316406pt;}
.hd{height:43.634115pt;}
.h4{height:45.286458pt;}
.h2{height:45.996094pt;}
.hf{height:47.293181pt;}
.h3{height:47.550781pt;}
.hb{height:52.079427pt;}
.h6{height:56.608073pt;}
.ha{height:61.136719pt;}
.h8{height:63.401042pt;}
.h7{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:72.067200pt;}
.xf{left:73.293733pt;}
.x5{left:74.388133pt;}
.x1{left:75.590533pt;}
.xc{left:77.514133pt;}
.xa{left:85.150133pt;}
.xe{left:92.194533pt;}
.x6{left:93.360533pt;}
.x7{left:94.253867pt;}
.xb{left:102.154800pt;}
.x10{left:178.654667pt;}
.xd{left:179.861733pt;}
.x9{left:189.034667pt;}
.x12{left:203.558267pt;}
.x4{left:205.589333pt;}
.x3{left:206.741200pt;}
.x2{left:207.676000pt;}
.x11{left:229.305200pt;}
}




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