
    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_3ddcb56409b06f6d845513f6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_debdfed68766b90852e43345.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_4afa9c8fd0e3be3b70947e52.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_2f24f037963ba382ea35859e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.330566;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_6c933fa57209d1baf8d03c00.woff')format("woff");}.ff5{font-family:ff5;line-height:1.330566;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_c57cf1bbee555db0c6e605f7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v12{vertical-align:-20.160000px;}
.v1{vertical-align:-12.960300px;}
.vf{vertical-align:-8.640000px;}
.v11{vertical-align:-5.760000px;}
.v9{vertical-align:-4.320000px;}
.v8{vertical-align:-2.880000px;}
.v5{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.440000px;}
.vb{vertical-align:2.880000px;}
.ve{vertical-align:4.320000px;}
.v3{vertical-align:7.200000px;}
.v6{vertical-align:10.080000px;}
.vc{vertical-align:11.520000px;}
.v10{vertical-align:14.400000px;}
.v4{vertical-align:15.840000px;}
.v7{vertical-align:18.720000px;}
.vd{vertical-align:20.160000px;}
.va{vertical-align:21.600000px;}
.v13{vertical-align:23.040000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:5.160803px;}
.ls1{letter-spacing:6.353937px;}
.ls2{letter-spacing:6.756371px;}
.ls3{letter-spacing:11.160740px;}
.ls4{letter-spacing:19.520914px;}
.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;}
}
.ws6e{word-spacing:-12.000010px;}
.ws31{word-spacing:0.000000px;}
.ws25{word-spacing:2.293480px;}
.wsbd{word-spacing:4.013800px;}
.ws3{word-spacing:5.047308px;}
.ws68{word-spacing:5.418235px;}
.wsba{word-spacing:5.609368px;}
.wsc2{word-spacing:5.867002px;}
.ws30{word-spacing:5.954416px;}
.ws7b{word-spacing:5.997702px;}
.wsc7{word-spacing:6.535969px;}
.ws75{word-spacing:6.577170px;}
.ws28{word-spacing:6.793548px;}
.wsb0{word-spacing:6.793604px;}
.ws17{word-spacing:7.080250px;}
.ws5b{word-spacing:7.080304px;}
.wsc5{word-spacing:7.204936px;}
.ws2d{word-spacing:7.549984px;}
.ws80{word-spacing:7.555103px;}
.ws79{word-spacing:7.593270px;}
.wsb4{word-spacing:8.131537px;}
.ws61{word-spacing:8.172738px;}
.wsa8{word-spacing:8.609370px;}
.wsb{word-spacing:8.675818px;}
.ws6f{word-spacing:8.675871px;}
.wsc8{word-spacing:8.800504px;}
.ws8{word-spacing:9.188739px;}
.ws62{word-spacing:9.188838px;}
.wsc0{word-spacing:9.602405px;}
.ws4e{word-spacing:9.739972px;}
.ws6a{word-spacing:9.768306px;}
.ws57{word-spacing:10.101204px;}
.ws93{word-spacing:10.166771px;}
.ws71{word-spacing:10.204938px;}
.ws2b{word-spacing:10.234077px;}
.ws63{word-spacing:10.234139px;}
.ws69{word-spacing:10.243105px;}
.ws4b{word-spacing:10.271439px;}
.ws11{word-spacing:10.271452px;}
.wsc4{word-spacing:10.396071px;}
.wsaf{word-spacing:10.483539px;}
.wsb6{word-spacing:10.653706px;}
.ws24{word-spacing:10.746105px;}
.ws9{word-spacing:10.784307px;}
.ws6{word-spacing:10.784373px;}
.ws37{word-spacing:10.784406px;}
.wsbb{word-spacing:11.027806px;}
.ws90{word-spacing:11.197973px;}
.ws48{word-spacing:11.287539px;}
.ws18{word-spacing:11.297294px;}
.ws8c{word-spacing:11.335540px;}
.ws3e{word-spacing:11.363874px;}
.ws55{word-spacing:11.696772px;}
.ws94{word-spacing:11.762339px;}
.ws8d{word-spacing:11.800506px;}
.ws29{word-spacing:11.829712px;}
.ws14{word-spacing:11.838618px;}
.ws66{word-spacing:11.838673px;}
.ws5f{word-spacing:11.867007px;}
.ws16{word-spacing:11.867086px;}
.wsc3{word-spacing:11.991639px;}
.wsad{word-spacing:12.079107px;}
.wsb8{word-spacing:12.249274px;}
.ws86{word-spacing:12.341807px;}
.wsf{word-spacing:12.379941px;}
.ws3a{word-spacing:12.379974px;}
.ws10{word-spacing:12.380008px;}
.ws33{word-spacing:12.498674px;}
.ws89{word-spacing:12.631541px;}
.ws43{word-spacing:12.883107px;}
.ws36{word-spacing:12.892940px;}
.wsbf{word-spacing:12.918241px;}
.ws34{word-spacing:12.959441px;}
.ws99{word-spacing:13.167640px;}
.ws7c{word-spacing:13.357907px;}
.ws50{word-spacing:13.396074px;}
.ws3d{word-spacing:13.434241px;}
.ws3b{word-spacing:13.462575px;}
.ws5c{word-spacing:13.514638px;}
.wsc1{word-spacing:13.674675px;}
.ws23{word-spacing:13.975509px;}
.ws38{word-spacing:13.975542px;}
.ws12{word-spacing:13.975575px;}
.wsa1{word-spacing:14.450341px;}
.wsaa{word-spacing:14.478675px;}
.wsa{word-spacing:14.488430px;}
.ws39{word-spacing:14.488508px;}
.wsb7{word-spacing:14.513808px;}
.wsa0{word-spacing:14.526675px;}
.ws46{word-spacing:14.555009px;}
.ws27{word-spacing:14.763198px;}
.wsbe{word-spacing:14.771443px;}
.ws74{word-spacing:14.953475px;}
.ws7a{word-spacing:14.991642px;}
.ws52{word-spacing:15.029809px;}
.ws77{word-spacing:15.058143px;}
.ws20{word-spacing:15.058288px;}
.wsb3{word-spacing:15.270242px;}
.wsc{word-spacing:15.504540px;}
.ws7d{word-spacing:15.504608px;}
.ws8b{word-spacing:15.532942px;}
.ws49{word-spacing:15.571109px;}
.ws1f{word-spacing:15.571143px;}
.wsb2{word-spacing:15.901977px;}
.ws72{word-spacing:16.007742px;}
.ws9a{word-spacing:16.017575px;}
.ws4f{word-spacing:16.045909px;}
.ws8e{word-spacing:16.074243px;}
.ws54{word-spacing:16.084076px;}
.wsa3{word-spacing:16.122243px;}
.ws4d{word-spacing:16.150577px;}
.wse{word-spacing:16.150735px;}
.ws70{word-spacing:16.558876px;}
.ws5d{word-spacing:16.625377px;}
.ws1a{word-spacing:16.625388px;}
.ws5a{word-spacing:16.653711px;}
.wsb5{word-spacing:16.865810px;}
.ws2c{word-spacing:16.865875px;}
.wsca{word-spacing:16.948510px;}
.wsac{word-spacing:17.100176px;}
.ws88{word-spacing:17.128510px;}
.ws59{word-spacing:17.166677px;}
.ws7{word-spacing:17.166778px;}
.ws0{word-spacing:17.277019px;}
.ws2a{word-spacing:17.534801px;}
.ws4c{word-spacing:17.669811px;}
.ws2{word-spacing:17.679632px;}
.ws3f{word-spacing:17.679644px;}
.ws8a{word-spacing:17.717811px;}
.ws2f{word-spacing:17.962789px;}
.ws97{word-spacing:18.144610px;}
.ws4a{word-spacing:18.182777px;}
.ws42{word-spacing:18.220945px;}
.wsbc{word-spacing:18.461378px;}
.ws73{word-spacing:18.695744px;}
.ws40{word-spacing:18.724078px;}
.ws45{word-spacing:18.762245px;}
.ws26{word-spacing:18.762345px;}
.ws5{word-spacing:18.762412px;}
.ws1{word-spacing:18.955282px;}
.ws81{word-spacing:19.208711px;}
.ws78{word-spacing:19.265379px;}
.ws41{word-spacing:19.275212px;}
.ws4{word-spacing:19.275267px;}
.ws15{word-spacing:19.275333px;}
.ws60{word-spacing:19.816512px;}
.ws1b{word-spacing:19.816657px;}
.wsb1{word-spacing:20.056946px;}
.ws64{word-spacing:20.291312px;}
.ws65{word-spacing:20.319646px;}
.ws53{word-spacing:20.357813px;}
.ws13{word-spacing:20.357980px;}
.ws19{word-spacing:20.358046px;}
.wsa5{word-spacing:20.794445px;}
.ws67{word-spacing:20.804278px;}
.ws47{word-spacing:20.870780px;}
.ws83{word-spacing:21.373913px;}
.ws82{word-spacing:21.412080px;}
.wsb9{word-spacing:21.565047px;}
.wsd{word-spacing:21.868275px;}
.ws3c{word-spacing:21.953381px;}
.ws1e{word-spacing:21.953614px;}
.ws6d{word-spacing:21.986943px;}
.ws35{word-spacing:22.399846px;}
.ws56{word-spacing:22.424943px;}
.ws85{word-spacing:22.428180px;}
.ws44{word-spacing:22.456515px;}
.ws5e{word-spacing:22.466348px;}
.wsa7{word-spacing:22.836479px;}
.ws91{word-spacing:22.865747px;}
.ws9d{word-spacing:22.931314px;}
.wsa2{word-spacing:22.969481px;}
.wsa9{word-spacing:23.482448px;}
.ws22{word-spacing:23.520780px;}
.ws21{word-spacing:23.549182px;}
.ws87{word-spacing:23.995414px;}
.ws9f{word-spacing:24.023748px;}
.ws58{word-spacing:24.061915px;}
.ws51{word-spacing:24.526882px;}
.ws2e{word-spacing:24.793457px;}
.ws6c{word-spacing:25.078015px;}
.ws9e{word-spacing:25.144517px;}
.ws8f{word-spacing:25.590982px;}
.ws96{word-spacing:26.122450px;}
.wsab{word-spacing:27.186550px;}
.ws76{word-spacing:27.253051px;}
.ws92{word-spacing:27.727851px;}
.ws84{word-spacing:28.240817px;}
.wsa6{word-spacing:28.269151px;}
.ws95{word-spacing:28.735283px;}
.ws7e{word-spacing:28.782118px;}
.ws6b{word-spacing:28.820285px;}
.wsc9{word-spacing:29.704818px;}
.ws98{word-spacing:29.893053px;}
.wsc6{word-spacing:31.300386px;}
.wsae{word-spacing:31.396088px;}
.ws1d{word-spacing:38.687973px;}
.wsa4{word-spacing:39.761422px;}
.ws9b{word-spacing:43.379357px;}
.ws1c{word-spacing:45.270208px;}
.ws7f{word-spacing:990.368241px;}
.ws32{word-spacing:993.008243px;}
.ws9c{word-spacing:1010.522257px;}
._3f{margin-left:-6.097791px;}
._41{width:17.176038px;}
._30{width:19.500985px;}
._2f{width:21.138589px;}
._32{width:22.556709px;}
._1a{width:24.217761px;}
._13{width:26.160793px;}
._15{width:28.133357px;}
._24{width:29.167138px;}
._17{width:30.183247px;}
._18{width:31.275627px;}
._6{width:32.329938px;}
._27{width:33.412584px;}
._10{width:34.466895px;}
._16{width:35.482872px;}
._1d{width:36.649446px;}
._a{width:38.094549px;}
._22{width:39.186995px;}
._1{width:40.454632px;}
._d{width:41.883879px;}
._4{width:43.645835px;}
._b{width:45.174799px;}
._1b{width:46.413967px;}
._26{width:47.593961px;}
._14{width:48.608660px;}
._12{width:50.113578px;}
._9{width:51.248805px;}
._11{width:52.872775px;}
._1c{width:54.013223px;}
._2{width:55.296885px;}
._c{width:56.567165px;}
._e{width:57.621410px;}
._21{width:59.089789px;}
._19{width:60.602802px;}
._33{width:61.733304px;}
._8{width:62.797627px;}
._1e{width:64.284675px;}
._1f{width:66.023383px;}
._29{width:67.947945px;}
._7{width:69.393358px;}
._40{width:70.407705px;}
._20{width:71.580104px;}
._f{width:72.950759px;}
._3{width:74.327781px;}
._39{width:75.524463px;}
._25{width:76.769621px;}
._5{width:78.013715px;}
._34{width:79.036958px;}
._2b{width:80.099458px;}
._36{width:81.269267px;}
._31{width:83.386325px;}
._42{width:85.175396px;}
._23{width:86.439379px;}
._43{width:87.948216px;}
._38{width:89.016288px;}
._2e{width:90.945910px;}
._3c{width:92.214160px;}
._37{width:93.680487px;}
._3a{width:94.784166px;}
._35{width:96.531459px;}
._28{width:97.902225px;}
._3b{width:101.035602px;}
._2c{width:102.796209px;}
._3e{width:105.548313px;}
._46{width:108.237717px;}
._2d{width:110.926413px;}
._2a{width:114.791282px;}
._45{width:116.286868px;}
._0{width:118.935994px;}
._3d{width:659.745867px;}
._44{width:664.660091px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs6{font-size:42.000034px;}
.fs3{font-size:42.001260px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:48.000038px;}
.fs1{font-size:48.001440px;}
.fs2{font-size:66.001980px;}
.fs0{font-size:84.002520px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.899964px;}
.y40{bottom:15.899964px;}
.y21{bottom:91.442100px;}
.y72{bottom:93.960000px;}
.y3e{bottom:93.962145px;}
.ybc{bottom:94.320000px;}
.yfc{bottom:94.680000px;}
.y91{bottom:95.040000px;}
.y155{bottom:101.160000px;}
.y12b{bottom:101.880000px;}
.y181{bottom:102.600000px;}
.y3d{bottom:109.082490px;}
.y20{bottom:109.802520px;}
.y71{bottom:110.520000px;}
.y90{bottom:110.880000px;}
.yd7{bottom:111.240000px;}
.ybb{bottom:111.600000px;}
.y154{bottom:118.800000px;}
.y12a{bottom:119.520000px;}
.y3c{bottom:122.042790px;}
.y1aa{bottom:123.120000px;}
.y1f{bottom:126.722895px;}
.y70{bottom:127.080000px;}
.y8f{bottom:127.440000px;}
.yfb{bottom:128.160000px;}
.yd6{bottom:128.520000px;}
.yba{bottom:129.600000px;}
.y180{bottom:135.360000px;}
.y153{bottom:135.720000px;}
.y129{bottom:136.440000px;}
.y1a9{bottom:137.880000px;}
.y3b{bottom:139.323195px;}
.y1e{bottom:143.283285px;}
.y6f{bottom:143.640000px;}
.y8e{bottom:144.360000px;}
.yfa{bottom:144.720000px;}
.yd5{bottom:145.440000px;}
.yb9{bottom:146.520000px;}
.y17f{bottom:151.920000px;}
.y3a{bottom:151.923480px;}
.y152{bottom:152.280000px;}
.y128{bottom:152.640000px;}
.y1a8{bottom:153.000000px;}
.y1d{bottom:159.483645px;}
.y6e{bottom:160.200000px;}
.yf9{bottom:160.560000px;}
.y8d{bottom:162.000000px;}
.yb8{bottom:162.720000px;}
.yd4{bottom:163.440000px;}
.y151{bottom:168.480000px;}
.y127{bottom:168.840000px;}
.y39{bottom:169.203870px;}
.y1c{bottom:176.044035px;}
.y6d{bottom:176.760000px;}
.y8c{bottom:177.120000px;}
.yd3{bottom:177.840000px;}
.yb7{bottom:178.920000px;}
.y1a7{bottom:183.240000px;}
.y38{bottom:184.324215px;}
.y17e{bottom:185.400000px;}
.y150{bottom:185.760000px;}
.y126{bottom:186.480000px;}
.y1b{bottom:192.964410px;}
.y6c{bottom:193.320000px;}
.y8b{bottom:193.680000px;}
.yf8{bottom:194.040000px;}
.yd2{bottom:194.400000px;}
.yb6{bottom:195.120000px;}
.y37{bottom:196.564500px;}
.y1a6{bottom:198.000000px;}
.y14f{bottom:201.600000px;}
.y125{bottom:201.960000px;}
.yeb{bottom:209.520000px;}
.y1a{bottom:209.524800px;}
.y6b{bottom:209.880000px;}
.y8a{bottom:210.240000px;}
.yd1{bottom:210.600000px;}
.yb5{bottom:211.680000px;}
.y1a5{bottom:213.120000px;}
.y36{bottom:215.284920px;}
.y14e{bottom:217.440000px;}
.y124{bottom:218.160000px;}
.y17d{bottom:218.880000px;}
.y19{bottom:225.005145px;}
.y6a{bottom:226.080000px;}
.y89{bottom:226.440000px;}
.y35{bottom:226.805190px;}
.yb4{bottom:227.880000px;}
.yd0{bottom:229.680000px;}
.y1a4{bottom:233.280000px;}
.y14d{bottom:233.640000px;}
.y17c{bottom:234.720000px;}
.y123{bottom:235.080000px;}
.y18{bottom:241.565535px;}
.yea{bottom:242.640000px;}
.y69{bottom:243.000000px;}
.yf7{bottom:243.360000px;}
.ycf{bottom:243.720000px;}
.yb3{bottom:244.440000px;}
.y14c{bottom:250.560000px;}
.y122{bottom:250.920000px;}
.y17b{bottom:252.000000px;}
.y34{bottom:256.325865px;}
.y1a3{bottom:257.760000px;}
.y17{bottom:258.125910px;}
.ye9{bottom:258.840000px;}
.y68{bottom:259.200000px;}
.y88{bottom:259.560000px;}
.yce{bottom:260.280000px;}
.yb2{bottom:261.000000px;}
.y121{bottom:267.480000px;}
.y17a{bottom:267.840000px;}
.y1a2{bottom:272.880000px;}
.y16{bottom:274.326285px;}
.yf6{bottom:275.040000px;}
.y67{bottom:275.400000px;}
.ye8{bottom:276.120000px;}
.y87{bottom:276.480000px;}
.yb1{bottom:277.200000px;}
.y14b{bottom:283.320000px;}
.y179{bottom:283.680000px;}
.y120{bottom:284.400000px;}
.y1a1{bottom:287.640000px;}
.y15{bottom:290.526645px;}
.ye7{bottom:291.960000px;}
.y66{bottom:292.320000px;}
.y86{bottom:292.680000px;}
.yb0{bottom:293.760000px;}
.y14a{bottom:299.520000px;}
.y11f{bottom:300.240000px;}
.y178{bottom:300.960000px;}
.y1a0{bottom:304.560000px;}
.y33{bottom:306.367005px;}
.y14{bottom:307.087035px;}
.ye6{bottom:308.160000px;}
.y65{bottom:308.880000px;}
.ycd{bottom:309.240000px;}
.yaf{bottom:309.960000px;}
.y149{bottom:316.080000px;}
.y11e{bottom:316.440000px;}
.y177{bottom:317.160000px;}
.y19f{bottom:317.880000px;}
.y13{bottom:323.287395px;}
.y64{bottom:324.720000px;}
.y85{bottom:325.080000px;}
.ye5{bottom:325.440000px;}
.ycc{bottom:325.800000px;}
.yae{bottom:326.520000px;}
.y148{bottom:332.640000px;}
.y19e{bottom:333.000000px;}
.y11d{bottom:333.360000px;}
.y32{bottom:339.487770px;}
.y12{bottom:339.847785px;}
.y63{bottom:341.280000px;}
.y84{bottom:341.640000px;}
.ycb{bottom:342.000000px;}
.yad{bottom:343.080000px;}
.y19d{bottom:347.760000px;}
.y11c{bottom:348.840000px;}
.y176{bottom:349.920000px;}
.y31{bottom:355.688145px;}
.y11{bottom:356.048145px;}
.yca{bottom:358.200000px;}
.y62{bottom:358.920000px;}
.y83{bottom:359.280000px;}
.y19c{bottom:362.520000px;}
.y11b{bottom:365.400000px;}
.y175{bottom:366.480000px;}
.y30{bottom:372.248520px;}
.y10{bottom:372.608535px;}
.yf5{bottom:374.400000px;}
.y61{bottom:374.760000px;}
.ye4{bottom:375.120000px;}
.yac{bottom:375.480000px;}
.y19b{bottom:377.640000px;}
.y11a{bottom:382.320000px;}
.y147{bottom:383.040000px;}
.y2f{bottom:388.808895px;}
.ye3{bottom:390.600000px;}
.yf{bottom:390.608940px;}
.y60{bottom:390.960000px;}
.y82{bottom:391.320000px;}
.yab{bottom:391.680000px;}
.yc9{bottom:392.040000px;}
.y19a{bottom:392.760000px;}
.y119{bottom:398.160000px;}
.y174{bottom:399.240000px;}
.y2e{bottom:405.009270px;}
.ye2{bottom:407.160000px;}
.yf4{bottom:407.520000px;}
.ye{bottom:407.529330px;}
.y5f{bottom:407.880000px;}
.yaa{bottom:408.240000px;}
.y199{bottom:409.320000px;}
.y118{bottom:414.720000px;}
.y146{bottom:415.080000px;}
.y173{bottom:415.800000px;}
.yd{bottom:421.209645px;}
.y2d{bottom:421.929660px;}
.ye1{bottom:423.720000px;}
.yf3{bottom:424.080000px;}
.yc8{bottom:424.440000px;}
.y5e{bottom:424.800000px;}
.y117{bottom:430.920000px;}
.y145{bottom:431.280000px;}
.y172{bottom:432.360000px;}
.y198{bottom:437.400000px;}
.yc{bottom:437.770020px;}
.y2c{bottom:438.130035px;}
.y5d{bottom:440.280000px;}
.y81{bottom:440.640000px;}
.ya9{bottom:441.000000px;}
.y116{bottom:447.120000px;}
.y144{bottom:447.480000px;}
.y171{bottom:449.280000px;}
.y197{bottom:452.160000px;}
.yb{bottom:453.970395px;}
.y2b{bottom:454.330395px;}
.y5c{bottom:456.480000px;}
.ye0{bottom:456.840000px;}
.y80{bottom:457.200000px;}
.ya8{bottom:457.560000px;}
.y143{bottom:464.040000px;}
.y115{bottom:464.400000px;}
.y170{bottom:465.120000px;}
.y196{bottom:467.280000px;}
.ya{bottom:470.530770px;}
.y2a{bottom:470.890785px;}
.y5b{bottom:473.040000px;}
.y7f{bottom:473.400000px;}
.ya7{bottom:473.760000px;}
.y114{bottom:480.240000px;}
.y16f{bottom:481.680000px;}
.y195{bottom:482.400000px;}
.y9{bottom:486.731145px;}
.y29{bottom:487.091145px;}
.ydf{bottom:489.600000px;}
.y5a{bottom:489.960000px;}
.yf2{bottom:490.320000px;}
.y7e{bottom:491.040000px;}
.y113{bottom:496.440000px;}
.y194{bottom:496.800000px;}
.y142{bottom:497.160000px;}
.y16e{bottom:498.960000px;}
.y8{bottom:503.291520px;}
.y28{bottom:503.651520px;}
.yc7{bottom:506.160000px;}
.y59{bottom:506.520000px;}
.y7d{bottom:506.880000px;}
.y193{bottom:511.920000px;}
.y112{bottom:513.360000px;}
.y16d{bottom:514.440000px;}
.y7{bottom:519.851895px;}
.y27{bottom:520.211910px;}
.yc6{bottom:522.720000px;}
.y58{bottom:523.080000px;}
.yf1{bottom:523.440000px;}
.y7c{bottom:523.800000px;}
.y192{bottom:527.040000px;}
.y111{bottom:529.560000px;}
.y16c{bottom:531.000000px;}
.y6{bottom:536.772285px;}
.y26{bottom:537.132300px;}
.yf0{bottom:538.560000px;}
.yc5{bottom:538.920000px;}
.y57{bottom:539.280000px;}
.ya6{bottom:539.640000px;}
.y191{bottom:542.160000px;}
.y141{bottom:545.760000px;}
.y110{bottom:546.480000px;}
.y16b{bottom:547.560000px;}
.y5{bottom:552.612645px;}
.y25{bottom:552.972660px;}
.y56{bottom:555.480000px;}
.ya5{bottom:555.840000px;}
.y190{bottom:556.560000px;}
.y10f{bottom:562.320000px;}
.y140{bottom:563.760000px;}
.y4{bottom:569.533035px;}
.yc4{bottom:571.680000px;}
.y7b{bottom:572.040000px;}
.y55{bottom:572.400000px;}
.ya4{bottom:572.760000px;}
.y10e{bottom:578.520000px;}
.y13f{bottom:578.880000px;}
.y16a{bottom:580.680000px;}
.y3{bottom:585.013395px;}
.y24{bottom:585.733410px;}
.y18f{bottom:586.800000px;}
.y54{bottom:588.240000px;}
.ya3{bottom:588.600000px;}
.y10d{bottom:594.720000px;}
.y13e{bottom:595.440000px;}
.y169{bottom:596.880000px;}
.y18e{bottom:601.560000px;}
.y53{bottom:604.800000px;}
.y7a{bottom:605.160000px;}
.y10c{bottom:611.280000px;}
.y13d{bottom:611.640000px;}
.y168{bottom:613.080000px;}
.y18d{bottom:616.680000px;}
.ya2{bottom:621.000000px;}
.y52{bottom:621.360000px;}
.yc3{bottom:621.720000px;}
.y10b{bottom:627.840000px;}
.y13c{bottom:628.200000px;}
.y167{bottom:629.640000px;}
.y18c{bottom:631.800000px;}
.y51{bottom:637.920000px;}
.ya1{bottom:638.280000px;}
.yde{bottom:638.640000px;}
.y10a{bottom:644.040000px;}
.y13b{bottom:645.120000px;}
.y166{bottom:646.200000px;}
.ya0{bottom:653.760000px;}
.y50{bottom:654.480000px;}
.y79{bottom:654.840000px;}
.y109{bottom:660.600000px;}
.y13a{bottom:661.320000px;}
.y165{bottom:663.480000px;}
.y9f{bottom:670.320000px;}
.yc2{bottom:670.680000px;}
.y4f{bottom:671.040000px;}
.y108{bottom:676.800000px;}
.y139{bottom:677.880000px;}
.y164{bottom:679.320000px;}
.y9e{bottom:686.520000px;}
.ydd{bottom:686.880000px;}
.y4e{bottom:687.240000px;}
.y107{bottom:693.000000px;}
.y138{bottom:694.440000px;}
.y163{bottom:695.880000px;}
.y9d{bottom:703.080000px;}
.yc1{bottom:703.440000px;}
.y4d{bottom:703.800000px;}
.y106{bottom:710.640000px;}
.y137{bottom:711.000000px;}
.y162{bottom:712.080000px;}
.y18b{bottom:713.160000px;}
.y9c{bottom:719.280000px;}
.y4c{bottom:720.000000px;}
.y78{bottom:720.360000px;}
.yc0{bottom:720.720000px;}
.yef{bottom:722.520000px;}
.y105{bottom:726.480000px;}
.y136{bottom:727.200000px;}
.y161{bottom:728.640000px;}
.y18a{bottom:729.000000px;}
.y9b{bottom:735.840000px;}
.ydc{bottom:736.200000px;}
.ybf{bottom:736.560000px;}
.y4b{bottom:736.920000px;}
.y104{bottom:742.320000px;}
.y135{bottom:743.400000px;}
.y160{bottom:744.840000px;}
.y189{bottom:745.920000px;}
.y9a{bottom:752.400000px;}
.ydb{bottom:752.760000px;}
.y4a{bottom:753.120000px;}
.y103{bottom:758.880000px;}
.y134{bottom:759.960000px;}
.y15f{bottom:761.400000px;}
.y188{bottom:762.120000px;}
.y99{bottom:768.600000px;}
.yda{bottom:769.320000px;}
.y49{bottom:769.680000px;}
.y102{bottom:775.080000px;}
.y23{bottom:775.457745px;}
.y133{bottom:776.520000px;}
.y15e{bottom:778.320000px;}
.y98{bottom:784.800000px;}
.yd9{bottom:785.880000px;}
.ybe{bottom:786.240000px;}
.y48{bottom:786.600000px;}
.y132{bottom:793.800000px;}
.y15d{bottom:794.880000px;}
.y187{bottom:795.960000px;}
.y22{bottom:796.338225px;}
.y97{bottom:801.360000px;}
.ybd{bottom:802.440000px;}
.y47{bottom:802.800000px;}
.y77{bottom:803.160000px;}
.y101{bottom:808.200000px;}
.y131{bottom:809.640000px;}
.y15c{bottom:811.080000px;}
.y186{bottom:811.440000px;}
.y96{bottom:817.920000px;}
.yee{bottom:818.280000px;}
.yd8{bottom:818.640000px;}
.y46{bottom:819.000000px;}
.y130{bottom:826.200000px;}
.y185{bottom:827.640000px;}
.y15b{bottom:828.000000px;}
.y95{bottom:834.840000px;}
.y76{bottom:835.200000px;}
.y12f{bottom:842.760000px;}
.y15a{bottom:843.840000px;}
.y184{bottom:844.200000px;}
.y2{bottom:850.339455px;}
.y94{bottom:851.400000px;}
.y75{bottom:851.760000px;}
.y45{bottom:852.120000px;}
.y100{bottom:857.880000px;}
.y12e{bottom:860.400000px;}
.y183{bottom:860.760000px;}
.y159{bottom:861.120000px;}
.y93{bottom:867.600000px;}
.yed{bottom:867.960000px;}
.y74{bottom:868.320000px;}
.y44{bottom:868.680000px;}
.yff{bottom:874.440000px;}
.y12d{bottom:875.520000px;}
.y1{bottom:875.900040px;}
.y158{bottom:876.960000px;}
.y182{bottom:877.680000px;}
.yec{bottom:884.160000px;}
.y73{bottom:884.520000px;}
.y43{bottom:884.880000px;}
.yfe{bottom:890.640000px;}
.y12c{bottom:891.720000px;}
.y157{bottom:893.520000px;}
.y92{bottom:929.880000px;}
.y42{bottom:932.040000px;}
.y3f{bottom:935.100036px;}
.yfd{bottom:936.360000px;}
.y156{bottom:941.760000px;}
.h6{height:27.971925px;}
.hd{height:41.220736px;}
.h5{height:41.221940px;}
.ha{height:42.328159px;}
.hf{height:47.085975px;}
.h9{height:47.109413px;}
.h3{height:47.110788px;}
.h7{height:48.281250px;}
.hb{height:48.420736px;}
.h2{height:48.550788px;}
.h10{height:50.062540px;}
.h12{height:51.300736px;}
.h16{height:52.740736px;}
.h19{height:55.620736px;}
.h1a{height:59.940736px;}
.h17{height:61.380736px;}
.h18{height:62.820736px;}
.hc{height:62.949413px;}
.h1b{height:64.260736px;}
.h4{height:64.777334px;}
.h13{height:65.829413px;}
.h15{height:68.709413px;}
.h1{height:84.658790px;}
.h0{height:1017.000000px;}
.h11{height:1018.500000px;}
.h8{height:1029.000000px;}
.h14{height:1035.000000px;}
.he{height:1036.500000px;}
.w1{width:664.944031px;}
.w0{width:900.000000px;}
.w4{width:906.000000px;}
.w2{width:912.000000px;}
.w5{width:918.000000px;}
.w3{width:921.000000px;}
.x0{left:0.000000px;}
.x11{left:108.000000px;}
.x3{left:138.603165px;}
.x4{left:140.403210px;}
.x6{left:141.483240px;}
.x2d{left:142.560000px;}
.x2f{left:143.640000px;}
.x31{left:145.080000px;}
.x1e{left:147.600000px;}
.x1f{left:148.680000px;}
.x22{left:149.760000px;}
.x24{left:150.840000px;}
.x5{left:153.723525px;}
.x2c{left:155.160000px;}
.x2e{left:156.240000px;}
.x30{left:157.320000px;}
.x20{left:161.640000px;}
.x21{left:162.720000px;}
.x23{left:163.800000px;}
.x12{left:182.880000px;}
.x14{left:183.960000px;}
.x16{left:185.040000px;}
.x18{left:186.120000px;}
.x37{left:187.200000px;}
.x38{left:188.640000px;}
.x13{left:196.200000px;}
.x15{left:197.640000px;}
.x17{left:199.080000px;}
.x2b{left:299.160000px;}
.x1d{left:306.360000px;}
.x1{left:308.887065px;}
.x2{left:437.410005px;}
.x9{left:441.730110px;}
.xc{left:442.810140px;}
.xb{left:443.890155px;}
.x34{left:445.320000px;}
.x33{left:446.400000px;}
.x36{left:447.480000px;}
.x26{left:450.720000px;}
.x27{left:451.800000px;}
.x29{left:452.880000px;}
.x2a{left:454.320000px;}
.xa{left:455.410425px;}
.xd{left:456.490455px;}
.x32{left:457.560000px;}
.x35{left:459.720000px;}
.x25{left:463.680000px;}
.x28{left:466.200000px;}
.xe{left:468.010710px;}
.xf{left:485.291100px;}
.x10{left:486.731145px;}
.x1b{left:487.800000px;}
.x39{left:488.880000px;}
.x3b{left:489.960000px;}
.x3d{left:491.040000px;}
.x19{left:498.960000px;}
.x1a{left:500.040000px;}
.x1c{left:501.120000px;}
.x3a{left:504.720000px;}
.x3c{left:505.800000px;}
.x7{left:538.572330px;}
.x8{left:584.653380px;}
@media print{
.v12{vertical-align:-17.920000pt;}
.v1{vertical-align:-11.520267pt;}
.vf{vertical-align:-7.680000pt;}
.v11{vertical-align:-5.120000pt;}
.v9{vertical-align:-3.840000pt;}
.v8{vertical-align:-2.560000pt;}
.v5{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.280000pt;}
.vb{vertical-align:2.560000pt;}
.ve{vertical-align:3.840000pt;}
.v3{vertical-align:6.400000pt;}
.v6{vertical-align:8.960000pt;}
.vc{vertical-align:10.240000pt;}
.v10{vertical-align:12.800000pt;}
.v4{vertical-align:14.080000pt;}
.v7{vertical-align:16.640000pt;}
.vd{vertical-align:17.920000pt;}
.va{vertical-align:19.200000pt;}
.v13{vertical-align:20.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:4.587381pt;}
.ls1{letter-spacing:5.647944pt;}
.ls2{letter-spacing:6.005663pt;}
.ls3{letter-spacing:9.920658pt;}
.ls4{letter-spacing:17.351924pt;}
.ws6e{word-spacing:-10.666675pt;}
.ws31{word-spacing:0.000000pt;}
.ws25{word-spacing:2.038648pt;}
.wsbd{word-spacing:3.567822pt;}
.ws3{word-spacing:4.486496pt;}
.ws68{word-spacing:4.816208pt;}
.wsba{word-spacing:4.986105pt;}
.wsc2{word-spacing:5.215113pt;}
.ws30{word-spacing:5.292815pt;}
.ws7b{word-spacing:5.331291pt;}
.wsc7{word-spacing:5.809750pt;}
.ws75{word-spacing:5.846373pt;}
.ws28{word-spacing:6.038709pt;}
.wsb0{word-spacing:6.038759pt;}
.ws17{word-spacing:6.293555pt;}
.ws5b{word-spacing:6.293603pt;}
.wsc5{word-spacing:6.404387pt;}
.ws2d{word-spacing:6.711097pt;}
.ws80{word-spacing:6.715647pt;}
.ws79{word-spacing:6.749573pt;}
.wsb4{word-spacing:7.228033pt;}
.ws61{word-spacing:7.264656pt;}
.wsa8{word-spacing:7.652774pt;}
.wsb{word-spacing:7.711838pt;}
.ws6f{word-spacing:7.711886pt;}
.wsc8{word-spacing:7.822670pt;}
.ws8{word-spacing:8.167768pt;}
.ws62{word-spacing:8.167856pt;}
.wsc0{word-spacing:8.535471pt;}
.ws4e{word-spacing:8.657753pt;}
.ws6a{word-spacing:8.682938pt;}
.ws57{word-spacing:8.978848pt;}
.ws93{word-spacing:9.037130pt;}
.ws71{word-spacing:9.071056pt;}
.ws2b{word-spacing:9.096958pt;}
.ws63{word-spacing:9.097013pt;}
.ws69{word-spacing:9.104982pt;}
.ws4b{word-spacing:9.130168pt;}
.ws11{word-spacing:9.130179pt;}
.wsc4{word-spacing:9.240952pt;}
.wsaf{word-spacing:9.318701pt;}
.wsb6{word-spacing:9.469961pt;}
.ws24{word-spacing:9.552093pt;}
.ws9{word-spacing:9.586050pt;}
.ws6{word-spacing:9.586109pt;}
.ws37{word-spacing:9.586139pt;}
.wsbb{word-spacing:9.802494pt;}
.ws90{word-spacing:9.953754pt;}
.ws48{word-spacing:10.033368pt;}
.ws18{word-spacing:10.042040pt;}
.ws8c{word-spacing:10.076035pt;}
.ws3e{word-spacing:10.101221pt;}
.ws55{word-spacing:10.397131pt;}
.ws94{word-spacing:10.455412pt;}
.ws8d{word-spacing:10.489339pt;}
.ws29{word-spacing:10.515299pt;}
.ws14{word-spacing:10.523216pt;}
.ws66{word-spacing:10.523265pt;}
.ws5f{word-spacing:10.548451pt;}
.ws16{word-spacing:10.548521pt;}
.wsc3{word-spacing:10.659235pt;}
.wsad{word-spacing:10.736984pt;}
.wsb8{word-spacing:10.888243pt;}
.ws86{word-spacing:10.970495pt;}
.wsf{word-spacing:11.004392pt;}
.ws3a{word-spacing:11.004421pt;}
.ws10{word-spacing:11.004451pt;}
.ws33{word-spacing:11.109932pt;}
.ws89{word-spacing:11.228036pt;}
.ws43{word-spacing:11.451651pt;}
.ws36{word-spacing:11.460391pt;}
.wsbf{word-spacing:11.482880pt;}
.ws34{word-spacing:11.519504pt;}
.ws99{word-spacing:11.704569pt;}
.ws7c{word-spacing:11.873695pt;}
.ws50{word-spacing:11.907621pt;}
.ws3d{word-spacing:11.941548pt;}
.ws3b{word-spacing:11.966733pt;}
.ws5c{word-spacing:12.013012pt;}
.wsc1{word-spacing:12.155266pt;}
.ws23{word-spacing:12.422675pt;}
.ws38{word-spacing:12.422704pt;}
.ws12{word-spacing:12.422734pt;}
.wsa1{word-spacing:12.844748pt;}
.wsaa{word-spacing:12.869934pt;}
.wsa{word-spacing:12.878605pt;}
.ws39{word-spacing:12.878674pt;}
.wsb7{word-spacing:12.901163pt;}
.wsa0{word-spacing:12.912600pt;}
.ws46{word-spacing:12.937786pt;}
.ws27{word-spacing:13.122843pt;}
.wsbe{word-spacing:13.130172pt;}
.ws74{word-spacing:13.291977pt;}
.ws7a{word-spacing:13.325904pt;}
.ws52{word-spacing:13.359830pt;}
.ws77{word-spacing:13.385016pt;}
.ws20{word-spacing:13.385145pt;}
.wsb3{word-spacing:13.573549pt;}
.wsc{word-spacing:13.781813pt;}
.ws7d{word-spacing:13.781874pt;}
.ws8b{word-spacing:13.807060pt;}
.ws49{word-spacing:13.840986pt;}
.ws1f{word-spacing:13.841016pt;}
.wsb2{word-spacing:14.135090pt;}
.ws72{word-spacing:14.229104pt;}
.ws9a{word-spacing:14.237844pt;}
.ws4f{word-spacing:14.263030pt;}
.ws8e{word-spacing:14.288216pt;}
.ws54{word-spacing:14.296956pt;}
.wsa3{word-spacing:14.330883pt;}
.ws4d{word-spacing:14.356069pt;}
.wse{word-spacing:14.356209pt;}
.ws70{word-spacing:14.719000pt;}
.ws5d{word-spacing:14.778113pt;}
.ws1a{word-spacing:14.778123pt;}
.ws5a{word-spacing:14.803298pt;}
.wsb5{word-spacing:14.991831pt;}
.ws2c{word-spacing:14.991889pt;}
.wsca{word-spacing:15.065342pt;}
.wsac{word-spacing:15.200157pt;}
.ws88{word-spacing:15.225342pt;}
.ws59{word-spacing:15.259269pt;}
.ws7{word-spacing:15.259358pt;}
.ws0{word-spacing:15.357350pt;}
.ws2a{word-spacing:15.586490pt;}
.ws4c{word-spacing:15.706499pt;}
.ws2{word-spacing:15.715229pt;}
.ws3f{word-spacing:15.715239pt;}
.ws8a{word-spacing:15.749165pt;}
.ws2f{word-spacing:15.966924pt;}
.ws97{word-spacing:16.128543pt;}
.ws4a{word-spacing:16.162469pt;}
.ws42{word-spacing:16.196395pt;}
.wsbc{word-spacing:16.410114pt;}
.ws73{word-spacing:16.618439pt;}
.ws40{word-spacing:16.643625pt;}
.ws45{word-spacing:16.677551pt;}
.ws26{word-spacing:16.677640pt;}
.ws5{word-spacing:16.677700pt;}
.ws1{word-spacing:16.849140pt;}
.ws81{word-spacing:17.074409pt;}
.ws78{word-spacing:17.124781pt;}
.ws41{word-spacing:17.133522pt;}
.ws4{word-spacing:17.133570pt;}
.ws15{word-spacing:17.133630pt;}
.ws60{word-spacing:17.614678pt;}
.ws1b{word-spacing:17.614806pt;}
.wsb1{word-spacing:17.828396pt;}
.ws64{word-spacing:18.036722pt;}
.ws65{word-spacing:18.061908pt;}
.ws53{word-spacing:18.095834pt;}
.ws13{word-spacing:18.095982pt;}
.ws19{word-spacing:18.096041pt;}
.wsa5{word-spacing:18.483952pt;}
.ws67{word-spacing:18.492692pt;}
.ws47{word-spacing:18.551804pt;}
.ws83{word-spacing:18.999034pt;}
.ws82{word-spacing:19.032960pt;}
.wsb9{word-spacing:19.168930pt;}
.wsd{word-spacing:19.438467pt;}
.ws3c{word-spacing:19.514116pt;}
.ws1e{word-spacing:19.514324pt;}
.ws6d{word-spacing:19.543949pt;}
.ws35{word-spacing:19.910974pt;}
.ws56{word-spacing:19.933283pt;}
.ws85{word-spacing:19.936160pt;}
.ws44{word-spacing:19.961346pt;}
.ws5e{word-spacing:19.970087pt;}
.wsa7{word-spacing:20.299092pt;}
.ws91{word-spacing:20.325109pt;}
.ws9d{word-spacing:20.383390pt;}
.wsa2{word-spacing:20.417317pt;}
.wsa9{word-spacing:20.873287pt;}
.ws22{word-spacing:20.907360pt;}
.ws21{word-spacing:20.932606pt;}
.ws87{word-spacing:21.329257pt;}
.ws9f{word-spacing:21.354443pt;}
.ws58{word-spacing:21.388369pt;}
.ws51{word-spacing:21.801673pt;}
.ws2e{word-spacing:22.038629pt;}
.ws6c{word-spacing:22.291569pt;}
.ws9e{word-spacing:22.350682pt;}
.ws8f{word-spacing:22.747540pt;}
.ws96{word-spacing:23.219955pt;}
.wsab{word-spacing:24.165822pt;}
.ws76{word-spacing:24.224934pt;}
.ws92{word-spacing:24.646978pt;}
.ws84{word-spacing:25.102949pt;}
.wsa6{word-spacing:25.128134pt;}
.ws95{word-spacing:25.542473pt;}
.ws7e{word-spacing:25.584105pt;}
.ws6b{word-spacing:25.618031pt;}
.wsc9{word-spacing:26.404283pt;}
.ws98{word-spacing:26.571603pt;}
.wsc6{word-spacing:27.822565pt;}
.wsae{word-spacing:27.907634pt;}
.ws1d{word-spacing:34.389310pt;}
.wsa4{word-spacing:35.343486pt;}
.ws9b{word-spacing:38.559429pt;}
.ws1c{word-spacing:40.240185pt;}
.ws7f{word-spacing:880.327325pt;}
.ws32{word-spacing:882.673994pt;}
.ws9c{word-spacing:898.242006pt;}
._3f{margin-left:-5.420259pt;}
._41{width:15.267589pt;}
._30{width:17.334209pt;}
._2f{width:18.789857pt;}
._32{width:20.050408pt;}
._1a{width:21.526899pt;}
._13{width:23.254038pt;}
._15{width:25.007428pt;}
._24{width:25.926345pt;}
._17{width:26.829553pt;}
._18{width:27.800557pt;}
._6{width:28.737723pt;}
._27{width:29.700075pt;}
._10{width:30.637240pt;}
._16{width:31.540331pt;}
._1d{width:32.577286pt;}
._a{width:33.861821pt;}
._22{width:34.832885pt;}
._1{width:35.959673pt;}
._d{width:37.230114pt;}
._4{width:38.796297pt;}
._b{width:40.155377pt;}
._1b{width:41.256860pt;}
._26{width:42.305743pt;}
._14{width:43.207697pt;}
._12{width:44.545403pt;}
._9{width:45.554494pt;}
._11{width:46.998022pt;}
._1c{width:48.011754pt;}
._2{width:49.152787pt;}
._c{width:50.281925pt;}
._e{width:51.219031pt;}
._21{width:52.524257pt;}
._19{width:53.869157pt;}
._33{width:54.874048pt;}
._8{width:55.820113pt;}
._1e{width:57.141933pt;}
._1f{width:58.687451pt;}
._29{width:60.398173pt;}
._7{width:61.682985pt;}
._40{width:62.584626pt;}
._20{width:63.626759pt;}
._f{width:64.845119pt;}
._3{width:66.069138pt;}
._39{width:67.132856pt;}
._25{width:68.239663pt;}
._5{width:69.345525pt;}
._34{width:70.255074pt;}
._2b{width:71.199518pt;}
._36{width:72.239349pt;}
._31{width:74.121178pt;}
._42{width:75.711463pt;}
._23{width:76.835004pt;}
._43{width:78.176192pt;}
._38{width:79.125590pt;}
._2e{width:80.840809pt;}
._3c{width:81.968143pt;}
._37{width:83.271544pt;}
._3a{width:84.252592pt;}
._35{width:85.805742pt;}
._28{width:87.024200pt;}
._3b{width:89.809424pt;}
._2c{width:91.374408pt;}
._3e{width:93.820723pt;}
._46{width:96.211304pt;}
._2d{width:98.601256pt;}
._2a{width:102.036695pt;}
._45{width:103.366105pt;}
._0{width:105.720883pt;}
._3d{width:586.440771pt;}
._44{width:590.808969pt;}
.fs6{font-size:37.333363pt;}
.fs3{font-size:37.334453pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:42.666701pt;}
.fs1{font-size:42.667947pt;}
.fs2{font-size:58.668427pt;}
.fs0{font-size:74.668907pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:3.466635pt;}
.y40{bottom:14.133301pt;}
.y21{bottom:81.281867pt;}
.y72{bottom:83.520000pt;}
.y3e{bottom:83.521907pt;}
.ybc{bottom:83.840000pt;}
.yfc{bottom:84.160000pt;}
.y91{bottom:84.480000pt;}
.y155{bottom:89.920000pt;}
.y12b{bottom:90.560000pt;}
.y181{bottom:91.200000pt;}
.y3d{bottom:96.962213pt;}
.y20{bottom:97.602240pt;}
.y71{bottom:98.240000pt;}
.y90{bottom:98.560000pt;}
.yd7{bottom:98.880000pt;}
.ybb{bottom:99.200000pt;}
.y154{bottom:105.600000pt;}
.y12a{bottom:106.240000pt;}
.y3c{bottom:108.482480pt;}
.y1aa{bottom:109.440000pt;}
.y1f{bottom:112.642573pt;}
.y70{bottom:112.960000pt;}
.y8f{bottom:113.280000pt;}
.yfb{bottom:113.920000pt;}
.yd6{bottom:114.240000pt;}
.yba{bottom:115.200000pt;}
.y180{bottom:120.320000pt;}
.y153{bottom:120.640000pt;}
.y129{bottom:121.280000pt;}
.y1a9{bottom:122.560000pt;}
.y3b{bottom:123.842840pt;}
.y1e{bottom:127.362920pt;}
.y6f{bottom:127.680000pt;}
.y8e{bottom:128.320000pt;}
.yfa{bottom:128.640000pt;}
.yd5{bottom:129.280000pt;}
.yb9{bottom:130.240000pt;}
.y17f{bottom:135.040000pt;}
.y3a{bottom:135.043093pt;}
.y152{bottom:135.360000pt;}
.y128{bottom:135.680000pt;}
.y1a8{bottom:136.000000pt;}
.y1d{bottom:141.763240pt;}
.y6e{bottom:142.400000pt;}
.yf9{bottom:142.720000pt;}
.y8d{bottom:144.000000pt;}
.yb8{bottom:144.640000pt;}
.yd4{bottom:145.280000pt;}
.y151{bottom:149.760000pt;}
.y127{bottom:150.080000pt;}
.y39{bottom:150.403440pt;}
.y1c{bottom:156.483587pt;}
.y6d{bottom:157.120000pt;}
.y8c{bottom:157.440000pt;}
.yd3{bottom:158.080000pt;}
.yb7{bottom:159.040000pt;}
.y1a7{bottom:162.880000pt;}
.y38{bottom:163.843747pt;}
.y17e{bottom:164.800000pt;}
.y150{bottom:165.120000pt;}
.y126{bottom:165.760000pt;}
.y1b{bottom:171.523920pt;}
.y6c{bottom:171.840000pt;}
.y8b{bottom:172.160000pt;}
.yf8{bottom:172.480000pt;}
.yd2{bottom:172.800000pt;}
.yb6{bottom:173.440000pt;}
.y37{bottom:174.724000pt;}
.y1a6{bottom:176.000000pt;}
.y14f{bottom:179.200000pt;}
.y125{bottom:179.520000pt;}
.yeb{bottom:186.240000pt;}
.y1a{bottom:186.244267pt;}
.y6b{bottom:186.560000pt;}
.y8a{bottom:186.880000pt;}
.yd1{bottom:187.200000pt;}
.yb5{bottom:188.160000pt;}
.y1a5{bottom:189.440000pt;}
.y36{bottom:191.364373pt;}
.y14e{bottom:193.280000pt;}
.y124{bottom:193.920000pt;}
.y17d{bottom:194.560000pt;}
.y19{bottom:200.004573pt;}
.y6a{bottom:200.960000pt;}
.y89{bottom:201.280000pt;}
.y35{bottom:201.604613pt;}
.yb4{bottom:202.560000pt;}
.yd0{bottom:204.160000pt;}
.y1a4{bottom:207.360000pt;}
.y14d{bottom:207.680000pt;}
.y17c{bottom:208.640000pt;}
.y123{bottom:208.960000pt;}
.y18{bottom:214.724920pt;}
.yea{bottom:215.680000pt;}
.y69{bottom:216.000000pt;}
.yf7{bottom:216.320000pt;}
.ycf{bottom:216.640000pt;}
.yb3{bottom:217.280000pt;}
.y14c{bottom:222.720000pt;}
.y122{bottom:223.040000pt;}
.y17b{bottom:224.000000pt;}
.y34{bottom:227.845213pt;}
.y1a3{bottom:229.120000pt;}
.y17{bottom:229.445253pt;}
.ye9{bottom:230.080000pt;}
.y68{bottom:230.400000pt;}
.y88{bottom:230.720000pt;}
.yce{bottom:231.360000pt;}
.yb2{bottom:232.000000pt;}
.y121{bottom:237.760000pt;}
.y17a{bottom:238.080000pt;}
.y1a2{bottom:242.560000pt;}
.y16{bottom:243.845587pt;}
.yf6{bottom:244.480000pt;}
.y67{bottom:244.800000pt;}
.ye8{bottom:245.440000pt;}
.y87{bottom:245.760000pt;}
.yb1{bottom:246.400000pt;}
.y14b{bottom:251.840000pt;}
.y179{bottom:252.160000pt;}
.y120{bottom:252.800000pt;}
.y1a1{bottom:255.680000pt;}
.y15{bottom:258.245907pt;}
.ye7{bottom:259.520000pt;}
.y66{bottom:259.840000pt;}
.y86{bottom:260.160000pt;}
.yb0{bottom:261.120000pt;}
.y14a{bottom:266.240000pt;}
.y11f{bottom:266.880000pt;}
.y178{bottom:267.520000pt;}
.y1a0{bottom:270.720000pt;}
.y33{bottom:272.326227pt;}
.y14{bottom:272.966253pt;}
.ye6{bottom:273.920000pt;}
.y65{bottom:274.560000pt;}
.ycd{bottom:274.880000pt;}
.yaf{bottom:275.520000pt;}
.y149{bottom:280.960000pt;}
.y11e{bottom:281.280000pt;}
.y177{bottom:281.920000pt;}
.y19f{bottom:282.560000pt;}
.y13{bottom:287.366573pt;}
.y64{bottom:288.640000pt;}
.y85{bottom:288.960000pt;}
.ye5{bottom:289.280000pt;}
.ycc{bottom:289.600000pt;}
.yae{bottom:290.240000pt;}
.y148{bottom:295.680000pt;}
.y19e{bottom:296.000000pt;}
.y11d{bottom:296.320000pt;}
.y32{bottom:301.766907pt;}
.y12{bottom:302.086920pt;}
.y63{bottom:303.360000pt;}
.y84{bottom:303.680000pt;}
.ycb{bottom:304.000000pt;}
.yad{bottom:304.960000pt;}
.y19d{bottom:309.120000pt;}
.y11c{bottom:310.080000pt;}
.y176{bottom:311.040000pt;}
.y31{bottom:316.167240pt;}
.y11{bottom:316.487240pt;}
.yca{bottom:318.400000pt;}
.y62{bottom:319.040000pt;}
.y83{bottom:319.360000pt;}
.y19c{bottom:322.240000pt;}
.y11b{bottom:324.800000pt;}
.y175{bottom:325.760000pt;}
.y30{bottom:330.887573pt;}
.y10{bottom:331.207587pt;}
.yf5{bottom:332.800000pt;}
.y61{bottom:333.120000pt;}
.ye4{bottom:333.440000pt;}
.yac{bottom:333.760000pt;}
.y19b{bottom:335.680000pt;}
.y11a{bottom:339.840000pt;}
.y147{bottom:340.480000pt;}
.y2f{bottom:345.607907pt;}
.ye3{bottom:347.200000pt;}
.yf{bottom:347.207947pt;}
.y60{bottom:347.520000pt;}
.y82{bottom:347.840000pt;}
.yab{bottom:348.160000pt;}
.yc9{bottom:348.480000pt;}
.y19a{bottom:349.120000pt;}
.y119{bottom:353.920000pt;}
.y174{bottom:354.880000pt;}
.y2e{bottom:360.008240pt;}
.ye2{bottom:361.920000pt;}
.yf4{bottom:362.240000pt;}
.ye{bottom:362.248293pt;}
.y5f{bottom:362.560000pt;}
.yaa{bottom:362.880000pt;}
.y199{bottom:363.840000pt;}
.y118{bottom:368.640000pt;}
.y146{bottom:368.960000pt;}
.y173{bottom:369.600000pt;}
.yd{bottom:374.408573pt;}
.y2d{bottom:375.048587pt;}
.ye1{bottom:376.640000pt;}
.yf3{bottom:376.960000pt;}
.yc8{bottom:377.280000pt;}
.y5e{bottom:377.600000pt;}
.y117{bottom:383.040000pt;}
.y145{bottom:383.360000pt;}
.y172{bottom:384.320000pt;}
.y198{bottom:388.800000pt;}
.yc{bottom:389.128907pt;}
.y2c{bottom:389.448920pt;}
.y5d{bottom:391.360000pt;}
.y81{bottom:391.680000pt;}
.ya9{bottom:392.000000pt;}
.y116{bottom:397.440000pt;}
.y144{bottom:397.760000pt;}
.y171{bottom:399.360000pt;}
.y197{bottom:401.920000pt;}
.yb{bottom:403.529240pt;}
.y2b{bottom:403.849240pt;}
.y5c{bottom:405.760000pt;}
.ye0{bottom:406.080000pt;}
.y80{bottom:406.400000pt;}
.ya8{bottom:406.720000pt;}
.y143{bottom:412.480000pt;}
.y115{bottom:412.800000pt;}
.y170{bottom:413.440000pt;}
.y196{bottom:415.360000pt;}
.ya{bottom:418.249573pt;}
.y2a{bottom:418.569587pt;}
.y5b{bottom:420.480000pt;}
.y7f{bottom:420.800000pt;}
.ya7{bottom:421.120000pt;}
.y114{bottom:426.880000pt;}
.y16f{bottom:428.160000pt;}
.y195{bottom:428.800000pt;}
.y9{bottom:432.649907pt;}
.y29{bottom:432.969907pt;}
.ydf{bottom:435.200000pt;}
.y5a{bottom:435.520000pt;}
.yf2{bottom:435.840000pt;}
.y7e{bottom:436.480000pt;}
.y113{bottom:441.280000pt;}
.y194{bottom:441.600000pt;}
.y142{bottom:441.920000pt;}
.y16e{bottom:443.520000pt;}
.y8{bottom:447.370240pt;}
.y28{bottom:447.690240pt;}
.yc7{bottom:449.920000pt;}
.y59{bottom:450.240000pt;}
.y7d{bottom:450.560000pt;}
.y193{bottom:455.040000pt;}
.y112{bottom:456.320000pt;}
.y16d{bottom:457.280000pt;}
.y7{bottom:462.090573pt;}
.y27{bottom:462.410587pt;}
.yc6{bottom:464.640000pt;}
.y58{bottom:464.960000pt;}
.yf1{bottom:465.280000pt;}
.y7c{bottom:465.600000pt;}
.y192{bottom:468.480000pt;}
.y111{bottom:470.720000pt;}
.y16c{bottom:472.000000pt;}
.y6{bottom:477.130920pt;}
.y26{bottom:477.450933pt;}
.yf0{bottom:478.720000pt;}
.yc5{bottom:479.040000pt;}
.y57{bottom:479.360000pt;}
.ya6{bottom:479.680000pt;}
.y191{bottom:481.920000pt;}
.y141{bottom:485.120000pt;}
.y110{bottom:485.760000pt;}
.y16b{bottom:486.720000pt;}
.y5{bottom:491.211240pt;}
.y25{bottom:491.531253pt;}
.y56{bottom:493.760000pt;}
.ya5{bottom:494.080000pt;}
.y190{bottom:494.720000pt;}
.y10f{bottom:499.840000pt;}
.y140{bottom:501.120000pt;}
.y4{bottom:506.251587pt;}
.yc4{bottom:508.160000pt;}
.y7b{bottom:508.480000pt;}
.y55{bottom:508.800000pt;}
.ya4{bottom:509.120000pt;}
.y10e{bottom:514.240000pt;}
.y13f{bottom:514.560000pt;}
.y16a{bottom:516.160000pt;}
.y3{bottom:520.011907pt;}
.y24{bottom:520.651920pt;}
.y18f{bottom:521.600000pt;}
.y54{bottom:522.880000pt;}
.ya3{bottom:523.200000pt;}
.y10d{bottom:528.640000pt;}
.y13e{bottom:529.280000pt;}
.y169{bottom:530.560000pt;}
.y18e{bottom:534.720000pt;}
.y53{bottom:537.600000pt;}
.y7a{bottom:537.920000pt;}
.y10c{bottom:543.360000pt;}
.y13d{bottom:543.680000pt;}
.y168{bottom:544.960000pt;}
.y18d{bottom:548.160000pt;}
.ya2{bottom:552.000000pt;}
.y52{bottom:552.320000pt;}
.yc3{bottom:552.640000pt;}
.y10b{bottom:558.080000pt;}
.y13c{bottom:558.400000pt;}
.y167{bottom:559.680000pt;}
.y18c{bottom:561.600000pt;}
.y51{bottom:567.040000pt;}
.ya1{bottom:567.360000pt;}
.yde{bottom:567.680000pt;}
.y10a{bottom:572.480000pt;}
.y13b{bottom:573.440000pt;}
.y166{bottom:574.400000pt;}
.ya0{bottom:581.120000pt;}
.y50{bottom:581.760000pt;}
.y79{bottom:582.080000pt;}
.y109{bottom:587.200000pt;}
.y13a{bottom:587.840000pt;}
.y165{bottom:589.760000pt;}
.y9f{bottom:595.840000pt;}
.yc2{bottom:596.160000pt;}
.y4f{bottom:596.480000pt;}
.y108{bottom:601.600000pt;}
.y139{bottom:602.560000pt;}
.y164{bottom:603.840000pt;}
.y9e{bottom:610.240000pt;}
.ydd{bottom:610.560000pt;}
.y4e{bottom:610.880000pt;}
.y107{bottom:616.000000pt;}
.y138{bottom:617.280000pt;}
.y163{bottom:618.560000pt;}
.y9d{bottom:624.960000pt;}
.yc1{bottom:625.280000pt;}
.y4d{bottom:625.600000pt;}
.y106{bottom:631.680000pt;}
.y137{bottom:632.000000pt;}
.y162{bottom:632.960000pt;}
.y18b{bottom:633.920000pt;}
.y9c{bottom:639.360000pt;}
.y4c{bottom:640.000000pt;}
.y78{bottom:640.320000pt;}
.yc0{bottom:640.640000pt;}
.yef{bottom:642.240000pt;}
.y105{bottom:645.760000pt;}
.y136{bottom:646.400000pt;}
.y161{bottom:647.680000pt;}
.y18a{bottom:648.000000pt;}
.y9b{bottom:654.080000pt;}
.ydc{bottom:654.400000pt;}
.ybf{bottom:654.720000pt;}
.y4b{bottom:655.040000pt;}
.y104{bottom:659.840000pt;}
.y135{bottom:660.800000pt;}
.y160{bottom:662.080000pt;}
.y189{bottom:663.040000pt;}
.y9a{bottom:668.800000pt;}
.ydb{bottom:669.120000pt;}
.y4a{bottom:669.440000pt;}
.y103{bottom:674.560000pt;}
.y134{bottom:675.520000pt;}
.y15f{bottom:676.800000pt;}
.y188{bottom:677.440000pt;}
.y99{bottom:683.200000pt;}
.yda{bottom:683.840000pt;}
.y49{bottom:684.160000pt;}
.y102{bottom:688.960000pt;}
.y23{bottom:689.295773pt;}
.y133{bottom:690.240000pt;}
.y15e{bottom:691.840000pt;}
.y98{bottom:697.600000pt;}
.yd9{bottom:698.560000pt;}
.ybe{bottom:698.880000pt;}
.y48{bottom:699.200000pt;}
.y132{bottom:705.600000pt;}
.y15d{bottom:706.560000pt;}
.y187{bottom:707.520000pt;}
.y22{bottom:707.856200pt;}
.y97{bottom:712.320000pt;}
.ybd{bottom:713.280000pt;}
.y47{bottom:713.600000pt;}
.y77{bottom:713.920000pt;}
.y101{bottom:718.400000pt;}
.y131{bottom:719.680000pt;}
.y15c{bottom:720.960000pt;}
.y186{bottom:721.280000pt;}
.y96{bottom:727.040000pt;}
.yee{bottom:727.360000pt;}
.yd8{bottom:727.680000pt;}
.y46{bottom:728.000000pt;}
.y130{bottom:734.400000pt;}
.y185{bottom:735.680000pt;}
.y15b{bottom:736.000000pt;}
.y95{bottom:742.080000pt;}
.y76{bottom:742.400000pt;}
.y12f{bottom:749.120000pt;}
.y15a{bottom:750.080000pt;}
.y184{bottom:750.400000pt;}
.y2{bottom:755.857293pt;}
.y94{bottom:756.800000pt;}
.y75{bottom:757.120000pt;}
.y45{bottom:757.440000pt;}
.y100{bottom:762.560000pt;}
.y12e{bottom:764.800000pt;}
.y183{bottom:765.120000pt;}
.y159{bottom:765.440000pt;}
.y93{bottom:771.200000pt;}
.yed{bottom:771.520000pt;}
.y74{bottom:771.840000pt;}
.y44{bottom:772.160000pt;}
.yff{bottom:777.280000pt;}
.y12d{bottom:778.240000pt;}
.y1{bottom:778.577813pt;}
.y158{bottom:779.520000pt;}
.y182{bottom:780.160000pt;}
.yec{bottom:785.920000pt;}
.y73{bottom:786.240000pt;}
.y43{bottom:786.560000pt;}
.yfe{bottom:791.680000pt;}
.y12c{bottom:792.640000pt;}
.y157{bottom:794.240000pt;}
.y92{bottom:826.560000pt;}
.y42{bottom:828.480000pt;}
.y3f{bottom:831.200032pt;}
.yfd{bottom:832.320000pt;}
.y156{bottom:837.120000pt;}
.h6{height:24.863933pt;}
.hd{height:36.640654pt;}
.h5{height:36.641724pt;}
.ha{height:37.625030pt;}
.hf{height:41.854200pt;}
.h9{height:41.875034pt;}
.h3{height:41.876256pt;}
.h7{height:42.916667pt;}
.hb{height:43.040654pt;}
.h2{height:43.156256pt;}
.h10{height:44.500036pt;}
.h12{height:45.600654pt;}
.h16{height:46.880654pt;}
.h19{height:49.440654pt;}
.h1a{height:53.280654pt;}
.h17{height:54.560654pt;}
.h18{height:55.840654pt;}
.hc{height:55.955034pt;}
.h1b{height:57.120654pt;}
.h4{height:57.579852pt;}
.h13{height:58.515034pt;}
.h15{height:61.075034pt;}
.h1{height:75.252257pt;}
.h0{height:904.000000pt;}
.h11{height:905.333333pt;}
.h8{height:914.666667pt;}
.h14{height:920.000000pt;}
.he{height:921.333333pt;}
.w1{width:591.061361pt;}
.w0{width:800.000000pt;}
.w4{width:805.333333pt;}
.w2{width:810.666667pt;}
.w5{width:816.000000pt;}
.w3{width:818.666667pt;}
.x0{left:0.000000pt;}
.x11{left:96.000000pt;}
.x3{left:123.202813pt;}
.x4{left:124.802853pt;}
.x6{left:125.762880pt;}
.x2d{left:126.720000pt;}
.x2f{left:127.680000pt;}
.x31{left:128.960000pt;}
.x1e{left:131.200000pt;}
.x1f{left:132.160000pt;}
.x22{left:133.120000pt;}
.x24{left:134.080000pt;}
.x5{left:136.643133pt;}
.x2c{left:137.920000pt;}
.x2e{left:138.880000pt;}
.x30{left:139.840000pt;}
.x20{left:143.680000pt;}
.x21{left:144.640000pt;}
.x23{left:145.600000pt;}
.x12{left:162.560000pt;}
.x14{left:163.520000pt;}
.x16{left:164.480000pt;}
.x18{left:165.440000pt;}
.x37{left:166.400000pt;}
.x38{left:167.680000pt;}
.x13{left:174.400000pt;}
.x15{left:175.680000pt;}
.x17{left:176.960000pt;}
.x2b{left:265.920000pt;}
.x1d{left:272.320000pt;}
.x1{left:274.566280pt;}
.x2{left:388.808893pt;}
.x9{left:392.648987pt;}
.xc{left:393.609013pt;}
.xb{left:394.569027pt;}
.x34{left:395.840000pt;}
.x33{left:396.800000pt;}
.x36{left:397.760000pt;}
.x26{left:400.640000pt;}
.x27{left:401.600000pt;}
.x29{left:402.560000pt;}
.x2a{left:403.840000pt;}
.xa{left:404.809267pt;}
.xd{left:405.769293pt;}
.x32{left:406.720000pt;}
.x35{left:408.640000pt;}
.x25{left:412.160000pt;}
.x28{left:414.400000pt;}
.xe{left:416.009520pt;}
.xf{left:431.369867pt;}
.x10{left:432.649907pt;}
.x1b{left:433.600000pt;}
.x39{left:434.560000pt;}
.x3b{left:435.520000pt;}
.x3d{left:436.480000pt;}
.x19{left:443.520000pt;}
.x1a{left:444.480000pt;}
.x1c{left:445.440000pt;}
.x3a{left:448.640000pt;}
.x3c{left:449.600000pt;}
.x7{left:478.730960pt;}
.x8{left:519.691893pt;}
}

