
    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_465172dd9b8dd5bdbf421e3b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.959473;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_3bdab4cb65dde20582013961.woff')format("woff");}.ff2{font-family:ff2;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_17258de749d22c1759b87f8c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.086426;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_e39fcef2d30cd90e4808990d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_0e14cf681180fb697fcc098c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_6cb95205c7ace4f5d19daef8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_0b04daa01aa3eaeabc7f114a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_aae06839cf5a51ccb8a36d33.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d96ce144e3f786c2f4d1ffd6.woff')format("woff");}.ff9{font-family:ff9;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;}
.m2{transform:matrix(0.000000,-0.250012,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250012,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250012,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.161400px;}
.ls10{letter-spacing:-0.135600px;}
.ls3{letter-spacing:-0.114600px;}
.ls5{letter-spacing:-0.078000px;}
.lse{letter-spacing:-0.048240px;}
.lsb{letter-spacing:-0.037440px;}
.ls4{letter-spacing:-0.015840px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.015480px;}
.ls2{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.078600px;}
.ls11{letter-spacing:0.078840px;}
.ls1{letter-spacing:0.090000px;}
.ls6{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.119400px;}
.lsc{letter-spacing:0.148200px;}
.ls7{letter-spacing:36.045360px;}
.lsa{letter-spacing:848.970000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-16.010686px;}
.ws6{word-spacing:-14.978880px;}
.ws5{word-spacing:-14.967480px;}
.wsb{word-spacing:-14.904360px;}
.ws0{word-spacing:-14.888880px;}
.ws3{word-spacing:-14.810880px;}
.wsc{word-spacing:-14.753280px;}
.ws4{word-spacing:-14.727480px;}
.ws9{word-spacing:-13.735320px;}
.wsa{word-spacing:-13.706520px;}
.ws8{word-spacing:-13.549680px;}
.ws2{word-spacing:-12.204000px;}
.ws1{word-spacing:0.000000px;}
._1f{margin-left:-310.395548px;}
._20{margin-left:-309.220956px;}
._1b{margin-left:-10.320480px;}
._13{margin-left:-3.834720px;}
._b{margin-left:-2.701080px;}
._0{margin-left:-1.345680px;}
._1{width:1.268400px;}
._5{width:2.272440px;}
._f{width:4.235520px;}
._4{width:5.270400px;}
._c{width:6.456240px;}
._d{width:7.773840px;}
._2{width:8.959680px;}
._3{width:10.128840px;}
._8{width:12.056040px;}
._7{width:13.505400px;}
._a{width:15.892920px;}
._9{width:17.260560px;}
._14{width:19.105200px;}
._17{width:20.488680px;}
._1a{width:21.674520px;}
._6{width:23.519160px;}
._11{width:24.968520px;}
._10{width:26.154360px;}
._12{width:27.406080px;}
._16{width:29.373840px;}
._15{width:30.525840px;}
._18{width:32.478840px;}
._19{width:33.582120px;}
._e{width:37.683360px;}
._22{width:40.055040px;}
._21{width:41.240880px;}
._1d{width:44.469000px;}
._1c{width:45.786600px;}
._1e{width:47.631240px;}
.fc3{color:transparent;}
.fc1{color:rgb(186,232,186);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:57.592394px;}
.fs0{font-size:60.120000px;}
.fs3{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.fsb{font-size:72.316748px;}
.fs9{font-size:79.395600px;}
.fs7{font-size:79.399386px;}
.fsa{font-size:86.668129px;}
.fs1{font-size:96.120000px;}
.yda{bottom:-32.507222px;}
.y0{bottom:0.000000px;}
.ydf{bottom:3.600000px;}
.yea{bottom:5.940000px;}
.ye6{bottom:6.030000px;}
.yf2{bottom:6.480000px;}
.yed{bottom:6.570000px;}
.ye8{bottom:7.560000px;}
.ye5{bottom:7.830000px;}
.yc7{bottom:8.589587px;}
.yf1{bottom:8.910000px;}
.yec{bottom:9.000000px;}
.ye7{bottom:11.070000px;}
.yb7{bottom:14.850000px;}
.yb2{bottom:14.940000px;}
.yb0{bottom:14.970000px;}
.ye1{bottom:18.750000px;}
.yde{bottom:20.100000px;}
.ye3{bottom:33.840000px;}
.yc8{bottom:35.941379px;}
.ydd{bottom:36.570000px;}
.ye0{bottom:37.020000px;}
.yd6{bottom:43.614365px;}
.yd9{bottom:47.670141px;}
.ydc{bottom:53.040000px;}
.y2{bottom:57.060000px;}
.yd2{bottom:60.760361px;}
.yd5{bottom:65.933525px;}
.y22{bottom:74.070000px;}
.yd7{bottom:92.026253px;}
.ycf{bottom:97.262341px;}
.y6e{bottom:131.130000px;}
.y6d{bottom:135.630000px;}
.y10d{bottom:138.150000px;}
.y120{bottom:144.270000px;}
.y81{bottom:147.420000px;}
.y6c{bottom:147.960000px;}
.ya3{bottom:149.040000px;}
.y45{bottom:161.190000px;}
.y21{bottom:164.250000px;}
.y10c{bottom:164.340000px;}
.yce{bottom:169.297644px;}
.y80{bottom:173.610000px;}
.y11f{bottom:174.960000px;}
.ya2{bottom:175.230000px;}
.yd1{bottom:184.603573px;}
.y44{bottom:187.380000px;}
.y10b{bottom:190.530000px;}
.y6b{bottom:194.040000px;}
.y20{bottom:194.850000px;}
.y7f{bottom:199.800000px;}
.y11e{bottom:201.150000px;}
.ya1{bottom:205.920000px;}
.yc9{bottom:213.562230px;}
.y43{bottom:213.600000px;}
.y10a{bottom:216.750000px;}
.y6a{bottom:220.260000px;}
.y1f{bottom:221.070000px;}
.y7e{bottom:226.020000px;}
.y11d{bottom:231.870000px;}
.ya0{bottom:232.140000px;}
.y42{bottom:239.790000px;}
.ycd{bottom:241.344388px;}
.y109{bottom:242.850000px;}
.y69{bottom:246.450000px;}
.y1e{bottom:247.260000px;}
.y11c{bottom:258.060000px;}
.y9f{bottom:258.330000px;}
.y7d{bottom:262.290000px;}
.y41{bottom:265.980000px;}
.y108{bottom:269.040000px;}
.y1d{bottom:273.450000px;}
.y68{bottom:277.140000px;}
.y11b{bottom:284.250000px;}
.y9e{bottom:284.430000px;}
.y40{bottom:292.170000px;}
.y7c{bottom:294.330000px;}
.y107{bottom:295.230000px;}
.y1c{bottom:299.640000px;}
.y67{bottom:303.330000px;}
.y9d{bottom:310.620000px;}
.ycc{bottom:313.326301px;}
.y11a{bottom:314.940000px;}
.y3f{bottom:318.360000px;}
.y106{bottom:321.420000px;}
.y7b{bottom:324.930000px;}
.y1b{bottom:325.830000px;}
.y66{bottom:329.430000px;}
.y119{bottom:341.040000px;}
.yd4{bottom:341.133247px;}
.y9c{bottom:341.310000px;}
.y3e{bottom:344.460000px;}
.yc5{bottom:345.360000px;}
.y105{bottom:347.610000px;}
.y7a{bottom:351.120000px;}
.y1a{bottom:352.020000px;}
.y65{bottom:355.620000px;}
.y9b{bottom:367.500000px;}
.y3d{bottom:370.650000px;}
.y118{bottom:371.730000px;}
.y104{bottom:373.800000px;}
.yd3{bottom:375.512953px;}
.yc4{bottom:376.050000px;}
.y79{bottom:377.310000px;}
.y19{bottom:378.210000px;}
.y64{bottom:381.810000px;}
.ycb{bottom:385.460758px;}
.yb9{bottom:388.200000px;}
.y3c{bottom:396.840000px;}
.y117{bottom:397.920000px;}
.y9a{bottom:398.190000px;}
.yc3{bottom:402.240000px;}
.y78{bottom:403.500000px;}
.y18{bottom:404.400000px;}
.y103{bottom:404.490000px;}
.y63{bottom:408.000000px;}
.yb8{bottom:409.170000px;}
.y3b{bottom:423.030000px;}
.y116{bottom:424.110000px;}
.y99{bottom:424.380000px;}
.yc2{bottom:428.430000px;}
.y77{bottom:429.690000px;}
.y17{bottom:430.590000px;}
.y102{bottom:430.680000px;}
.y62{bottom:434.190000px;}
.yb6{bottom:445.170000px;}
.y3a{bottom:449.220000px;}
.yc1{bottom:454.620000px;}
.y115{bottom:454.800000px;}
.y98{bottom:455.070000px;}
.y76{bottom:455.880000px;}
.y16{bottom:456.780000px;}
.y101{bottom:456.870000px;}
.yca{bottom:457.442670px;}
.y61{bottom:460.380000px;}
.yc0{bottom:480.810000px;}
.y114{bottom:480.990000px;}
.yb5{bottom:481.080000px;}
.y97{bottom:481.260000px;}
.y75{bottom:482.070000px;}
.y15{bottom:482.970000px;}
.y100{bottom:483.060000px;}
.y39{bottom:485.490000px;}
.y60{bottom:486.570000px;}
.ybf{bottom:507.000000px;}
.y96{bottom:507.450000px;}
.y14{bottom:509.160000px;}
.yff{bottom:509.250000px;}
.y113{bottom:511.680000px;}
.y5f{bottom:512.760000px;}
.yb4{bottom:516.990000px;}
.y38{bottom:517.530000px;}
.ybe{bottom:533.190000px;}
.yfe{bottom:535.440000px;}
.y112{bottom:537.870000px;}
.y95{bottom:538.140000px;}
.y5d{bottom:538.950000px;}
.y5e{bottom:544.980000px;}
.y13{bottom:545.340000px;}
.y37{bottom:548.130000px;}
.yb3{bottom:552.900000px;}
.ybd{bottom:559.290000px;}
.yfd{bottom:561.630000px;}
.y94{bottom:564.330000px;}
.y5c{bottom:565.140000px;}
.y111{bottom:568.560000px;}
.y36{bottom:574.320000px;}
.y12{bottom:577.380000px;}
.yfc{bottom:587.820000px;}
.yb1{bottom:588.900000px;}
.ybc{bottom:589.980000px;}
.y5b{bottom:591.330000px;}
.y110{bottom:594.750000px;}
.y93{bottom:595.020000px;}
.y11{bottom:608.070000px;}
.y35{bottom:610.590000px;}
.yfb{bottom:614.010000px;}
.y5a{bottom:617.520000px;}
.ybb{bottom:620.670000px;}
.y92{bottom:621.210000px;}
.yaf{bottom:624.810000px;}
.y10f{bottom:630.930000px;}
.y10{bottom:634.290000px;}
.y34{bottom:642.660000px;}
.y59{bottom:643.740000px;}
.yba{bottom:646.980000px;}
.yc6{bottom:647.055000px;}
.y91{bottom:647.430000px;}
.yfa{bottom:650.220000px;}
.yf{bottom:660.480000px;}
.y10e{bottom:668.580000px;}
.y33{bottom:668.850000px;}
.y74{bottom:669.930000px;}
.y58{bottom:674.430000px;}
.yae{bottom:675.690000px;}
.y90{bottom:678.120000px;}
.yf9{bottom:687.750000px;}
.ye{bottom:691.170000px;}
.y73{bottom:696.120000px;}
.y57{bottom:700.620000px;}
.y8f{bottom:704.220000px;}
.y32{bottom:705.030000px;}
.yad{bottom:706.380000px;}
.yd0{bottom:707.132725px;}
.yf8{bottom:719.790000px;}
.yd{bottom:721.860000px;}
.y72{bottom:722.220000px;}
.y56{bottom:726.720000px;}
.y8e{bottom:730.410000px;}
.yac{bottom:732.570000px;}
.y31{bottom:737.070000px;}
.yf7{bottom:745.980000px;}
.y71{bottom:748.410000px;}
.yc{bottom:752.550000px;}
.y55{bottom:752.910000px;}
.y8d{bottom:756.600000px;}
.yab{bottom:758.760000px;}
.y30{bottom:767.760000px;}
.yf6{bottom:772.170000px;}
.y70{bottom:774.600000px;}
.y54{bottom:779.100000px;}
.y8c{bottom:782.790000px;}
.yb{bottom:783.600000px;}
.yaa{bottom:784.950000px;}
.y2f{bottom:793.950000px;}
.yf5{bottom:798.360000px;}
.y6f{bottom:800.790000px;}
.y53{bottom:805.290000px;}
.y8b{bottom:808.980000px;}
.ya9{bottom:811.140000px;}
.ya{bottom:818.880000px;}
.y2e{bottom:820.140000px;}
.yf4{bottom:829.050000px;}
.y52{bottom:831.480000px;}
.ya8{bottom:837.330000px;}
.y8a{bottom:839.670000px;}
.y2d{bottom:846.330000px;}
.yf3{bottom:850.020000px;}
.y9{bottom:856.950000px;}
.y51{bottom:857.670000px;}
.ya7{bottom:863.520000px;}
.y89{bottom:865.860000px;}
.y2c{bottom:872.520000px;}
.yf0{bottom:872.880000px;}
.y50{bottom:883.860000px;}
.ya6{bottom:889.710000px;}
.y88{bottom:892.050000px;}
.y8{bottom:895.110000px;}
.yef{bottom:896.730000px;}
.y2b{bottom:898.710000px;}
.y4f{bottom:910.050000px;}
.y87{bottom:918.240000px;}
.yee{bottom:919.590000px;}
.y2a{bottom:924.900000px;}
.ya5{bottom:925.890000px;}
.y4e{bottom:936.240000px;}
.y7{bottom:937.680000px;}
.yeb{bottom:942.360000px;}
.y86{bottom:948.930000px;}
.y29{bottom:951.000000px;}
.ya4{bottom:957.930000px;}
.y4d{bottom:962.430000px;}
.ye9{bottom:966.300000px;}
.y85{bottom:975.120000px;}
.y28{bottom:977.190000px;}
.y6{bottom:980.250000px;}
.y4c{bottom:988.620000px;}
.ye2{bottom:989.070000px;}
.y84{bottom:1001.310000px;}
.y27{bottom:1003.380000px;}
.y4b{bottom:1014.810000px;}
.ye4{bottom:1015.080000px;}
.y5{bottom:1022.820000px;}
.y83{bottom:1027.500000px;}
.y26{bottom:1029.570000px;}
.ydb{bottom:1037.940000px;}
.y4a{bottom:1041.000000px;}
.y25{bottom:1055.790000px;}
.y82{bottom:1062.720000px;}
.y4{bottom:1065.420000px;}
.y49{bottom:1067.220000px;}
.y24{bottom:1081.980000px;}
.y121{bottom:1088.910000px;}
.y48{bottom:1093.410000px;}
.y3{bottom:1107.990000px;}
.y23{bottom:1118.160000px;}
.y47{bottom:1119.510000px;}
.yd8{bottom:1131.803127px;}
.y46{bottom:1180.350000px;}
.y1{bottom:1196.820000px;}
.h18{height:2.160411px;}
.h16{height:3.456873px;}
.h1d{height:22.050000px;}
.h20{height:23.130000px;}
.h1f{height:23.220000px;}
.h1e{height:25.290000px;}
.hc{height:31.500000px;}
.h10{height:35.100000px;}
.hf{height:35.190000px;}
.he{height:35.220000px;}
.ha{height:36.855000px;}
.h2{height:41.860898px;}
.h8{height:47.250000px;}
.h1c{height:48.060000px;}
.h1b{height:49.581387px;}
.h9{height:52.605000px;}
.h5{height:54.331699px;}
.hb{height:57.612832px;}
.h6{height:57.645000px;}
.h7{height:59.378906px;}
.h13{height:60.067068px;}
.h4{height:60.328125px;}
.h1a{height:65.910000px;}
.hd{height:68.710781px;}
.h19{height:75.424108px;}
.h3{height:79.270840px;}
.h14{height:82.807129px;}
.h12{height:82.811079px;}
.h17{height:90.392151px;}
.h15{height:424.683749px;}
.h11{height:488.205000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:69.300000px;}
.w11{width:72.450000px;}
.wb{width:82.620000px;}
.we{width:82.650000px;}
.wd{width:82.710000px;}
.wf{width:82.800000px;}
.wc{width:82.830000px;}
.w5{width:121.080000px;}
.w7{width:127.560000px;}
.w6{width:127.620000px;}
.wa{width:141.750000px;}
.w4{width:180.540000px;}
.w9{width:423.862675px;}
.w8{width:546.769504px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:3.870000px;}
.x34{left:5.040000px;}
.x18{left:8.010000px;}
.x30{left:15.300000px;}
.x2d{left:17.910000px;}
.x35{left:22.950000px;}
.x2f{left:24.660000px;}
.x32{left:26.490000px;}
.x39{left:35.640000px;}
.x20{left:38.626226px;}
.x3d{left:43.830000px;}
.x22{left:45.894623px;}
.x21{left:51.300159px;}
.x26{left:53.443306px;}
.x3b{left:55.350000px;}
.x3c{left:62.910000px;}
.x2c{left:70.830000px;}
.x24{left:120.113492px;}
.x2a{left:124.079458px;}
.x1{left:127.649987px;}
.x27{left:135.405344px;}
.x12{left:136.829987px;}
.x29{left:151.755422px;}
.x13{left:154.649987px;}
.x25{left:157.389764px;}
.x17{left:168.150000px;}
.x4{left:179.309987px;}
.x3{left:181.019987px;}
.x14{left:187.049987px;}
.x1e{left:191.586692px;}
.x3a{left:196.860000px;}
.x1d{left:200.279987px;}
.x15{left:214.049987px;}
.x23{left:218.153481px;}
.x16{left:219.719987px;}
.xd{left:252.299987px;}
.x28{left:260.218887px;}
.x2e{left:269.310000px;}
.x5{left:294.869987px;}
.x11{left:343.649987px;}
.x19{left:348.690000px;}
.x31{left:351.930000px;}
.x1f{left:384.069540px;}
.x33{left:434.760000px;}
.x2{left:446.549987px;}
.x1a{left:469.770000px;}
.x36{left:517.380000px;}
.x9{left:548.339987px;}
.x8{left:566.429987px;}
.xf{left:568.769973px;}
.x10{left:579.389987px;}
.x1b{left:597.390000px;}
.x37{left:600.090000px;}
.x7{left:614.429987px;}
.xa{left:618.749987px;}
.xc{left:638.189987px;}
.xb{left:661.679987px;}
.x1c{left:674.459987px;}
.x38{left:682.740000px;}
.xe{left:742.769987px;}
.x6{left:765.539987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.143467pt;}
.ls10{letter-spacing:-0.120533pt;}
.ls3{letter-spacing:-0.101867pt;}
.ls5{letter-spacing:-0.069333pt;}
.lse{letter-spacing:-0.042880pt;}
.lsb{letter-spacing:-0.033280pt;}
.ls4{letter-spacing:-0.014080pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.013760pt;}
.ls2{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.069867pt;}
.ls11{letter-spacing:0.070080pt;}
.ls1{letter-spacing:0.080000pt;}
.ls6{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.106133pt;}
.lsc{letter-spacing:0.131733pt;}
.ls7{letter-spacing:32.040320pt;}
.lsa{letter-spacing:754.640000pt;}
.ws7{word-spacing:-14.231721pt;}
.ws6{word-spacing:-13.314560pt;}
.ws5{word-spacing:-13.304427pt;}
.wsb{word-spacing:-13.248320pt;}
.ws0{word-spacing:-13.234560pt;}
.ws3{word-spacing:-13.165227pt;}
.wsc{word-spacing:-13.114027pt;}
.ws4{word-spacing:-13.091093pt;}
.ws9{word-spacing:-12.209173pt;}
.wsa{word-spacing:-12.183573pt;}
.ws8{word-spacing:-12.044160pt;}
.ws2{word-spacing:-10.848000pt;}
.ws1{word-spacing:0.000000pt;}
._1f{margin-left:-275.907154pt;}
._20{margin-left:-274.863072pt;}
._1b{margin-left:-9.173760pt;}
._13{margin-left:-3.408640pt;}
._b{margin-left:-2.400960pt;}
._0{margin-left:-1.196160pt;}
._1{width:1.127467pt;}
._5{width:2.019947pt;}
._f{width:3.764907pt;}
._4{width:4.684800pt;}
._c{width:5.738880pt;}
._d{width:6.910080pt;}
._2{width:7.964160pt;}
._3{width:9.003413pt;}
._8{width:10.716480pt;}
._7{width:12.004800pt;}
._a{width:14.127040pt;}
._9{width:15.342720pt;}
._14{width:16.982400pt;}
._17{width:18.212160pt;}
._1a{width:19.266240pt;}
._6{width:20.905920pt;}
._11{width:22.194240pt;}
._10{width:23.248320pt;}
._12{width:24.360960pt;}
._16{width:26.110080pt;}
._15{width:27.134080pt;}
._18{width:28.870080pt;}
._19{width:29.850773pt;}
._e{width:33.496320pt;}
._22{width:35.604480pt;}
._21{width:36.658560pt;}
._1d{width:39.528000pt;}
._1c{width:40.699200pt;}
._1e{width:42.338880pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:51.193240pt;}
.fs0{font-size:53.440000pt;}
.fs3{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.fsb{font-size:64.281553pt;}
.fs9{font-size:70.573866pt;}
.fs7{font-size:70.577232pt;}
.fsa{font-size:77.038337pt;}
.fs1{font-size:85.440000pt;}
.yda{bottom:-28.895309pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:3.200000pt;}
.yea{bottom:5.280000pt;}
.ye6{bottom:5.360000pt;}
.yf2{bottom:5.760000pt;}
.yed{bottom:5.840000pt;}
.ye8{bottom:6.720000pt;}
.ye5{bottom:6.960000pt;}
.yc7{bottom:7.635189pt;}
.yf1{bottom:7.920000pt;}
.yec{bottom:8.000000pt;}
.ye7{bottom:9.840000pt;}
.yb7{bottom:13.200000pt;}
.yb2{bottom:13.280000pt;}
.yb0{bottom:13.306667pt;}
.ye1{bottom:16.666667pt;}
.yde{bottom:17.866667pt;}
.ye3{bottom:30.080000pt;}
.yc8{bottom:31.947893pt;}
.ydd{bottom:32.506667pt;}
.ye0{bottom:32.906667pt;}
.yd6{bottom:38.768325pt;}
.yd9{bottom:42.373458pt;}
.ydc{bottom:47.146667pt;}
.y2{bottom:50.720000pt;}
.yd2{bottom:54.009210pt;}
.yd5{bottom:58.607578pt;}
.y22{bottom:65.840000pt;}
.yd7{bottom:81.801114pt;}
.ycf{bottom:86.455415pt;}
.y6e{bottom:116.560000pt;}
.y6d{bottom:120.560000pt;}
.y10d{bottom:122.800000pt;}
.y120{bottom:128.240000pt;}
.y81{bottom:131.040000pt;}
.y6c{bottom:131.520000pt;}
.ya3{bottom:132.480000pt;}
.y45{bottom:143.280000pt;}
.y21{bottom:146.000000pt;}
.y10c{bottom:146.080000pt;}
.yce{bottom:150.486795pt;}
.y80{bottom:154.320000pt;}
.y11f{bottom:155.520000pt;}
.ya2{bottom:155.760000pt;}
.yd1{bottom:164.092065pt;}
.y44{bottom:166.560000pt;}
.y10b{bottom:169.360000pt;}
.y6b{bottom:172.480000pt;}
.y20{bottom:173.200000pt;}
.y7f{bottom:177.600000pt;}
.y11e{bottom:178.800000pt;}
.ya1{bottom:183.040000pt;}
.yc9{bottom:189.833094pt;}
.y43{bottom:189.866667pt;}
.y10a{bottom:192.666667pt;}
.y6a{bottom:195.786667pt;}
.y1f{bottom:196.506667pt;}
.y7e{bottom:200.906667pt;}
.y11d{bottom:206.106667pt;}
.ya0{bottom:206.346667pt;}
.y42{bottom:213.146667pt;}
.ycd{bottom:214.528345pt;}
.y109{bottom:215.866667pt;}
.y69{bottom:219.066667pt;}
.y1e{bottom:219.786667pt;}
.y11c{bottom:229.386667pt;}
.y9f{bottom:229.626667pt;}
.y7d{bottom:233.146667pt;}
.y41{bottom:236.426667pt;}
.y108{bottom:239.146667pt;}
.y1d{bottom:243.066667pt;}
.y68{bottom:246.346667pt;}
.y11b{bottom:252.666667pt;}
.y9e{bottom:252.826667pt;}
.y40{bottom:259.706667pt;}
.y7c{bottom:261.626667pt;}
.y107{bottom:262.426667pt;}
.y1c{bottom:266.346667pt;}
.y67{bottom:269.626667pt;}
.y9d{bottom:276.106667pt;}
.ycc{bottom:278.512267pt;}
.y11a{bottom:279.946667pt;}
.y3f{bottom:282.986667pt;}
.y106{bottom:285.706667pt;}
.y7b{bottom:288.826667pt;}
.y1b{bottom:289.626667pt;}
.y66{bottom:292.826667pt;}
.y119{bottom:303.146667pt;}
.yd4{bottom:303.229553pt;}
.y9c{bottom:303.386667pt;}
.y3e{bottom:306.186667pt;}
.yc5{bottom:306.986667pt;}
.y105{bottom:308.986667pt;}
.y7a{bottom:312.106667pt;}
.y1a{bottom:312.906667pt;}
.y65{bottom:316.106667pt;}
.y9b{bottom:326.666667pt;}
.y3d{bottom:329.466667pt;}
.y118{bottom:330.426667pt;}
.y104{bottom:332.266667pt;}
.yd3{bottom:333.789291pt;}
.yc4{bottom:334.266667pt;}
.y79{bottom:335.386667pt;}
.y19{bottom:336.186667pt;}
.y64{bottom:339.386667pt;}
.ycb{bottom:342.631785pt;}
.yb9{bottom:345.066667pt;}
.y3c{bottom:352.746667pt;}
.y117{bottom:353.706667pt;}
.y9a{bottom:353.946667pt;}
.yc3{bottom:357.546667pt;}
.y78{bottom:358.666667pt;}
.y18{bottom:359.466667pt;}
.y103{bottom:359.546667pt;}
.y63{bottom:362.666667pt;}
.yb8{bottom:363.706667pt;}
.y3b{bottom:376.026667pt;}
.y116{bottom:376.986667pt;}
.y99{bottom:377.226667pt;}
.yc2{bottom:380.826667pt;}
.y77{bottom:381.946667pt;}
.y17{bottom:382.746667pt;}
.y102{bottom:382.826667pt;}
.y62{bottom:385.946667pt;}
.yb6{bottom:395.706667pt;}
.y3a{bottom:399.306667pt;}
.yc1{bottom:404.106667pt;}
.y115{bottom:404.266667pt;}
.y98{bottom:404.506667pt;}
.y76{bottom:405.226667pt;}
.y16{bottom:406.026667pt;}
.y101{bottom:406.106667pt;}
.yca{bottom:406.615707pt;}
.y61{bottom:409.226667pt;}
.yc0{bottom:427.386667pt;}
.y114{bottom:427.546667pt;}
.yb5{bottom:427.626667pt;}
.y97{bottom:427.786667pt;}
.y75{bottom:428.506667pt;}
.y15{bottom:429.306667pt;}
.y100{bottom:429.386667pt;}
.y39{bottom:431.546667pt;}
.y60{bottom:432.506667pt;}
.ybf{bottom:450.666667pt;}
.y96{bottom:451.066667pt;}
.y14{bottom:452.586667pt;}
.yff{bottom:452.666667pt;}
.y113{bottom:454.826667pt;}
.y5f{bottom:455.786667pt;}
.yb4{bottom:459.546667pt;}
.y38{bottom:460.026667pt;}
.ybe{bottom:473.946667pt;}
.yfe{bottom:475.946667pt;}
.y112{bottom:478.106667pt;}
.y95{bottom:478.346667pt;}
.y5d{bottom:479.066667pt;}
.y5e{bottom:484.426667pt;}
.y13{bottom:484.746667pt;}
.y37{bottom:487.226667pt;}
.yb3{bottom:491.466667pt;}
.ybd{bottom:497.146667pt;}
.yfd{bottom:499.226667pt;}
.y94{bottom:501.626667pt;}
.y5c{bottom:502.346667pt;}
.y111{bottom:505.386667pt;}
.y36{bottom:510.506667pt;}
.y12{bottom:513.226667pt;}
.yfc{bottom:522.506667pt;}
.yb1{bottom:523.466667pt;}
.ybc{bottom:524.426667pt;}
.y5b{bottom:525.626667pt;}
.y110{bottom:528.666667pt;}
.y93{bottom:528.906667pt;}
.y11{bottom:540.506667pt;}
.y35{bottom:542.746667pt;}
.yfb{bottom:545.786667pt;}
.y5a{bottom:548.906667pt;}
.ybb{bottom:551.706667pt;}
.y92{bottom:552.186667pt;}
.yaf{bottom:555.386667pt;}
.y10f{bottom:560.826667pt;}
.y10{bottom:563.813333pt;}
.y34{bottom:571.253333pt;}
.y59{bottom:572.213333pt;}
.yba{bottom:575.093333pt;}
.yc6{bottom:575.160000pt;}
.y91{bottom:575.493333pt;}
.yfa{bottom:577.973333pt;}
.yf{bottom:587.093333pt;}
.y10e{bottom:594.293333pt;}
.y33{bottom:594.533333pt;}
.y74{bottom:595.493333pt;}
.y58{bottom:599.493333pt;}
.yae{bottom:600.613333pt;}
.y90{bottom:602.773333pt;}
.yf9{bottom:611.333333pt;}
.ye{bottom:614.373333pt;}
.y73{bottom:618.773333pt;}
.y57{bottom:622.773333pt;}
.y8f{bottom:625.973333pt;}
.y32{bottom:626.693333pt;}
.yad{bottom:627.893333pt;}
.yd0{bottom:628.562422pt;}
.yf8{bottom:639.813333pt;}
.yd{bottom:641.653333pt;}
.y72{bottom:641.973333pt;}
.y56{bottom:645.973333pt;}
.y8e{bottom:649.253333pt;}
.yac{bottom:651.173333pt;}
.y31{bottom:655.173333pt;}
.yf7{bottom:663.093333pt;}
.y71{bottom:665.253333pt;}
.yc{bottom:668.933333pt;}
.y55{bottom:669.253333pt;}
.y8d{bottom:672.533333pt;}
.yab{bottom:674.453333pt;}
.y30{bottom:682.453333pt;}
.yf6{bottom:686.373333pt;}
.y70{bottom:688.533333pt;}
.y54{bottom:692.533333pt;}
.y8c{bottom:695.813333pt;}
.yb{bottom:696.533333pt;}
.yaa{bottom:697.733333pt;}
.y2f{bottom:705.733333pt;}
.yf5{bottom:709.653333pt;}
.y6f{bottom:711.813333pt;}
.y53{bottom:715.813333pt;}
.y8b{bottom:719.093333pt;}
.ya9{bottom:721.013333pt;}
.ya{bottom:727.893333pt;}
.y2e{bottom:729.013333pt;}
.yf4{bottom:736.933333pt;}
.y52{bottom:739.093333pt;}
.ya8{bottom:744.293333pt;}
.y8a{bottom:746.373333pt;}
.y2d{bottom:752.293333pt;}
.yf3{bottom:755.573333pt;}
.y9{bottom:761.733333pt;}
.y51{bottom:762.373333pt;}
.ya7{bottom:767.573333pt;}
.y89{bottom:769.653333pt;}
.y2c{bottom:775.573333pt;}
.yf0{bottom:775.893333pt;}
.y50{bottom:785.653333pt;}
.ya6{bottom:790.853333pt;}
.y88{bottom:792.933333pt;}
.y8{bottom:795.653333pt;}
.yef{bottom:797.093333pt;}
.y2b{bottom:798.853333pt;}
.y4f{bottom:808.933333pt;}
.y87{bottom:816.213333pt;}
.yee{bottom:817.413333pt;}
.y2a{bottom:822.133333pt;}
.ya5{bottom:823.013333pt;}
.y4e{bottom:832.213333pt;}
.y7{bottom:833.493333pt;}
.yeb{bottom:837.653333pt;}
.y86{bottom:843.493333pt;}
.y29{bottom:845.333333pt;}
.ya4{bottom:851.493333pt;}
.y4d{bottom:855.493333pt;}
.ye9{bottom:858.933333pt;}
.y85{bottom:866.773333pt;}
.y28{bottom:868.613333pt;}
.y6{bottom:871.333333pt;}
.y4c{bottom:878.773333pt;}
.ye2{bottom:879.173333pt;}
.y84{bottom:890.053333pt;}
.y27{bottom:891.893333pt;}
.y4b{bottom:902.053333pt;}
.ye4{bottom:902.293333pt;}
.y5{bottom:909.173333pt;}
.y83{bottom:913.333333pt;}
.y26{bottom:915.173333pt;}
.ydb{bottom:922.613333pt;}
.y4a{bottom:925.333333pt;}
.y25{bottom:938.480000pt;}
.y82{bottom:944.640000pt;}
.y4{bottom:947.040000pt;}
.y49{bottom:948.640000pt;}
.y24{bottom:961.760000pt;}
.y121{bottom:967.920000pt;}
.y48{bottom:971.920000pt;}
.y3{bottom:984.880000pt;}
.y23{bottom:993.920000pt;}
.y47{bottom:995.120000pt;}
.yd8{bottom:1006.047224pt;}
.y46{bottom:1049.200000pt;}
.y1{bottom:1063.840000pt;}
.h18{height:1.920365pt;}
.h16{height:3.072776pt;}
.h1d{height:19.600000pt;}
.h20{height:20.560000pt;}
.h1f{height:20.640000pt;}
.h1e{height:22.480000pt;}
.hc{height:28.000000pt;}
.h10{height:31.200000pt;}
.hf{height:31.280000pt;}
.he{height:31.306667pt;}
.ha{height:32.760000pt;}
.h2{height:37.209687pt;}
.h8{height:42.000000pt;}
.h1c{height:42.720000pt;}
.h1b{height:44.072344pt;}
.h9{height:46.760000pt;}
.h5{height:48.294844pt;}
.hb{height:51.211406pt;}
.h6{height:51.240000pt;}
.h7{height:52.781250pt;}
.h13{height:53.392949pt;}
.h4{height:53.625000pt;}
.h1a{height:58.586667pt;}
.hd{height:61.076250pt;}
.h19{height:67.043651pt;}
.h3{height:70.462969pt;}
.h14{height:73.606337pt;}
.h12{height:73.609848pt;}
.h17{height:80.348578pt;}
.h15{height:377.496666pt;}
.h11{height:433.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:61.600000pt;}
.w11{width:64.400000pt;}
.wb{width:73.440000pt;}
.we{width:73.466667pt;}
.wd{width:73.520000pt;}
.wf{width:73.600000pt;}
.wc{width:73.626667pt;}
.w5{width:107.626667pt;}
.w7{width:113.386667pt;}
.w6{width:113.440000pt;}
.wa{width:126.000000pt;}
.w4{width:160.480000pt;}
.w9{width:376.766822pt;}
.w8{width:486.017337pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:3.440000pt;}
.x34{left:4.480000pt;}
.x18{left:7.120000pt;}
.x30{left:13.600000pt;}
.x2d{left:15.920000pt;}
.x35{left:20.400000pt;}
.x2f{left:21.920000pt;}
.x32{left:23.546667pt;}
.x39{left:31.680000pt;}
.x20{left:34.334423pt;}
.x3d{left:38.960000pt;}
.x22{left:40.795220pt;}
.x21{left:45.600141pt;}
.x26{left:47.505161pt;}
.x3b{left:49.200000pt;}
.x3c{left:55.920000pt;}
.x2c{left:62.960000pt;}
.x24{left:106.767548pt;}
.x2a{left:110.292852pt;}
.x1{left:113.466655pt;}
.x27{left:120.360305pt;}
.x12{left:121.626655pt;}
.x29{left:134.893708pt;}
.x13{left:137.466655pt;}
.x25{left:139.902012pt;}
.x17{left:149.466667pt;}
.x4{left:159.386655pt;}
.x3{left:160.906655pt;}
.x14{left:166.266655pt;}
.x1e{left:170.299282pt;}
.x3a{left:174.986667pt;}
.x1d{left:178.026655pt;}
.x15{left:190.266655pt;}
.x23{left:193.914206pt;}
.x16{left:195.306655pt;}
.xd{left:224.266655pt;}
.x28{left:231.305677pt;}
.x2e{left:239.386667pt;}
.x5{left:262.106655pt;}
.x11{left:305.466655pt;}
.x19{left:309.946667pt;}
.x31{left:312.826667pt;}
.x1f{left:341.395146pt;}
.x33{left:386.453333pt;}
.x2{left:396.933322pt;}
.x1a{left:417.573333pt;}
.x36{left:459.893333pt;}
.x9{left:487.413322pt;}
.x8{left:503.493322pt;}
.xf{left:505.573310pt;}
.x10{left:515.013322pt;}
.x1b{left:531.013333pt;}
.x37{left:533.413333pt;}
.x7{left:546.159988pt;}
.xa{left:549.999988pt;}
.xc{left:567.279988pt;}
.xb{left:588.159988pt;}
.x1c{left:599.519988pt;}
.x38{left:606.880000pt;}
.xe{left:660.239988pt;}
.x6{left:680.479988pt;}
}

