
    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_c65c134e53a576c9d30b481f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.051758;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_ecd1287691b43270d336f524.woff')format("woff");}.ff2{font-family:ff2;line-height:0.874023;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_aa7cb932ad259e6170d32528.woff')format("woff");}.ff3{font-family:ff3;line-height:0.711914;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_e663e119502ce9e47be84f67.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_00f6cb395a47a4cdf863aff7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.883301;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_96408f9b753ed991d1cde029.woff')format("woff");}.ff6{font-family:ff6;line-height:0.883301;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_f9b4d30f067208bbcb8df239.woff')format("woff");}.ff7{font-family:ff7;line-height:1.036621;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_bd7406f1fa768212a807ad83.woff')format("woff");}.ff8{font-family:ff8;line-height:0.883301;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_50249056ade69c9c9b5bc9d8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.883301;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_58bb7af3c15d454ab0899c8f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.883301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_915bcc732436fe7ca6d7a316.woff')format("woff");}.ffb{font-family:ffb;line-height:1.051758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1787c663ac6778fd3f32bf7e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.883301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_73039339096913c36c59f81a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.883301;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:ffe;src:url('chunks/assets/font_ab76399a63ba65a0dcbab230.woff')format("woff");}.ffe{font-family:ffe;line-height:0.946777;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:fff;src:url('chunks/assets/font_deda5023d104099a591f9936.woff')format("woff");}.fff{font-family:fff;line-height:0.883301;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:ff10;src:url('chunks/assets/font_7ffbe9215eba33f509043b29.woff')format("woff");}.ff10{font-family:ff10;line-height:0.883301;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:ff11;src:url('chunks/assets/font_7070e8d4add84148248dd0c9.woff')format("woff");}.ff11{font-family:ff11;line-height:0.874023;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:ff12;src:url('chunks/assets/font_07fceec232560dd5ba5a4038.woff')format("woff");}.ff12{font-family:ff12;line-height:0.883301;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:ff13;src:url('chunks/assets/font_1e36f5f048096c9a4859a6cd.woff')format("woff");}.ff13{font-family:ff13;line-height:0.883301;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:ff14;src:url('chunks/assets/font_3ecdde14611ce84fd27ae8d2.woff')format("woff");}.ff14{font-family:ff14;line-height:0.872559;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:ff15;src:url('chunks/assets/font_7a0bd071d103008095a539b3.woff')format("woff");}.ff15{font-family:ff15;line-height:0.872559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m1{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-33.595137px;}
.v2{vertical-align:-27.597656px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:33.595312px;}
.v1{vertical-align:41.990450px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.047287px;}
.ls6{letter-spacing:0.551908px;}
.ls8{letter-spacing:0.913215px;}
.ls3{letter-spacing:15.812460px;}
.ls7{letter-spacing:18.211478px;}
.ls0{letter-spacing:18.595996px;}
.ls2{letter-spacing:19.411713px;}
.ls4{letter-spacing:23.011009px;}
.ls5{letter-spacing:33.808856px;}
.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;}
}
.ws2{word-spacing:-95.979595px;}
.ws4{word-spacing:-83.982239px;}
.ws15{word-spacing:-75.878038px;}
.ws39{word-spacing:-72.536862px;}
.ws6{word-spacing:-71.984954px;}
.ws3{word-spacing:-70.870961px;}
.ws8{word-spacing:-65.986199px;}
.ws7f{word-spacing:-64.572210px;}
.ws26{word-spacing:-63.231694px;}
.ws62{word-spacing:-62.410955px;}
.ws1f{word-spacing:-62.389728px;}
.ws18{word-spacing:-62.345141px;}
.ws5{word-spacing:-61.501893px;}
.ws7b{word-spacing:-61.259196px;}
.ws59{word-spacing:-61.187211px;}
.ws3e{word-spacing:-60.935714px;}
.ws31{word-spacing:-60.753469px;}
.wsc{word-spacing:-60.035452px;}
.ws1{word-spacing:-59.987450px;}
.ws41{word-spacing:-58.955677px;}
.ws2b{word-spacing:-58.883693px;}
.wsb{word-spacing:-58.797624px;}
.ws5b{word-spacing:-57.731933px;}
.ws70{word-spacing:-57.660021px;}
.ws32{word-spacing:-57.659948px;}
.ws7{word-spacing:-57.587975px;}
.ws16{word-spacing:-56.555144px;}
.ws6d{word-spacing:-56.508189px;}
.wse{word-spacing:-56.436204px;}
.ws17{word-spacing:-55.808474px;}
.ws49{word-spacing:-55.356430px;}
.ws33{word-spacing:-55.284445px;}
.ws11{word-spacing:-54.758922px;}
.ws8a{word-spacing:-54.384580px;}
.ws4a{word-spacing:-54.384492px;}
.ws2d{word-spacing:-54.060701px;}
.ws58{word-spacing:-54.060628px;}
.ws37{word-spacing:-53.998380px;}
.ws27{word-spacing:-53.871563px;}
.ws77{word-spacing:-53.810172px;}
.ws19{word-spacing:-53.732852px;}
.ws6f{word-spacing:-53.667609px;}
.ws85{word-spacing:-53.554408px;}
.ws2f{word-spacing:-53.474620px;}
.ws72{word-spacing:-53.404171px;}
.ws3f{word-spacing:-53.148544px;}
.ws86{word-spacing:-53.122042px;}
.ws44{word-spacing:-53.020763px;}
.ws5d{word-spacing:-52.980926px;}
.ws22{word-spacing:-52.908941px;}
.ws10{word-spacing:-52.836956px;}
.ws6e{word-spacing:-52.777435px;}
.ws63{word-spacing:-52.738285px;}
.ws80{word-spacing:-52.720135px;}
.ws46{word-spacing:-52.533926px;}
.ws1e{word-spacing:-52.368779px;}
.ws53{word-spacing:-52.296490px;}
.ws36{word-spacing:-52.278713px;}
.ws2e{word-spacing:-52.246140px;}
.ws54{word-spacing:-52.165884px;}
.ws57{word-spacing:-51.794195px;}
.wsd{word-spacing:-51.685197px;}
.ws87{word-spacing:-51.158922px;}
.ws76{word-spacing:-51.049320px;}
.ws75{word-spacing:-50.929345px;}
.ws61{word-spacing:-50.845745px;}
.ws67{word-spacing:-50.461453px;}
.ws23{word-spacing:-50.065730px;}
.ws4e{word-spacing:-50.016270px;}
.ws9{word-spacing:-49.956490px;}
.ws68{word-spacing:-49.836755px;}
.ws25{word-spacing:-49.803189px;}
.ws3a{word-spacing:-49.237709px;}
.ws30{word-spacing:-49.228866px;}
.ws1c{word-spacing:-49.198926px;}
.ws1b{word-spacing:-48.940543px;}
.ws43{word-spacing:-48.640700px;}
.ws55{word-spacing:-48.322061px;}
.ws2c{word-spacing:-48.085949px;}
.ws4f{word-spacing:-47.450073px;}
.ws4d{word-spacing:-47.330098px;}
.ws7e{word-spacing:-47.319744px;}
.ws48{word-spacing:-47.126924px;}
.ws5c{word-spacing:-47.029549px;}
.ws66{word-spacing:-46.862280px;}
.ws40{word-spacing:-46.862205px;}
.ws24{word-spacing:-46.719741px;}
.ws6b{word-spacing:-46.447068px;}
.ws69{word-spacing:-46.285586px;}
.ws38{word-spacing:-46.141649px;}
.ws84{word-spacing:-46.039769px;}
.ws82{word-spacing:-45.827500px;}
.ws81{word-spacing:-45.774189px;}
.ws7c{word-spacing:-45.730279px;}
.ws3c{word-spacing:-45.651810px;}
.ws83{word-spacing:-45.587222px;}
.ws7a{word-spacing:-45.527305px;}
.ws79{word-spacing:-45.288911px;}
.ws20{word-spacing:-45.106883px;}
.wsa{word-spacing:-45.014831px;}
.ws64{word-spacing:-44.996074px;}
.ws21{word-spacing:-44.930488px;}
.ws7d{word-spacing:-44.754284px;}
.ws78{word-spacing:-44.628269px;}
.ws52{word-spacing:-44.486702px;}
.ws73{word-spacing:-44.112379px;}
.ws65{word-spacing:-44.018942px;}
.ws13{word-spacing:-43.879534px;}
.ws2a{word-spacing:-43.693101px;}
.ws42{word-spacing:-43.262957px;}
.ws35{word-spacing:-42.926645px;}
.ws5a{word-spacing:-42.756490px;}
.wsf{word-spacing:-42.623651px;}
.ws3d{word-spacing:-41.514361px;}
.ws29{word-spacing:-41.451328px;}
.ws28{word-spacing:-41.331353px;}
.ws12{word-spacing:-40.644595px;}
.ws88{word-spacing:-39.735695px;}
.ws51{word-spacing:-38.439966px;}
.ws71{word-spacing:-38.193966px;}
.ws3b{word-spacing:-37.288206px;}
.ws89{word-spacing:-36.064462px;}
.ws45{word-spacing:-36.064392px;}
.ws6c{word-spacing:-33.688959px;}
.ws1d{word-spacing:-29.993761px;}
.ws1a{word-spacing:-28.865967px;}
.ws34{word-spacing:-27.642222px;}
.ws47{word-spacing:-24.042975px;}
.ws5e{word-spacing:-23.995009px;}
.ws4b{word-spacing:-8.182720px;}
.ws50{word-spacing:-6.983188px;}
.ws5f{word-spacing:-4.583422px;}
.ws60{word-spacing:-3.383891px;}
.ws6a{word-spacing:-0.984126px;}
.ws14{word-spacing:0.000000px;}
.ws74{word-spacing:0.215362px;}
.ws4c{word-spacing:3.814658px;}
.ws56{word-spacing:4.472747px;}
.ws0{word-spacing:862.710519px;}
._b{margin-left:-2.163659px;}
._1{margin-left:-1.055776px;}
._0{width:1.019787px;}
._2{width:2.347561px;}
._4{width:4.175127px;}
._3{width:5.470857px;}
._6{width:6.578348px;}
._10{width:7.618408px;}
._5{width:8.638194px;}
._7{width:10.293848px;}
._8{width:11.445608px;}
._1f{width:13.327351px;}
._12{width:14.384994px;}
._19{width:15.417630px;}
._14{width:17.187641px;}
._15{width:18.492325px;}
._a{width:20.256441px;}
._22{width:21.363751px;}
._11{width:23.320550px;}
._1a{width:24.877491px;}
._18{width:26.412910px;}
._e{width:28.201142px;}
._9{width:29.940749px;}
._21{width:31.242077px;}
._c{width:32.526048px;}
._20{width:33.592979px;}
._16{width:34.664388px;}
._1d{width:36.696708px;}
._f{width:38.155128px;}
._13{width:43.903386px;}
._1b{width:49.037729px;}
._1e{width:51.479730px;}
._23{width:53.753659px;}
._24{width:55.512431px;}
._d{width:62.245196px;}
._17{width:63.312577px;}
._1c{width:66.980349px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:23.995009px;}
.fs8{font-size:29.993761px;}
.fs2{font-size:39.591719px;}
.fs5{font-size:57.587975px;}
.fs0{font-size:59.987450px;}
.fsa{font-size:63.231694px;}
.fs6{font-size:65.986199px;}
.fs4{font-size:71.984954px;}
.fs7{font-size:75.878038px;}
.fs3{font-size:83.982239px;}
.fs1{font-size:95.979595px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.199798px;}
.y21{bottom:109.513828px;}
.y49{bottom:109.814414px;}
.y67{bottom:116.713828px;}
.y48{bottom:126.910811px;}
.y20{bottom:133.810225px;}
.y47{bottom:144.007207px;}
.y6c{bottom:150.897656px;}
.y46{bottom:161.096397px;}
.y45{bottom:168.039053px;}
.y44{bottom:178.237793px;}
.y43{bottom:185.135449px;}
.y6e{bottom:185.736621px;}
.y42{bottom:195.334190px;}
.y41{bottom:202.231846px;}
.y40{bottom:212.430586px;}
.y6d{bottom:216.630000px;}
.y65{bottom:219.328242px;}
.y3f{bottom:229.526983px;}
.y1f{bottom:232.826397px;}
.y3e{bottom:236.424639px;}
.y6b{bottom:246.623467px;}
.y66{bottom:247.523467px;}
.y6a{bottom:253.521035px;}
.y1e{bottom:274.518018px;}
.y64{bottom:278.116260px;}
.y3d{bottom:288.613828px;}
.y1d{bottom:297.912656px;}
.y63{bottom:309.009639px;}
.y3c{bottom:319.208467px;}
.y1c{bottom:321.607793px;}
.y6f{bottom:331.506035px;}
.y62{bottom:339.933604px;}
.y1b{bottom:345.331846px;}
.y3b{bottom:350.132432px;}
.y1a{bottom:369.043242px;}
.y61{bottom:370.542656px;}
.y3a{bottom:381.040225px;}
.y19{bottom:392.423467px;}
.y60{bottom:401.421621px;}
.y39{bottom:411.618604px;}
.y18{bottom:416.118604px;}
.y5f{bottom:432.315000px;}
.y17{bottom:439.813828px;}
.y38{bottom:442.528242px;}
.y69{bottom:462.907793px;}
.y16{bottom:463.222793px;}
.y37{bottom:473.405449px;}
.y68{bottom:493.801260px;}
.y36{bottom:504.045000px;}
.y15{bottom:504.945000px;}
.y5e{bottom:524.739639px;}
.y35{bottom:534.938423px;}
.y14{bottom:546.634819px;}
.y5d{bottom:555.334233px;}
.y34{bottom:565.531216px;}
.y13{bottom:570.031216px;}
.y5c{bottom:586.227612px;}
.y12{bottom:593.726441px;}
.y33{bottom:596.424639px;}
.y5b{bottom:617.121035px;}
.y11{bottom:617.421621px;}
.y32{bottom:627.318018px;}
.y10{bottom:641.115044px;}
.y5a{bottom:647.713828px;}
.y31{bottom:657.912612px;}
.yf{bottom:664.511441px;}
.y59{bottom:678.637837px;}
.ye{bottom:688.235405px;}
.y30{bottom:688.836621px;}
.y58{bottom:709.547432px;}
.yd{bottom:711.930630px;}
.y2f{bottom:719.730044px;}
.yc{bottom:735.327026px;}
.y57{bottom:740.125811px;}
.y2e{bottom:750.322837px;}
.y56{bottom:771.033604px;}
.y2d{bottom:781.216216px;}
.y55{bottom:801.912612px;}
.y2c{bottom:812.125811px;}
.yb{bottom:813.625225px;}
.y54{bottom:832.521621px;}
.y2b{bottom:842.749233px;}
.ya{bottom:851.446846px;}
.y53{bottom:863.443828px;}
.y2a{bottom:873.642612px;}
.y9{bottom:891.937837px;}
.y52{bottom:894.038423px;}
.y51{bottom:924.931824px;}
.y8{bottom:934.830022px;}
.y29{bottom:951.625833px;}
.y50{bottom:955.825225px;}
.y7{bottom:962.424031px;}
.y27{bottom:975.321035px;}
.y28{bottom:983.719819px;}
.y4f{bottom:986.418018px;}
.y26{bottom:999.016216px;}
.y6{bottom:1009.544414px;}
.y4e{bottom:1017.356419px;}
.y25{bottom:1022.455833px;}
.y5{bottom:1041.037229px;}
.y24{bottom:1046.136621px;}
.y4d{bottom:1048.235427px;}
.y23{bottom:1069.846216px;}
.y4{bottom:1072.530022px;}
.y4c{bottom:1078.844425px;}
.y22{bottom:1093.226243px;}
.y4b{bottom:1109.722885px;}
.y4a{bottom:1140.631589px;}
.y3{bottom:1179.053487px;}
.y2{bottom:1196.149883px;}
.h2c{height:16.496568px;}
.h14{height:16.719178px;}
.h1f{height:20.761306px;}
.he{height:20.898973px;}
.h1a{height:23.397535px;}
.h18{height:23.404565px;}
.h21{height:24.305548px;}
.h20{height:24.312579px;}
.h9{height:27.644609px;}
.h2f{height:41.153500px;}
.h27{height:41.241372px;}
.hc{height:41.797896px;}
.hb{height:41.885768px;}
.h2d{height:43.471790px;}
.h15{height:44.058412px;}
.h2e{height:49.384209px;}
.h8{height:49.489656px;}
.hf{height:50.157485px;}
.h16{height:50.995191px;}
.h3{height:51.903204px;}
.h30{height:52.055002px;}
.h2b{height:52.166151px;}
.hd{height:52.870098px;}
.h19{height:53.753115px;}
.ha{height:53.777812px;}
.h28{height:54.153269px;}
.h2a{height:54.215847px;}
.h29{height:54.215935px;}
.h12{height:54.429246px;}
.h26{height:54.429422px;}
.h1b{height:54.431531px;}
.h25{height:54.436629px;}
.h22{height:54.487078px;}
.h13{height:54.493934px;}
.h11{height:54.494110px;}
.h1c{height:54.494197px;}
.h10{height:54.494285px;}
.h23{height:54.551766px;}
.h24{height:54.551942px;}
.h1e{height:54.710235px;}
.h7{height:57.093528px;}
.h17{height:61.194241px;}
.h6{height:62.283857px;}
.h1d{height:65.652287px;}
.h5{height:72.664320px;}
.h4{height:83.044845px;}
.h2{height:1262.435891px;}
.h0{height:1262.835015px;}
.h1{height:1263.000000px;}
.w2{width:892.913379px;}
.w0{width:892.913640px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:128.410741px;}
.x2{left:135.908998px;}
.x3a{left:138.308577px;}
.x5{left:143.707500px;}
.x1f{left:155.397601px;}
.x4b{left:166.495144px;}
.x18{left:180.637196px;}
.x3b{left:181.837804px;}
.x38{left:184.535991px;}
.xc{left:186.636599px;}
.xa{left:195.033604px;}
.xd{left:199.533604px;}
.x52{left:201.932996px;}
.x4d{left:210.630608px;}
.x3{left:216.329392px;}
.xb{left:227.127590px;}
.x3c{left:228.927590px;}
.x1b{left:231.926396px;}
.x6{left:234.925203px;}
.x43{left:246.322793px;}
.x2a{left:251.422207px;}
.x23{left:253.522793px;}
.x31{left:255.022207px;}
.x57{left:256.220991px;}
.x29{left:258.920991px;}
.x32{left:265.818604px;}
.x1d{left:267.019189px;}
.x53{left:282.315608px;}
.x4{left:284.416194px;}
.x4a{left:294.913806px;}
.x58{left:304.556396px;}
.x50{left:309.655811px;}
.x45{left:322.252207px;}
.x11{left:325.252793px;}
.x14{left:334.250991px;}
.x2d{left:337.548604px;}
.x24{left:341.747996px;}
.x8{left:345.947410px;}
.x26{left:349.246802px;}
.x44{left:360.329392px;}
.x7{left:361.544392px;}
.x10{left:365.443198px;}
.x33{left:370.241982px;}
.x12{left:373.541396px;}
.x46{left:377.441982px;}
.x2b{left:380.440811px;}
.x13{left:401.135405px;}
.x9{left:402.321621px;}
.x2e{left:414.034189px;}
.x3d{left:418.861802px;}
.x39{left:423.660586px;}
.x19{left:427.260586px;}
.x1c{left:429.960586px;}
.x54{left:432.959414px;}
.x21{left:435.358784px;}
.x48{left:437.158784px;}
.x47{left:438.958784px;}
.x35{left:446.156982px;}
.x40{left:460.254595px;}
.x22{left:468.352793px;}
.x1e{left:478.249189px;}
.x4e{left:483.948018px;}
.x55{left:515.141982px;}
.x34{left:524.440811px;}
.x36{left:527.439595px;}
.x27{left:530.438379px;}
.x4f{left:539.166621px;}
.xe{left:541.267207px;}
.xf{left:546.380991px;}
.x56{left:560.163604px;}
.x30{left:567.075586px;}
.x3e{left:574.875000px;}
.x42{left:576.073784px;}
.x28{left:577.575000px;}
.x1a{left:593.155811px;}
.x2c{left:606.367793px;}
.x20{left:617.466621px;}
.x4c{left:626.749189px;}
.x2f{left:632.748604px;}
.x17{left:639.646216px;}
.x41{left:648.059414px;}
.x15{left:690.679819px;}
.x25{left:708.676216px;}
.x3f{left:716.175000px;}
.x37{left:723.373198px;}
.x49{left:750.668379px;}
.x51{left:758.466035px;}
.x16{left:762.665361px;}
@media print{
.v4{vertical-align:-29.862344pt;}
.v2{vertical-align:-24.531250pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:29.862500pt;}
.v1{vertical-align:37.324844pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.042033pt;}
.ls6{letter-spacing:0.490585pt;}
.ls8{letter-spacing:0.811747pt;}
.ls3{letter-spacing:14.055520pt;}
.ls7{letter-spacing:16.187981pt;}
.ls0{letter-spacing:16.529774pt;}
.ls2{letter-spacing:17.254856pt;}
.ls4{letter-spacing:20.454230pt;}
.ls5{letter-spacing:30.052317pt;}
.ws2{word-spacing:-85.315196pt;}
.ws4{word-spacing:-74.650879pt;}
.ws15{word-spacing:-67.447145pt;}
.ws39{word-spacing:-64.477211pt;}
.ws6{word-spacing:-63.986626pt;}
.ws3{word-spacing:-62.996409pt;}
.ws8{word-spacing:-58.654399pt;}
.ws7f{word-spacing:-57.397520pt;}
.ws26{word-spacing:-56.205950pt;}
.ws62{word-spacing:-55.476405pt;}
.ws1f{word-spacing:-55.457536pt;}
.ws18{word-spacing:-55.417904pt;}
.ws5{word-spacing:-54.668349pt;}
.ws7b{word-spacing:-54.452619pt;}
.ws59{word-spacing:-54.388632pt;}
.ws3e{word-spacing:-54.165079pt;}
.ws31{word-spacing:-54.003084pt;}
.wsc{word-spacing:-53.364846pt;}
.ws1{word-spacing:-53.322178pt;}
.ws41{word-spacing:-52.405047pt;}
.ws2b{word-spacing:-52.341060pt;}
.wsb{word-spacing:-52.264555pt;}
.ws5b{word-spacing:-51.317274pt;}
.ws70{word-spacing:-51.253352pt;}
.ws32{word-spacing:-51.253287pt;}
.ws7{word-spacing:-51.189311pt;}
.ws16{word-spacing:-50.271239pt;}
.ws6d{word-spacing:-50.229501pt;}
.wse{word-spacing:-50.165515pt;}
.ws17{word-spacing:-49.607532pt;}
.ws49{word-spacing:-49.205715pt;}
.ws33{word-spacing:-49.141729pt;}
.ws11{word-spacing:-48.674597pt;}
.ws8a{word-spacing:-48.341849pt;}
.ws4a{word-spacing:-48.341771pt;}
.ws2d{word-spacing:-48.053956pt;}
.ws58{word-spacing:-48.053892pt;}
.ws37{word-spacing:-47.998560pt;}
.ws27{word-spacing:-47.885834pt;}
.ws77{word-spacing:-47.831264pt;}
.ws19{word-spacing:-47.762535pt;}
.ws6f{word-spacing:-47.704541pt;}
.ws85{word-spacing:-47.603918pt;}
.ws2f{word-spacing:-47.532996pt;}
.ws72{word-spacing:-47.470374pt;}
.ws3f{word-spacing:-47.243150pt;}
.ws86{word-spacing:-47.219593pt;}
.ws44{word-spacing:-47.129567pt;}
.ws5d{word-spacing:-47.094157pt;}
.ws22{word-spacing:-47.030170pt;}
.ws10{word-spacing:-46.966183pt;}
.ws6e{word-spacing:-46.913276pt;}
.ws63{word-spacing:-46.878476pt;}
.ws80{word-spacing:-46.862342pt;}
.ws46{word-spacing:-46.696823pt;}
.ws1e{word-spacing:-46.550025pt;}
.ws53{word-spacing:-46.485769pt;}
.ws36{word-spacing:-46.469967pt;}
.ws2e{word-spacing:-46.441014pt;}
.ws54{word-spacing:-46.369675pt;}
.ws57{word-spacing:-46.039285pt;}
.wsd{word-spacing:-45.942397pt;}
.ws87{word-spacing:-45.474597pt;}
.ws76{word-spacing:-45.377173pt;}
.ws75{word-spacing:-45.270529pt;}
.ws61{word-spacing:-45.196218pt;}
.ws67{word-spacing:-44.854625pt;}
.ws23{word-spacing:-44.502871pt;}
.ws4e{word-spacing:-44.458907pt;}
.ws9{word-spacing:-44.405769pt;}
.ws68{word-spacing:-44.299338pt;}
.ws25{word-spacing:-44.269501pt;}
.ws3a{word-spacing:-43.766852pt;}
.ws30{word-spacing:-43.758992pt;}
.ws1c{word-spacing:-43.732378pt;}
.ws1b{word-spacing:-43.502705pt;}
.ws43{word-spacing:-43.236178pt;}
.ws55{word-spacing:-42.952943pt;}
.ws2c{word-spacing:-42.743066pt;}
.ws4f{word-spacing:-42.177843pt;}
.ws4d{word-spacing:-42.071198pt;}
.ws7e{word-spacing:-42.061995pt;}
.ws48{word-spacing:-41.890599pt;}
.ws5c{word-spacing:-41.804043pt;}
.ws66{word-spacing:-41.655360pt;}
.ws40{word-spacing:-41.655293pt;}
.ws24{word-spacing:-41.528659pt;}
.ws6b{word-spacing:-41.286282pt;}
.ws69{word-spacing:-41.142743pt;}
.ws38{word-spacing:-41.014799pt;}
.ws84{word-spacing:-40.924239pt;}
.ws82{word-spacing:-40.735556pt;}
.ws81{word-spacing:-40.688168pt;}
.ws7c{word-spacing:-40.649137pt;}
.ws3c{word-spacing:-40.579387pt;}
.ws83{word-spacing:-40.521975pt;}
.ws7a{word-spacing:-40.468716pt;}
.ws79{word-spacing:-40.256809pt;}
.ws20{word-spacing:-40.095007pt;}
.wsa{word-spacing:-40.013184pt;}
.ws64{word-spacing:-39.996510pt;}
.ws21{word-spacing:-39.938211pt;}
.ws7d{word-spacing:-39.781586pt;}
.ws78{word-spacing:-39.669573pt;}
.ws52{word-spacing:-39.543735pt;}
.ws73{word-spacing:-39.211003pt;}
.ws65{word-spacing:-39.127949pt;}
.ws13{word-spacing:-39.004030pt;}
.ws2a{word-spacing:-38.838312pt;}
.ws42{word-spacing:-38.455962pt;}
.ws35{word-spacing:-38.157018pt;}
.ws5a{word-spacing:-38.005769pt;}
.wsf{word-spacing:-37.887690pt;}
.ws3d{word-spacing:-36.901654pt;}
.ws29{word-spacing:-36.845625pt;}
.ws28{word-spacing:-36.738981pt;}
.ws12{word-spacing:-36.128529pt;}
.ws88{word-spacing:-35.320618pt;}
.ws51{word-spacing:-34.168858pt;}
.ws71{word-spacing:-33.950192pt;}
.ws3b{word-spacing:-33.145072pt;}
.ws89{word-spacing:-32.057300pt;}
.ws45{word-spacing:-32.057237pt;}
.ws6c{word-spacing:-29.945741pt;}
.ws1d{word-spacing:-26.661121pt;}
.ws1a{word-spacing:-25.658637pt;}
.ws34{word-spacing:-24.570864pt;}
.ws47{word-spacing:-21.371533pt;}
.ws5e{word-spacing:-21.328897pt;}
.ws4b{word-spacing:-7.273529pt;}
.ws50{word-spacing:-6.207278pt;}
.ws5f{word-spacing:-4.074153pt;}
.ws60{word-spacing:-3.007903pt;}
.ws6a{word-spacing:-0.874778pt;}
.ws14{word-spacing:0.000000pt;}
.ws74{word-spacing:0.191433pt;}
.ws4c{word-spacing:3.390807pt;}
.ws56{word-spacing:3.975775pt;}
.ws0{word-spacing:766.853795pt;}
._b{margin-left:-1.923253pt;}
._1{margin-left:-0.938467pt;}
._0{width:0.906477pt;}
._2{width:2.086721pt;}
._4{width:3.711224pt;}
._3{width:4.862984pt;}
._6{width:5.847421pt;}
._10{width:6.771918pt;}
._5{width:7.678395pt;}
._7{width:9.150088pt;}
._8{width:10.173874pt;}
._1f{width:11.846534pt;}
._12{width:12.786661pt;}
._19{width:13.704560pt;}
._14{width:15.277903pt;}
._15{width:16.437622pt;}
._a{width:18.005726pt;}
._22{width:18.990001pt;}
._11{width:20.729378pt;}
._1a{width:22.113326pt;}
._18{width:23.478142pt;}
._e{width:25.067682pt;}
._9{width:26.613999pt;}
._21{width:27.770735pt;}
._c{width:28.912042pt;}
._20{width:29.860426pt;}
._16{width:30.812790pt;}
._1d{width:32.619296pt;}
._f{width:33.915669pt;}
._13{width:39.025232pt;}
._1b{width:43.589093pt;}
._1e{width:45.759760pt;}
._23{width:47.781030pt;}
._24{width:49.344383pt;}
._d{width:55.329063pt;}
._17{width:56.277847pt;}
._1c{width:59.538088pt;}
.fs9{font-size:21.328897pt;}
.fs8{font-size:26.661121pt;}
.fs2{font-size:35.192639pt;}
.fs5{font-size:51.189311pt;}
.fs0{font-size:53.322178pt;}
.fsa{font-size:56.205950pt;}
.fs6{font-size:58.654399pt;}
.fs4{font-size:63.986626pt;}
.fs7{font-size:67.447145pt;}
.fs3{font-size:74.650879pt;}
.fs1{font-size:85.315196pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.177598pt;}
.y21{bottom:97.345625pt;}
.y49{bottom:97.612812pt;}
.y67{bottom:103.745625pt;}
.y48{bottom:112.809609pt;}
.y20{bottom:118.942422pt;}
.y47{bottom:128.006406pt;}
.y6c{bottom:134.131250pt;}
.y46{bottom:143.196797pt;}
.y45{bottom:149.368047pt;}
.y44{bottom:158.433594pt;}
.y43{bottom:164.564844pt;}
.y6e{bottom:165.099219pt;}
.y42{bottom:173.630391pt;}
.y41{bottom:179.761641pt;}
.y40{bottom:188.827188pt;}
.y6d{bottom:192.560000pt;}
.y65{bottom:194.958438pt;}
.y3f{bottom:204.023984pt;}
.y1f{bottom:206.956797pt;}
.y3e{bottom:210.155234pt;}
.y6b{bottom:219.220859pt;}
.y66{bottom:220.020859pt;}
.y6a{bottom:225.352031pt;}
.y1e{bottom:244.016016pt;}
.y64{bottom:247.214453pt;}
.y3d{bottom:256.545625pt;}
.y1d{bottom:264.811250pt;}
.y63{bottom:274.675234pt;}
.y3c{bottom:283.740859pt;}
.y1c{bottom:285.873594pt;}
.y6f{bottom:294.672031pt;}
.y62{bottom:302.163203pt;}
.y1b{bottom:306.961641pt;}
.y3b{bottom:311.228828pt;}
.y1a{bottom:328.038438pt;}
.y61{bottom:329.371250pt;}
.y3a{bottom:338.702422pt;}
.y19{bottom:348.820859pt;}
.y60{bottom:356.819219pt;}
.y39{bottom:365.883203pt;}
.y18{bottom:369.883203pt;}
.y5f{bottom:384.280000pt;}
.y17{bottom:390.945625pt;}
.y38{bottom:393.358438pt;}
.y69{bottom:411.473594pt;}
.y16{bottom:411.753594pt;}
.y37{bottom:420.804844pt;}
.y68{bottom:438.934453pt;}
.y36{bottom:448.040000pt;}
.y15{bottom:448.840000pt;}
.y5e{bottom:466.435234pt;}
.y35{bottom:475.500820pt;}
.y14{bottom:485.897617pt;}
.y5d{bottom:493.630430pt;}
.y34{bottom:502.694414pt;}
.y13{bottom:506.694414pt;}
.y5c{bottom:521.091211pt;}
.y12{bottom:527.756836pt;}
.y33{bottom:530.155234pt;}
.y5b{bottom:548.552031pt;}
.y11{bottom:548.819219pt;}
.y32{bottom:557.616016pt;}
.y10{bottom:569.880039pt;}
.y5a{bottom:575.745625pt;}
.y31{bottom:584.811211pt;}
.yf{bottom:590.676836pt;}
.y59{bottom:603.233633pt;}
.ye{bottom:611.764805pt;}
.y30{bottom:612.299219pt;}
.y58{bottom:630.708828pt;}
.yd{bottom:632.827227pt;}
.y2f{bottom:639.760039pt;}
.yc{bottom:653.624024pt;}
.y57{bottom:657.889609pt;}
.y2e{bottom:666.953633pt;}
.y56{bottom:685.363203pt;}
.y2d{bottom:694.414414pt;}
.y55{bottom:712.811211pt;}
.y2c{bottom:721.889609pt;}
.yb{bottom:723.222422pt;}
.y54{bottom:740.019219pt;}
.y2b{bottom:749.110430pt;}
.ya{bottom:756.841641pt;}
.y53{bottom:767.505625pt;}
.y2a{bottom:776.571211pt;}
.y9{bottom:792.833633pt;}
.y52{bottom:794.700820pt;}
.y51{bottom:822.161621pt;}
.y8{bottom:830.960020pt;}
.y29{bottom:845.889629pt;}
.y50{bottom:849.622422pt;}
.y7{bottom:855.488027pt;}
.y27{bottom:866.952031pt;}
.y28{bottom:874.417617pt;}
.y4f{bottom:876.816016pt;}
.y26{bottom:888.014414pt;}
.y6{bottom:897.372812pt;}
.y4e{bottom:904.316816pt;}
.y25{bottom:908.849629pt;}
.y5{bottom:925.366426pt;}
.y24{bottom:929.899219pt;}
.y4d{bottom:931.764824pt;}
.y23{bottom:950.974414pt;}
.y4{bottom:953.360020pt;}
.y4c{bottom:958.972822pt;}
.y22{bottom:971.756660pt;}
.y4b{bottom:986.420342pt;}
.y4a{bottom:1013.894746pt;}
.y3{bottom:1048.047544pt;}
.y2{bottom:1063.244341pt;}
.h2c{height:14.663616pt;}
.h14{height:14.861492pt;}
.h1f{height:18.454495pt;}
.he{height:18.576865pt;}
.h1a{height:20.797809pt;}
.h18{height:20.804058pt;}
.h21{height:21.604931pt;}
.h20{height:21.611182pt;}
.h9{height:24.572985pt;}
.h2f{height:36.580889pt;}
.h27{height:36.658997pt;}
.hc{height:37.153685pt;}
.hb{height:37.231794pt;}
.h2d{height:38.641591pt;}
.h15{height:39.163033pt;}
.h2e{height:43.897075pt;}
.h8{height:43.990805pt;}
.hf{height:44.584431pt;}
.h16{height:45.329058pt;}
.h3{height:46.136181pt;}
.h30{height:46.271112pt;}
.h2b{height:46.369912pt;}
.hd{height:46.995642pt;}
.h19{height:47.780547pt;}
.ha{height:47.802499pt;}
.h28{height:48.136239pt;}
.h2a{height:48.191864pt;}
.h29{height:48.191942pt;}
.h12{height:48.381552pt;}
.h26{height:48.381708pt;}
.h1b{height:48.383584pt;}
.h25{height:48.388115pt;}
.h22{height:48.432958pt;}
.h13{height:48.439052pt;}
.h11{height:48.439209pt;}
.h1c{height:48.439287pt;}
.h10{height:48.439365pt;}
.h23{height:48.490459pt;}
.h24{height:48.490615pt;}
.h1e{height:48.631320pt;}
.h7{height:50.749803pt;}
.h17{height:54.394881pt;}
.h6{height:55.363428pt;}
.h1d{height:58.357588pt;}
.h5{height:64.590506pt;}
.h4{height:73.817640pt;}
.h2{height:1122.165236pt;}
.h0{height:1122.520013pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700781pt;}
.w0{width:793.701013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:114.142881pt;}
.x2{left:120.807998pt;}
.x3a{left:122.940957pt;}
.x5{left:127.740000pt;}
.x1f{left:138.131201pt;}
.x4b{left:147.995684pt;}
.x18{left:160.566396pt;}
.x3b{left:161.633604pt;}
.x38{left:164.031992pt;}
.xc{left:165.899199pt;}
.xa{left:173.363203pt;}
.xd{left:177.363203pt;}
.x52{left:179.495996pt;}
.x4d{left:187.227207pt;}
.x3{left:192.292793pt;}
.xb{left:201.891191pt;}
.x3c{left:203.491191pt;}
.x1b{left:206.156797pt;}
.x6{left:208.822402pt;}
.x43{left:218.953594pt;}
.x2a{left:223.486406pt;}
.x23{left:225.353594pt;}
.x31{left:226.686406pt;}
.x57{left:227.751992pt;}
.x29{left:230.151992pt;}
.x32{left:236.283203pt;}
.x1d{left:237.350391pt;}
.x53{left:250.947207pt;}
.x4{left:252.814395pt;}
.x4a{left:262.145605pt;}
.x58{left:270.716797pt;}
.x50{left:275.249609pt;}
.x45{left:286.446406pt;}
.x11{left:289.113594pt;}
.x14{left:297.111992pt;}
.x2d{left:300.043203pt;}
.x24{left:303.775996pt;}
.x8{left:307.508809pt;}
.x26{left:310.441602pt;}
.x44{left:320.292793pt;}
.x7{left:321.372793pt;}
.x10{left:324.838398pt;}
.x33{left:329.103984pt;}
.x12{left:332.036797pt;}
.x46{left:335.503984pt;}
.x2b{left:338.169609pt;}
.x13{left:356.564805pt;}
.x9{left:357.619219pt;}
.x2e{left:368.030391pt;}
.x3d{left:372.321602pt;}
.x39{left:376.587188pt;}
.x19{left:379.787188pt;}
.x1c{left:382.187188pt;}
.x54{left:384.852812pt;}
.x21{left:386.985586pt;}
.x48{left:388.585586pt;}
.x47{left:390.185586pt;}
.x35{left:396.583984pt;}
.x40{left:409.115195pt;}
.x22{left:416.313594pt;}
.x1e{left:425.110391pt;}
.x4e{left:430.176016pt;}
.x55{left:457.903984pt;}
.x34{left:466.169609pt;}
.x36{left:468.835195pt;}
.x27{left:471.500781pt;}
.x4f{left:479.259219pt;}
.xe{left:481.126406pt;}
.xf{left:485.671992pt;}
.x56{left:497.923203pt;}
.x30{left:504.067188pt;}
.x3e{left:511.000000pt;}
.x42{left:512.065586pt;}
.x28{left:513.400000pt;}
.x1a{left:527.249609pt;}
.x2c{left:538.993594pt;}
.x20{left:548.859219pt;}
.x4c{left:557.110391pt;}
.x2f{left:562.443203pt;}
.x17{left:568.574414pt;}
.x41{left:576.052812pt;}
.x15{left:613.937617pt;}
.x25{left:629.934414pt;}
.x3f{left:636.600000pt;}
.x37{left:642.998398pt;}
.x49{left:667.260781pt;}
.x51{left:674.192031pt;}
.x16{left:677.924766pt;}
}

